/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f7fb;
    color: #222;
}

/* ================= HEADER ================= */
header {
    background: #0b2c4d;
    color: #fff;
    padding: 18px 4%;
    display: flex;
    align-items: center;

    position: sticky;   /* 🔥 add */
    top: 0;             /* 🔥 add */
    z-index: 9999;      /* 🔥 add */
}

/* IMAGE + TEXT SIDE BY SIDE */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

/* IMAGE */
.logo img {
    width: 120px;
    height: 100px;
    object-fit: contain;
}

.about-text h1,
.about-text h2 {
    color: #fff;
    font-size: 28px;
    margin: 0;
}

.about-text p {
    color: #ddd;
    font-size: 15px;
    margin-top: 6px;
}

/* ================= NAV ================= */
nav {
    display: flex;
    gap: 12px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    background-color: chocolate;
    padding: 6px 16px;
    border: 1px solid #ffffff80;
    border-radius: 50px;
    transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
    background-color: #ffffff;
    color: #0b2c4d;
    font-weight: 600;
}


/* ================= HERO ================= */
.hero {
    position: relative;   /* 🔥 important for absolute child */
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 80px 8%;
    background: linear-gradient(135deg, #0b2c4d, #134e7d);
    color: #fff;

}

/* ================= PLACED IMAGE ================= */
.video-wrapper {
    display: flex;
    justify-content: flex-end;  /* right side */
    align-items: flex-start;
    width: 100%;
}

.video-wrapper img {
    width: 500px;
    height: 500px;
    object-fit: contain;
    border-radius: 10px;
}

@media (max-width: 768px) {

    .video-wrapper {
        justify-content: center;   /* mobile me center */
        margin-top: 15px;
    }

    .video-wrapper img {
        width: 220px;              /* mobile size */
        height: auto;
    }
}


/* ================= courses we ioffer  ================= */

.courses-section {
    padding: 60px 8%;
    background: #fff;
}

.courses-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #000;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}

.course-box {
    text-align: center;
}

.course-box img {
    width: 120px;
    margin-bottom: 20px;
}

.course-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #0b2c4d;
}

.course-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.course-box a {
    color: red;
    text-decoration: none;
    font-weight: 600;
}

.course-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}


/* ================= HERO TEXT ================= */
.hero h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    margin-bottom: 25px;
}

.hero ul {
    margin-bottom: 25px;
}

.hero ul li {
    margin-bottom: 10px;
}

/* BUTTON */
.btn {
    display: inline-block;
    background: #ffb703;
    color: #000;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* ================= HERO CARD ================= */
.hero-card {
    width: 550px;
    height: 650px;
    background: orange;
    border-radius: 20px;
    padding: 15px;
    color: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    overflow: hidden;
}

.hero-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.hero-card iframe {
    
    width: 100%;
    height: 700px;
    object-fit: fill;
    border: none;
 

}

/* ================= SECTIONS ================= */
section {
    padding: 70px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
/* ================= HAND BASE BUTTON ================= */
.course-btn {
    display: inline-block;
    padding: 25px 40px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #ff4500;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255,69,0,0.5);
    position: relative;
}

.course-btn:hover {
    background: #ff6347;
    box-shadow: 0 0 20px rgba(255,99,71,0.8), 0 0 30px rgba(255,140,0,0.6);
    transform: translateY(-2px);
}

.hand-icon {
    display: inline-block;
    margin-left: 8px;
    animation: hand-wave 1s infinite alternate;
    font-size: 24px;  
}

@keyframes hand-wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}


/* ================= HAND BASE BUTTON ================= */

/* ================= COMPANIES ================= */
.comapny-placement {
    display: flex;
    align-items: center;
    gap: 20px;
}

.comapny-placement img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}

/*--------------comapnies images---------------*/

.placement-section {
    padding: 50px 6%;
}

.placement {
    text-align: center;
    margin-bottom: 30px;
}

.logo-slider {
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: slide 18s linear infinite;
}

.placement h2 {
    font-size: 32px;   /* pehle 20px tha */
    font-weight: 700;
    margin-bottom: 12px;
}

.logo-track {
    animation: slide 4s linear infinite;
}

.logo-track img {
    height: 80px;
    margin-right: 50px;
    object-fit: contain;
}

/* Animation */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ================= COURSES ================= */
.courses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.course {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* MAIN SECTION imaege + data */
.impact-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 60px 5%;
  background: #f6f7fb;
}

/* IMPACT BOX */
.impact-wrapper {
  flex: 1;
  max-width: 2000px;
}

