/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #fbbf24;
    --accent-color: #000000;
    --background-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}
:root {
  --primary-color-light: #B08C3D;
  --secondary-color-light: #4C4962;
  --text-color: #333;
  --transition: all 0.3s ease;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Navbar Base */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding-top: revert-layer;
  padding-bottom: revert-layer;
  


}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0.5rem; */
  margin-top: 0.2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand .logo {
  /* height: 70px; */
  width: auto;
  object-fit: contain;
  margin-right: 10rem;
  max-height: 80px;
   /* padding: 5px 0;  */
}


.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: #272D61;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #272D61;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-btn {
  background: linear-gradient(135deg, #272D61, #4e62cc);
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-left: 10rem;
}

.nav-btn:hover {
  background: linear-gradient(135deg, #1a1f40, #7f8eff);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Dropdown */
.nav-item.dropdown {
  text-decoration: none;
  color: var(--text-color);
  font-size: 16px;
  position: relative;
  transition: var(--transition);
}

.dropdown-header {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle-btn {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  width: 100%;
  text-align: left;
  /* padding: 0.75rem 1rem; */
  margin: 0;
  line-height: 1.2;
}

#servicesLink {
  padding: 0;
  margin: 0;
  color: inherit;
  text-decoration: none;
  font-size: 16px;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  flex-direction: column;
  background: white;
  margin-top: 5px;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.show {
  display: flex;
  position: absolute;
}

.dropdown-item {
  padding: 8px 16px;
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.95rem;
  transition: background 0.2s;
}

.dropdown-item:hover {
  background-color: #f2f2f2;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
}

.nav-toggle span {
  height: 2px;
  width: 25px;
  background: #333;
  display: block;
  border-radius: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  #nav-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: white;
    padding: 15px;
  }

  #nav-menu.show-menu {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
  }

  .nav-link,
  .nav-btn,
  .dropdown-toggle-btn {
    width: 100%;
    text-align: left;
  }

  .nav-btn {
    margin-left: 0 !important;
  }

  .nav-item.dropdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .dropdown-menu {
    position: relative;
    display: none;
    flex-direction: column;
    padding-left: 20px;
    width: 100%;
    /* box-shadow: none; */
    background: white;
    margin-top: 5px;
  }

  .dropdown-menu.show {
    display: flex;
            position: initial;
  }

  .dropdown-item {
    width: 100%;
    padding: 8px 20px;
  }
}



/* Hero Section  */

:root {
  --navbar-height: 80px;
}

.hero-section {
  position: relative;
  margin-top: var(--navbar-height); /* Prevents overlap with navbar */
  height: calc(100vh - var(--navbar-height));
  overflow: hidden;
  /* margin-top: 80px; */     
}

.hero-section img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}
@media (max-width: 768px) {
  :root {
    --navbar-height: 60px; /* if your navbar is smaller on mobile */
  }
 .hero-section img {
     margin-top: 25px;
}
}

.hero-section {

  margin-top: var(--navbar-height);
 
   height: auto;

}

.hero-section img {

   height: auto;            /* let image keep its natural height */
    object-fit: contain;     /* ensure full image shows, no crop */
    object-position: top;
     display: block;
     /* margin-top: 30px; */
     /* margin-top: 7px; */
}


.object-fit-cover {
  object-fit: cover;
}



/* About Section */
#about.section {
  padding: 20px 20px;
  background-color: #f9f9f9;
}

/* Section Header */

.section {
  padding: 0%; /* Reduce from 80px or higher */
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
}

/* Layout Grid */
.about-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    grid-template-columns: 1fr 1fr;

  gap: 40px;
  /* align-items: flex-start; */
  align-items: stretch;
}
/* .about-right .right-card {

  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
} */

