.student-enquiry {
  background: url('../img/bg/banner1.png') no-repeat center center;
  background-size: cover;
  padding: 80px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
.stu {
    color: #fff;
}

/* IMAGE */
.plane-box {
  flex: 1;
  display: flex;
  justify-content: center;
}

.plane-img {
  width: 480px;
  animation: fly 5s ease-in-out infinite alternate;
}

/* FORM BOX */
.form-box {
  flex: 1;
  max-width: 420px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent for readability */
  padding: 30px;
  border-radius: 20px;
}

.form-box h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
}

.form-box .yellow {
  color: #ffcc00;
}

/* FORM INPUTS */
.form-box input,
.form-box select {
  padding: 12px 15px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 15px;
  outline: none;
  width: 100%;
  margin-bottom: 15px;
}

.form-box input::placeholder {
  color: #e6e6e6;
}

/* ✅ SELECT DROPDOWN FIX */
.form-box select option {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 10px;
}

.form-box select option:hover {
  background-color: #ff9068;
  color: #fff;
}

/* BUTTON */
.form-box button {
  /* background: linear-gradient(45deg, #ff4b2b, #ff9068); */
  background: linear-gradient(135deg, #56ccf2, #2f80ed);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 15px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.form-box button:hover {
  opacity: 0.85;
}

/* ANIMATION */
@keyframes fly {
  from { transform: translateY(-10px); }
  to { transform: translateY(10px); }
}

/* ✅ RESPONSIVE */
@media(max-width: 1024px) {
  .student-enquiry {
    gap: 40px;
    padding: 60px 30px;
  }
}

@media(max-width: 768px) {
  .student-enquiry {
    flex-direction: column;
    text-align: center;
  }

  .plane-img {
    width: 300px;
  }

  .form-box {
    width: 100%;
    max-width: 450px;
  }
}

@media(max-width: 480px) {
  .plane-img {
    width: 240px;
  }
}




/* about */

/* ===========================
   APP STYLE - ABOUT SECTION
=========================== */
.about {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    padding: 80px 0 60px;
    overflow: hidden;
    position: relative;
}

/* Floating gradient glow */
.about::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(255,180,0,0.08), transparent 70%);
    animation: rotateGlow 20s linear infinite;
    z-index: 0;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about * {
    position: relative;
    z-index: 1;
}

.about h1, 
.about h4, 
.about p {
    color: #fff;
}