.impact-content {
  background: linear-gradient(135deg, #2f6cf6, #4f8cff);
  color: #fff;
  padding: 50px 40px;
  border-radius: 6px;
}

/* TITLE */
.impact-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  position: relative;
}

.impact-title::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #fff;
  display: block;
  margin: 8px auto 0;
}

/* STATS */
.impact-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-label {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.stat h3 {
  font-size: 36px;
  font-weight: 700;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.5);
}

/* RIGHT IMAGE */
.video-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.video-wrapper img {
  width: 700px;
  height: 700px;
  object-fit: fill;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .impact-main {
    flex-direction: column;
    gap: 40px;
  }

  .video-wrapper {
    justify-content: center;
  }

  .impact-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .divider {
    display: none;
  }
}




/* ================= WHY CHOOSE ================= */
.why-section {
    background: #eef3f9;
}

.why {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.why div {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ================= FOOTER ================= */
footer {
    background: #0b2c4d;
    color: #fff;
    padding: 30px 8%;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .video-wrapper {
        position: static;
        margin: 15px auto;
        width: 120px;
    }

    .hero-card {
        width: 100%;
        height: 520px;
    }
}
/* ================= seo css ================= */

/* Local SEO Section */
.local-seo-section {
    background: #f7f9fc;
    padding: 50px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.local-seo-section h1 {
    font-size: 36px;
    color: #0b2c4d;
    margin-bottom: 15px;
}

.local-seo-section h2 {
    font-size: 24px;
    color: #ff6a00;
    margin-bottom: 25px;
}

.local-seo-section p {
    font-size: 16px;
    color: #333;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.local-seo-section .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff3d00;
    color: #fff;
    font-size: 16px;
    border-radius: 25px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: 0.3s;
}

.local-seo-section .cta-button:hover {
    background-color: #e63600;
}

.local-seo-section .map-container {
    margin: 30px auto;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.local-seo-section .keywords {
    margin-top: 20px;
}

.local-seo-section .keywords span {
    display: inline-block;
    background: #ff6a00;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    margin: 5px;
    font-size: 14px;
}
/*--------seo css-----*/
/* SEO Navigation Section */
.seo-nav {
    background: #0b2c4d;
    padding: 50px 20px;
    text-align: center;
    color: #fff;
}

.seo-nav-container {
    max-width: 1000px;
    margin: auto;
}

.seo-nav h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.seo-nav p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.seo-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.seo-btn {
    padding: 12px 28px;
    background: #ff6a00;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    transition: 0.3s;
}

.seo-btn:hover {
    background: #ff3d00;
}

.seo-btn-main {
    background: #00c853;
    font-weight: bold;
}

.seo-btn-main:hover {
    background: #00b248;
}

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none; /* hidden initially */
}

.popup-box {
  width: 900px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: fadeIn 0.4s ease-in-out;
}

.popup-left { width: 45%; }
.popup-left img { width: 100%; height: 100%; object-fit: cover; }

.popup-right { width: 55%; padding: 30px; position: relative; }

.popup-right input {
  width: 100%; padding: 12px; margin-bottom: 15px; border-radius: 6px; border: 1px solid #ccc;
}

.phone-box { display: flex; gap: 10px; align-items: center; }

.checkbox { font-size: 14px; margin-bottom: 15px; display: block; }

button.glow-btn {
  background: linear-gradient(90deg,#ff6a00,#ff3d00);
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 0 10px #ff6a00, 0 0 20px #ff3d00, 0 0 40px #ff6a00;
  transition: 0.3s;
}

button.glow-btn:hover {
  box-shadow: 0 0 20px #ff6a00, 0 0 40px #ff3d00, 0 0 60px #ff6a00;
  transform: translateY(-2px);
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 50px;
  cursor: pointer;
  color: #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}



/* ================= MOBILE FRIENDLY ================= */
@media (max-width: 1024px) {
    /* Hero section stacks vertically */
    .hero {
        grid-template-columns: 1fr;
        padding: 50px 6%;
    }

    .video-wrapper img {
        width: 400px;
        height: auto;
    }

    .hero-card {
        width: 100%;
        height: 500px;
        margin-top: 20px;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
}

@media (max-width: 768px) {
    /* Header stacks and centers */
    header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    nav {
        justify-content: center;
    }

    .hero h2 {
        font-size: 28px;
    }

    .video-wrapper img {
        width: 250px;
    }

    .hero-card {
        height: 450px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 22px;
    }

    .hero p {
        font-size: 14px;
    }

    .course-btn {
        padding: 15px 25px;
        font-size: 14px;
    }

    .logo img {
        width: 100px;
        height: 80px;
    }
}

