/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Colors */
    --primary: #6C4AB6;
    --primary-dark: #56369e;
    --primary-light: #f3f0ff;
    --secondary-start: #EAF3FF;
    --secondary-end: #D6E6FF;
    --accent: #FF6B6B;
    --white: #FFFFFF;
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    
    /* Spacing */
    --container-max: 1280px;
    --section-py: 100px;
    --section-py-mobile: 60px;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px -15px rgba(108, 74, 182, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* Base Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--slate-900);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-py) 0;
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-py-mobile) 0;
    }
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-brand { color: var(--primary); }
.text-slate { color: var(--slate-500); }
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(108, 74, 182, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(108, 74, 182, 0.4);
}

.btn-outline {
    background-color: var(--white);
    color: var(--slate-900);
    border: 2px solid var(--slate-100);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 13px;
}

/* Header & Nav */
.header {
    height: 80px;
    display: flex;
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid var(--slate-100);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 18px;
    font-weight: 900;
    color: var(--slate-900);
    line-height: 1;
}

.logo-sub {
    font-size: 10px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-500);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
}

.phone-link i {
    color: var(--primary);
}

/* Mobile Nav */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 2000;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-link {
    font-size: 28px;
    font-weight: 800;
    color: var(--slate-900);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
}

@media (max-width: 1024px) {
    .nav-menu, .header-actions {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-start) 0%, var(--secondary-end) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}
    .hero-btns {
        justify-content: center;
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--slate-500);
    margin-bottom: 40px;
    max-width: 540px;
}

@media (max-width: 991px) {
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-btns {
    display: flex;
    gap: 16px;
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
    }
}

.hero-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    position: relative;
}

.hero-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transform: rotate(5deg);
}

/* Grid System */
.grid {
    display: grid;
    gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

/* Cards */
.card {
    background: var(--slate-50);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-100);
    transition: all 0.3s ease;
}

.card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
}

.card-title {
    font-size: 24px;
    margin-bottom: 12px;
}

/* Course Card */
.course-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
}

.course-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 24px;
}

/* Faculty Card */
.faculty-card {
    background: var(--white);
}

.faculty-img {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--slate-100);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.5s ease;
}

.faculty-card:hover .faculty-img {
    filter: grayscale(0);
}

/* Testimonial Card */
.testimonial-card {
    background: var(--slate-800);
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.stars {
    color: #FACC15;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

/* Footer */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-title {
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 32px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-link {
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
    padding-left: 8px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -10px var(--primary);
}

.social-link i,
.social-link svg {
    width: 20px !important;
    height: 20px !important;
    display: block;
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-wrap: wrap;
    gap: 20px;
}

.developed-by {
    font-weight: 800;
    color: var(--slate-300);
}

.developed-by a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.developed-by a:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Reveal Script */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing & Course Cards */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-100);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card:hover {
    box-shadow: 0 20px 40px -15px rgba(108, 74, 182, 0.15);
    transform: translateY(-8px);
    border-color: var(--primary-light);
}

.off-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 800;
    border-radius: var(--radius-full);
}

.pricing-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--slate-900);
}

.pricing-duration {
    font-size: 13px;
    color: var(--slate-500);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-box {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--slate-100);
}

.mrp-price {
    font-size: 14px;
    color: var(--slate-400);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.offer-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.offer-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
}

.offer-banner {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 24px 0;
    text-align: center;
}

.offer-banner h2 {
    font-size: 32px;
    font-weight: 900;
}

@media (max-width: 768px) {
    .offer-banner h2 { font-size: 24px; }
}
.section-header {
    max-width: 600px;
    margin: 0 auto 64px auto;
}

.map-container {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 8px solid var(--slate-50);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.faculty-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faculty-card {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 30px;
}

.faculty-img {
  width: 220px;
  border-radius: 20px;
  object-fit: cover;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .faculty-card {
    flex-direction: column !important;
    text-align: center;
    align-items: center;
  }

  .faculty-img {
    width: 100% !important;
    max-width: 300px;
  }
}
.hero-image-below {
  margin-top: 35px; /* pehle 25 tha → increase */
  display: flex;
  justify-content: center;
}

.hero-image-below img {
  width: 100%;
  max-width: 480px;
  border-radius: 25px; /* more smooth */
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  display: block;
}
.hero-image-below img {
  transition: transform 0.3s ease;
}

.hero-image-below img:hover {
  transform: scale(1.03);
}
.hero-image-below {
  margin-top: 25px;
  display: block;
  padding: 0 10px;
}

.hero-image-below img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;

  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* spacing fix */
.hero-btns {
  margin-bottom: 20px;
}
/* ===== HERO IMAGE FINAL FIX ===== */

.hero-image-below {
  margin-top: 25px;
  padding: 0 16px;
}

.hero-image-below img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;

  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* FIX BUTTON GAP */
.hero-btns {
  margin-bottom: 20px;
}

/* MOBILE LAYOUT FIX */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-card {
    display: none; /* hide right card on mobile */
  }
}
.hero-image-below {
  margin-bottom: 25px;  /* 👈 ye main fix hai */
}

.hero-btns {
  margin-top: 20px;
}
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 50%;
  display: inline-flex;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #7c5cff;
}

.social-icons i {
  width: 22px;
  height: 22px;
  color: white;
}
.focus-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.focus-section h2 {
  color: #0B132B;
}

.focus-section p {
  color: #4B5563;
}
@media (max-width: 768px) {
  .contact-card {
    padding: 16px;
    border-radius: 12px;
  }
}body {
  overflow-x: hidden;
}.contact-card {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.contact-card {
  padding: 48px;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 20px;
  }
}
.form-card {
  padding: 48px;
}

@media (max-width: 768px) {
  .form-card {
    padding: 20px;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}.contact-card {
  width: 100%;
  max-width: 500px;
}
.contact-wrapper {
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 100%;
  max-width: 420px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
.top-bar {
  width: 100%;
  background: #0B132B;
  color: white;
  overflow: hidden;
  white-space: nowrap;
}

.scroll-text {
  display: inline-block;
  padding: 10px 0;
  animation: scroll-left 20s linear infinite;
  font-size: 14px;
  font-weight: 600;
}

@keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.top-bar {
  width: 100%;
  background: #0B132B;
  color: white;
  overflow: hidden;
}

.scroll-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: scroll-left 18s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
  .top-bar {
  background: #0B132B;
  color: white;
  overflow: hidden;
}

.scroll-container {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.scroll-text {
  white-space: nowrap;
  padding-right: 50px;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
}
white-space: nowrap;
.top-bar {
  background: #0B132B !important;
  color: white !important;
  overflow: hidden;
}.top-bar {
  width: 100%;
  background: #0B132B !important;
  color: white !important;
  overflow: hidden;
  padding: 8px 0;
}

.scroll-text {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
  font-size: 14px;
  font-weight: 600;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}