/* ==============NAVBAR============== */

        /* --- General Reset --- */
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8fafb;
        }


        html,body {
          width: 100%;
          overflow-x: hidden;
          scroll-behavior: smooth;
        }

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    /* background: #81c624f8; */
    background-color: rgb(230, 234, 230);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 70px;

    position: sticky;     
    top: 0;
    z-index: 9999;        
}


/* Logo */
.logo {
    height: 200px;
    display: block;
    margin-left: 60px;
}

/* Nav Links */
nav ul {
    display: flex;
    list-style: none;
    gap: 50px;
    font-size: 20px;
    margin-right: -70px;
}

nav ul li a {
    text-decoration: none;
    color: #121212;
    font-weight: 500;
}

.btn-get-free {
    display: inline-block;
    padding: 14px 32px;
    background-color: #25D366; 
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-get-free:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
}


/* ===============================
   HAMBURGER
================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #121212;
  border-radius: 4px;
  transition: 0.3s;
}
/* ===============================
   RESPONSIVE NAVBAR
================================ */
/* ===============================
   MOBILE SMALL HAMBURGER MENU
================================ */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    z-index: 10000;
  }

  nav {
    padding: 12px 5%;
    height: 70px;
    position: relative;
  }

  nav ul {
    position: absolute;
    top: 70px;
    left:0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap:0;
    padding: 0;
    margin:0;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }

  nav ul.active {
    display: flex;
  }

  nav ul li{
    width: 100%;
    border-bottom: 1px solid #d6d6d6;
  }

  nav ul li a {
    display: block;
    padding: 18px 22px;
    color: #121212;
    font-size: 18px;
    font-weight: 500;
  }

  nav ul li a:hover{
    background: #e0e0e0;
  }

  .btn-get-free {
    padding: 9px 18px;
    font-size: 13px;
    }
}
  .logo {
    height: 110px;
    margin-left: 0;
  }


/* =========================
   HERO SECTION
========================= */
.hublead{
    background-color: #a5dfcc;
}
.hero-section {
    /* background-color: #f4f7fe; */
    padding: 80px 20px;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    gap: 60px; /* Space between row and bottom button */
}

/* Side-by-Side Layout */
.hero-main-row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.content-box {
    flex: 1.2; /* Content ko thoda zyada space diya */
}

.tagline {
    font-weight: 700;
    font-size: 1rem;
    color: #1a73e8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.content-box h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 15px 0;
    color: #102a43;
}

.content-box h1 span {
    color: #d4a017; /* Golden Yellow */
    background: linear-gradient(transparent 70%, #fff3d4 70%); /* Highlight effect */
}

.content-box p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #486581;
    line-height: 1.6;
}

/* 1. WhatsApp Button (Green Style) */
.btn-whatsapp {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.2);
    transition: 0.3s all ease;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(40, 167, 69, 0.3);
}

/* Right Side Image */
.image-box {
    flex: 1;
    text-align: right;
}

.image-box img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* 2. Admission Button (Bottom Center) */
.bottom-btn-wrapper {
    width: 100%;
    text-align: center;
}

.btn-admission {
    display: inline-block;
    background-color: #003366; /* Deep Corporate Blue */
    color: white;
    padding: 20px 60px;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 60px;
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.2);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-admission:hover {
    transform: scale(1.1);
    background-color: #002244;
    box-shadow: 0 15px 30px rgba(0, 51, 102, 0.3);
}

/* Mobile Responsiveness */
/* 1. Laptop & Small Desktops (1024px to 1200px) */
@media (max-width: 1200px) {
    .content-box h1 {
        font-size: 2.8rem;
    }
}

/* 2. Tablets & iPad Pro (769px to 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 20px;
    }
    .hero-main-row {
        gap: 30px;
    }
    .content-box h1 {
        font-size: 2.4rem;
    }
    .content-box p {
        font-size: 1.1rem;
    }
    .btn-admission {
        padding: 18px 45px;
        font-size: 1.2rem;
    }
}

/* 3. iPad Portrait & Large Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .hero-main-row {
        flex-direction: column; /* Content aur Image upar-neeche ho jayenge */
        text-align: center;
        gap: 40px;
    }

    .content-box {
        order: 2; /* Text ko image ke neeche laane ke liye */
    }

    .image-box {
        order: 1; /* Image pehle dikhegi */
        width: 100%;
        text-align: center;
    }

    .image-box img {
        max-width: 80%; /* Image thodi choti iPad par */
    }

    .content-box h1 {
        font-size: 2.2rem;
    }

    .container {
        gap: 40px;
    }
}