.about-right .right-card {
  background: linear-gradient(135deg, #f9fafe, #eef2f7); /* soft gradient */
  /* padding: 30px 25px; */
      padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  color: #333;
  transition: all 0.3s ease;
  border-left: 5px solid #4e62cc; /* accent line */
   height: 100%;
}
/* Left Side: Image Cards */
.about-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-card {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Right Side: Mission and Values */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-right h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.about-right p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

.custom-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-list li {
  font-size: 1.05rem;
  /* padding-left: 20px; */
  position: relative;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.custom-list li::before {
  /* content: '✓'; */
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .about-right h3 {
    font-size: 1.5rem;
  }

  .about-card {
    height: 200px;
  }
}

/* Hover effect */
.custom-list li:hover {
  background-color: #eef1ff; /* soft light blue */
  color: #272D61;            /* deeper blue highlight */
  transform: translateX(5px);
  box-shadow: 0 2px 6px rgba(39, 45, 97, 0.15);
}


/* Services Preview */
/* 
.services-preview {
  background: #f8fafc;
  padding: 20px 0;
  text-align: center;
}

.services-preview h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-weight: 700;
}  */

/* Service Grid */
 /* .services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}  */

/* Service Card */
 /* .service-card {
  background: white;
  border-radius: 20px;
  padding: 0%;
  width: 280px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}  
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
} 

.service-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;

}

.service-card:hover .service-img img {
  transform: scale(1.05);
} */

/* Card Headings */
 /* .service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.75rem;
  font-weight: 600;
}  */

/* Card Text */
 /* .service-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}  */

/* Services Preview Section */

 /* body.loading {
    overflow: hidden;
  }
.services-preview {
  background: #f8fafc;
  padding: 30px 0;
  text-align: center;
}

.services-preview h2 {
  font-size: 2.5rem;
  color: #1E3A8A;
  margin-bottom: 3rem;
  font-weight: 700;
} */

/* Service Grid - 3 per row */
/* .services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;

  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
      overflow-x: hidden;
      padding: 0 15px;


} */

/* Individual Service Card */
/* .service-card {
  background: white; */
    /* flex: 1 1 calc(33.333% - 2rem);  */
/* 
  border-radius: 20px;
  padding: 1%;
    max-width: 100%;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
} */
/* 
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
} */

/* Image Styling */
/* .service-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 15px;
 
   margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
} */
/* 
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
} */

/* Card Heading */
/* .service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.service-card:hover h3 {
  color: #1e3a8a;
}
.service-card:hover p {
  color: #444;
 
  color: #1e3a8a;
  font-weight: 500;

} */

/* Card Description */
/* .service-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
} */

/* Button Styling (inside card) */
/* .service-card button {
  background-color:#1E3A8A;
  color: #fff;
  border: none;
  padding: 2.5px 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
} */

/* .service-card button:hover {
  background-color: #4c64b8; 
} */



 /* Prevent scroll during loading (now removed to avoid nav flash)  */
/* Removed body.loading { overflow: hidden; } */

/* Services Section */
.services-preview {
  background: #f8fafc;
  padding: 30px 0;
  text-align: center;
}

.services-preview h2 {
  font-size: 2.5rem;
  color: #1E3A8A;
  margin-bottom: 3rem;
  font-weight: 700;
}

/* Grid container */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  overflow-x: hidden;
}

/* Individual Card */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 1%;
  flex: 1 1 calc(33.333% - 2rem); /* Desktop: 3 per row */
  max-width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.service-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

/* Headings */
.service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.service-card:hover h3,
.service-card:hover p {
  color: #1e3a8a;
  font-weight: 500;
}

/* Paragraph */
.service-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Button */
.service-card button {
  background-color: #1E3A8A;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.service-card button:hover {
  background-color: #4c64b8;
}
/* RESPONSIVE SETTINGS */

/* Tablets and Medium Screens (2 cards per row) */
@media (max-width: 991px) {
  .service-card {
    flex: 1 1 calc(50% - 2rem);
  }

  .services-preview h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

/* Phones and Small Screens (still 2 cards per row) */
@media (max-width: 576px) {
  .service-card {
    flex: 1 1 calc(50% - 1rem); /* 2 per row, tighter gap */
  }

  .services-grid {
    gap: 1rem;
    padding: 0 10px;
  }

  .services-preview h2 {
    font-size: 1.75rem;
  }
}




/* WHY CHOOSE US Section */
.why-choose-us {
  padding: 80px 20px;
  background: #f9f9fe;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.4rem;
  color: #272D61;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
}

/* Grid layout */
/* .why-cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
} */

.why-cards-grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

/* Card Styling */
.why-card.icon-card {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 15px;
  /* padding: 30px 20px; */
  padding: 5px 5px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: 
    transform 0.3s ease, 
    box-shadow 0.3s ease, 
    border-color 0.3s ease, 
    background-color 0.3s ease;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

/* On hover: card lift + colored border effect */
.why-card.icon-card:hover {
  transform: translateY(-8px);
  border-color: #4e62cc;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  background-color: #f5f7ff;
}

/* Animated glowing border pseudo effect (optional fancy effect) */
.why-card.icon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  border: 2px solid transparent;
  /* background: linear-gradient(45deg, #4e62cc, #a48be0); */
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card.icon-card:hover::before {
  opacity: 1;
  filter: blur(4px);
}

/* Icon styling */
.why-card .icon {
  font-size: 40px;
  color: #4e62cc;
  margin-bottom: 5px;
}

/* Headings and paragraph */
.why-card h3 {
  font-size: 0.8rem;
  color: #272D61;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}




@media (max-width: 768px) {
  .why-choose-us {
    padding: 40px 15px;
  }

  .why-cards-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-card.icon-card {
    padding: 15px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
  }

  /* Staggered animation for cards */
  .why-card.icon-card:nth-child(odd) {
    animation-delay: 0.2s;
  }

  .why-card.icon-card:nth-child(even) {
    animation-delay: 0.4s;
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .why-card .icon {
    font-size: 40px;
  }

  .why-card h3 {
    font-size: 1.1rem;
  }

  .why-card p {
    font-size: 0.9rem;
  }
}
/* @media (max-width: 768px) {
  .why-cards-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
} */



/* Testimonials */
.testimonials-section {
  padding: 15px 0;
  background: #f8fafc;
  text-align: center;
}
.testimonials-section h2{
  padding: 10px;

font-family: Montserrat, sans-serif;
font-size: 35px;
font-weight: 400;
line-height: 49px;
color: rgb(0, 0, 0);
}
.google-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-left: 8px;
  display: inline-block;
}

.testimonials-section h3{
font-family: Montserrat, sans-serif;
font-size: 22px;
font-weight: 500;
line-height: 30.8px;
/* color: rgb(103, 65, 136); */
color: #4C64B8;
margin-top: 1rem;
}

.testimonial-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.testimonial-carousel {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: box-shadow 0.3s ease;
  margin-bottom: 1rem;
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
}

.google-icon {
  width: 24px;
  height: 24px;
}

.testimonial-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  margin: 15px 0;
  max-height: 6em;
  overflow: hidden;
  position: relative;
}

.testimonial-card.expanded .testimonial-text {
  max-height: none;
}

.read-more-btn {
  align-self: flex-start;
  margin-top: auto;
  background: none;
  border: none;
  color: #1e3a8a;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.9rem;
}

.testimonial-footer {
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(30, 58, 138, 0.85); /* Deep blue with opacity */
  color: white;
  border: none;
  font-size: 1.4rem;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-nav:hover {
  background-color: rgba(30, 58, 138, 1); /* Darker on hover */
  transform: translateY(-50%) scale(1.05);
}
#testimonialPrev {
  left: -2px;
}
#testimonialNext {
  right: -2px;
}

.testimonial-nav:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.testimonial-dots {
  margin-top: 20px;
  text-align: center;
}

.testimonial-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.testimonial-dots .dot.active {
  background: #1e3a8a;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-carousel {
    gap: 10px;
  }

  .testimonial-wrapper {
    padding: 0 10px;
  }

  .testimonial-nav {
    font-size: 1.2rem;
    padding: 6px 10px;
  }
}

@media (max-width: 480px) {
  .testimonials-section h2 {
    font-size: 24px;
  }

  .testimonials-section h3 {
    font-size: 16px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .read-more-btn {
    font-size: 0.8rem;
  }
}




/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1E3A8A;
    margin-bottom: 1rem;
        margin-top: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}
.section{
  padding: 0;
}



/* About Section Grid */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

/* Left: 2x2 Grid of Image Cards */
.about-left {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Each Card */
.about-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 7px;
  transition: transform 0.3s ease;
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-card:hover {
  transform: translateY(-5px);
}

/* Right Content */
.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-right h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1E3A8A;
}

.about-right p,
.about-right ul {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.about-right ul {
  padding-left: 1.25rem;
  list-style: disc;
}

@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
  }

  .about-left {
    grid-template-columns: 1fr;
  }
}
/* Services */
.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-category {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-image {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.category-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.category-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.service-item {
    background: #f8fafc;
    padding: 0.7rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: var(--transition);
}

.service-item:hover {
    background: var(--secondary-color);
    color: white;
}

/* Gallery */
.gallery-carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 1.5rem;
}

.gallery-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.gallery-slide {
  flex: 0 0 calc((100% - 40px) / 3); /* Show 3 slides */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s;
}

.gallery-nav:hover {
  background: rgba(0,0,0,0.8);
}

.gallery-nav.prev {
  left: 10px;
}

.gallery-nav.next {
  right: 10px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.gallery-dot.active {
  background-color: #1e3a8a;
}

/* Contact */
/* Contact Section Styling */



 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
            body {
    background: linear-gradient(to right, #e6e9ff, #e8edff, #e9f0ff);
                min-height: 100vh;
                display: flex;
                flex-direction: column;
                font-family: Arial, sans-serif;
                color: #333;
            }
            @keyframes fadeIn {
                from { opacity: 0; transform: translateY(20px); }
                to { opacity: 1; transform: translateY(0); }
            }
            .animate-fade-in {
                animation: fadeIn 1s ease-out;
            }
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 15px;
            }
            #contact {
                /* padding: 3rem 0; */
                margin-bottom: 2rem;
                flex-grow: 1;
            }
            .section-header {
                text-align: center;
                margin-bottom: 2rem;
            }
            .section-header h2 {
                font-size: 2.5rem;
                font-weight: bold;
                color: #1E3A8A;
                margin-top: 2rem;
            }
            .section-header p {
                font-size: 1.1rem;
                color: #4b5563;
            }
            .contact-card {
                max-width: 900px;
                margin: 0 auto;
                background: #fff;
                border-radius: 10px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                padding: 2rem;
                transition: transform 0.3s ease;
            }
            .contact-card:hover {
                transform: scale(1.02);
            }
            .contact-content {
                display: flex;
                gap: 2rem;
            }
            .contact-info,
            .contact-form {
                flex: 1;
            }
            .contact-info h3,
            .contact-form h3 {
                font-size: 1.5rem;
                font-weight: 600;
                color: #1E3A8A;
                margin-bottom: 1.5rem;
            }
            .contact-info .contact-item {
                display: flex;
                align-items: center;
                margin-bottom: 1.25rem;
            }
            .contact-info .contact-item i {
                color:#4E62CC;
                font-size: 1.5rem;
                margin-right: 1rem;
            }
            .contact-info .contact-item h4 {
                font-size: 1.1rem;
                font-weight: 500;
                color: #374151;
            }
            .contact-info .contact-item p,
            .contact-info .contact-item a {
                font-size: 0.9rem;
                color: #4b5563;
            }
            .contact-info .contact-item a {
                color: #4E62CC;
                text-decoration: none;
            }
            .contact-info .contact-item a:hover {
                text-decoration: underline;
            }
            .social-links {
                display: flex;
                gap: 1rem;
                margin-top: 1.5rem;
            }
            .social-links a {
                color:#4E62CC;
                font-size: 1.5rem;
                transition: all 0.2s ease;
            }
            .social-links a:hover {
                color: #3b82f6;
                transform: scale(1.1);
            }
            .contact-form form {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
            .contact-form input,
            .contact-form textarea {
                width: 100%;
                padding: 0.75rem;
                border: 1px solid #d1d5db;
                border-radius: 6px;
                font-size: 0.9rem;
                outline: none;
                transition: border-color 0.2s ease, box-shadow 0.2s ease;
            }
            .contact-form input:focus,
            .contact-form textarea:focus {
                border-color: #3b82f6;
                box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
            }
            .contact-form textarea {
                resize: vertical;
                min-height: 100px;
            }
            .contact-form button {
                width: 100%;
                padding: 0.75rem;
                background: #4E62CC;
                color: #fff;
                border: none;
                border-radius: 6px;
                font-size: 0.9rem;
                cursor: pointer;
                transition: background 0.2s ease;
            }
            .contact-form button:hover {
                background: #2563eb;
            }
           @media (max-width: 640px) {
  .contact-content {
    flex-direction: column; /* change from row to column on mobile */
  }

  .contact-info .contact-item {
    align-items: flex-start;
    gap: 0.5rem;
    flex-direction: row;       /* keep items in a row */
    flex-wrap: nowrap;         /* prevent wrapping */
  }

  .contact-info .contact-item i {
    flex-shrink: 0;            /* icon stays fixed */
    margin-top: 0.3rem;
  }

  .contact-info .contact-item div {
    flex-grow: 1;
    min-width: 0;              /* allow it to shrink properly */
  }
}




/* FAQ  */

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
    font-size: 1rem;
  padding: 1rem 1.2rem;
  background: #f0f4ff;
  border-radius: 12px 12px 0 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1e3a8a;
}
.faq-question h3 {
  font-size: 1rem;   /* Smaller question heading */
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.faq-question:hover {
  background-color: #e0eaff;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
  color: #1e3a8a;
}

.faq-answer {
  padding: 1rem 1.2rem;
  background: #f9f9f9;
  display: none;
  font-size: 1rem;
  color: #444;
  border-top: 1px solid #eee;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* turns plus into a cross */
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: #1E3A8A;
    color: white;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    /* background: var(--secondary-color); */
    color: var(--accent-color);
}

.btn-secondary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.explore-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-top:hover {
    background: #1E3A8A;
    transform: translateY(-3px);
}

.scroll-top.show {
    display: flex;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        /* align-items: center; */
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

    .services-categories {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 1px 0;
    }
    .service-card h3 {
  font-size: 1.4rem;
}
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .nav-brand h2 {
        font-size: 1.2rem;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .service-card h3 {
  font-size: 1.4rem;
}
}

