* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #06142c;
  color: white;
  padding-top: 80px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 8%;
  align-items: center;

  position: fixed;   /* 👈 ye add karo */
  top: 0;            /* 👈 top pe fix */
  left: 0;
  width: 100%;
  background: #fff; /* 👈 background zaroor do */
  z-index: 1000; 
}

.logo {
  font-weight: 700;
  color: #ffc107;
}

.logo span {
  color: white;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
}

.btn-primary {
  background: #ffc107;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8%;
  gap: 40px;
}

/* LEFT TEXT */
.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
}

.hero-text span {
  color: #ffc107;
}

.hero-text p {
  margin: 20px 0;
  color: #cbd5e1;
  line-height: 1.6;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.btn-main {
  background: #ffc107;
  border: none;
  padding: 14px 22px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid #ccc;
  background: transparent;
  color: white;
  padding: 14px 22px;
  border-radius: 25px;
  cursor: pointer;
}

/* TRUSTED */
.trusted {
  margin-top: 30px;
}

.logos {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.logo-box {
  background: white;
  color: black;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
}

/* IMAGE */
.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}

/* ANIMATIONS */
.hidden-left {
  opacity: 0;
  transform: translateX(-100px);
}

.hidden-right {
  opacity: 0;
  transform: translateX(100px);
}

.show {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s ease;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image img {
    max-width: 100%;
  }
}


/* SECTION */
.courses {
  background: white;
  padding: 80px 8%;
  text-align: center;
}

/* HEADING */
.heading h1 {
  font-size: 42px;
  color: black;
  font-weight: 700;
}

.heading p {
  margin-top: 10px;
  color: black;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
}

/* CARDS CONTAINER */
.course-container {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.card {
  background: #1e293b;
  color: white;
  padding: 30px;
  border-radius: 18px;
  width: 500px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border-top: 4px solid #22d3ee;
    transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* HEADER */
.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-box {
  background: #e2e8f0;
  color: #0f172a;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}

.card h2 {
  font-size: 22px;
  font-weight: 700;
}

/* DESCRIPTION */
.desc {
  margin: 20px 0;
  color: #cbd5e1;
  line-height: 1.6;
}

/* LIST */
ul {
  list-style: none;
  margin-bottom: 25px;
}

ul li {
  margin-bottom: 10px;
  color: #cbd5e1;
  position: relative;
  padding-left: 20px;
}

ul li::before {
  position: absolute;
  left: 0;
  color: #22d3ee;
}

/* BUTTON */
.card button {
  width: 100%;
  padding: 14px;
  background: #f59e0b;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}

/* HOVER */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .card {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .heading h1 {
    font-size: 32px;
  }

  .card {
    padding: 20px;
  }

  .card h2 {
    font-size: 18px;
  }
}









/* NAV BASE */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 5px;
  transition: 0.2s;
}

/* CROSS ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
      background: #06142c;
  border-top: 2px solid #ffc107;
    z-index: 9999;

    flex-direction: column;   /* ✅ vertical layout */
    align-items: flex-start;  /* left aligned */
    padding: 20px;

    transform: translateY(-200%);
    transition: 0.4s ease;
  }

  .nav-links a,
  .nav-links button {
    display: block;
    width: 100%;
    margin: 10px 0;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .hamburger {
    display: flex;
  }
}


.student-section {
  padding: 20px;
  background: #f5f5f5;
  font-family: Arial, sans-serif;
}

/* Student Corner */
.student-corner {
  background: #9e9e9e;
  padding: 15px;
  color: #fff;
}

.student-corner h3 {
  margin-bottom: 15px;
}

/* Buttons */
.btn-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  flex: 1;
  text-align: center;
  padding: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  min-width: 200px;
}

.btn-blue { background: #1389a3; }
.btn-red { background: #d9363e; }
.btn-yellow { background: #f4b400; }

/* Bottom Row */
.content-row {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Boxes */
.box {
  background: #fff;
  flex: 1;
  min-width: 300px;
}

.box h3 {
  background: #9e9e9e;
  color: #fff;
  padding: 10px;
  margin: 0;
}

/* Notification Scroll */
.scroll-box {
  height: 200px;
  overflow: hidden;
  position: relative;
  padding: 10px;
}

.scroll-content {
  position: absolute;
  width: 100%;
  animation: scrollUp 10s linear infinite;
}

.scroll-content p {
  font-size: 14px;
  color: black;
  margin-bottom: 10px;
}

/* NEW tag */
.new {
  background: red;
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  margin-right: 5px;
  border-radius: 3px;
}

/* Animation */
@keyframes scrollUp {
  0% { top: 100%; }
  100% { top: -100%; }
}

/* About Section */
.about-box {
  padding-bottom: 10px;
}

.tabs {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.tabs button {
  padding: 8px 12px;
  border: none;
  background: #ddd;
  cursor: pointer;
}

.tabs .active {
  background: #1389a3;
  color: #fff;
}

.about-box p {
  padding: 0 10px;
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .btn-row {
    flex-direction: column;
  }

  .content-row {
    flex-direction: column;
  }
}


.tab-content {
  display: none;
  padding: 10px;
}

.tab-content.active {
  display: block;
}

.tab-btn.active {
  background: #1389a3;
  color: #fff;
}



.info-section {
  padding: 40px 20px;
  background: #f2f2f2;
}

/* Row Layout */
.info-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

/* Box Styling */
.info-box {
  flex: 1;
  align-items: center;
  min-width: 280px;
  background: #ffffff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}


/* Text */
.info-box p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.info-box:hover {
  background: #1389a3; 
}

.info-box:hover p {
  color: #fff;
}

/* Tablet */
@media (max-width: 992px) {
  .info-row {
    gap: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
  }
}

.title {
  display: flex;
  align-items: center;
  gap: 5px;
}

.title i {
  font-size: 30px;
  color: #000;
    margin-bottom: 10px;
}

.title h2 {
  font-size: 25px;
  margin: 0;
  color: black;
  margin-bottom: 10px;
}



.faq-section {
  display: flex;
  padding: 50px;
  gap: 40px;
  flex-wrap: wrap;
  background-color: white;
}

/* LEFT */
.faq-left {
  flex: 1;
  animation: slideLeft 1s ease;
}

.faq-left h1{
  margin-bottom: 10px;
  color: black;
  padding: 5px 10px;
}
.faq-left p {
  color: #555;
}

.faq-item {
  background: #fff;
  margin: 10px 0;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: black;
  background-color:   #ebebeb;
  font-size: 18px;
  font-family: Arial;
}

.faq-answer {
  display: none;
  padding: 15px;
  color: #555;
  background-color: #f9f9f9;
}

/* RIGHT */
.faq-right {
  flex: 1;
  background: #1d2740;
  color: #fff;
  padding: 20px;
  animation: slideRight 1s ease;
}

.faq-right h2 {
  margin-bottom: 10px;
}
.faq-right input,
.faq-right textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
}

.row {
  display: flex;
  gap: 10px;
}
.icon{
  font-size: 30px;
}

button {
  background: #0aa;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}

/* Animations */
@keyframes slideLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    flex-direction: column;
  }
  .row {
    flex-direction: column;
  }
}
















.reviews-section {
    background: #f0f2f5;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
  }
 
  .reviews-container {
    max-width: 1200px;
    margin: 0 auto;
  }
 
  /* Heading */
  .reviews-heading {
    text-align: center;
    margin-bottom: 40px;
  }
  .reviews-heading h2 {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
  }
  .reviews-heading h2 span {
    background: #1b96b8;
    color: #fff;
    padding: 2px 12px;
    border-radius: 3px;
  }
  .reviews-heading p {
    font-size: 15px;
    color: #555;
    margin: 0;
  }
 
  /* Slider */
  .slider-wrapper {
    overflow: hidden;
  }
 
  .slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    align-items: stretch;
  }
 
  /* Card */
  .review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: #fff;
    border-radius: 8px;
    padding: 28px 24px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
  }
 
  /* Card Top: quote icon left + avatar center */
  .card-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    margin-bottom: 14px;
  }
 
  .quote-open {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 48px;
    color: #f0a500;
    line-height: 1;
    font-family: Georgia, serif;
  }
 
  .avatar-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ddd;
    flex-shrink: 0;
  }
  .avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
 
  /* Stars */
  .stars {
    text-align: center;
    margin-bottom: 14px;
  }
  .star {
    font-size: 22px;
    line-height: 1;
  }
  .star.filled { color: #f0a500; }
  .star.empty  { color: #ccc; }
 
  /* Review text */
  .review-text {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    text-align: justify;
    flex: 1;
    margin: 0 0 16px;
  }
 
  /* Card Bottom: name left, closing quote right */
  .card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
 
  .student-name {
    font-size: 15px;
    font-weight: 700;
    color: #1b96b8;
    letter-spacing: 0.5px;
    margin: 0;
  }
 
  .quote-close {
    font-size: 48px;
    color: #f0a500;
    line-height: 0.6;
    font-family: Georgia, serif;
    align-self: flex-end;
  }
 
  /* Nav Buttons */
  .nav-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
  }
 
  .nav-btn {
    background: #1b96b8;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
  }
  .nav-btn:hover { background: #157a96; transform: scale(1.03); }
  .nav-btn:disabled { background: #aaa; cursor: not-allowed; transform: none; }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .review-card { flex: 0 0 calc((100% - 24px) / 2); }
  }
  @media (max-width: 640px) {
    .review-card { flex: 0 0 100%; }
  }




  .logo-section {
    background: #f1f1f1;
    padding: 20px 0;
    overflow: hidden;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    width: calc(250px * 12); /* total logos */
    animation: scroll 20s linear infinite;
}

.logo-track img {
    width: 180px;
    height: auto;
    margin: 0 40px;
    object-fit: contain;
    transition: 0.3s;
}

.logo-track img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media(max-width: 768px) {
    .logo-track img {
        width: 120px;
        margin: 0 20px;
    }
}

@media(max-width: 480px) {
    .logo-track img {
        width: 100px;
        margin: 0 15px;
    }
}




/* Footer Background */
.footer {
    background: linear-gradient(135deg, #1c2733, #0f1b26);
    color: #fff;
    padding-top: 50px;
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}

/* Columns */
.footer-col {
    flex: 1;
}

/* Logo */
.logo {
    width: 150px;
    margin-bottom: 20px;
}

/* Text */
.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #ccc;
}

/* Headings */
.footer-col h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    margin-bottom: 12px;
    cursor: pointer;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #ff4d4d;
}

/* Icons color */
.footer-col span {
    color: #ff4d4d;
    margin-right: 10px;
}

/* Copyright */
.copyright {
    background: #111;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 14px;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 0 0 48%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        flex: 100%;
    }

    .footer-col span {
        display: block;
        margin-bottom: 5px;
    }
}



.aviation-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.aviation-slides-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

.aviation-slide-item {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.aviation-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.aviation-slide-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Content */
.aviation-content-box {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  max-width: 600px;
}

.aviation-content-box h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.aviation-content-box p {
  font-size: 18px;
  line-height: 1.6;
}

/* Buttons */
.aviation-btn-prev,
.aviation-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 15px 20px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 3;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.aviation-btn-prev:hover,
.aviation-btn-next:hover {
  background: rgba(255,255,255,0.5);
}

.aviation-btn-prev {
  left: 20px;
}

.aviation-btn-next {
  right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .aviation-content-box {
    left: 5%;
    right: 5%;
  }

  .aviation-content-box h1 {
    font-size: 32px;
  }

  .aviation-content-box p {
    font-size: 14px;
  }

  .aviation-btn-prev,
  .aviation-btn-next {
    padding: 10px 14px;
    font-size: 18px;
  }
}





.video-section{
  padding:60px 20px;
  display:flex;
  justify-content:center;
}

.video-container{
  max-width:900px;
  width:100%;
}

/* VIDEO BOX */
.video-box{
  position:relative;
  cursor:pointer;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

.video-box img{
  width:100%;
  display:block;
}

/* PLAY BUTTON */
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:red;
  width:70px;
  height:70px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:24px;
  transition:0.3s;
}

.video-box:hover .play-btn{
  transform:translate(-50%,-50%) scale(1.1);
  background:#ff0000;
}

/* IFRAME */
.video-frame{
  display:none;
  width:100%;
  height:500px;
  border-radius:20px;
  overflow:hidden;
}

.video-frame iframe{
  width:100%;
  height:100%;
}

/* ACTIVE */
.video-frame.active{
  display:block;
}

.video-box.hide{
  display:none;
}

/* RESPONSIVE */
@media(max-width:768px){
  .video-frame{
    height:300px;
  }

  .play-btn{
    width:55px;
    height:55px;
    font-size:18px;
  }
}

@media(max-width:480px){
  .video-frame{
    height:220px;
  }
}






.feedback-section{
  padding:70px 20px;
  background:#f9fafb;
  text-align:center;
}

.feedback-title{
  font-size:30px;
  font-weight:700;
  color: black;
  margin-bottom:40px;
}

/* GRID */
.feedback-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* CARD */
.video-card{
  position:relative;
  width:100%;
  padding-top:56.25%; /* 16:9 ratio FIX */
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  background:#000;
}

/* IMAGE */
.video-card img,
.video-card iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}


.video-card img{
  object-fit:cover;
}


.feedback-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  align-items:stretch; /* IMPORTANT */
}

/* PLAY BUTTON */
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:red;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
  z-index:2;
}
/* IFRAME */


/* RESPONSIVE */
@media(max-width:900px){
  .feedback-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .feedback-container{
    grid-template-columns:1fr;
  }

  .feedback-title{
    font-size:24px;
  }
}