.about .btn-primary {
    background: linear-gradient(90deg, #ffb400, #ffaa00);
    border: none;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(255,180,0,0.4);
}

.about .btn-primary:hover {
    background: linear-gradient(90deg, #ffaa00, #ffb400);
    transform: scale(1.06);
    box-shadow: 0 0 25px rgba(255,180,0,0.7);
}

/* ===========================
   SCROLL ANIMATION
=========================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(25px); /* initial position */
    transition: all 0.8s ease-out;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Icon hover effect */
.about i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.about .d-flex:hover i {
    transform: rotate(8deg) scale(1.1);
    color: #ffb400 !important;
}

/* Image glow animation */
.about .col-lg-5 img {
    transition: transform 0.8s ease, box-shadow 0.6s ease;
}

.about .col-lg-5:hover img {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255,180,0,0.4);
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */
@media (max-width: 992px) {
    .about {
        padding: 60px 20px;
        text-align: center;
    }

    .about h1 {
        font-size: 2rem;
    }

    .about .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .about .ms-3 {
        margin-left: 0 !important;
        margin-top: 10px;
    }

    .about img {
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 50px 15px;
    }

    .about h1 {
        font-size: 1.8rem;
    }

    .about p {
        font-size: 1rem;
    }

    .about .btn-primary {
        width: 100%;
        padding: 12px 0;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 40px 10px;
    }

    .about h1 {
        font-size: 1.6rem;
    }

    .about p {
        font-size: 0.95rem;
    }
}




/* wlecome part */

  .fw-bold {
    font-weight: 700;
    font-size: 43px;
  }

  .cards-section {
    margin-top: -30px;
  }

  .custom-card {
    background-image: linear-gradient(
  90deg,
  hsl(210deg 90% 16%) 0%,
  hsl(215deg 85% 20%) 10%,
  hsl(220deg 80% 24%) 20%,
  hsl(225deg 75% 28%) 30%,
  hsl(230deg 70% 32%) 40%,
  hsl(235deg 68% 36%) 50%,
  hsl(240deg 65% 40%) 60%,
  hsl(245deg 63% 44%) 70%,
  hsl(250deg 60% 48%) 80%,
  hsl(255deg 58% 52%) 90%,
  hsl(260deg 56% 56%) 100%
);
    border-radius: 50px;
    padding: 30px;
    height: 290px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  }

  .logo-container {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

  .card-logo {
    width: 80px;
    height: 80px;
    transition: transform 0.6s ease;
  }

  .custom-card:hover .card-logo {
    transform: rotate(360deg);
  }

  /* Smaller card titles */
  .custom-card h3 {
    font-size: 26px;
    font-weight: 600;
  }

  .custom-card p {
    font-size: 14px;
  }






  
/* Section Heading */
.course h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Card Wrapper */
.card-wrapper {
    position: relative;
}

/* Video Card */
.video-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover {
    transform: translateY(-50px); /* moves up on hover */
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Video/GIF inside card */
.video-wrapper {
    position: relative;
}
.video-wrapper video,
.video-wrapper img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}
.video-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    padding: 10px;
    text-align: center;
}
.video-text h4 {
    color: #fff; /* White heading */
    margin: 0;
}

/* Text Card */
.course-card {
    border-radius: 15px;
    background: #fff;
    z-index: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}






  .why-choose {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #51067b, #d52a92);
    color: #ffffff; /* Pure white text */
    position: relative;
    overflow: hidden;
  }

  .why-choose h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
  }

  .why-choose h2 span {
    color: #ffcc00;
  }

  .why-choose p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
    color: #ffffff; /* white paragraph */
  }

  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
  }

  .stat {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 30px 50px;
    text-align: center;
    min-width: 250px;
    box-shadow: 0 0 10px rgba(255,255,255,0.25);
    transition: all 0.3s ease;
  }

  .stat:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
  }

  .stat h3 {
    font-size: 2rem;
    margin: 10px 0;
    font-weight: 700;
    color: #ffffff;
  }

  .stat p {
    font-size: 1rem;
    margin: 0;
    opacity: 1;
    color: #ffffff;
  }

  .character {
    position: absolute;
    bottom: 10px;
    right: 60px;
    width: 130px; /* smaller image */
    height: auto;
  }

  @media(max-width: 768px) {
    .stat {
      min-width: 200px;
      padding: 20px 30px;
    }

    .character {
      display: none;
    }
  }






  /* our student */
  
.projects-section {
  width: 100%;
  margin: 50px 0;
  text-align: center;
  background: #f9f9f9;
  padding: 30px 0;
}

.projects-section h2 {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.video-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  animation: scroll 12s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 350px;
  margin-right: 20px;
}