/* 4. Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 40px 15px;
    }

    .tagline {
        font-size: 0.85rem;
    }

    .content-box h1 {
        font-size: 1.8rem; /* Mobile ke liye Heading choti */
    }

    .content-box p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .image-box img {
        max-width: 100%; /* Mobile par image poori width legi */
    }

    .btn-whatsapp {
        width: 100%; /* Mobile par button full width */
        padding: 15px 20px;
        font-size: 1rem;
    }

    .btn-admission {
        width: 100%; /* Bottom button bhi full width */
        padding: 16px 20px;
        font-size: 1.1rem;
    }
    
    .container {
        gap: 30px;
    }
}
/* Tablet specific adjustment (iPad Air, Pro, Surface Pro 7) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section {
        min-height: auto;      /* 90vh ko hata kar auto kiya taaki extra height na bane */
        padding: 40px 20px;    /* Top/Bottom padding kam ki */
    }

    .container {
        gap: 30px;             /* Container ka gap 60px se 30px kiya */
        justify-content: center;
    }

    .hero-main-row {
        flex-direction: column; /* Content aur image ko stack kiya */
        gap: 20px;             /* Row ke andar ka gap kam kiya */
        text-align: center;
    }

    .content-box h1 {
        font-size: 2.5rem;     /* Heading size adjust kiya */
        margin: 10px 0;
    }

    .content-box p {
        margin-bottom: 20px;   /* Paragraph ke niche ka gap kam kiya */
    }

    .image-box img {
        max-width: 70%;        /* Image ko iPad par bahut bada hone se roka */
        margin: 0 auto;
    }

    .bottom-btn-wrapper {
        margin-top: 10px;      /* Button ke upar ka space adjust kiya */
    }
}

/* --- TABLET & MOBILE CENTER FIX --- */

/* 1. Sabse pehle base image-box ko control karein */
.image-box {
    flex: 1;
    text-align: center; /* Default center rakhein, desktop par grid handle kar lega */
}

.image-box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Image ko box ke andar center karne ke liye */
}

/* 2. Tablet Specific (iPad, Surface Pro) */
@media (max-width: 1024px) {
    .hero-section {
        min-height: auto; /* Extra vertical gap khatam karne ke liye */
        padding: 40px 20px;
    }

    .container {
        gap: 30px; /* Section ke beech ka gap kam kiya */
    }

    .hero-main-row {
        flex-direction: column; 
        text-align: center;
        gap: 30px;
    }

    .image-box {
        width: 100%;
        text-align: center; /* Right side se center mein laane ke liye */
        order: -1; /* Image ko text ke upar dikhane ke liye (Optional) */
    }

    .image-box img {
        max-width: 70%; /* Tablet par image ko screen ke hisaab se set kiya */
    }

    .content-box h1 {
        font-size: 2.2rem;
    }
}

/* 3. Desktop (1025px se upar) ke liye wapas right align agar chahiye */
@media (min-width: 1025px) {
    .image-box {
        text-align: right;
    }
}

/* features */
:root {
    --bg-color: #0066ff; /* Blue background */
    --card-bg: #000a1a;   /* Dark card background */
    --text-white: #ffffff;
}

.linkedin-course-section {
    background: radial-gradient(circle at center, #a2bfbd 0%, #6faeba 100%);
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: var(--text-white);
    min-height: 10vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Top Badge */
.header-badge {
    background: #0d1117;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 0 0 15px 15px;
    font-size: 14px;
    margin-bottom: 50px;
    font-weight: bold;
}

.main-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.main-para {
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-top: -35px;
}


.subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Grid Layout */
.features-row {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 55px;
    margin-bottom: 50px;
}

/* Card Styling */
.feature-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card1 {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 300px;
}


.feature-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: relative;
    height: 180px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--card-bg));
}

