  
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #fff;
    }

    /* Section styling */
    .mission-section {
      padding: 100px 0;
      align-items: center;
      overflow: hidden;
    }

    .text-orange {
      color: #0B5ED7;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 15px;
    }

    h2 {
      font-size: 42px;
      font-weight: 700;
      color: #1b1b1b;
      margin-bottom: 20px;
    }

    p {
      color: #4b4b4b;
      font-size: 16px;
      line-height: 1.7;
    }

    .check-icon {
      color: #0B5ED7;
      font-size: 22px;
      margin-right: 10px;
    }

    .btn-learn {
      background-color: #0B5ED7;
      color: #fff;
      font-weight: 600;
      padding: 12px 30px;
      border-radius: 30px;
      transition: 0.3s ease;
      text-decoration: none;
    }

    .btn-learn:hover {
      background-color: #094AAC;
      color: #fff;
      transform: translateY(-2px);
    }

    .experience-text {
      color: #0B5ED7;
      font-weight: 600;
      font-size: 18px;
      margin-left: 10px;
    }

    /* Image Stack */
    .image-stack {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .image-stack img {
      border-radius: 15px;
      transition: all 0.8s ease;
    }

    .main-img {
      width: 100%;
      max-width: 520px; /* Increased main image size */
     
      animation: fadeInLeft 1s ease forwards;
      opacity: 0;
    }

    .overlay-img {
      position: absolute;
      top: 60px;
      right: 60px;
      width: 50%;
      max-width: 250px;
      border: 5px solid #fff;
      box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
      animation: fadeInUp 1.2s ease forwards;
      animation-delay: 0.5s;
      opacity: 0;
    }

    /* Dotted decoration */
    .dots {
      position: absolute;
      bottom: -30px;
      left: -40px;
      width: 120px;
      opacity: 0.2;
      z-index: -1;
    }

    /* Animations */
    @keyframes fadeInLeft {
      0% { opacity: 0; transform: translateX(-80px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(80px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .main-img {
        max-width: 460px;
      }

      .overlay-img {
        top: 40px;
        right: 30px;
        width: 60%;
        max-width: 200px;
      }

      h2 {
        font-size: 34px;
      }
    }

    @media (max-width: 768px) {
      .mission-section {
        padding: 60px 5px; /* Adds side padding on small screens */
      }

      .main-img {
        width: 95%;
        max-width: 420px;
      }

      .overlay-img {
        top: 30px;
        right: 20px;
        width: 65%;
        max-width: 180px;
      }

      h2 {
        font-size: 30px;
      }

      p {
        font-size: 15px;
      }
    }

    @media (max-width: 576px) {
      .mission-section {
        padding: 50px 5px; /* Ensures 5px left/right padding */
      }

      .main-img {
        width: 100%;
        max-width: 380px;
      }

      .overlay-img {
        top: 25px;
        right: 15px;
        width: 70%;
        max-width: 160px;
      }
    }


    /* ------------------------2nd section */
 /* ===== Hero Section ===== */
    .hero-section {
      position: relative;
      background-image: url('./images/video-bg.jpg'); /* replace this */
      background-size: cover;
      background-position: center;
      height: 70vh;
      display: flex;
      align-items: center;
      color: #fff;
    }

    /* Dark overlay */
    .hero-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(10, 10, 25, 0.322);
      z-index: 1;
    }

    /* Content wrapper */
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }

    .hero-section h1 {
     font-weight: bold;
    }

    

    .hero-section p {
      font-size: 16px;
      margin-top: 20px;
      color: #ddd;
    }

    .btn-discover {
      background-color: #0B5ED7;
      color: #fff;
      font-weight: 600;
      padding: 14px 35px;
      border-radius: 35px;
      font-size: 17px;
      margin-top: 30px;
      text-decoration: none;
      transition: 0.3s ease;
      display: inline-block;
    }

    .btn-discover:hover {
      background-color: #094AAC;
      color: #fff;
    }

    /* Play Button and Text */
    .play-btn {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      z-index: 2;
    }

    .play-circle {
      width: 110px;
      height: 110px;
      background-color: #0B5ED7;
      border-radius: 50%;
      position: relative;
      box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 2s infinite;
    }

    .play-circle i {
      color: #fff;
      font-size: 36px;
    }

    .play-btn p {
      color: #0B5ED7;
      font-family: 'Dancing Script', cursive;
      font-size: 26px;
      margin-top: 15px;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(0, 110, 255, 0.4);
      }
      70% {
        box-shadow: 0 0 0 25px rgba(255, 165, 0, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-section {
        height: auto;
        padding: 80px 10px;
        text-align: center;
      }
      .hero-content h1 {
        font-size: 36px;
      }
      .play-btn {
        margin-top: 40px;
      }
    }


     /* ----------------------------3rd section */
    .stats-section {
  background: #fff;
  border-radius: 1rem;
  padding: 40px 10px;
  margin: 60px auto;
  max-width: 1200px;
  box-shadow: rgba(50, 50, 93, 0.10) 0px 2px 8px;
}

/* Stat box */
.stat-box {
  background: #ffffff;
  padding: 18px 10px;
  border-radius: 14px;
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

/* Icons */
.stat-icon {
  color: #0B5ED7;
  font-size: 38px;
  margin-bottom: 8px;
}

/* Numbers */
.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #0A0A0A;
}

/* Labels */
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #0B5ED7;
  text-transform: uppercase;
}

/* ✅ Desktop Only Divider */
@media(min-width: 992px) {
  .stat-box {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background: #e6e6e6;
  }
}

/* ✅ Tablet + Mobile — Better Layout */
@media(max-width: 992px) {
  .stat-box:not(:last-child)::after {
    display: none;
  }
}

@media(max-width: 768px) {
  .stat-box {
    width: 48%;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .stat-icon {
    font-size: 34px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }
}


    /* ----------------------------------section 4 */


        .service-section {
      padding: 80px 0;
    }

    .service-title {
      font-weight: 700;
      color: #212529;
      text-align: center;
      margin-bottom: 50px;
    }

    .service-card {
      background: #fff;
      border: none;
      border-radius: 12px;
      height: 500px;
      overflow: hidden;
     box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .service-img {
      position: relative;
    }

    .service-img img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .icon-box {
      position: absolute;
      bottom: 0;
      right: 0;
      background-color: #0B5ED7;
      color: #fff;
      font-size: 30px;
      padding: 15px;
      border-top-left-radius: 10px;
    }

    .service-content {
      padding: 25px;
      text-align: left;
    }

    .service-content h5 {
      font-weight: 700;
      color: #212529;
      margin-bottom: 10px;
    }

    .service-content p {
      color: #6c757d;
      font-size: 15px;
      line-height: 1.6;
    }

    .read-more {
      margin-top: 15px;
      display: inline-block;
      color: #212529;
      font-weight: 600;
      text-decoration: none;
      border-top: 1px solid #ddd;
      padding-top: 12px;
      transition: color 0.3s ease;
    }

    .read-more:hover {
      color: #0B5ED7;
    }

    /* Animation (fade-up) */
    .fade-up {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease-out;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
/* ---------------------------------------------------section 5 */
  /* Section styling */
    .why-choose-section {
      padding: 80px 0;
      background: #05071A;
      position: relative;
      overflow: hidden;
      background-image: url('./images/choose-shape.png');
    }

    .why-choose-section h5 {
      color: #0B5ED7;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .why-choose-section h2 {
      font-weight: 700;
      font-size: 42px;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 20px;
    }

    .why-choose-section p {
      color: #B3B3B3;
      font-size: 16px;
      margin-bottom: 40px;
    }

    /* Feature boxes */
    .feature-box {
      background: #0A0A23;
      padding: 35px 25px;
      border-radius: 12px;
      text-align: center;
      transition: all 0.4s ease;
      height: 100%;
    }

    .feature-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0, 81, 255, 0.25);
    }

    .feature-box i {
      font-size: 36px;
      color: #0B5ED7;
      margin-bottom: 10px;
      display: block;
    }

    .feature-box h4 {
      font-weight: 600;
      color: #fff;
      font-size: 18px;
      margin-top: 10px;
    }

    /* Image box styling */
    .img-box {
      position: relative;
      border: 2px solid #0B5ED7;
      border-radius: 14px;
      overflow: hidden;
      animation: fadeInRight 1.5s ease;
      max-width: 500px;
      margin: 0 auto;
    }

    .img-box img {
      width: 100%;
      display: block;
      border-radius: 12px;
      transition: transform 0.6s ease;
    }

    .img-box:hover img {
      transform: scale(1.05) rotate(1deg);
    }

    @keyframes fadeInRight {
      0% {
        opacity: 0;
        transform: translateX(60px);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .why-choose-section {
        padding: 60px 0;
      }

      .why-choose-section h2 {
        font-size: 32px;
      }

      .why-choose-section p {
        font-size: 15px;
      }

      .img-box {
        margin-top: 40px;
        max-width: 100%;
      }
    }

    @media (max-width: 576px) {
      .feature-box {
        padding: 25px 20px;
      }
      .feature-box i {
        font-size: 30px;
      }
      .feature-box h4 {
        font-size: 16px;
      }
    }

    /* ------------------------------------section 6 */

     .faq-section {
      padding: 100px 0;
    }

    .faq-section h5 {
      color: #0B5ED7;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .faq-section h2 {
      font-weight: 700;
      font-size: 48px;
      color: #0A0A0A;
      margin-bottom: 40px;
    }

    .accordion-item {
      border: none;
      border-bottom: 1px solid #E0E0E0;
      border-radius: 0 !important;
    }

    .accordion-button {
      background-color: transparent;
      color: #0A0A0A;
      font-weight: 600;
      font-size: 18px;
      box-shadow: none;
      padding: 20px 0;
    }

    .accordion-button:not(.collapsed) {
      color: #0B5ED7;
      background-color: transparent;
      box-shadow: none;
    }

    .accordion-body {
      padding: 0 0 20px 0;
      color: #6C6C6C;
      font-size: 15px;
      line-height: 1.8;
    }

    .accordion-button::after {
      background-image: none;
      content: "\f068"; /* minus icon */
      font-family: "Bootstrap-icons";
      transition: transform 0.3s ease;
    }

    .accordion-button.collapsed::after {
      content: "\f067"; /* plus icon */
      transform: rotate(0deg);
    }

    .faq-image img {
      width: 100%;
      max-width: 500px;
      animation: fadeInLeft 1.3s ease;
    }

    @keyframes fadeInLeft {
      0% {
        opacity: 0;
        transform: translateX(-60px);
      }
      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @media (max-width: 992px) {
      .faq-section {
        padding: 70px 0;
      }
      .faq-section h2 {
        font-size: 36px;
      }
      .faq-image {
        text-align: center;
        margin-bottom: 40px;
      }
    }

    @media (max-width: 576px) {
      .accordion-button {
        font-size: 16px;
      }
    }

    /* ------------------------------------section 7 */
 
    /* --------------------------section 8 */
    /* ===== Testimonial Section ===== */
.testimonials {
  background: #05071A;
  padding: 100px 0;
  color: #F5F5F5;
  font-family: 'Poppins', sans-serif;
  position: relative;
  background-image: url('./images/choose-shape.png');
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 122, 0, 0.1), transparent 70%);
  pointer-events: none;
}

.heading {
  text-align: center;
  margin-bottom: 70px;
}

.heading h5 {
  color: #0B5ED7;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.heading h2 {
  font-size: 44px;
  font-weight: 700;
  color: #FFF;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.testimonial-card {
  background: #1A1A1A;
  padding: 40px 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.3);
  border-color: rgba(0, 21, 255, 0.6);
}

.highlight {
  background: linear-gradient(145deg, #0B5ED7 0%, #0B5ED7 100%);
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 122, 0, 0.4);
}

.quote-mark {
  font-size: 60px;
  font-weight: 700;
  color: #0B5ED7;
  opacity: 0.15;
  position: absolute;
  top: 25px;
  right: 35px;
}

.highlight .quote-mark {
  color: rgba(255, 255, 255, 0.2);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #D9D9D9;
  margin-bottom: 30px;
}

.highlight p {
  color: #FFF;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #0B5ED7;
  object-fit: cover;
}

.highlight .client-info img {
  border-color: #FFF;
}

.client-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
}

.client-info span {
  font-size: 14px;
  color: #B3B3B3;
}

/* Responsive */
@media (max-width: 768px) {
  .heading h2 {
    font-size: 32px;
  }
  .testimonial-card {
    padding: 30px 25px;
  }
}
/* ----------------------------section 9 */
.dreams-section {
  background-size: 200% 200%;
  animation: gradientMove 10s infinite alternate ease-in-out;
  position: relative;
  overflow: hidden;
}





/* Step Card Style */
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #00b4ff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: all 0.4s ease;
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.2rem;
  background: linear-gradient(90deg, rgba(0,180,255,0.1), rgba(0,180,255,0.2));
  opacity: 0;
  transition: 0.4s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.process-step:hover::before {
  opacity: 1;
}

/* Number Circle */
.step-number {
  background: linear-gradient(135deg, #00b4ff, #007bff);
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0,180,255,0.6);
}

/* Spin Animation */
.spin {
  animation: spin 6s linear infinite;
}

/* Glow Button */
.glow-button {
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: 0 0 25px rgba(0,180,255,0.5);
}
.glow-button::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,180,255,0.4) 10%, transparent 70%);
  top: -50%;
  left: -50%;
  transform: scale(0);
  animation: pulseRing 2.5s infinite ease-in-out;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  animation: tiltZoom 8s infinite ease-in-out alternate;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* =================== section 10 =================== */
  .custom-footer {
        background: #0F1A14 !important;
        color: #fff;
        padding: 60px 50px;
        border-radius: 0px !important;
        position: relative;
    }

    .footer-image {
        width: 250px;
        height: 250px;
        object-fit: cover;
        border-radius: 0 0 20px 0;
        margin-right: -40px;
        margin-left: -60px;
    }

    .footer-title {
        font-weight: bold;
        margin-bottom: 12px;
    }

    .footer-links a {
        display: block;
        font-size: 14px;
        color: #ffffff;
        text-decoration: none;
        margin-bottom: 6px;
        transition: 0.3s;
    }

    .footer-links a:hover {
        color: #fff;
    }

    .email-input {
        background: #dadada;
        border: none;
        border-radius: 50px 0 0 50px;
        padding: 12px 20px;
        color: #000000 !important;
        width: 55%;
    }

    .email-input::placeholder {
        color: #000000;
    }

    .subscribe-btn {
        background: #0B5ED7;
        border-radius: 0 50px 50px 0;
        border: none;
        padding: 12px 25px;
        font-weight: bold;
        color: #ffffff;
        cursor: pointer;
    }

    .footer-bottom {
        font-size: 13px;
        color: #ffffff;
        margin-top: 40px;
        border-top: 1px solid #094AAC;
        padding-top: 12px;
    }

    .social-icons a {
        color: #fff;
        margin-right: 12px;
        font-size: 16px;
        transition: 0.3s;
    }

    .social-icons a:hover {
        color: #ffd4cf;
    }

    

    .footer-floating-img {
    position: absolute;
    top: -120px; /* Pull image above footer */
    left: 50px; /* Move image slightly to the right */
    width: 320px;
    z-index: 10; /* Make sure image stays above footer */
}


