* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: sans-serif !important;
}


body {
  font-family:sans-serif !important;
  background-color:white;
  color:#03042c;
 
}
/* page close button */
.close-btn {
  margin-top: 50px;
  position: fixed;   /* fixed to the screen, not header */
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: black;
  background-color: whitesmoke;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  z-index: 9999;  /* makes sure it stays on top */
}
 
/* Sticky Header */
header {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 999;
  /* background-color: #03042c; */
    background: radial-gradient(circle, #1a3d8f 0%,#03042c 100%);

}
.navbar {
  display: flex;
  justify-content: space-between; /* logo left, toggler right */
  align-items: center;
  padding: 4px 16px !important;
  min-height: 56px;
}

.navbar-brand {
  padding-left: 8px;
}



.navbar-brand img {
  height: 60x;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
}



/* Navbar link styles */
.navbar-nav .nav-link {
  margin-left: 10px;
  margin-right: 20px;
  padding: 8px 12px;
  color: white !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #00aaff !important;
}

/* This is key: each section scrolls cleanly under the sticky header */
section {
  scroll-margin-top: 120px; /* Adjust depending on header height */
  padding-top: 0px;
  padding-bottom: 0px;
}

section {
  padding: 40px;
  text-align: center;
   background-color: white;
}

/* Hero Section */
.slider-container {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      overflow-x: hidden;
    }

    .slider-wrapper {
      display: flex;
      width: 600%; /* doubled for infinite loop */
      height: 100%;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide {
      width: 16.666%; /* 6 slides in total */
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 5%;
    }

    .slide-1 {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .slide-2 {
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    }

    .slide-3 {
      background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    }

    .slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      z-index: 1;
    }

    .slide-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 1000px;
      animation: slideUp 1s ease-out;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .slide-content h1 {
  white-space: nowrap;   /* prevent line break */
  font-size: 3rem;       /* adjust size */
  overflow: hidden;      /* avoid overflow issues */
  text-overflow: ellipsis;
  color: white;
  font-weight: bold;
  margin-top: 40px;
}


    .slide-content .subtitle {
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      font-weight: 300;
      margin-bottom: 1rem;
      opacity: 0.9;
    }

    .slide-content p {
      font-size: clamp(1rem, 2vw, 1.3rem);
      line-height: 1.6;
      margin-bottom: 1rem;
      opacity: 0.85;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-group {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .cta-btn {
      padding: 15px 35px;
      background: rgba(255, 255, 255, 0.15);
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
    }

    .cta-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s;
    }

    .cta-btn:hover::before {
      left: 100%;
    }

    .cta-btn:hover {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

    .primary-cta {
      background: rgba(255, 255, 255, 0.9) !important;
      color: #333 !important;
      border-color: transparent !important;
    }

    .primary-cta:hover {
      background: #fff !important;
      transform: translateY(-3px) scale(1.05);
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;                  /* reduced padding */
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  height: auto;                   /* let content decide height */
  min-height: 140px;              /* ensures balance */
  display: flex;
  flex-direction: column;
  justify-content: center;        /* center content vertically */
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 1.6rem;              /* smaller icons */
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.feature-card h3 {
  font-size: 1.2rem;                /* smaller heading */
  margin-bottom: 0.3rem;
}

.feature-card p {
  font-size: 1rem;              /* smaller text */
  line-height: 1.3;
  opacity: 0.8;
  margin: 0;
}

    .stats-bar {
      position: relative; /* changed from absolute */
      margin-top: 2rem;
      display: flex;
      gap: 3rem;
      background: rgba(255, 255, 255, 0.1);
      padding: 1rem 2rem;
      border-radius: 50px;
      backdrop-filter: blur(10px);
      justify-content: center;
    }

    .stat {
      text-align: center;
    }

    .stat-number {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
    }

    .stat-label {
      font-size: 1rem;
      opacity: 0.8;
      font-weight: bold;
    }
        .slider-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: black;
            font-size: 2rem;
            padding: 15px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border-radius: 50px;
            z-index: 10;
        }

        
        .arrow-left {
            left: 30px;
        }

        .arrow-right {
            right: 30px;
        }



/* courses-section */
.Services {
  scroll-margin-top: 40px;
  text-align: center;
  padding: 60px 20px;
  color: white;
}

.Services h2 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
  color: #007BFF;
}

/* Cards */
.cards-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  margin-left: 3px;
}

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 340px;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.course-content {
  padding: 20px;
}

.course-title {
  color: black !important;
}

.course-rating {
  color: gold !important; 
}

.course-rating span {
  color: #333 !important;
}

/* Hover effect */
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Heading text animation effect */
.heading-effect {
  font-size: 2.2rem;
  font-weight: bold;
 color: black;  
}

.enroll-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #007BFF;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.enroll-btn:hover {
  background: #0056b3;
}

.browse-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #28a745;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-top: 30px;
}

