/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    color: #222;
    width: 100%;
  }
  
  /* ===== NAVBAR ===== */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    /* background: rgba(10, 31, 68, 0.85); */
    /* background:transparent; */
    position: absolute;
    width: 100%;
    /* top: 0; */
    z-index: 100;
  }
  
  .logo {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover {
    color: #ffcc00;
  }
  
  .menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }
 /* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  background: url('../assets/hero2.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 7%;
  overflow: hidden;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* Dark overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* Hero content animation container */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 550px;
  color: white;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s ease forwards 0.3s;
}

/* Heading */
.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: floatText 4s ease-in-out infinite alternate;
}

/* Paragraph */
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f1f1f1;
}

/* Button */
.btn {
  background: #ffcc00;
  color: #0a1f44;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background: #f4b400;
}
  
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes floatText {
    from { transform: translateY(0); }
    to { transform: translateY(-3px); }
  }
  
  /* ===== ABOUT SECTION ===== */
  #about {
    background: #f8f8f8;
    padding: 80px 8%;
    color: #061329;
    font-family: 'Poppins', sans-serif;

  }
  
  .intro-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  
  .about-left {
    flex: 1;
  }
  
  .about-left h3 {
    text-align: right;
    font-size: 2rem;
    color: #061329;
    line-height: 1.3;
    padding-right: 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-right: 4px solid grey;
    padding-left: 15px;
    font-family: 'Poppins', sans-serif;

  }
  
  .about-right {
    flex: 1;
    font-size: 1.05rem;
    color: #061329;
    line-height: 1.9;
    text-align: justify;
  }
  
  .about-image {
    text-align: center;
    margin-top: 50px;
  }
  
  .about-image img {
    width: 100%;
    height: 65vh;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    transition: transform 0.4s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.02);
  }
  
  .about-image h4 {
    color:#061329;
    font-size: 1.5rem;
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto 10px;
    text-align: center;
  }
  
  .about-image p {
    max-width: 800px;
    margin: 0 auto;
    color: #444;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
  }

  /* === SERVICES SECTION === */
.services {
    background: #f4f4f4;
    color: #fff;
    padding: 100px 8%;
    text-align: center;
  }
  
  .section-header {
    max-width: 700px;
    margin: 0 auto 60px;
  }
  
  .section-subtitle {
    color: #ffcc00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .section-description {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Grid layout */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  /* Service Card */
  .service-card {
    background: #061329;
    border-radius: 12px;
    padding: 40px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    background: #142f6b;
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.15);
  }
  
  .service-card i {
    font-size: 2.5rem;
    color: whitesmoke;
    margin-bottom: 20px;
    transition: color 0.3s;
  }
  
  .service-card:hover i {
    color: #ffd84a;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .service-card p {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.7;
  }

  /* === ICON POP ANIMATION === */
.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color, #ffb400);
    margin-bottom: 15px;
    display: inline-block;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  }
  
  /* When the card becomes visible */
  .service-card.visible i {
    transform: scale(1.1);
    opacity: 1;
    animation: iconBounce 0.4s ease-in-out 0.3s forwards;
  }
  
  @keyframes iconBounce {
    0% { transform: scale(1.1) rotate(0deg); }
    50% { transform: scale(1.3) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); }
  }


/* === SCROLL ANIMATIONS (STAGGERED) === */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
  }
  
  [data-animate].visible {
    opacity: 1;
    transform: translateY(0);
  }


  /* ===== CONTACT SECTION ===== */
#contact {
    padding: 80px 8%;
    background: #f4f4f4;
    font-family: "Poppins", sans-serif;
    color: #061329;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #061329;
    margin-bottom: 10px;
  }
  
  .section-header p {
    font-size: 1rem;
    color: #555;
  }
  
  .contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* CONTACT FORM */
  .contact-form {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .contact-form button {
    width: fit-content;
    padding: 12px 25px;
    background: #061329;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background: #0e2549;
  }
  
  /* FAQ ACCORDION */
  .faq-container {
    flex: 1;
    min-width: 300px;
  }
  
  .faq-container h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #061329;
  }
  
  .accordion {
    background-color: #061329;
    color: #fff;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: background 0.3s;
    font-size: 1rem;
    margin-bottom: 10px;
    border-radius: 6px;
  }
  
  .accordion:hover {
    background-color: #0f1a2e;
  }
  
  .panel {
    padding: 0 20px;
    background-color: #f1f1f1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0 0 6px 6px;
  }
  
  .panel p {
    padding: 15px 0;
    font-size: 0.95rem;
    color: #333;
  }

  /* === GALLERY SECTION === */
.gallery {
    padding: 80px 8%;
    background: #f4f4f4;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  
  .gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #061329;
  }
  
  .gallery p {
    max-width: 700px;
    margin: 0 auto 50px;
    color: grey;
    line-height: 1.6;
  }
  
  /* Gallery Grid */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
  }
  
  /* Lightbox styling */
  #lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  #lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.4s ease-in-out;
  }
  
  #lightbox .close {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  #lightbox .close:hover {
    color: #ffb400;
  }
  
  /* Animation */
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }
  
  /* === FADE-IN SCROLL ANIMATION === */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ===== STATS SECTION ===== */
.stats {
    background: #061329;
    color: #fff;
    padding: 100px 10%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  
  .stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
  }
  
  .stat-item {
    flex: 1 1 200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.4s ease, background 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  }
  
  .stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
  }
  
  .stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffcc00;
    margin-bottom: 10px;
  }
  
  .stat-item p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #ddd;
  }
  
  /* Fade-in animation */
  .fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  

  /* ===== ABOUT MAIN SECTION ===== */