/* ✅ Desktop Design (Already Good) */
.footer-floating-img {
    position: absolute;
    top: -120px;
    left: 50px;
    width: 320px;
    z-index: 10;
}

/* ✅ Mobile / Tablet Responsive Fix */
@media (max-width: 991px) {
    .footer-floating-img {
        position: static; /* remove overlap */
        width: 220px;
        display: block;
        margin: 0 auto -20px auto; /* center image above footer */
    }

    .custom-footer {
        padding: 80px 20px 40px 20px; /* reduce padding */
       
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
      
    }

    .social-icons a {
        margin: 0 8px;
    }

    .email-input {
        width: 100%;
        border-radius: 50px;
        margin-bottom: 10px;
    }

    .subscribe-btn {
        width: 100%;
        border-radius: 50px;
    }

    .footer-links {
        margin-bottom: 20px;
    }
}
/* --------------------------------------hero section */
/* ============================================================================== */
/* ============================================================================== */
/* ============================================================================== */

/* ============================================================================== */
 /* Slider container */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  height: 100vh;
  color: #fff;
  background-size: cover;
  background-position: center;
}

/* 🌑 Gradient Overlay - Left side extended further right */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    #05071A 0%,
    rgba(5, 7, 26, 0.97) 30%,
    rgba(5, 7, 26, 0.8) 55%,
    rgba(5, 7, 26, 0.5) 75%,
    rgba(5, 7, 26, 0.2) 90%,
    transparent 100%
  );
  z-index: 1;
}

