/* THEME COLORS */
:root {
  --primary: #051A34;
  --yellow: #CCAA48;
  --gold: #AD762A;
  --light: #FCF5A8;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
html{
    scroll-behavior: smooth;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  background: white;
  color: var(--primary);
  position: relative;
   box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* LOGO */
.logo img {
  width: 140px;
  filter: drop-shadow(0 0 6px rgba(204,170,72,0.6));
}

/* MENU */
.Menu {
  display: flex;
  align-items: center;
}

.Menu a {
  text-decoration: none;
  background: var(--yellow);
  color: var(--primary);
  margin: 0 8px;
  padding: 10px 18px;
  border-radius: 25px;
  transition: 0.3s;
  font-weight: 500;
}

.Menu a:hover {
  background: var(--yellow);
  color: var(--primary);
}

.Menu a.active {
  background: var(--gold);
}

/* CALL BUTTON */
.call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  color: var(--primary);
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.call:hover {
  transform: translateY(-2px);
}
.phone-icon {
  width: 16px;
  height: 16px;
  fill: var(--primary); /* icon color theme se match */
}
/* HERO */
.hero {
  padding: 120px 20px;
  text-align: center;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color : #051A34;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .navbar {
    padding: 10px 20px;
  }

  .menu-toggle {
    display: block;
    color: #051A34;
  }

  .Menu {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    text-align: center;
    display: none;
    padding: 20px 0;
  }

  .Menu a {
    display: block;
    margin: 10px 0;
  }

  .Menu.active {
    display: flex;
  }

  .call {
    display: none;
  }
}
/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  padding: 100px 60px;
  background: linear-gradient(135deg, var(--primary), #0a2f5c);
  color: white;
  overflow: hidden;
}

/* TEXT */
.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero p {
  margin: 20px 0;
  font-size: 16px;
}

/* IMAGE WRAPPER (for curve effect) */
.hero-image {
  position: relative;
  width: 600px;
  max-width: 100%;
}

/* CURVED IMAGE */
.hero-image img {
  width: 100%;
  height: auto;

  border-radius: 20px;   /* 🔥 halka smooth curve */
  object-fit: cover;
   border-radius: 20px 60px 20px 60px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* OPTIONAL glow */
.hero-image::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(204,170,72,0.4), transparent 70%);
  z-index: -1;
}

/* BUTTONS */
.buttons {
  margin-top: 20px;
}

.btn {
  background: var(--yellow);
  color: var(--primary);
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  margin-right: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: var(--gold);
  color: white;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
  padding: 12px 25px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 30px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-image {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 28px;
  }

  .btn,
  .btn-outline {
    width: 100%;
    margin: 8px 0;
  }
}
.btn:hover {
  background: var(--gold);
  color: white;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
  padding: 12px 25px;
  border-radius: 30px;
}

.btn-outline:hover {
  color: var(--primary);
  background: white;
}

/* SECTION */
.section {
  padding: 80px 60px;
  text-align: center;
}

.tag {
  color: var(--yellow);
  letter-spacing: 2px;
}

.bg-light {
  background: var(--light);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* CARDS */
.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ICONS */
.icon {
  font-size: 40px;
  color: var(--yellow);
  margin-bottom: 10px;
}

/* COURSES */
.course {
  background: white;
  padding: 25px;
  border-radius: 10px;
}

/* LIST */
.list p {
  margin: 10px;
}
.course-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: var(--yellow);
  color: var(--primary);
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  transition: 0.3s;
  font-weight: 500;
}

.course-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
.course img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* TRAINING SECTION */
/* ===== SECTION ===== */
.training-section {
  padding: 80px 60px;
  background: #f8f9fb;
}

.training-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT */
.training-left {
  flex: 1;
}

.training-left h2 {
  font-size: 40px;
  color: var(--primary);
}

.training-desc {
  color: #666;
  margin-bottom: 20px;
}

/* ===== RIGHT ===== */
.training-right {
  flex: 1;
  position: relative;
  height: 420px;
}

/* CIRCLES */
.circle {
  position: absolute;
  overflow: hidden;
  border-radius: 50%;
  border: 6px solid white;
  
}

.circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DESKTOP POSITION */
.big {
  width: 420px;
  height: 380px;
  right: 40px;
  top: 0;
}