.browse-btn:hover {
  background: #1e7e34;
}

/* Initial state: hidden and slightly moved down */
.card {
  opacity: 0;
  transform: translateY(40px) scale(1); /* add scale for hover */
  transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.3s ease;
}

/* Animate class: visible and in place */
.card.animate {
  opacity: 1;
  transform: translateY(0) scale(1); /* keep scale 1 for hover */
}

/* Hover effect */
.card:hover {
  transform: translateY(-8px) scale(1.03); /* combines with animate */
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
}



  /* services-section */
.services-heading {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
  color: #007BFF;
}
.services-section {
  /* background: #071a3a;  */
  background: radial-gradient(circle, #1a3d8f 0%,#03042c 100%);
  padding: 80px 20px;
  position: relative;
  color: #fff;
  overflow: hidden;
  font-family: sans-serif;
}

/* Subtle square grid background */
.services-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* Service Item Layout */
.service-item {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  
  padding: 20px 0;
}

.service-text {
  transform: translateX(-50px); /* slide in from left */
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.service-icon {
  transform: translateX(50px); /* slide in from right */
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Animate class: visible & settled */
.service-item.animate {
  opacity: 1;
}

.service-item.animate .service-text {
  transform: translateX(0);
}

.service-item.animate .service-icon {
  transform: translateX(0);
}

/* Floating image animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.service-item.animate .service-icon img {
  animation: float 3s ease-in-out infinite;
}


/* Punching background behind image */
.service-icon {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  z-index: -1;
}

/* Text Side */
.service-text {
  flex: 1;
  max-width: 520px;
}

.service-text h3 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  font-weight: 350;
  margin-left: 40px;
  font-weight: bold;
}

.service-text p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 30px;
  line-height: 1.6;
  margin-left: 40px;
}

.service-text a {
  text-align: center;
}

.service-btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-left: 40px;
  width: 400px;
}