/* Slightly reduce gradient coverage for laptops */
@media (max-width: 1200px) {
  .carousel-item::before {
    background: linear-gradient(
      to right,
      #05071A 0%,
      rgba(5, 7, 26, 0.95) 25%,
      rgba(5, 7, 26, 0.7) 50%,
      rgba(5, 7, 26, 0.35) 70%,
      transparent 90%
    );
  }
}

/* Mobile overlay: balanced and readable */
@media (max-width: 768px) {
  .carousel-item::before {
    background: linear-gradient(
      to right,
      #05071A 0%,
      rgba(5, 7, 26, 0.9) 40%,
      rgba(5, 7, 26, 0.5) 70%,
      transparent 100%
    );
  }
}

/* Caption */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  z-index: 2;
  max-width: 600px;
  text-decoration: none !important;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.carousel-caption p {
  margin-top: 20px;
  font-size: 1rem;
  color: #d1d1d1;
}

/* Buttons */
.hero-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 30px;
  margin-right: 15px;
  transition: 0.3s;
}

.btn-orange {
  background: linear-gradient(45deg, #094AAC, #0f1a2b);
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background: #094AAC;
}

.btn-white {
  background: #fff;
  color: #000;
}

.btn-white:hover {
  background: #e6e6e6;
}

/* Animation */
.carousel-item.active .carousel-caption h1,
.carousel-item.active .carousel-caption p,
.carousel-item.active .carousel-caption a {
  animation: fadeInUp 1s ease forwards;
  text-decoration: none !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Indicators */
.carousel-indicators [data-bs-target] {
  background-color: #0B5ED7;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ============================= */
/* RESPONSIVE DESIGN ADJUSTMENTS */
/* ============================= */

/* Large tablets and small laptops */
@media (max-width: 992px) {
  .carousel-caption {
    left: 8%;
    max-width: 500px;
  }

  .carousel-caption h1 {
    font-size: 2.3rem;
  }

  .carousel-caption p {
    font-size: 0.95rem;
  }

  .hero-btn {
    padding: 12px 28px;
  }
}

/* Tablets & Mobile landscape */
@media (max-width: 768px) {
  .carousel-caption {
    left: 7%;
    max-width: 90%;
    text-align: left;
  }

  .carousel-caption h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .carousel-caption p {
    font-size: 0.9rem;
    margin-top: 15px;
  }

  .hero-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    margin-top: 20px;
  }
}

/* Small mobile screens */
@media (max-width: 576px) {
  .carousel-caption {
    left: 5%;
    max-width: 90%;
  }

  .carousel-caption h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .carousel-caption p {
    font-size: 0.85rem;
  }

  .hero-btn {
    display: block;
    width: fit-content;
    margin-top: 15px;
    margin-right: 0;
  }
}



/* ============================= */
/* CUSTOM LEFT VERTICAL INDICATORS */
/* ============================= */

.carousel-indicators {
  position: absolute;
  top: 50%;
  left: 30px; /* adjust distance from edge */
  transform: translateY(-50%);
  flex-direction: column; /* make them vertical */
  gap: 10px;
  margin: 0;
  z-index: 3; /* above overlay */
  justify-content: center;
  align-items: flex-start;
}

.carousel-indicators [data-bs-target] {
  background-color: #0B5ED7;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.7;
  transition: all 0.3s ease;
  border: none;
}

.carousel-indicators [data-bs-target].active {
  opacity: 1;
  transform: scale(1.2);
}

/* Optional: make indicators white with orange active color */
.carousel-indicators [data-bs-target] {
  background-color: rgba(255, 255, 255, 0.6);
}
.carousel-indicators [data-bs-target].active {
  background-color: #0B5ED7;
}

/* Responsive: hide or reposition indicators on mobile */
@media (max-width: 768px) {
  .carousel-indicators {
    left: 15px;
    gap: 8px;
  }

  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
  }
}

/* ===== Fixed Right Side Form ===== */
.hero-form-wrapper {
  position: absolute;
  top: 60%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 20; /* Above slides & overlay */
  width: 450px;
 

}



.hero-form {
  /* background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px); */
  padding: 25px;
  border-radius: 12px;
  color: #fff;
  /* border: 1px solid rgba(255, 255, 255, 0.25); */
}

.hero-form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-form .form-control {
  border-radius: 8px;
  border: none;
  height: 45px;
}

.hero-form textarea.form-control {
  height: auto;
}

.hero-form .form-control:focus {
  box-shadow: none;
  border: 2px solid #0B5ED7;
}

/* ✅ Mobile Adjustments */
@media (max-width: 992px) {
  .hero-form-wrapper {
    top: auto;
    bottom: 5%;
    transform: translate(0);
    right: 50%;
    width: 90%;
    transform: translateX(50%);
  
  }
   .carousel-caption a{
    display: none;
  }
  .carousel-indicators{
    display: none;
  }
}

/* ✅ Make form visible below slider on mobile */
@media(max-width:768px) {

  /* Prevent slider from hiding the form */
  .hero-slider {
    overflow: visible !important;
    height: auto !important;
    padding-bottom: 100px; /* space for form */
  }

  .carousel-item {
    height: 70vh !important;
  }

  .hero-form-wrapper {
    position: relative !important;
    width: 100% !important;
    margin: 20px auto 0 !important;
    padding: 0 15px !important;
    z-index: 1000 !important;
    right: 0 !important;
    left: 0 !important;
    transform: none !important;
  }

.hero-form {
  max-width: 440px;
  margin: 0 auto;
  padding: 35px 28px;
  border-radius: 18px;
  /* background: linear-gradient(180deg, #ffffff 0%, #f9f9fb 100%);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 25px,
              rgba(0, 0, 0, 0.05) 0px 4px 10px inset; */
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .hero-form:hover {
  transform: translateY(-3px);
  box-shadow: rgba(9, 74, 172, 0.25) 0px 15px 30px;
} */

.hero-form h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #0f1a2b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}

.hero-form h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #094AAC, #42618f);
  margin: 10px auto 0;
  border-radius: 10px;
}

/* Input fields */
.hero-form .form-control {
  width: 100%;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  background: #f6f8fc;
  border: none;
  outline: none;
  color: #333;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease-in-out;
}

.hero-form .form-control::placeholder {
  color: #999;
  font-size: 14px;
}

/* focus + hover */
.hero-form .form-control:focus,
.hero-form .form-control:hover {
 background: #f6f8fc !important;
 
}

/* Dropdown styling */
.hero-form select.form-control {
  cursor: pointer;
}

/* Button */
.hero-btn.btn-orange {
  background: linear-gradient(45deg, #094AAC, #42618f);
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(9, 74, 172, 0.3);
}

.hero-btn.btn-orange:hover {
  background: linear-gradient(45deg, #0b58c4, #5b7ab8);
  box-shadow: 0 6px 16px rgba(9, 74, 172, 0.4);
  transform: translateY(-2px);
}

/* Smooth spacing for form groups */
.hero-form .mb-3 {
  margin-bottom: 18px;
}





}



/* ============================================================================== */
/* ============================================================================== */
/* ============================================================================== */

/* ============================================================================== */
/* ======================header */
/* ✅ Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 0;
  z-index: 99999;
  transition: 0.4s ease;
  background-color: rgb(255, 255, 255);
  backdrop-filter: blur(6px);
}

/* Menu Links */
.nav-menu ul {
  list-style: none;
  gap: 28px;
  margin: 0;
}

.nav-menu ul li a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
}

/* Hover Underline */
.nav-menu ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #0B5ED7;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: width 0.3s;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
  width: 100%;
}

/* Contact Button */
.btn-nav-contact {
  background: #0B5ED7;
  padding: 8px 18px;
  color: #fff !important;
  border-radius: 6px;
}
.btn-nav-contact:hover {
  background: #094aac;
}

/* ✅ Mobile Menu */
.mobile-toggle {
  display: none;
  font-size: 2.1rem;
  cursor: pointer;
  color: #fff;
  color:#094aac;
  font-weight: bold;
}
.close-menu {
  display: none;
}

@media(max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;  /* ✅ Full screen width */
    max-width: 260px; /* ✅ Sidebar width limit */
    height: 100vh;
    background: #0a0a0a;
    padding: 80px 20px;
    transition: 0.4s ease-in-out;
   
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 25px;
    text-align: left !important;
  }

  .nav-menu ul li a {
    color: #fff;
    font-size: 1.1rem;
  }

  .close-menu {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
  }

  .close-menu i {
    font-size: 1.8rem;
    color: #ffffff;
  }

  .mobile-toggle {
    display: block;
  }
}
@media(max-width: 992px) {
  .close-menu {
    display: block; /* ✅ Show only in mobile */
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
.contact .php-email-form select:focus {
  outline: none;
  border: none !important; /* add a custom focus border */
  box-shadow: none !important; /* subtle glow effect */
  transition: 0.2s ease;
}
.contact .php-email-form select  {
  color: rgb(206, 206, 206) !important;
}

.contact .php-email-form select .options  {
  color: rgb(0, 0, 0) !important;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form select,
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}