.slide video {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Keyframes for seamless loop */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media(max-width: 768px){
  .slide {
    width: 280px;
  }
  .slide video {
    height: 260px;
  }
}
@media(max-width: 480px){
  .slide {
    width: 230px;
  }
  .slide video {
    height: 220px;
  }
}




/* gallery image */

 

  /* 🔹 Overall Section */
  .lgx-photo-gallery {
    padding: 60px 0;
    background: linear-gradient(135deg, #001f3f, #003366, #004080);
    color: #fff;
    font-family: 'Poppins', sans-serif;
  }

  /* 🔹 Headings */
  .lgx-heading {
    text-align: center;
    margin-bottom: 50px;
  }

  .heading-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
  }

  .heading-subtitle {
    font-size: 18px;
    color: #b0c7ff;
    font-weight: 400;
    letter-spacing: 1px;
  }

  /* 🔹 Gallery Area */
  .lgx-gallery-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .gallery-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
  }

  /* 🔹 Top Row (Taller Images) */
  .top-row .lgx-gallery-single {
    flex: 1 1 calc(50% - 20px);
    max-width: 48%;
  }

  /* 🔹 Bottom Row (Smaller Images) */
  .bottom-row .lgx-gallery-single {
    flex: 1 1 calc(25% - 20px);
    max-width: 23%;
  }

  /* 🔹 Figure Styling */
  .lgx-gallery-single figure {
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .top-row .lgx-gallery-single figure {
    height: 320px;
  }

  .bottom-row .lgx-gallery-single figure {
    height: 220px;
  }

  /* 🔹 Image Styling */
  .lgx-gallery-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s ease;
  }

  /* 🔹 Hover Overlay Effect */
  .lgx-gallery-single figure::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,50,0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
  }

  .lgx-gallery-single figure:hover::after {
    opacity: 1;
  }

  .lgx-gallery-single figure:hover img {
    transform: scale(1.08);
  }

  /* 🔹 Shadow on Hover */
  .lgx-gallery-single figure:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 80, 0.4);
  }

  /* 🔹 Responsive Design */
  @media (max-width: 992px) {
    .top-row .lgx-gallery-single {
      max-width: 100%;
      flex: 1 1 100%;
    }

    .bottom-row .lgx-gallery-single {
      flex: 1 1 calc(50% - 20px);
      max-width: 48%;
    }

    .top-row .lgx-gallery-single figure {
      height: 250px;
    }

    .bottom-row .lgx-gallery-single figure {
      height: 180px;
    }
  }

  @media (max-width: 600px) {
    .bottom-row .lgx-gallery-single,
    .top-row .lgx-gallery-single {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .top-row .lgx-gallery-single figure,
    .bottom-row .lgx-gallery-single figure {
      height: 200px;
    }

    .heading-title {
      font-size: 28px;
    }

    .heading-subtitle {
      font-size: 16px;
    }
  }



  /* faq  */

   
.faq-title {
    font-size: 45px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
}
.faq-title span {
    color: #db0f15;
    font-weight: 900;
}

/* ✅ Intro Para */
.faq-about {
    color: #444;
    font-size: 17px;
    line-height: 1.6;
}

/* ✅ FAQ CARD */
.faq-card {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #eaeaea;
}

.accordion-button {
    font-weight: 600;
    color: #111;
    padding: 15px;
}

.accordion-button:not(.collapsed) {
    color: #db0f15;
    background: #ffe5e5;
}

.accordion-body {
    background: #fafafa;
    border-top: 1px solid #eee;
}

/* ✅ White Glow on Image */
.faq-img-box img {
    border-radius: 12px;
    box-shadow: 0 0 22px rgba(255,255,255,0.9);
}



/* testimonials  */


.testimonial-section { text-align: center; padding: 80px 20px; background: #f7f7f7; font-family: "Poppins", sans-serif; position: relative; }

.sub-title { color: #db0f15; font-weight: 600; font-size: 47px; margin-bottom: 5px; }
.main-title { font-size: 36px; font-weight: 700; margin-bottom: 5px; }
.intro-text { max-width: 650px; margin: 0 auto 40px; color: #666; font-size: 16px; }

.arrow-controls { display: flex; justify-content: center; gap: 90%; margin-bottom: 30px; }
.slide-btn { background: #db0f15; color: #fff; border: none; padding: 12px 16px; border-radius: 50%; font-size: 20px; cursor: pointer; transition: 0.3s; }
.slide-btn:hover { background: #b10d13; }

.testimonial-wrapper { width: 100%; overflow: hidden; position: relative; }
.testimonial-track { display: flex; gap: 25px; transition: transform 0.5s linear; }

.testimonial-item { background: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.08); position: relative; flex: 0 0 calc(33.333% - 20px); overflow: hidden; }

.background-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 40px; font-weight: 700; color: rgba(200,200,200,0.15); z-index: 0; pointer-events: none; text-align: center; }
.quote-left, .quote-right { font-size: 72px; color: #db0f15; z-index: 1; position: absolute; }
.quote-left { top: 20px; left: 20px; font-size: 67px;}
.quote-right { bottom: 20px; right: 20px; }
.testimonial-img img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid #db0f15; margin-bottom: 15px; position: relative; z-index: 1; }
.testimonial-text { font-size: 15px; color: #555; margin-bottom: 15px; position: relative; z-index: 1; }
.client-info h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; position: relative; z-index: 1; }
.stars { color: #f6c600; font-size: 18px; position: relative; z-index: 1; }

/* ===== Responsive ===== */
@media(max-width: 992px) { .testimonial-item { flex: 0 0 calc(50% - 20px); } }
@media(max-width: 992px) { .arrow-controls { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; } }
@media(max-width: 576px) { .testimonial-item { flex: 0 0 100%; } }



.offer-strip {
  background: linear-gradient(90deg, #0d47a1, #1976d2);
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  border-top: 2px solid #ffffff20;
  border-bottom: 2px solid #ffffff20;
  position: relative;
}

.offer-track {
  display: inline-flex;
  animation: scrollText 20s linear infinite;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: .5px;
}

.offer-track span {
  padding: 0 70px;
  display: inline-block;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}










.pricing-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: #111;
    margin: 50px 0 20px 0;
    letter-spacing: 1px;
}

.pricing-wrapper {
    display: flex;
    gap: 35px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 40px;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.pricing-wrapper::-webkit-scrollbar { display: none; }
.pricing-wrapper:active { cursor: grabbing; }

.pro-card {
    min-width: 380px;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    padding: 42px;
    border-radius: 30px;
    box-shadow: 0px 20px 45px rgba(0,0,0,0.12);
    border: 1px solid #efefef;
    transition: 0.35s ease;
}
.pro-card:hover {
    transform: translateY(-12px);
    box-shadow: 0px 28px 60px rgba(0,0,0,0.18);
}

.plan-title { font-size: 28px; font-weight: 700; color: #0c0c0c; font-family: 'Poppins', sans-serif; }
.plan-sub { margin-top: 6px; font-size: 16px; font-weight: 500; color: #666; }
.price-box { margin-top: 28px; padding: 17px 30px; border-radius: 22px; background: linear-gradient(135deg, #fafafa, #eeeeee); text-align: center; font-size: 38px; font-weight: 700; color: #111; box-shadow: inset 0px 5px 12px rgba(0,0,0,0.06);}
.price-box small { font-size: 16px; font-weight: 500; color: #555; }
.inc-title { margin-top: 28px; font-size: 20px; font-weight: 600; color: #111; }
.pro-card ul { margin-top: 18px; padding-left: 0; }
.pro-card ul li { list-style: none; margin: 14px 0; font-size: 15.5px; font-weight: 500; color: #333; display: flex; align-items: center; gap: 12px; }
.pro-card ul li::before { content: "✔"; font-size: 16px; color: #00c853; font-weight: 700; }

.start-btn {
    margin-top: 30px; 
    background: linear-gradient(135deg, #111, #333);
    color: #fff; width: 100%; padding: 16px;
    border-radius: 50px; text-align: center;
    font-size: 17px; font-weight: 600;
    text-decoration: none; display: inline-block;
    transition: 0.25s; letter-spacing: 0.3px;
}
.start-btn:hover {
    background: linear-gradient(135deg, #000, #1a1a1a);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    color: #ff4d4d;
}

/* ========= ONLY PHONE RESPONSIVE (iPhone etc.) ========= */
@media (max-width: 768px) {
    .pricing-heading {
        font-size: 34px;
        margin: 30px 0 10px 0;
    }

    .pricing-wrapper {
        padding: 20px 0 40px;
        gap: 16px;
        cursor: grab;
        scroll-snap-type: x mandatory;      /* scroll pe card beech mein rukega */
        justify-content: flex-start;
    }

    .pro-card {
        min-width: 80%;                    /* screen ka 80–90% */
        max-width: 90%;
        padding: 26px 22px;
        margin: 0 auto;
        scroll-snap-align: center;         /* card center pe snap */
    }

    .plan-title { font-size: 22px; }
    .price-box { font-size: 30px; padding: 14px 22px; }
    .inc-title { font-size: 18px; }
    .pro-card ul li { font-size: 14px; }
}