.service-btn:hover {
  background: linear-gradient(90deg, #00f2fe, #4facfe);
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* Image Side */
.service-icon img {
  width: 380px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  margin-left: 140px;
  margin-right: 40px !important;
  object-fit: contain;
  margin-bottom: 20px;
  margin-top: 0px;
}
.service-item:nth-child(3) .service-icon img {
  margin-left: 100px !important;   /* push it right */
  margin-right: 0% !important;
  
}


/* stats-section */
  .stats-section {
  position: relative;
  /* background: #071a3a; */
  background: radial-gradient(circle, #1a3d8f 0%,#03042c 100%);
  padding: 60px 20px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

/* Grid background */
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  mask-image: radial-gradient(circle 150px at var(--x,50%) var(--y,50%), transparent 70%, black 100%);
  -webkit-mask-image: radial-gradient(circle 150px at var(--x,50%) var(--y,50%), transparent 70%, black 100%);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.flash-text {
  font-size: 48px;        
  font-weight: bold;
  color: white;          
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 
    0 0 6px rgba(202, 213, 238, 0.6),   /* softer small glow */
    0 0 12px rgba(219, 221, 224, 0.4);  /* lighter outer glow */
}


.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  z-index: 2; /* stays above grid */
  margin: 40px 0;
  margin-bottom: 0px;
}
.stat-box {
  position: relative;
  padding: 20px;
  z-index: 2; /* stay above grid */
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  /* transform: translate(-50%, -50%); */
  width: 220px;   /* size of punch */
  height: 220px;
  border-radius: 50%;
  /* background: #071a3a;  */
  z-index: -1; /* sits between grid and text */
}

.stat-box h3 {
  font-size: 80px;
  /* color: rgb(255, 187, 0); */
  color: white;
  margin: 0;
  font-weight: bold;
}

.stat-box p {
  font-size: medium;
  color: white;
  margin-top: 5px;
  font-size: 20px;
  font-weight: bold;
}




/* about-section */
.about-section {
    margin-top: 0px;
    padding-top: 0px;
    background-color: transparent;
}
.about-image {
  max-width: 350px;
  width: 100%;             /* responsive: shrinks on small screens */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
/* Subheading small text */
.section-subtitle {
  font-size: 1rem;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: bold;
}

/* Main heading */
.about-title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.3;
}

.about-title span {
  color: #ff4b5c; /* Highlight color */
}
/* Paragraph */
.about-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}
/* Initial hidden state */
.about-image {
  opacity: 0;
  transform: translateX(-100px); /* slide from left */
  transition: transform 0.8s ease, opacity 0.8s ease;
          background: radial-gradient(circle, #1a3d8f 0%,#03042c 100%);

}

/* Right content */
.about-title,
.about-text,
.section-subtitle {
  opacity: 0;
  transform: translateX(100px); /* slide from right */
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Animate class: visible */
.show-left {
  opacity: 1;
  transform: translateX(0);
}

/* Right content */
.show-right {
  opacity: 1;
  transform: translateX(0);
}

/* Floating animation for image */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.floating.show-left {
  animation: float 3s ease-in-out infinite;
}

/* ===== Testimonials Section Background ===== */
.testimonials-section {
  background: linear-gradient(135deg, #f0f4ff, #e8f0fe);
  padding: 80px 20px;
  scroll-margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.testimonials-section h2 {
  font-weight: bold;
  margin-bottom: 30px;
  color: #007BFF;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(32, 201, 151, 0.15);
  border-radius: 50%;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(102, 126, 234, 0.15);
  border-radius: 50%;
  z-index: 0;
  animation: float 7s ease-in-out infinite alternate;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* ===== Container ===== */
.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1; /* above floating elements */
}

/* ===== Intro Section ===== */
.testimonials-intro {
  flex: 1;
  min-width: 300px;
  text-align: center;   /* ✅ center align text */
  margin: 0 auto;       /* ✅ center block */
}

.testimonials-intro h3 {
  
  font-weight: bold;
  margin-bottom: 15px;
  
}

.testimonials-intro p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 800px;     /* ✅ keep paragraph readable */
  margin-left: auto;    /* ✅ center horizontally */
  margin-right: auto;
}


/* ===== Testimonial Card ===== */
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* Avatar initials */
.monologo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #20c997);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  margin: 0 auto 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Text inside */
.testimonial-text {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.5;
  position: relative;
  font-style: italic;
}

.testimonial-text::before {
  content: "“";
  font-size: 2rem;
  color: #667eea;
  position: absolute;
  left: -10px;
  top: -10px;
}

/* Reviewer Name & Role */
.testimonial-card h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 8px 0 2px 0;
  color: #071a3a;
}

.role {
  font-size: 14px;
  color: #777;
}

/* Rating */
.testimonial-rating {
  font-size: 16px;
  color: gold;
  margin-bottom: 10px;
}


/* ===== Swiper Navigation ===== */
.swiper-button-next,
.swiper-button-prev {
  color: #20c997;
}

.swiper-pagination-bullet-active {
  background-color: #20c997 !important;
}

/* Remove arrows completely */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}


/* get-in-touch-section */
.get-in-touch {
  background: radial-gradient(circle, #6e1a8f 0%,#2a0130 100%);
  padding: 25px 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 40px auto;
  color: white;
  font-family: Arial, sans-serif;
  opacity: 0;
  transform: translateY(-50px); /* start above */
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.get-in-touch.animate {
  opacity: 1;
  transform: translateY(0);
}
.touch-item {
  text-align: center;
}

.touch-item p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.touch-item h3 {
  margin: 5px 0 0;
  font-size: 1.3rem;
  font-weight: bold;
}

.touch-or {
  background: white;
  color: #20c997;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}


/* tieup section */
    .tieup-section {
      position: relative;
      width: 100%;
      /* background: #03042c; */
        background: radial-gradient(circle, #1a3d8f 0%,#03042c 100%);

      color: white;
      padding: 60px 40px 120px; /* enough space so text doesn’t clash with logos */
      display: flex;
      justify-content: space-between;
      align-items: center;
      overflow: hidden;
      font-family: sans-serif !important;
    }
    .tieup-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 50px 50px;
      pointer-events: none;
    }

    .tieup-content {
      flex: 1;
      max-width: 50%;
      position: relative; 
      padding-right: 20px; 
    }
    

    .tieup-content h2 {
      font-size: 32px;
      margin-bottom: 20px;
      margin-left: 40px;
      font-weight: bold;
    }

    .tieup-content p {
      font-size: 18px;
      line-height: 1.6;
        margin-left: 40px;
    }

    .tieup-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
        margin-right: 40px;
    }

    .tieup-image img {
      max-width: 500px;
      border-radius: 12px;
    }
/* Initial hidden states */
.tieup-content,
.tieup-image {
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Slide from top for content */
.tieup-content {
  transform: translateY(-50px);
}

/* Slide from bottom for image */
.tieup-image {
  transform: translateY(50px);
}

/* Animate classes: visible and settled */
.tieup-content.show {
  opacity: 1;
  transform: translateY(0);
}

.tieup-image.show {
  opacity: 1;
  transform: translateY(0);
}

    /* Floating logo card */
    .logo-card {
      position: relative;
      width: 80%;
      margin: -80px auto 0 auto; /* pulls it up overlapping the navy card */
      background: #fff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.25);
      z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 
              0 0 20px rgba(0, 150, 255, 0.4); /* shadow + glow */
              transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-card:hover {
  transform: translateY(-8px) scale(1.02); /* slight lift and scale */
  box-shadow: 0 12px 28px rgba(0,0,0,0.25),
              0 0 30px rgba(0,150,255,0.5); /* stronger glow */
}

    .swiper {
      width: 100%;
    }
    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
    height: 100px;
    transition: 0.3s;
    width: 200px;
  }

  .swiper-slide img:hover {
    transform: scale(1.1);
  }


    

/* form-section */
    .contact-section {
      position: relative;
      background: transparent; /* navy blue base */
      color: #fff;
      display: flex;
      padding: 60px,20px;
      justify-content: center;
      align-items: center;
      gap: 40px;
      overflow: hidden;
    }

    .left-section,
    .right-section {
      flex: 1;
      position: relative;
      z-index: 2; /* above background lines */
    }

    .left-section {
      display: flex;
      justify-content: start;
      align-items: center;
    }

    .left-section img {
      max-width: 600px;
      height: 400px;
      border-radius: 12px;
      /* If your image has a white background and you want to mask it,
         use a PNG with transparency or an SVG. CSS can't reliably remove
         white from raster images. */
      background: transparent;
    }

    .right-section {
      background: #fff;
      color: #333;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      width: 600px;
      height: auto;
      margin-right: 60px;
      margin-left: 0px;

    }

    .right-section h2 {
      margin-bottom: 20px;
      font-size: 22px;
      color: #071a3a;
      font-weight: bold;
    }

    .highlight {
      color: #0066ff;
    }

    .right-section form input,
    .right-section form select,
    .right-section form textarea {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
    }

    .right-section form button {
      background: #0066ff;
      color: #fff;
      border: none;
      padding: 12px 20px;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
      margin: 5px;
      width: 400px;
    }

    .right-section form button:hover {
      background: #0044cc;
    }

    .btn-cancel {
      background: #ccc;
      color: #333;
    }

    .hidden {
      display: none;
    }

    /* Slide-in base state */
.left-section,
.right-section {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

/* Left image starts from left */
.left-section {
  transform: translateX(-120px);
}

/* Right form starts from top */
.right-section {
  transform: translateY(-120px);
}

/* When visible */
.left-section.show {
  opacity: 1;
  transform: translateX(0);
}
.right-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* Submit Button Glow + Pop */
.right-section form button {
  animation: glowPop 2s infinite ease-in-out;
}

@keyframes glowPop {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.6), 0 0 20px rgba(0, 102, 255, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 102, 255, 1), 0 0 50px rgba(0, 102, 255, 0.6);
    transform: scale(1.07);
  }
}

 




/* footer-section */
.footer {
  /* background-color: #03042c; */
          background: radial-gradient(circle, #1a3d8f 0%,#03042c 100%);

  color: white;
  padding: 40px 0;
  font-family: Arial, sans-serif;
  scroll-margin-top: 100px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
}

.footer-left {
  flex: 1;
  min-width: 250px;
  text-align:start;
}

.footer-right {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  margin-left: 40px;
}

.footer-logo {
  width: 150px;
}

.footer p {
  color: #ccc;
  margin: 15px 0;
  line-height: 1.5;
}

.footer h3 {
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #00b894;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px; /* Added padding for breathing room */
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Nice separation line */
  font-size: 14px;
  color: #fff;
  flex-wrap: wrap; /* Responsive stacking if needed */
  margin-top: 50px;
}

.footer-bottom-left {
  margin-bottom: 5px;
  margin-top: 30px;
}
.footer-bottom-right {
  margin-top: 30px;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom-left a {
  color: #00d1b2;
  text-decoration: none;
}

.footer-bottom-left a:hover {
  text-decoration: underline;
}






/* Responsive Design */
/* footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    margin: 0;
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    margin: 10px 0;
  }

  .social-links {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .testimonials-container {
    flex-direction: column;
  }
  .testimonials-intro,
  .testimonials-slider {
    flex: 1 1 100%;
  }
}


/* Mobile view fix */
@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;   /* stack cards */
    align-items: center;      /* center align */
    padding: 5px;
    margin-top: 20px;
  }

  .card {
    width: 95%;              /* make each card full width */
    margin-bottom: 20px; 
        /* spacing between cards */
  }

  .card img {
    height: auto;            /* let images resize properly */
  }
}
/* navbar */
@media (max-width: 767.98px){
  .navbar .container-fluid{ display: flex; align-items: center; }
  .navbar-brand{ margin-right: 0; flex: 0 0 auto; }
  .navbar-toggler{ margin-left: auto; } /* pushes to right edge */
}

/* Mobile view fix for Get in Touch section */
@media (max-width: 768px) {
  .get-in-touch {
    flex-direction: column;   /* stack vertically */
    gap: 20px;                /* space between items */
    padding: 20px;
  }

  .touch-or {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .touch-item h3 {
    font-size: 1.1rem; /* slightly smaller for mobile */
  }
}
@media (max-width: 768px) {
  /* Make layout stack vertically */
  .about-section {
    text-align: center; 
    padding: 0 10px; /* just small breathing space */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes content evenly */
    min-height: 100vh; /* full height for equal spacing */
  }

  /* Bigger, centered image */
  .about-image {
    width: 90% !important;         /* take most of the width */
    max-width: 400px !important;   /* prevent too big */
    margin: 0 auto 20px auto;      /* center image, add space below */
    display: block;
    padding: 0; /* reset wrong padding */
  }

.section-subtitle,
  .about-title {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  /* Paragraph aligned at the bottom */
  .about-text {
    text-align: justify;   /* clean edge-to-edge look */
    margin-top: auto;      /* pushes it down */
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

  

@media (max-width: 768px) {
  .tieup-section {
    flex-direction: column;   /* stack vertically */
    text-align: center;
    padding: 40px 20px 120px; /* reduce padding */
  }

  .tieup-content {
    max-width: 100%;
    padding: 0; 
    margin: 0 auto 20px auto; /* center block with spacing */
  }

  .tieup-content h2 {
    font-size: 24px;          /* smaller heading */
    margin: 0 0 15px 0;       /* reset side margins */
  }

  .tieup-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;           /* remove side margin */
    max-width: 90%;
  }

  .tieup-image {
    margin: 0 auto 20px auto; /* center image */
  }

  .tieup-image img {
    max-width: 90%;
    height: auto;
  }

  .logo-card {
    width: 95%;
    margin: -40px auto 0 auto; /* slight overlap */
    padding: 20px;
  }

  /* Disable animations on mobile for clean layout */
  .tieup-content,
  .tieup-image {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .swiper-slide {
    display: flex;
    justify-content: center !important; /* force center */
    align-items: center;
    text-align: center;
  }

  .swiper-slide img {
    max-width: 80%;   /* scale down neatly */
    height: auto;
    margin: 0 auto;   /* center horizontally */
    display: block;
  }
}

    @media (max-width: 768px) {
  .contact-section {
    flex-direction: column;   /* stack items vertically */
    padding: 40px 20px;
  }

  .left-section {
    display: none;   /* hide image */
  }

  .right-section {
    width: 100%;      /* take full width */
    max-width: 400px; /* limit for neatness */
    margin: 0 auto;   /* center horizontally */
    padding: 20px;
  }

  .right-section form button {
    width: 100%;       /* full width inside form */
    max-width: 250px;  /* not too wide */
    display: block;
    margin: 15px auto; /* center button */
  }
}

@media (max-width: 768px) {
  .slider-container {
    height: auto; /* allow content to grow naturally */
  }

  .slide {
    padding: 20px; /* smaller padding */
    flex-direction: column; /* stack content */
    text-align: center;
  }

  .slide-content {
    max-width: 100%;
    padding: 10px;
    margin-top: 40px;
  }

  .slide-content h1 {
    font-size: 1.8rem;   /* smaller heading */
    white-space: normal; /* allow wrapping */
    margin-top: 20px;
  }

  .slide-content .subtitle {
    font-size: 1rem;  /* smaller subtitle */
  }

  .slide-content p {
    font-size: 0.9rem; 
    line-height: 1.4;
    padding: 0 10px;
  }

  .cta-group {
    flex-direction: column;
    gap: 10px;
  }

  .cta-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    width: 80%;          /* fit within screen */
    margin: 0 auto;
  }

  .features {
    grid-template-columns: 1fr; /* stack cards */
    gap: 1rem;
  }

  .feature-card {
    min-height: auto; /* let content decide height */
  }

  .stats-bar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
  }

  .slider-arrows {
    display: none; /* hide arrows on mobile */
  }
}

@media (max-width: 768px) {
  .services-container {
    gap: 40px; /* more spacing between items */
  }

  .service-item {
    flex-direction: column;       /* stack text and image */
    text-align: center;           /* center align text */
    gap: 20px;
  }

  .service-text {
    margin: 0 auto;
    max-width: 100%;
    transform: translateX(0); /* remove desktop animation offset */
  }

  .service-text h3 {
    font-size: 1.8rem;
    margin: 10px 0;
    margin-left: 0; /* reset */
  }

  .service-text p {
    font-size: 1rem;
    margin: 0 auto 20px auto;
    line-height: 1.5;
    margin-left: 0; /* reset */
    padding: 0 15px;
  }

  .service-btn {
    width: 90%;            /* full width button */
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  .service-icon {
    margin: 0 auto;
  }

  .service-icon img {
    width: 90%;            
    height: auto;
    margin: 0 auto;
    max-width: 300px;
  }

  
  .service-item:nth-child(3) .service-icon img {
    margin: 0 auto !important;
  }
   /* .service-icon {
    display: none;
  } */
}
@media (max-width: 768px) {
  .flash-text {
    font-size: 28px;   /* smaller heading */
    line-height: 1.3;
    padding: 0 10px;
  }

  .stats {
    gap: 20px;
    margin: 20px 0;
  }

  .stat-box h3 {
    font-size: 40px;   /* reduce number size */
  }

  .stat-box p {
    font-size: 14px;   /* smaller label */
  }

  .stat-box::before {
    width: 150px;  /* shrink circular glow */
    height: 150px;
  }
}
