:root {
  --black: black;
  --transparent: transparent;
  --white: white;
  --yelowish: #f0c74c;
  --bluewish: #1d88da;
  --navy: navy;
  --darknavyblue: #011222;
  --darknavyblue1: #021b34;
  --richblack: #020d19;
  --obsidian: #0b1215;
}

html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--white);
  margin: 0px;
  padding: 0px;
   /*font-family: 'Roboto', sans-serif; */
   font-family: 'Poppins', sans-serif; 
}
/* Basic styling for the header */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}

.logo img {
  height: 130px;
}

/* Navbar styling */
.navbar {
  display: flex;
  align-items: center;
}

/* Styling for the navigation links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-right: 50px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--white);
  font-weight: bold;
  font-size: 24px;
}

.nav-links li a:hover {
  /* text-decoration: underline; */
  color: var(--yelowish);
}

/* Burger menu styling */
.burger-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
  margin-right: 20px;
}

/* Mobile dropdown menu styling */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--darknavyblue);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  padding-top: 30px;
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%); /* Keep off-screen */
  z-index: 1000; /* Ensure it appears above other content */
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: var(--yelowish);
  font-size: 18px;
}

/* Close button styling */
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
   color: var(--yelowish);
}

.hero-section {
  display: flex;
  align-items: center; /* Center items vertically */
  box-sizing: border-box;
  padding-bottom: 70px;
  background-color: var(--black);
  height: 100vh;
  background-image: url("img/background1.jpg"); /* Replace with your image URL */
  background-size: cover; /* Ensures the image covers the entire container */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  margin-top: -135px;
}

.hero-text {
  flex: 1;
  text-align: center;
}

.hero-text h1 {
  font-size: clamp(28px, 4vw, 72px);
  color: var(--white);
}

.hero-text p {
  font-size: clamp(18px, 3vw, 30px);
  color: var(--white);
}

.hero-text button {
  padding: 10px 20px;
  background-color: var(--white);
  color: var(--darknavyblue1);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hero-text button:hover {
  background-color: var(--yelowish);
  color: var(--darknavyblue1);
}

/* Responsive styling */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .burger-menu {
    display: block;
  }

  .logo img {
    height: 70px;
  }
}

/* Services Section */
.services-section {
  padding: 50px 20px;
  background-color: white;
  color: var(--white);
  text-align: center;
}

.section-title {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: justify;
  color: var(--darknavyblue1);  
  text-align: center;
}

.services-container {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping for smaller screens */
  justify-content: center; /* Centers the cards */
  gap: 20px; /* Adds space between the cards */
}

.service-card {
  cursor: pointer;
  background-color: var(--darknavyblue);
  border-radius: 10px;
  padding: 20px;
  width: 250px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  /* border-radius: 50%; */
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--yelowish);
}

.service-card p {
  font-size: 14px;
  color: var(--white);
}

.service-card:hover {
  /* transform: translateY(-10px); */
  transform: scale(1.07);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Responsive Design for Cards */
@media (max-width: 768px) {
.section-title {
    font-size: 18px;
    text-align: justify;
    }

  .service-card {
    width: 100%; /* Full-width cards for smaller screens */
    padding: 0;
  }

  .services-container {
    flex-direction: column; /* Stack cards vertically */
    gap: 15px;
  }
}


/*styling the sevices section*/
/* Service Details Section */
.service-details {
    padding: 50px 20px;
    background-color: var(--darknavyblue1);
    color: var(--white);
  }
  
  .service-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px; /* Space between image and text */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
  }
  
  .service-content img {
    width: 45%; /* Image takes up 45% of the container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners for images */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .service-text {
    flex: 1;
    padding: 20px;
  }
  
  .service-text h2 {
    font-size: 28px;
    color: var(--yelowish);
    margin-bottom: 15px;
  }
  
  .service-text p {
    font-size: 20px;
    line-height: 1.6;
    text-align: justify;
    color: var(--white);
  }
  
  /* Responsive Design for Service Details */
  @media (max-width: 768px) {
    .service-content {
      flex-direction: column; /* Stack image and text vertically */
      text-align: center; /* Center text for smaller screens */
    }
  
    .service-content img {
      width: 100%; /* Full width for smaller screens */
    }
  
    .service-text {
      padding: 0;
    }

    .service-text h2 {
        font-size: 20px;

      }

    .service-text p {
        font-size: 14px;

      }
  }

  /*banner section*/
.full-width-image {
    width: 100%; /* Full width */
    height: 400px; /* Default height, adjust as needed */
    background-image: url('img/banner.jpg'); /* Replace with your image path */
    background-size: cover; /* Ensure the image covers the entire container */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent repetition */
    position: relative; /* Needed for positioning the overlay */
  }
  
  .full-width-image .image-overlay {
    position: absolute; /* Position over the image */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust position for perfect centering */
    color: var(--white); /* Ensure text contrasts with the image */
    text-align: center; /* Center-align the text */
    padding: 20px;
    background: rgba(0, 0, 0, 0.5); /* Add a semi-transparent background for readability */
    border-radius: 10px; /* Optional: Rounded corners for the overlay */
  }
  
  /* .full-width-image .image-overlay h2 {
    font-size: clamp(24px, 5vw, 48px);  Responsive font size 
    margin-bottom: 10px;
  }
  
  .full-width-image .image-overlay p {
    font-size: clamp(16px, 3vw, 24px);  Responsive font size 
  } */
  
  /* Responsive Adjustments */
  @media (max-width: 960px) {
    .full-width-image {
      height: 200px; /* Adjust height for smaller screens */
    }
  }
  @media (max-width: 481px) {
    .full-width-image {
      height:100px; /* Adjust height for smaller screens */
    }
  }

  

  /* Footer Section */
.footer-section {
    background-color: var(--darknavyblue1);
    color: var(--white);
    padding: 50px 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-between;
    gap: 20px;
  }
  
  .footer-info, .footer-form, .footer-nav {
    flex: 1;
    min-width: 250px; /* Ensure columns are manageable on small screens */

 }

 .footer-info{
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text within the div */
 }

 .footer-info, .footer-nav {
    display: flex; /* Activate flexbox */
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text within the div */
 }

 .footer-info .footer-logo {
    width: 200px; /* Adjust the size of the logo */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 0px; /* Add spacing between the logo and the heading */
  }



  
  .footer-info h3, .footer-form h3, .footer-nav h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--yelowish);
  }
  
  .footer-info p, .footer-nav ul li a {
    font-size: 18px;
    line-height: 1.6;
    color: var(--white);
  }
  
  .footer-info p a {
    color: var(--white);
    text-decoration: none;
  }
  
  .footer-info p a:hover {
    text-decoration: underline;
  }
  
  .footer-form form {
    display: flex;
    flex-direction: column;
  }
  
  .footer-form input, .footer-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--darknavyblue);
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .footer-form button {
    padding: 10px;
    background-color: var(--yelowish);
    color: var(--darknavyblue);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .footer-form button:hover {
    background-color: var(--white);
    color: var(--darknavyblue);
  }
  
  .footer-nav ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-nav ul li {
    margin-bottom: 10px;
  }
  
  .footer-nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 18px;
  }
  
  .footer-nav ul li a:hover {
    color: var(--yelowish);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: var(--white);
  }
  
  