.mid {
  width: 200px;
  height: 250px;
  right: 220px;
  top: 130px;
}

.small {
  width: 160px;
  height: 200px;
  right: 0;
  bottom: 0;
}

/* ================= TABLET ================= */
/* ===== FINAL RESPONSIVE FIX ===== */
@media (max-width: 992px) {

  .training-container {
    flex-direction: column;
  }

  .training-right {
    position: static !important;
    height: auto !important;
    width: 100%;
    margin-top: 30px;
  }

  .circle {
    position: relative !important;
    width: 100% !important;
    height: 220px !important;
    border-radius: 15px;
  }
}

/* ================= MOBILE (MAIN FIX) ================= */
@media (max-width: 576px) {

  .training-section {
    padding: 50px 20px;
  }

  .training-left h2 {
    font-size: 26px;
  }

  /* 🔥 IMPORTANT FIX */
  .training-right {
    position: static;
    height: auto;

    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .circle {
    position: relative;
    width: 100% !important;
    height: 200px !important;
    border-radius: 15px;
  }
}
/* ===== RESPONSIVE FIX (ADD AT END) ===== */
@media (max-width: 768px) {

  .training-container {
    flex-direction: column;
  }

  .training-right {
    height: auto;
    position: static;
    margin-top: 30px;
  }

  .circle {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {

  .training-section {
    padding: 40px 15px;
  }

  .training-left h2 {
    font-size: 24px;
  }

  .circle {
    height: 180px;
  }
}
/* PILOT SECTION */
.pilot-section {
  padding: 80px 60px;
  background: #f5f7fb;
}

.pilot-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.left {
  flex: 1;
}

.left h2 {
  font-size: 38px;
  margin-bottom: 5px;
  color: var(--primary);
}

.sub {
  color: #555;
  margin-bottom: 20px;
}

.plane-img {
  width: 100%;
  max-width: 450px;
  margin-top: 10px;
}

.right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--primary);
  font-size: 22px;
}

.item p {
  font-weight: 600;
  margin: 0;
  color: var(--primary);
}
/* ABOUT HERO */
.about-hero {
    background: linear-gradient(135deg, #051A34, #0A2A4A);
    text-align: center;
    padding: 120px 20px;
}

/* CTA */
.cta {
    background: #051A34;
    color: white;
}

.cta .btn {
    background: #CCAA48;
    color: #051A34;
    margin-top: 20px;
}
/* CONTACT HERO */
.contact-hero {
    background: linear-gradient(135deg, #051A34, #0A2A4A);
    text-align: center;
    padding: 120px 20px;
    color: white;
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 60px;
}

/* CONTAINER */
.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 10px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
}

/* ICON COLOR */
.contact-info i {
    color: #CCAA48;
    margin-right: 10px;
}

/* RIGHT FORM */
.contact-form {
    flex: 1;
}

/* FORM */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

/* BUTTON */
.contact-form button {
    background: #CCAA48;
    color: #051A34;
    padding: 12px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
}

/* HOVER */
.contact-form button:hover {
    background: #AD762A;
    color: #fff;
}

/* MAP */
.map {
    margin-top: 40px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #051A34, #0A2A4A);
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* COURSE BOX */
.course-box {
    background: white;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* TITLE */
.course-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-title i {
    color: #CCAA48;
    font-size: 24px;
}

/* ACCORDION */
.accordion-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #051A34;
    color: white;
    border: none;
    cursor: pointer;
    text-align: left;
    border-radius: 6px;
}

.accordion-btn.active {
    background: #CCAA48;
    color: #051A34;
}

.accordion-content {
    display: none;
    padding: 15px;
    background: #f5f7fb;
    border-radius: 6px;
}

/* LIST */
ul {
    padding-left: 20px;
}

li {
    margin: 6px 0;
}

/* BODY */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ===== ENROLL SECTION ===== */
.enroll-section {
    padding: 80px 60px;
    background: #FCF5A8;
}

.enroll-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT SIDE */
.enroll-left {
    flex: 1;
}

.enroll-left h2 {
    font-size: 40px;
    color: #051A34;
    margin-bottom: 15px;
}

.enroll-left p {
    color: #333;
    margin-bottom: 25px;
}

.enroll-left ul {
    list-style: none;
    padding: 0;
}

.enroll-left ul li {
    margin-bottom: 15px;
    font-weight: 500;
    color: #051A34;
    display: flex;
    align-items: center;
    gap: 10px;
}

.enroll-left ul li i {
    color: #CCAA48;
    background: white;
    padding: 10px;
    border-radius: 50%;
}

/* RIGHT SIDE FORM */
.enroll-right {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.enroll-right h3 {
    text-align: center;
    color: #051A34;
    margin-bottom: 5px;
    font-size: 30px;
}

.enroll-right p {
    text-align: center;
    color: #555;
    margin-bottom: 25px;
}

/* INPUT GROUP */
.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #CCAA48;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border-radius: 30px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

/* BUTTON */
.enroll-btn {
    width: 100%;
    background: #CCAA48;
    color: #051A34;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.enroll-btn:hover {
    background: #AD762A;
    color: white;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .enroll-container {
        flex-direction: column;
    }
}
.input-group input,
.input-group select {
    width: 100%;
    height: 45px;              /* SAME HEIGHT */
    padding: 0 15px 0 45px;   /* SAME PADDING */
    border-radius: 30px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    box-sizing: border-box;   /* IMPORTANT */
}

/* REMOVE DEFAULT SELECT STYLE */
.input-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* OPTIONAL: ADD CUSTOM DROPDOWN ICON */
.input-group select {
    background: url("data:image/svg+xml;utf8,<svg fill='%23051A34' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 15px center;
    background-color: white;
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* HERO */
.about-hero {
    background: linear-gradient(135deg, #051A34, #0b2e5c);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 40px;
}

.about-hero p {
    margin-top: 10px;
    color: #ddd;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

 /*Who we are*/
 /* SECTION BACKGROUND */
.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FCF5A8, #ffffff);
}

/* CONTAINER CARD LOOK */
.about-section .container {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* HOVER LIFT */
.about-section .container:hover {
    transform: translateY(-5px);
}

/* HEADING PREMIUM */
.about-section h2 {
    text-align: center;
    color: #051A34;
    font-size: 36px;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 1px;
}

/* GRADIENT UNDERLINE */
.about-section h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #CCAA48, #AD762A);
    display: block;
    margin: 12px auto 0;
    border-radius: 5px;
}

/* FIRST PARAGRAPH - HERO STYLE */
.about-section p:first-of-type {
    background: linear-gradient(135deg, #FCF5A8, #fff);
    padding: 20px;
    border-left: 6px solid #CCAA48;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* PARAGRAPH STYLE */
.about-section p {
    color: #444;
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 15px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.about-section p:hover {
    color: #051A34;
    transform: translateX(6px);
}

/* STRONG WORD STYLE */
.about-section strong {
    color: #051A34;
    background: linear-gradient(transparent 60%, #FCF5A8 40%);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-section .container {
        padding: 25px;
    }

    .about-section h2 {
        font-size: 28px;
    }
}

/* FEATURES */
.features-section {
    background: #FCF5A8;
}

.features-section h2 {
    text-align: center;
    color: #051A34;
}

.sub {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.feature {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

/* ICON */
.feature i {
    font-size: 30px;
    color: #CCAA48;
    margin-bottom: 10px;
}

/* TEXT */
.feature h3 {
    color: #051A34;
    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;
    color: #666;
}
/*chat box*/

/* ===== ROOT COLORS ===== */
:root {
  --primary: #051A34;
  --yellow: #CCAA48;
  --gold: #AD762A;
  --light: #FCF5A8;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
}

/* ===== FLOAT BUTTON ===== */
.enroll-float {
    position: fixed;
    right: 20px;
    bottom: 80px;
    background: linear-gradient(135deg, var(--yellow), var(--gold));
    color: var(--primary);
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 999;
    animation: pulse 2s infinite;
}

.enroll-float:hover {
    background: var(--gold);
    color: white;
}

/* Pulse animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(204,170,72,0.7); }
    70% { box-shadow: 0 0 0 12px rgba(204,170,72,0); }
    100% { box-shadow: 0 0 0 0 rgba(204,170,72,0); }
}

/* ===== OVERLAY ===== */
#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(5, 26, 52, 0.7); /* theme overlay */
    top: 0;
    left: 0;
    display: none;
    backdrop-filter: blur(4px);
}

/* ===== SIDE FORM ===== */
.side-form {
    position: fixed;
    top: 0;
    right: -400px;
    width: 360px;
    height: 100%;
    background: var(--primary);
    padding: 25px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.4);
    transition: 0.4s ease;
    overflow-y: auto;
}

/* SHOW */
.side-form.active {
    right: 0;
}

/* CLOSE BUTTON */
.close-btn {
    float: right;
    font-size: 26px;
    cursor: pointer;
    color: var(--light);
}

/* HEADINGS */
.side-form h2 {
    color: var(--light);
    margin-top: 30px;
}

.side-form p {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 20px;
}

/* ===== INPUTS ===== */
.side-form input,
.side-form select {
    width: 100%;
    height: 45px;
    margin: 10px 0;
    padding: 0 15px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    outline: none;

    background: rgba(255,255,255,0.08); /* glass effect */
    color: white;
    font-size: 14px;
}

/* PLACEHOLDER */
.side-form input::placeholder {
    color: #bbb;
}

/* SELECT */
.side-form select {
    appearance: none;
    background: rgba(255,255,255,0.08)
    url("data:image/svg+xml;utf8,<svg fill='%23CCAA48' height='20' viewBox='0 0 24 24' width='20'><path d='M7 10l5 5 5-5z'/></svg>")
    no-repeat right 15px center;
    color: white;
}
.side-form select option{
    color : black;
}
/* FOCUS EFFECT */
.side-form input:focus,
.side-form select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 2px rgba(204,170,72,0.3);
}


/* ===== BUTTON (GREEN REMOVED ✅) ===== */
.submit-btn {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--yellow), var(--gold));
    color: var(--primary);
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
}

/* ===== SCROLLBAR ===== */
.side-form::-webkit-scrollbar {
    width: 6px;
}

.side-form::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 10px;
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
    .side-form {
        width: 100%;
    }
}

/* FOOTER */
/* FOOTER MAIN */
.footer {
  background: url('footer-bg.jpg') no-repeat center/cover;
  color: #fff;
}

/* OVERLAY (DARK BLUE THEME) */
.footer-overlay {
  background: linear-gradient(135deg, #051A34, #0A2A4A);
  padding: 0px 20px;
}

/* CONTAINER FIX */
.container {
  max-width: 1200px;
  margin: auto;
}

/* NEWSLETTER */
.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter h2 {
  font-size: 32px;
  font-weight: 500;
}

/* SUBSCRIBE BOX */
.subscribe-box {
  display: flex;
  border: 1px solid #fff;
  border-radius: 40px;
  overflow: hidden;
}

.subscribe-box input {
  padding: 12px 20px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}

.subscribe-box button {
  background: #CCAA48;
  color: #051A34;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-weight: bold;
}

/* HOVER */
.subscribe-box button:hover {
  background: #AD762A;
  color: #fff;
}

/* FOOTER CONTENT */
.footer-content {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  flex-wrap: wrap;
}

/* LEFT */
.footer-left {
  max-width: 300px;
}

.logo {
  width: 80px;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 14px;
}

/* SOCIAL ICONS */
.social-icons i {
  margin-right: 10px;
  border: 1px solid #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.social-icons i:hover {
  background: #CCAA48;
  color: #051A34;
}

/* CENTER LINKS */
.footer-center {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-center {
  display: flex;
  flex-direction: column; /* 👈 ye add karo */
  gap: 10px;
  align-items: flex-start; /* left align */
}
.footer-center a {
  display: block;
  width: fit-content; /* ya 100% for full width */
}
.footer-center a {
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.footer-center a:hover {
  background: #CCAA48;
  color: #051A34;
}

/* RIGHT SIDE */
.footer-right p {
  margin-bottom: 10px;
}

.footer-right i {
  margin-right: 8px;
  color: #CCAA48;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom a {
  margin-left: 15px;
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #CCAA48;
}
.footer-map iframe {
  width: 220px;
  height: 120px;
  border-radius: 10px;
  border: none;
  margin-top: 10px;
}
/* RESPONSIVE */
@media(max-width: 768px) {
  .newsletter {
    flex-direction: column;
    gap: 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;   /* yaha change kiya */
  z-index: 9999;

  background: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .pilot-container {
    flex-direction: column;
    text-align: center;
  }

  .right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .right {
    grid-template-columns: 1fr;
  }
}