.about-main {
    background:#061329;
    color: #fff;
    padding: 50px 3%;
    font-family: 'Poppins', sans-serif;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  
  .about-main .subtitle {
    text-align: center;
    color: #ffcc00;
    font-weight: 500;
    /* margin-bottom: 10px; */
  }
  
  .about-main h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    /* margin-bottom: 50px; */
  }
  
  .about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-image {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.03);
  }
  
  .about-content {
    flex: 1 1 500px;
  }
  
  .about-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
  }
  
  .about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ddd;
  }
  
  .about-socials {
    display: flex;
    gap: 20px;
    margin-top: 15px;
  }
  
  .about-socials a {
    color: whitesmoke;
    font-size: 1.2rem;
    transition: transform 0.3s, color 0.3s;
  }
  
  .about-socials a:hover {
    transform: scale(1.2);
    color: aliceblue;
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 992px) {
    .about-wrapper {
      flex-direction: column;
      text-align: center;
    }
  
    .about-content h4 {
      font-size: 1.6rem;
    }
  
    .about-content p {
      font-size: 1rem;
    }
  }
  



  /* === TESTIMONIALS SECTION === */
.testimonials {
    background: #061329; /* deep dark blue */
    color: #fff;
    padding: 80px 8%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  
  .testimonials .section-subtitle {
    color: #ffcc00;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .testimonials .section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .testimonials .section-description {
    max-width: 700px;
    margin: 0 auto 60px auto;
    color: #ccc;
    line-height: 1.7;
    font-size: 1rem;
  }
  
  .testimony-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .test {
    background: whitesmoke;
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  .test:hover {
    transform: translateY(-10px);
    background: aliceblue;
  }
  
  .test i {
    font-size: 3rem;
    color: #061329;
    margin-bottom: 15px;
  }
  
  .test p {
    font-size: 1rem;
    color: #061329;
    line-height: 1.7;
    margin-bottom: 25px;
  }
  
  .client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* border: 2px solid #061329; */
    object-fit: cover;
  }
  
  .client-info h4 {
    font-weight: 600;
    color: #061329;
    font-size: 1rem;
    text-transform: capitalize;
  }

  /* === TESTIMONIAL SLIDER === */
.testimony-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .test {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
  
  .test.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
  }
  
  .slider-dots {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .slider-dots .dot {
    width: 12px;
    height: 12px;
    background: #444;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.5s;
  }
  
  .slider-dots .dot.active {
    background: white;
  }
  




  /* === FOOTER MULTI SECTION === */
.footer-multi {
    background: #061329; /* deep blue dark theme */
    color: #fff;
    padding: 60px 8% 20px 8%;
    font-family: 'Poppins', sans-serif;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-about h4,
  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .footer-about p,
  .footer-contact p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ddd;
  }
  
  .footer-about input[type="email"] {
    width: 80%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
    outline: none;
  }
  
  .footer-about button {
    background: #ffcc00;
    color: #0a1f44;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .footer-about button:hover {
    background: #f4b400;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 12px;
  }
  
  .footer-links ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover {
    color: #ffcc00;
  }
  
  .footer-contact .socials {
    margin-top: 15px;
  }
  
  .footer-contact .socials a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .footer-contact .socials a:hover {
    color: #ffcc00;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #bbb;
    border-top: 1px solid #1a355c;
    padding-top: 20px;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 992px) {
    #about { padding: 60px 5%; }
  
    .intro-container { flex-direction: column; text-align: center; }
    .about-left h3 {
      font-size: 1.8rem;
      border-right: none;
      padding-right: 0;
      text-align: center;

      /* border-bottom: 3px solid #ffb400; */
      display: inline-block;
    }
    .about-right { font-size: 0.95rem; line-height: 1.7; }
  
    .about-image img { height: 50vh; }
    .about-image h4 { font-size: 1.5rem; }
    .about-image p { font-size: 0.95rem; line-height: 1.6; }
  }
  
  /* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .nav-links {
      position: absolute;
      top: 70px;
      right: 8%;
      flex-direction: column;
      background: #061329;
      width: 220px;
      border-radius: 8px;
      padding: 20px 0;
      display: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin: 10px 0;
      text-align: center;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      padding: 10px 5%;
    }
  
    .nav-links {
      width: 100%;
      right: 0;
    }
  
    .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center; /* ensures text aligns center */
      padding: 60px 20px; /* adds spacing */
    }
  
    .hero-content {
      padding: 0 20px;
      text-align: center;
    }
  
    .hero-content h1 {
      font-size: 1.8rem;
      margin-bottom: 10px;
    }
  
    .hero-content p {
      font-size: 0.95rem;
      margin-bottom: 20px;
    }
  
    .hero-content .btn {
      display: inline-block;
      margin: 0 auto; /* centers the button */
    }
  }
  
  @media (max-width: 480px) {
    .logo {
      font-size: 1.2rem;
    }
  
    .menu-toggle {
      font-size: 1.5rem;
    }
  
    .nav-links li a {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 600px) {
    .about-image img { height: 40vh; }
  }
  
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-about input[type="email"] {
    width: 100%;
  }
}

@media (max-width: 768px) {
    .testimonials {
      padding: 60px 5%;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .test {
      padding: 30px 20px;
    }
  }

  /* Responsive adjustments */
@media (max-width: 768px) {
    .services {
      padding: 80px 6%;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .service-card {
      padding: 30px 20px;
    }
  }

  @media (max-width: 768px) {
    .about-main {
      padding: 60px 5%;
    }
  
    .about-main h2 {
      font-size: 2rem;
    }
  
    /* Center social icons */
    .about-socials {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px; /* space between icons */
      margin-top: 20px;
    }
  
    .about-socials a {
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      text-decoration: none;
    }
  }