.card-content {
    padding: 20px;
    text-align: left;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.card-content p {
    font-size: 16px;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.learn-more {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    border-top: 1px solid #333;
    display: block;
    padding-top: 15px;
    opacity: 0.8;
}

/* Bottom Button */
.btn-admission {
    background: #ffffff;
    color: #0044cc;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.3s;
    display: inline-block;
}

.btn-admission:hover {
    background: #e6e6e6;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* 1. For Tablets & iPad (Desktop se choti screens) */
@media screen and (max-width: 1024px) {
    .main-title {
        font-size: 2.8rem; /* Font thoda chota */
    }
    .features-row {
        justify-content: center;
        gap: 20px;
    }
    .feature-card, .feature-card1 {
        width: 45%; /* Ek line mein 2 cards dikhenge */
    }
}

/* 2. For Mobile Phones (600px se niche) */
@media screen and (max-width: 600px) {
    .main-title {
        font-size: 2rem; /* Mobile ke liye title size */
        margin-top: 20px;
    }
    .main-para {
        font-size: 1.1rem;
        margin-top: 0px;
    }
    .features-row {
        flex-direction: column; /* Cards ko ek ke niche ek lane ke liye */
        align-items: center;
        gap: 25px;
    }
    .feature-card, .feature-card1 {
        width: 100%; /* Card poori width lega */
        max-width: 100%;
    }
    .card-image {
        height: 150px; /* Mobile par image ki height kam */
    }
    .btn-admission {
        width: 90%; /* Button ko full width ke kareeb */
        padding: 12px;
        font-size: 16px;
    }
}
/* 3section */
/* Container and General Setup */
.why-choose-us {
    padding: 80px 20px;
    /* background-color: #f9faff; */
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Isse button niche aayega */
    gap: 60px;
}

/* Main Layout: Desktop par Left-Right */
.main-content-row {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.content-side {
    flex: 1;
}

.sub-title {
    color: #333;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

.content-side h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Zig-Zag Grid Styling */
.cards-grid {
    flex: 1.3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.info-card {
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}

/* Zig-Zag Effect */
.info-card:nth-child(even) {
    margin-top: 40px;
}
.info-card:nth-child(odd) {
    margin-bottom: 40px;
}

.green-card {
    background: linear-gradient(135deg, #2d954b, #0f6304);
    color: white;
}

.white-card {
    background: white;
    color: #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Bottom Admission Button */
.bottom-btn-wrapper {
    width: 100%;
    text-align: center;
}

.btn-admission {
    display: inline-block;
    background-color: #003366; /* Dark Blue */
    color: white;
    padding: 18px 55px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.btn-admission:hover {
    transform: translateY(-5px);
    background-color: #002244;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .main-content-row {
        flex-direction: column;
        text-align: center;
    }
    .info-card:nth-child(even), 
    .info-card:nth-child(odd) {
        margin: 0;
    }
}
/* Testimonial Banner Styling */
/* CTA Section General Styles */
/* Container and Background */
.cta-section {
    padding: 80px 20px;
    background-color: #a5dfcc;
    font-family: 'Inter', sans-serif;
}

.cta-container {
    max-width: 1550px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 90px;
}

/* Testimonial Banner (Dark Header) */
.testimonial-banner {
    background: #001a33;
    color: #ffffff;
    padding: 25px 40px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.students-thumb {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d2ff;
}

.banner-text h2 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.banner-text p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #00d2ff;
    letter-spacing: 1px;
}

/* Main Body Section */
.cta-main {
    background: #ffffff;
    padding: 60px 40px;
    text-align: center;
}

.cta-main h3 {
    font-size: 1.85rem;
    color: #2d3436;
    margin-bottom: 35px;
    line-height: 1.4;
}

.cta-main strong {
    color: #25d366; /* WhatsApp Green */
}

/* Professional WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: #25d366;
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    background: #1eb954;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.arrow {
    margin-left: 15px;
    transition: transform 0.3s;
}

.whatsapp-btn:hover .arrow {
    transform: translateX(8px);
}

.footer-note {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #b2bec3;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablet (iPad) */
@media screen and (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-main {
        padding: 40px 25px;
    }

    .cta-main h3 {
        font-size: 1.5rem;
    }
}

/* Mobile Phone */
@media screen and (max-width: 480px) {
    .cta-section {
        padding: 40px 15px;
    }

    .banner-text h2 {
        font-size: 1.1rem;
    }

    .whatsapp-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;
        box-sizing: border-box;
        justify-content: center;
    }

    .cta-main h3 {
        font-size: 1.25rem;
    }
    
    .footer-note {
        font-size: 0.75rem;
    }
}
.site-footer{
  background-color: rgb(230, 234, 230);
  color:#0b0b0b;
  padding:40px 35px;
  font-family:Arial, sans-serif;
  margin-top: -80px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.logo1 {
    height: 150px;
    display: block;
    margin-left: 0px;
    margin-bottom: -40px;
    margin-top: -40px;
}



.footer-left{
  font-size:14px;
}

.footer-left a{
  color:#0a0a0a;
  text-decoration:none;
  font-size:13px;
}

.footer-center{
  font-size:15px;
  font-weight:500;
  display:flex;
  align-items:center;
  gap:15px;
  white-space: nowrap;
}

.footer-center .divider{
  opacity:.6;
}

.footer-right a{
  margin-left:10px;
}

.footer-right img{
  width:22px;
  filter:brightness(0) invert(1);
}

/* RESPONSIVE */
@media(max-width:768px){
  .footer-container{
    flex-direction:column;
    gap:12px;
    text-align:center;
  }

  .footer-right a{
    margin:0 6px;
  }
}

/* horizontal line */
.divider {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1); 
    margin: 20px 0;
    width: 100%;
}

.card.active .divider {
    background: rgba(255, 255, 255, 0.2);
}
