   /* ==================== CSS RESET & BASE ==================== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            /* Colors */
            --primary: #232F5F;
            --primary-light: #2d3d7a;
            --primary-dark: #1a2348;
            --primary-foreground: #F5F0E6;
            
            --secondary: #E6CC8F;
            --secondary-light: #f0dba8;
            --secondary-dark: #d4b86d;
            --secondary-foreground: #232F5F;
            
            --background: #FAF8F5;
            --foreground: #1a2348;
            
            --card: #FFFFFF;
            --card-foreground: #1a2348;
            
            --muted: #E8E4DD;
            --muted-foreground: #5a6178;
            
            --accent: #F0E8D6;
            --accent-foreground: #232F5F;
            
            --border: #E2DDD3;
            
            /* Spacing */
            --radius: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;
            
            /* Shadows */
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
            --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);
            
            /* Transitions */
            --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: 80px; /* For header space */
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'STIX Two Text', 'Playfair Display', Georgia, serif;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

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

        ul {
            list-style: none;
        }

        /* ==================== HEADER STYLES ==================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: var(--primary);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .container-wide {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        @media (max-width: 768px) {
            .container-wide {
                padding: 0 1.5rem;
            }
        }

        /* ==================== SPACING ==================== */
        .py-20 { padding-top: 5rem; padding-bottom: 5rem; }

        .px-4 { padding-left: 1rem; padding-right: 1rem; }
        .p-4 { padding: 1rem; }
        .p-6 { padding: 1.5rem; }

        .mb-1 { margin-bottom: 0.25rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }

        .pb-2 { padding-bottom: 0.5rem; }
        .mr-1 { margin-right: 0.25rem; }

        .mx-auto { margin-left: auto; margin-right: auto; }
        /* ==================== UTILITIES ==================== */
        .relative { position: relative; }
        .fixed { position: fixed; }
        .absolute { position: absolute; }

        .flex { display: flex; }
        .hidden { display: none; }
        .block { display: block; }

        .items-center { align-items: center; }
        .justify-between { justify-content: space-between; }
        .flex-col { flex-direction: column; }

        .gap-1 { gap: 0.25rem; }
        .gap-2 { gap: 0.5rem; }
        .gap-3 { gap: 0.75rem; }
        .gap-4 { gap: 1rem; }

        .w-4 { width: 1rem; }
        .w-6 { width: 1.5rem; }
        .w-12 { width: 3rem; }

        .h-4 { height: 1rem; }
        .h-6 { height: 1.5rem; }
        .h-10 { height: 2.5rem; }
        .h-12 { height: 3rem; }

        /* ==================== SPACING ==================== */
        .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
        .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
        .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
        .py-8 { padding-top: 2rem; padding-bottom: 2rem; }

        .px-4 { padding-left: 1rem; padding-right: 1rem; }
        .p-2 { padding: 0.5rem; }
        .p-3 { padding: 0.75rem; }
        .p-4 { padding: 1rem; }

        .pl-4 { padding-left: 1rem; }

        .mt-0\.5 { margin-top: -0.125rem; }

        /* ==================== TYPOGRAPHY ==================== */
        .font-display {
            font-family: 'STIX Two Text', serif;
        }

        .text-xs { font-size: 0.75rem; line-height: 1rem; }
        .text-sm { font-size: 0.875rem; line-height: 1.25rem; }
        .text-lg { font-size: 1.125rem; line-height: 1.75rem; }
        .text-xl { font-size: 1.25rem; line-height: 1.75rem; }

        .font-medium { font-weight: 500; }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }

        .leading-none { line-height: 1; }
        .leading-snug { line-height: 1.375; }

        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ==================== COLORS ==================== */
        .text-primary { color: var(--primary); }
        .text-secondary { color: var(--secondary); }
        .text-foreground { color: var(--foreground); }
        .text-muted-foreground { color: var(--muted-foreground); }
        .text-primary-foreground { color: var(--primary-foreground); }

        .bg-primary { background-color: var(--primary); }
        .bg-secondary { background-color: var(--secondary); }
        .bg-background { background-color: var(--background); }
        .bg-accent { background-color: var(--accent); }

        .bg-background\/95 { background-color: rgba(250, 248, 245, 0.95); }
        .bg-accent\/50 { background-color: rgba(240, 232, 214, 0.5); }

        .border-border { border-color: var(--border); }

        /* ==================== BORDERS & RADIUS ==================== */
        .rounded-lg { border-radius: var(--radius); }
        .rounded-xl { border-radius: var(--radius-lg); }
        .rounded-full { border-radius: 9999px; }

        .border-b { border-bottom: 1px solid; }

        /* ==================== BUTTONS ==================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-size: 0.9375rem;
            font-weight: 500;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all var(--transition-base);
            font-family: 'Inter', sans-serif;
        }

        .btn-hero {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
            color: var(--primary);
            box-shadow: 0 4px 15px rgba(230, 204, 143, 0.3);
            font-family: 'STIX Two Text', serif;
        }

        .btn-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(230, 204, 143, 0.4);
        }

        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.125rem;
        }

        /* ==================== LOGO ==================== */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        @media (min-width: 640px) {
            .logo-text {
                display: block;
            }
        }

        .logo-name {
            font-family: 'STIX Two Text', serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--foreground);
            display: block;
        }

        .logo-sub {
            font-size: 0.75rem;
            color: var(--muted-foreground);
            margin-top: -0.125rem;
            display: block;
        }

        /* ==================== DESKTOP NAVIGATION ==================== */
        .desktop-nav {
            display: none;
            align-items: center;
            gap: 0.25rem;
        }

        @media (min-width: 1024px) {
            .desktop-nav {
                display: flex;
            }
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 2.5rem;
            padding: 0 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: var(--radius);
            transition: background-color var(--transition-fast);
        }

        .nav-link:hover {
            background-color: var(--secondary) !important;
        }

        .nav-trigger {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 2.5rem;
            padding: 0 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            border-radius: var(--radius);
            background: transparent;
            border: none;
            cursor: pointer;
            transition: background-color var(--transition-fast);
        }

        .nav-trigger:hover {
            background-color: var(--secondary);
        }

        .nav-content {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 280px;
            background: var(--primary);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            padding: 1rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all var(--transition-fast);
            z-index: 100;
        }

        .nav-item:hover .nav-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-item a {
            color: #FFFFFF;
            font-family: 'STIX Two Text', 'Playfair Display', Georgia, serif;
            text-transform: uppercase;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .nav-item button {
            color: #FFFFFF;
            font-family: 'STIX Two Text', 'Playfair Display', Georgia, serif;
            text-transform: uppercase;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        /* VERTICAL DROPDOWN STYLES */
        .nav-grid {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            width: 100%;
        }

        .submenu-link {
            display: flex;
            flex-direction: column;
            padding: 0.75rem;
            border-radius: var(--radius);
            transition: all var(--transition-fast);
            width: 100%;
        }

        .submenu-link:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }

        .submenu-link:hover .submenu-desc {
            color: var(--primary);
        }

        .submenu-title {
            font-size: 0.875rem;
            font-weight: 500;
            line-height: 1.2;
            margin-bottom: 0.25rem;
        }

        .submenu-desc {
            font-size: 0.75rem;
            line-height: 1.3;
            color: #fff;
            opacity: 0.8;
        }

        /* ==================== MOBILE NAVIGATION ==================== */
        .mobile-menu-btn {
            width: 2.5rem;
            height: 2.5rem;
            overflow: hidden;
            border: none;
            border-radius: 100%;
            color: #232f5f;
            cursor: pointer;
            background: #e6cc8f;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        @media (min-width: 1024px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .mobile-menu-btn:hover {
            background-color: #e6cc8f;
        }

        .mobile-menu {
            display: none;
            background: var(--background);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.3s ease;
        }

        .mobile-menu.open {
            display: block;
            max-height: 80vh;
            overflow-y: auto;
        }

        .mobile-nav {
            padding: 1rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mobile-nav-item {
            width: 100%;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 0.75rem 1rem;
            font-weight: 500;
            border-radius: var(--radius);
            background: none;
            border: none;
            cursor: pointer;
            transition: background-color var(--transition-fast);
        }

        .mobile-nav-link:hover {
            background-color: var(--secondary);
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-submenu.open {
            max-height: 500px;
        }

        .mobile-submenu-link {
            display: block;
            padding: 0.5rem 2rem;
            color: var(--muted-foreground);
            border-radius: var(--radius);
            transition: all var(--transition-fast);
        }

        .mobile-submenu-link:hover {
            color: var(--primary);
            background-color: var(--secondary);
        }


.center {
  text-align: center;
}

/* HERO */
.hero {
  position: relative;
  background: #0f172a;
  color: #fff;
  overflow: hidden;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  background: #e6cc8f;
  opacity: 0.15;
  filter: blur(100px);
  border-radius: 50%;
}

.hero-bg::before {
  width: 300px;
  height: 300px;
  top: 50px;
  right: 80px;
}

.hero-bg::after {
  width: 200px;
  height: 200px;
  bottom: 60px;
  left: 80px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
}

/* BADGES */
.badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e6cc8f;
  margin-bottom: 16px;
}

.badge.dark {
  color: #64748b;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section.light {
  background: #f8fafc;
}

.section.accent {
  background: #f1f5f9;
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card,
.value-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.card:hover,
.value-card:hover {
  transform: translateY(-6px);
}

.card.offset {
  margin-top: 40px;
}

/* ICONS */
.icon {
  width: 48px;
  height: 48px;
  background: #0f172a;
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.icon.large {
  width: 64px;
  height: 64px;
  font-size: 26px;
  margin: 0 auto 20px;
}

/* TEXT */
h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

h3 {
  margin-bottom: 10px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn:hover {
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.3rem;
  }
}

        /* ==================== ENQUIRY POPUP STYLES ==================== */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .popup-overlay.active {
            display: flex;
        }

        .popup-container {
            background: var(--background);
            border-radius: var(--radius-xl);
            width: 90%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
            animation: slideUp 0.3s ease;
            position: relative;
        }
        .py-dd4{
            padding: 60px 0px;
        }
        .popup-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .popup-title {
            font-family: 'STIX Two Text', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary);
        }

        .popup-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--muted-foreground);
            cursor: pointer;
            padding: 0.25rem;
            border-radius: var(--radius);
            transition: all var(--transition-fast);
        }

        .popup-close:hover {
            background-color: var(--accent);
            color: var(--primary);
        }

        .popup-body {
            padding: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--foreground);
            font-size: 0.9375rem;
        }

        .form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-family: 'Inter', sans-serif;
            font-size: 0.9375rem;
            transition: border-color var(--transition-fast);
            background-color: var(--card);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(35, 47, 95, 0.1);
        }

        .form-select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-family: 'Inter', sans-serif;
            font-size: 0.9375rem;
            background-color: var(--card);
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
        }

        .form-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(35, 47, 95, 0.1);
        }

        .form-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-family: 'Inter', sans-serif;
            font-size: 0.9375rem;
            min-height: 100px;
            resize: vertical;
            background-color: var(--card);
        }

        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(35, 47, 95, 0.1);
        }

        .popup-footer {
            padding: 1.5rem;
            border-top: 1px solid var(--border);
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
        }

        .btn-secondary {
            background: var(--muted);
            color: var(--muted-foreground);
        }

        .btn-secondary:hover {
            background: var(--border);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ==================== ANIMATIONS ==================== */
        .transition-transform {
            transition: transform var(--transition-fast);
        }

        .rotate-180 {
            transform: rotate(180deg);
        }

        /* ==================== BACKDROP BLUR ==================== */
        .backdrop-blur-md {
            backdrop-filter: blur(12px);
        }

        /* ==================== CTA ==================== */
        .nav-cta {
            display: none;
        }

        @media (min-width: 1024px) {
            .nav-cta {
                display: flex;
                align-items: center;
                gap: 1rem;
            }

            .header {
                background: var(--primary);
            }

            .logo-icon {
                width: 80%;
            }
            
            .nav-content {
                min-width: 280px;
            }
        }
 /* Temporary styles for banner alignment */
    body {
      padding-top: 80px; /* To match header height */
    }
    
    .container-wide {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
    }
    
    @media (max-width: 768px) {
      .container-wide {
        padding: 14px 1.5rem;
      }
    }
    
    /* Hero Section Styles */
    .hero {
      position: relative;
      min-height: 65vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .hero-overlay {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(35, 47, 95, 0.6) 0%, rgba(26, 35, 72, 0.75) 50%);
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
    }
    
    .hero-content .inner-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 100px 6rem;
    }
    
    .hero-text {
      max-width: 800px;
    }
    
    .hero-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(230, 204, 143, 0.2);
      backdrop-filter: blur(10px);
      border: 1px solid var(--secondary, #E6CC8F);
      border-radius: 50px;
      padding: 0.5rem 1.25rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--secondary, #E6CC8F);
      margin-bottom: 2rem;
      font-family: 'Inter', sans-serif;
    }
    
    .badge-dot {
      width: 8px;
      height: 8px;
      background: var(--secondary, #E6CC8F);
      border-radius: 50%;
      margin-right: 0.75rem;
      animation: pulse 2s infinite;
    }
    
    .hero-title {
      font-family: 'STIX Two Text', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 600;
      line-height: 1.1;
      color: #FFFFFF;
      margin-bottom: 1.5rem;
    }
    
    .text-secondary {
      color: var(--secondary, #E6CC8F);
    }
    
    .hero-description {
      font-size: 1.125rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2.5rem;
      max-width: 600px;
      font-family: 'Inter', sans-serif;
    }
    
    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.875rem 1.75rem;
      font-size: 0.9375rem;
      font-weight: 500;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
      gap: 0.5rem;
      cursor: pointer;
      border: none;
    }
    
    .btn-hero {
      background: var(--secondary, #E6CC8F);
      color: var(--primary, #232F5F);
      border: none;
    }
    
    .btn-hero:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(230, 204, 143, 0.4);
    }
    
    .btn-hero-outline {
      background: transparent;
      color: #e6cc8f;
    }
    
    .btn-hero-outline:hover {
       background: #e6cc8f;
    color: #232f5f;
}
    .btn svg {
      width: 20px;
      height: 20px;
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    
    /* Quote Section Styles */
    .quote-section {
      background: var(--secondary);
    }
    
    .quote-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin: 0 auto;
    }
    
    .quote-image {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      height: 400px;
      box-shadow: 0 20px 40px rgba(35, 47, 95, 0.1);
    }
    
    .quote-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .quote-image:hover img {
      transform: scale(1.03);
    }
    
    .quote-image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        45deg,
        rgba(230, 204, 143, 0.15) 0%,
        rgba(230, 204, 143, 0.05) 100%
      );
      pointer-events: none;
    }
    
    .quote-content {
      padding: 2.5rem 10rem;
      position: relative;
    }
    
    .quote-decoration {
      margin-bottom: 2rem;
      color: var(--secondary, #E6CC8F);
    }
    
    .quote-decoration svg {
      width: 60px;
      height: 60px;
    }
    
    .quote-heading {
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--primary, #232F5F);
      margin-bottom: 2rem;
      position: relative;
      padding-left: 0.75rem;
    }
    
    .quote-heading::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 16px;
      background: var(--secondary, #E6CC8F);
    }
    
    .quote-text {
      margin-bottom: 3rem;
    }
    
    .quote-main {
      font-family: 'STIX Two Text', serif;
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      font-style: italic;
      line-height: 1.4;
      color: var(--primary, #232F5F);
      margin-bottom: 1.5rem;
      position: relative;
    }
    
    .quote-mark {
      color: var(--secondary, #E6CC8F);
      font-size: 2.5rem;
      line-height: 0;
      vertical-align: middle;
      position: relative;
      top: -5px;
    }
    
    .quote-author {
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: rgba(35, 47, 95, 0.7);
      padding-left: 1.5rem;
      position: relative;
    }
    
    .quote-author::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 20px;
      height: 1px;
      background: var(--secondary, #E6CC8F);
    }
    
    .quote-footer {
      border-top: 1px solid rgba(230, 204, 143, 0.3);
      padding-top: 1.5rem;
    }
    
    .weather-info {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(230, 204, 143, 0.1);
      padding: 0.75rem 1.25rem;
      border-radius: 50px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--primary, #232F5F);
    }
    
    .weather-info svg {
      width: 20px;
      height: 20px;
      stroke: var(--secondary, #E6CC8F);
    }
    
    /* Popup Modal Styles */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(35, 47, 95, 0.8);
      backdrop-filter: blur(8px);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .modal-overlay.active {
      display: flex;
      opacity: 1;
    }
    
    .modal-container {
      background: white;
      border-radius: 20px;
      width: 90%;
      max-width: 500px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: translateY(20px);
      transition: transform 0.3s ease;
      box-shadow: 0 25px 50px rgba(35, 47, 95, 0.2);
    }
    
    .modal-overlay.active .modal-container {
      transform: translateY(0);
    }
    
    .modal-header {
      background: var(--secondary, #E6CC8F);
      color: var(--primary, #232F5F);
      padding: 1.5rem 2rem;
      border-radius: 20px 20px 0 0;
      position: relative;
    }
    
    .modal-title {
      font-family: 'STIX Two Text', serif;
      font-size: 1.75rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .modal-subtitle {
     
      font-size: 0.9375rem;
      opacity: 0.9;
    }
    
    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    
    .modal-close:hover {
      background: rgba(255, 255, 255, 0.2);
    }
    
    .modal-close svg {
      width: 20px;
      height: 20px;
      stroke: var(--primary);
    }
    
    .modal-content {
      padding: 2rem;
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-label {
      display: block;
      font-family: STIX Two Text, serif;
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--primary, #232F5F);
      margin-bottom: 0.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 0.875rem 1rem;
      border: 2px solid #e2e8f0;
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      color: var(--primary, #232F5F);
      background: white;
      transition: all 0.3s ease;
    }
    
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      outline: none;
      border-color: var(--secondary, #E6CC8F);
      box-shadow: 0 0 0 3px rgba(230, 204, 143, 0.1);
    }
    
    .form-textarea {
      min-height: 100px;
      resize: vertical;
    }
    
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    
    .form-submit {
      width: 100%;
      padding: 1rem;
      background: var(--secondary, #E6CC8F);
      color: var(--primary, #232F5F);
      border: none;
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 1rem;
    }
    
    .form-submit:hover {
      background: #d9b96a;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(230, 204, 143, 0.3);
    }
    
    .form-submit:active {
      transform: translateY(0);
    }
    
    .success-message {
      display: none;
      text-align: center;
      padding: 3rem 2rem;
    }
    
    .success-icon {
      width: 80px;
      height: 80px;
      background: #10b981;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem;
    }
    
    .success-icon svg {
      width: 40px;
      height: 40px;
      stroke: white;
    }
    
    .success-title {
      font-family: 'STIX Two Text', serif;
      font-size: 1.5rem;
      color: var(--primary, #232F5F);
      margin-bottom: 1rem;
    }
    
    .success-text {
      font-family: 'Inter', sans-serif;
      color: #64748b;
      margin-bottom: 2rem;
    }
    
    /* Responsive Styles */
    @media (max-width: 1200px) {
      .hero-content .inner-content {
        max-width: 100%;
        padding-left: 6rem;
        padding-right: 2rem;
      }
    }
    
    @media (max-width: 992px) {
      .quote-container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      
      .quote-image {
        height: 400px;
      }
      
      .quote-content {
        padding: 0 1.5rem;
      }
      .mobile-menu-btn i {
    line-height: 24px;
    font-size: 17px;
}
.pillars-grid{
      grid-template-columns: repeat(1, 1fr);
}
.pillar-icon img {
    height: auto;
}

.pillar-icon {
    height: auto;
}
    .schools-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .mobile-menu.hidden{
      display: none !important;
    }
    .mobile-menu.open {
    display: block !important;
}
.footer-bottom{
      margin-top: 1rem !important;
}
.footer{
      padding: 4rem 0 2rem !important;
}
.mobile-menu-btn:after {
    height: 100%;
    width: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}
    }
    
    @media (max-width: 768px) {
      .hero {
        min-height: 80vh;
      }
      
      .hero-content .inner-content {
        padding: 80px 1.5rem;
      }
      
      .hero-title {
        font-size: 2.5rem;
      }
      
      .hero-description {
        font-size: 1rem;
      }
      
      .hero-buttons {
        flex-direction: column;
      }
      
      .btn {
        width: 100%;
        justify-content: center;
      }
      
      .modal-container {
        width: 95%;
        margin: 1rem;
      }
      
      .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
    }
    
    @media (max-width: 576px) {
      .hero {
        min-height: 70vh;
      }
      
      .hero-content .inner-content {
        padding: 60px 1rem;
      }
      
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
      }
      
      .quote-section {
        padding: 3rem 0;
      }
      
      .quote-image {
        height: 300px;
      }
      
      .quote-main {
        font-size: 1.5rem;
      }
      
      .quote-content {
        padding: 0 1rem;
      }
      
      .modal-content {
        padding: 1.5rem;
      }
      
      .modal-header {
        padding: 1.25rem 1.5rem;
      }
      
      .modal-title {
        font-size: 1.5rem;
      }
    }
    
    @media (max-width: 480px) {
      .hero {
        min-height: 70vh;
      }
      
      .hero-content .inner-content {
        padding: 60px 1rem;
      }
      
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
      }
    }
/* ==================== FOOTER ==================== */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer {
    padding: 2rem 0;
  }
}

a{
font-family: 'STIX Two Text', serif;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 240, 230, 0.1);
  border-radius: 50%;
  transition: all var(--transition-base);
  font-family: 'STIX Two Text', serif;
}

.social-links a:hover {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-links-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-col a {
  font-size: 1rem;
  opacity: 1;
  transition: all var(--transition-fast);
}

.footer-links-col a:hover {
  opacity: 1;
  color: var(--secondary);
}

.campus-info {
  margin-bottom: 1.5rem;
}

.campus-name {
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.campus-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  opacity: 0.8;
}

.campus-address svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 240, 230, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.6;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  opacity: 0.6;
  transition: all var(--transition-fast);
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--secondary);
}

/* ==================== ANIMATIONS ==================== */
.animate-fade-up {
  animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ================= NEW SLIDER STYLES ================= */
.slider-section {
    position: relative;
    padding: 3rem 0;
    background: transparent; /* Transparent background */
}

.slider-title {
    text-align: center;
    margin-bottom: 3rem;
}

.slider-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px; /* Space for arrows on both sides */
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.slider-slide {
    flex: 0 0 calc((100% - 4rem) / 3); /* 3 cards with gaps */
    min-width: 0; /* Important for flex shrink */
    border-radius: var(--radius);
    overflow: hidden;
    background: transparent; /* TRANSPARENT CARD BACKGROUND */
    transition: transform 0.3s ease;
}

.slider-slide:hover {
    transform: translateY(-5px);
}

.slide-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-slide:hover .slide-image img {
    transform: scale(1.05);
}

.slide-content {
    padding: 1.5rem;
    background: transparent; /* TRANSPARENT CONTENT BACKGROUND */
}

/* CARD HEADING STYLES - YOUR REQUEST */
.slider-slide h3 {
    font-size: 1.25rem; /* 1.25rem font size */
    color: var(--primary); /* Primary color */
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

/* CARD TEXT STYLES - YOUR REQUEST */
.slider-slide p {
    font-size: 1.125rem; /* 1.125rem font size */
    color: var(--primary); /* Primary color */
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* NAVIGATION ARROWS - POSITIONED OUTSIDE */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 4rem;
    color: var(--primary);
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    outline: none;
}

.slider-nav:hover {
    color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .slider-wrapper {
        padding: 0 70px;
    }
    
    .slider-slide {
        flex: 0 0 calc((100% - 2rem) / 2); /* 2 cards on tablet */
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .slider-wrapper {
        padding: 0 60px;
    }
    
    .slider-slide {
        flex: 0 0 100%; /* 1 card on mobile */
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 3rem;
    }
    
    .slide-image {
        height: 200px;
    }
    
    /* Keep font sizes consistent on mobile */
    .slider-slide h3 {
        font-size: 1.25rem; /* Keep 1.25rem on mobile */
    }
    
    .slider-slide p {
        font-size: 1.125rem; /* Keep 1.125rem on mobile */
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        padding: 0 50px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 2.5rem;
    }
    
    .slide-image {
        height: 180px;
    }
    
    .slide-content {
        padding: 1.2rem;
    }
    
    .slider-slide h3 {
        font-size: 1.25rem; /* Keep 1.25rem on mobile */
    }
    
    .slider-slide p {
        font-size: 1.125rem; /* Keep 1.125rem on mobile */
    }
}

/* ================= HERO ================= */
.hero {
    position: relative;
    height: 87vh;
    min-height: 500px;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    color: #fff;
}

/* ================= DETAILS STRIP ================= */
.details-strip {
    background: #fff;
    margin-top: -60px;
    position: relative;
    z-index: 2;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    width: 100%;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem 0;
    gap: 2rem;
    text-align: center;
}

.detail-item span {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.detail-item h4 {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    color: var(--primary);
}

.section-heading{
    font-size: 2.5rem;
}

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

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

/* ================= ABOUT / BEYOND ACADEMICS ================= */
.about-campus {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.single-campus-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform .4s ease;
}

.single-campus-image img:hover {
    transform: scale(1.02);
}

.about-campus .campus-description p {
    color: var(--primary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.about-campus .campus-description h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: 1.3;
}

/* ================= CREATORS' LAB SECTION ================= */
.creators-lab-section {
    background: #f3f3f3;
}

.creators-lab {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 70px;
}

.creators-lab-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--primary);
}

.creators-lab-content p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--primary);
}

.creators-lab-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
}
.py-20 { padding: 5rem 0; }
.text-center { text-align: center; }

/* ================= GRADES ================= */
.grades-accordion {
    display: flex;
    gap: 1rem;
    height: 320px;
}

.grade-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    transition: flex .6s ease;
    height: 100%;
}

.grades-accordion:hover .grade-panel { flex: .8; }
.grades-accordion .grade-panel:hover { flex: 2.5; }

.grade-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grade-panel::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(35,47,95,.45), rgba(35,47,95,.15));
}

.grade-content {
    position:absolute;
    inset:0;
    padding:1.5rem;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    color:#fff;
    z-index: 2;
}

.grade-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Responsive adjustments */
@media(max-width: 900px){
    .about-campus, 
    .creators-lab { 
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .creators-lab{
        margin-bottom: 20px;
    }
    .slider-section{
        padding: 0px;
    }
}

@media (max-width: 480px) {
    .grades-accordion { 
        flex-direction:column; 
        height:auto; 
    }
    .grade-panel { 
        height:200px;
    }
}
/* ==================== HERO BANNER - ALIGNED WITH HEADER LOGO ==================== */
        .heroinner  {
            min-height: 65vh;
            display: flex;
            align-items: center;
            border-bottom-left-radius: 40px;
            border-bottom-right-radius: 40px;
        }

        .heroinner .hero-content {
            width: 100%;
            padding: 80px 0;
            max-width: 100%;
            transform: none;
            position: static;
        }

        .heroinner .hero-content .inner-content {
            max-width: 1400px;
            margin: 0 auto;
            padding-left: 6rem;
            padding-right: 2rem;
            width: 100%;
            padding-top: 0px;
            padding-bottom: 0px;
        }

        .heroinner  span {
            letter-spacing: 2px;
            color: var(--secondary);
            font-size: 14px;
            font-family: 'STIX Two Text', serif;
            text-transform: uppercase;
            font-weight: 500;
            display: block;
            margin-bottom: 0.5rem;
        }

        .heroinner  h1 {
            font-family: 'STIX Two Text', serif;
            font-size: clamp(2.5rem, 5vw, 3rem);
            color: #ffffff;
            margin: 18px 0;
            line-height: 1.2;
            text-align: left;
        }

        .heroinner  p {
            color: #e5e5e5;
            font-size: 1.25rem;
            line-height: 1.7;
            font-family: 'STIX Two Text', serif;
            max-width: 600px;
            opacity: 0.9;
            text-align: left;
        }

        /* ==================== ADVISORY BOARD SECTION ==================== */
        .advisory-section {
            padding: 5rem 0;
        }

        .section-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-intro h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .section-intro p {
            font-size: 1.125rem;
            color: #333333;
            line-height: 1.7;
        }

        /* ==================== ADVISORY CARD LAYOUT ==================== */
        .advisory-card {
            display: flex;
            background: var(--card);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
            min-height: 370px;
            transition: transform 0.3s ease;
        }

        .advisory-card:hover {
            transform: translateY(-5px);
        }

        /* Image Container - Left Side */
        .advisory-image {
            flex: 0 0 40%;
            overflow: hidden;
            position: relative;
        }

        .advisory-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .advisory-card:hover .advisory-image img {
            transform: scale(1.05);
        }

        /* Content Container - Right Side */
        .advisory-content {
            flex: 0 0 60%;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
        }

        .advisory-content h3 {
            font-family: 'STIX Two Text', serif;
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary);
            font-weight: 600;
        }

        .role {
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(35, 47, 95, 0.2);
            font-family: 'STIX Two Text', serif;
        }

        .desc {
            font-size: 1.25rem;
            color: var(--primary);
            line-height: 1.6;
            flex-grow: 1;
            font-family: 'STIX Two Text', serif;
        }

        /* ==================== READ MORE BUTTON ==================== */
        .read-more {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            width: fit-content;
            margin-top: 1.5rem;
        }

        .read-more:hover {
            background: var(--secondary);
            color: var(--primary);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1200px) {
            .heroinner .hero-content .inner-content {
                max-width: 100%;
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }

        @media (max-width: 900px) {
            .heroinner  {
                min-height: 60vh;
            }
            
            .heroinner .hero-content {
                padding: 60px 0;
            }
            
            .heroinner .hero-content .inner-content {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
            
            .heroinner  h1 {
                font-size: 38px;
            }
            
            .advisory-card {
                min-height: 350px;
            }
            .advisory-image img{
                height: auto;
            }
        }
        
        @media (max-width: 768px) {
            .heroinner  {
                min-height: 55vh;
                border-bottom-left-radius: 30px;
                border-bottom-right-radius: 30px;
            }
            
            .heroinner .hero-content {
                padding: 50px 0;
            }
            
            .heroinner .hero-content .inner-content {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
            
            .heroinner  h1 {
                font-size: 32px;
            }
            
            .heroinner  p {
                font-size: 16px;
            }
            
            .py-20 {
                padding: 3rem 0;
            }
            
            .advisory-card {
                flex-direction: column;
                min-height: auto;
            }
            
            .advisory-image {
                flex: 0 0 auto;
                width: 100%;
            }
            
            .advisory-content {
                width: 100%;
                padding: 1.5rem;
            }
            
            .advisory-content h3 {
                font-size: 1.5rem;
            }
            
            .role {
                font-size: 1rem;
            }
            
            .desc {
                font-size: 0.95rem;
            }
            .advisory-image img{
                height: auto;
            }
            .advisory-section .container .advisory-card:nth-child(even) {
    flex-direction: column-reverse;
}
        }
        
        @media (max-width: 600px) {
            .heroinner  {
                min-height: 50vh;
            }
            
            .heroinner .hero-content {
                padding: 40px 0;
            }
            
            .heroinner .hero-content .inner-content {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .heroinner  h1 {
                font-size: 28px;
            }
            
            .heroinner  span {
                font-size: 13px;
            }
            
            .heroinner  p {
                font-size: 0.95rem;
            }
            
            .advisory-image {
                flex: 0 0 auto;
            }
            
            .section-intro h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .heroinner  {
                min-height: 45vh;
                border-bottom-left-radius: 25px;
                border-bottom-right-radius: 25px;
            }
            
            .heroinner .hero-content {
                padding: 30px 0;
            }
            
            .heroinner .hero-content .inner-content {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .heroinner h1 {
                font-size: 1.9rem;
            }
            
            .heroinner p {
                font-size: 0.9rem;
            }
            
            .advisory-section {
                padding: 2rem 0;
            }
        }
        
        @media (max-width: 360px) {
            .heroinner h1 {
                font-size: 1.7rem;
            }
            
            .heroinner p {
                font-size: 0.85rem;
            }
            
            .section-intro h2 {
                font-size: 1.6rem;
            }
        }

/* ==================== GENESIS SECTION ==================== */
.genesis {
    padding-top: 5rem;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 1.5rem;
    width: 100%;
}

.genesis-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 20px;
}

.genesis-image img {
    max-width: 420px;
}

.genesis-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.genesis-content .description {
    color: var(--muted-foreground);
    font-family: 'STIX Two Text', serif;
    max-width: 520px;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    line-height: 1.8;
}

/* ==================== GENESIS SECTION ALTERNATING BACKGROUNDS ==================== */
.genesis-wrapper:nth-child(2n) {
    background-color: #F1F1F1;
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin: 0 -3rem;
}

/* ==================== TABS ==================== */
.tabs {
    display: flex;
    background: var(--primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 520px;
    box-shadow: var(--shadow-md);
}

.tab-btn {
    flex: 1;
    padding: .9rem;
    background: none;
    border: none;
    text-transform: uppercase;
    color: var(--primary-foreground);
    font-family: 'STIX Two Text', serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--transition);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.tab-btn.active {
    background: var(--primary-dark);
    color: var(--secondary);
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

.tab-content {
    display: none;
    margin-top: 1.5rem;
    color: var(--primary);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.7;
    padding-left: 0.5rem;
    /* border-left: 3px solid var(--secondary); */
    font-family: 'STIX Two Text', serif;
    background: var(--secondary);
}

.tab-content.active {
    display: block;
    animation: fadeUp 0.4s ease forwards;
}

/* ==================== VIDEO SECTION ==================== */
.video-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f7f3 0%, #f0eee6 100%);
    border-radius: 40px;
    margin-top: 2rem;
}

.video-container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.video-header {
    margin-bottom: 3rem;
}

.video-header span {
    letter-spacing: 2px;
    color: var(--secondary);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
    font-family: 'STIX Two Text', serif;
}

.video-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'STIX Two Text', serif;
}

.video-header p {
    color: var(--primary);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'STIX Two Text', serif;
}

.video-wrapper {
    position: relative;
    
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0,0,0,.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 650px;
    background: linear-gradient(rgba(35,47,95,0.1), rgba(35,47,95,0.3)), 
                url('../assets/genesis/thumb-genesis.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    position: relative;
    z-index: 2;
}

.play-button::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(230, 204, 143, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.play-button i {
    color: var(--primary);
    font-size: 2rem;
    margin-left: 5px;
}

.video-wrapper:hover .play-button {
    transform: scale(1.1);
    background: var(--primary);
}

.video-wrapper:hover .play-button i {
    color: var(--secondary);
}

.video-caption {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.6;
    font-family: 'STIX Two Text', serif;
}

.video-caption strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-family: 'STIX Two Text', serif;
}

/* ==================== MODAL ==================== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    animation: slideUp 0.4s ease;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
    font-family: 'STIX Two Text', serif;
}

.close-modal:hover {
    color: var(--secondary);
}

.video-frame {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 900px) {
    
    .genesis-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .genesis-image img {
        max-width: 350px;
        margin: 0 auto;
    }

    .genesis-content h2 {
        font-size: 2rem;
    }

    .tabs {
        margin: auto;
    }
    
    .tab-content {
        margin: 1.5rem auto 0;
        text-align: left;
    }
    
    .genesis-wrapper:nth-child(2n) {
        padding: 2.5rem 1.5rem;
        margin: 0 -1.5rem;
    }
    
    .video-thumbnail {
        height: 350px;
    }
    
    .video-header h2 {
        font-size: 2rem;
    }
    
    /* Center align genesis content on mobile */
    .genesis-content {
        text-align: center;
    }
    
    .genesis-content .description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .genesis {
        padding: 3rem 0;
    }
    
    .genesis-content h2 {
        font-size: 1.8rem;
    }
    
    .video-section {
        padding: 3rem 1rem;
        border-radius: 30px;
    }
}

@media (max-width: 600px) {
    
    .genesis-content h2 {
        font-size: 1.75rem;
    }
    
    .tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 0.8rem;
        text-align: center;
    }
    
    .video-thumbnail {
        height: 250px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .video-header h2 {
        font-size: 1.75rem;
    }
    
    .video-header p {
        font-size: 1rem;
    }
    
    .genesis-wrapper:nth-child(2n) {
        padding: 2rem 1rem;
        margin: 0 -1rem;
    }
}

@media (max-width: 480px) {
    .genesis {
        padding: 2rem 0;
    }
    
    .genesis-wrapper {
        gap: 2rem;
    }
    
    .genesis-image img {
        max-width: 280px;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
    
    .video-caption {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .genesis-content h2 {
        font-size: 1.6rem;
    }
}
/* ==================== LEADER CARD LAYOUT ==================== */
.leader-card {
    display: flex;
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 3rem;
   
    position: relative;
}

/* Image container - fixed 40% width */
.leader-image {
    flex: 0 0 40%;
    overflow: hidden;
    position: relative;
}

.leader-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

/* Content Container */
.leader-content {
    flex: 0 0 60%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Ensure content doesn't overflow card */
}

.leader-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.role {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(230, 204, 143, 0.3);
}

.desc {
    font-size: 1.25rem;
    color: var(--primary);
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;

    -webkit-box-orient: vertical;
    flex-grow: 1;
}

/* Expanded description when read more is clicked */
.desc.expanded {
    -webkit-line-clamp: unset;
    overflow-y: auto;
    max-height: 180px;
}

/* ==================== ALTERNATE LAYOUT ==================== */
/* For 2nd, 4th, 6th cards: Content left, Image right */
.leader-card.alternate {
    flex-direction: row-reverse;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 992px) {
    
    .leader-card {
        height: 350px; /* Slightly taller on medium screens */
    }
    
    .leader-content h3 {
        font-size: 1.4rem;
    }
    
    .desc {
        font-size: 0.9rem;
        -webkit-line-clamp: 3; /* Show only 3 lines on medium screens */
    }
}

@media (max-width: 768px) {
    .leader-card {
        flex-direction: column;
        height: auto; /* Auto height on mobile */
        min-height: 500px;
    }
    
    .leader-card.alternate {
        flex-direction: column;
    }
    
    .leader-image {
        flex: 0 0 250px;
        width: 100%;
    }
    
    .leader-content {
        width: 100%;
        flex: 1;
        padding: 1.5rem;
    }
    
    .desc {
        -webkit-line-clamp: 4; /* Show 4 lines on mobile */
    }
    .downloadgrid .btn {
    width: auto;
}

.downloadgrid .flex {
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}
}

@media (max-width: 480px) {
    
    .leader-card {
        min-height: 450px;
    }
    
    .leader-image {
        flex: 0 0 330px;
    }
    
    .leader-content h3 {
        font-size: 1.3rem;
    }
    
    .desc {
        font-size: 0.85rem;
        -webkit-line-clamp: 3; /* Show 3 lines on very small screens */
    }
}

 .transition-shadow {
            transition: box-shadow var(--transition-base);
        }

        /* ==================== HOVER EFFECTS ==================== */
        .hover\:shadow-md:hover {
            box-shadow: var(--shadow-md);
        }
        /* HERO */
.pedagogy-hero {
  background: linear-gradient(
    180deg,
    var(--primary),
    var(--primary-dark)
  );
  padding: 8rem 0 6rem;
  color: var(--primary-foreground);
}

.pedagogy-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 1.5rem;
}

.pedagogy-hero-text {
  font-size: 1.125rem;
  max-width: 42rem;
  color: rgba(245, 240, 230, 0.8);
}

/* GRID */
.pedagogy-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .pedagogy-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

/* PRINCIPLES */
.principles {
  margin-top: 2rem;
}

.principles li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.principles li::before {
  content: "Ã¢Å“â€";
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* NEP CARD */
.nep-card {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
}

.nep-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.nep-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.nep-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.nep-stats div {
  background: rgba(245, 240, 230, 0.1);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
}

/* PILLARS */
.pillars-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* CTA */
.pedagogy-cta {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem;
  border-radius: var(--radius-xl);
  text-align: center;
}



#visit-cta{
  margin-top: 30px !important;
}

/* ==================== HERO SECTION ==================== */
    .pedagogy-hero {
      background: linear-gradient(
          to right,
          rgba(35,47,95,0.4),
          rgba(35,47,95,0.3)
      ),
      url("https://res.cloudinary.com/dptxcqnnw/image/upload/v1769526887/about-vedanya_pulfkg.jpg") center/cover no-repeat;
      min-height: 65vh;
      display: flex;
      align-items: center;
      border-bottom-left-radius: 40px;
      border-bottom-right-radius: 40px;
    }

    .pedagogy-hero .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
      width: 100%;
    }

    .pedagogy-hero .section-label {
      letter-spacing: 2px;
      color: #E6CC8F;
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 500;
      display: block;
      margin-bottom: 0.5rem;
    }

    .pedagogy-title {
      font-family: 'STIX Two Text', serif;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      color: #ffffff;
      margin: 18px 0;
      line-height: 1.2;
    }

    .pedagogy-hero-text {
      color: #e5e5e5;
      font-size: 1.1rem;
      line-height: 1.7;
      max-width: 600px;
      opacity: 0.9;
    }

    /* ==================== NEP CARD UPDATES ==================== */
    .nep-card {
      background: #fff;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      border: 1px solid #eee;
      height: 100%;
    }

    .nep-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .nep-icon {
      width: 60px;
      height: 60px;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nep-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .nep-header h3 {
      font-size: 1.5rem;
      margin: 0;
      color: #232F5F;
    }

    .nep-header span {
      color: #E6CC8F;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .nep-card p {
      color: #5a6178;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .nep-stats {
      display: flex;
      gap: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid #eee;
    }

    .nep-stats div {
      text-align: center;
    }

    .nep-stats strong {
      display: block;
      font-size: 1.8rem;
      color: #232F5F;
      font-weight: 600;
    }

    .nep-stats span {
      font-size: 0.9rem;
      color: #5a6178;
    }

    /* ==================== PILLARS GRID UPDATES ==================== */
 

    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 900px) {
      .pedagogy-hero {
        min-height: 60vh;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
      }
      
      .pedagogy-title {
        font-size: 2.5rem;
      }

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

    @media (max-width: 600px) {
      .pedagogy-hero {
        min-height: 50vh;
      }
      
      .pedagogy-title {
        font-size: 2rem;
      }
      
      .pedagogy-hero-text {
        font-size: 1rem;
      }

      .pillars-grid {
        grid-template-columns: 1fr;
      }

      .pillar-card {
        padding: 2rem 1.5rem;
      }

      .pillar-icon {
        width: 100%;
        height: 200px;
      }
      
      .pillar-icon img {
        height: 200px;
      }
      .nep-card{
            padding: 1rem;
    }
    }

    @media (min-width: 768px) {
    .section {
        padding: 3rem 0 !important;
    }

}
 .relative { position: relative; }
        .absolute { position: absolute; }
        .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

        .flex { display: flex; }
        .inline-flex { display: inline-flex; }
        .grid { display: grid; }
        .block { display: block; }

        .items-center { align-items: center; }
        .items-start { align-items: flex-start; }
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .flex-col { flex-direction: column; }

        .gap-1 { gap: 0.25rem; }
        .gap-2 { gap: 0.5rem; }
        .gap-4 { gap: 1rem; }
        .gap-6 { gap: 1.5rem; }
        .gap-8 { gap: 2rem; }

        .w-6 { width: 1.5rem; }
        .w-10 { width: 2.5rem; }
        .w-12 { width: 3rem; }
        .w-16 { width: 4rem; }
        .w-20 { width: 5rem; }

        .h-6 { height: 1.5rem; }
        .h-10 { height: 2.5rem; }
        .h-12 { height: 3rem; }
        .h-16 { height: 4rem; }
        .h-20 { height: 5rem; }

        /* ==================== SPACING ==================== */
        .py-20 { padding-top: 5rem; padding-bottom: 5rem; }

        .px-4 { padding-left: 1rem; padding-right: 1rem; }
        .p-6 { padding: 1.5rem; }
        .p-8 { padding: 2rem; }

        .mb-1 { margin-bottom: 0.25rem; }
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-3 { margin-bottom: 0.75rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mb-12 { margin-bottom: 3rem; }
        .mb-16 { margin-bottom: 4rem; }

        .mx-auto { margin-left: auto; margin-right: auto; }

        /* ==================== TYPOGRAPHY ==================== */
        .font-heading {
            font-family: 'STIX Two Text', serif;
        }

        .text-lg { font-size: 1.125rem; line-height: 1.75rem; }
        .text-xl { font-size: 1.25rem; line-height: 1.75rem; }
        .text-2xl { font-size: 1.5rem; line-height: 2rem; }
        .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
        .text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
        .text-5xl { font-size: 3rem; line-height: 1; }

        @media (min-width: 768px) {
            .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
            .md\:text-5xl { font-size: 3rem; line-height: 1; }
        }

        .text-sm { font-size: 0.875rem; line-height: 1.25rem; }

        .font-medium { font-weight: 500; }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }

        .text-center { text-align: center; }

        .leading-relaxed { line-height: 1.625; }

        /* ==================== COLORS ==================== */
        .text-primary { color: var(--primary); }
        .text-secondary { color: var(--secondary); }
        .text-foreground { color: var(--foreground); }
        .text-muted-foreground { color: var(--muted-foreground); }
        .text-primary-foreground { color: var(--primary-foreground); }

        .bg-primary { background-color: var(--primary); }
        .bg-secondary { background-color: var(--secondary); }
        .bg-background { background-color: var(--background); }
        .bg-card { background-color: var(--card); }

        .bg-primary\/10 { background-color: rgba(35, 47, 95, 0.1); }
        .bg-secondary\/10 { background-color: rgba(230, 204, 143, 0.1); }
        .bg-secondary\/20 { background-color: rgba(230, 204, 143, 0.2); }

        .text-primary-foreground\/80 { color: rgba(245, 240, 230, 0.8); }
        .flex-shrink-0 i,
.rounded-full i {
    display: flex;
    align-items: center;
    justify-content: center;
}
        /* ==================== BORDERS & RADIUS ==================== */
        .rounded-lg { border-radius: var(--radius); }
        .rounded-xl { border-radius: var(--radius-lg); }
        .rounded-2xl { border-radius: var(--radius-xl); }

        .rounded-full { border-radius: 9999px; }

        /* ==================== SHADOWS ==================== */
        .shadow-lg { box-shadow: var(--shadow-lg); }

        /* ==================== GRID SYSTEM ==================== */
        .grid-cols-1 { grid-template-columns: 1fr; }

        @media (min-width: 768px) {
            .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
            .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        }

        @media (min-width: 1024px) {
            .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        }

        /* ==================== ANIMATIONS ==================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-up {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .animate-fade-down {
            opacity: 0;
            animation: fadeInDown 0.8s ease forwards;
        }

        .animate-delay-0 { animation-delay: 0s; }
        .animate-delay-1 { animation-delay: 0.1s; }
        .animate-delay-2 { animation-delay: 0.2s; }

        /* ==================== MAX WIDTHS ==================== */
        .max-w-2xl { max-width: 42rem; }
        .max-w-4xl { max-width: 56rem; }
        .max-w-5xl { max-width: 64rem; }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            .text-4xl {
                font-size: 1.875rem;
            }
            
            .text-5xl {
                font-size: 2.25rem;
            }
            
            .grid-cols-1, .grid-cols-2, .grid-cols-3 {
                grid-template-columns: 1fr;
            }
        }

        /* ==================== TRANSITIONS ==================== */
        .transition-shadow {
            transition: box-shadow var(--transition-base);
        }

        /* ==================== FLEX UTILITIES ==================== */
        .flex-shrink-0 { flex-shrink: 0; }
        /* ---------- SECTION HEAD ---------- */
.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head span {
    letter-spacing: 2px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.section-head h2 {
    font-size: 40px;
    color: var(--primary);
    margin: 12px 0;
    font-weight: 600;
}

.section-head p {
    max-width: 600px;
    margin: auto;
    color: #555;
    font-weight: 400;
}

/* ---------- VISION & MISSION SECTIONS ---------- */
.vision-section, .mission-section {
    display: flex;
    align-items: stretch;
    gap: 0;
    
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-height: 500px;
}

/* For Mission section, reverse the order */
.mission-section {
    flex-direction: row-reverse;
}

/* Image Container - Improved for better fit */
.section-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.section-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(35,47,95,0.1),
        rgba(35,47,95,0.05)
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.section-image:hover::before {
    opacity: 1;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
}

.vision-section:hover .section-image img,
.mission-section:hover .section-image img {
    transform: scale(1.05);
}

/* Content Container */
.section-content {
    flex: 0 0 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-content h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.section-content h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.section-content > p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 400;
}

/* Bullet Points */
.section-content ul {
    margin: 20px 0 30px 0;
    padding-left: 22px;
}

.section-content li {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--primary);
    position: relative;
    font-weight: 400;
    padding-left: 8px;
}

.section-content li::before {
    content: "Ã¢â‚¬Â¢";
    color: var(--secondary);
    font-size: 20px;
    position: absolute;
    left: -15px;
    top: -1px;
}

/* Learn More Button */
.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 10px;
}

.learn-more:hover {
    background: var(--secondary);
    color: var(--primary);
}

.learn-more span {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.learn-more:hover span {
    transform: translateX(4px);
}

/* ---------- RESPONSIVE ---------- */


@media (max-width: 1100px) {
    .section-content {
        padding: 50px 40px;
    }
}

@media (max-width: 992px) {

    .section-head h2 {
        font-size: 36px;
    }
    
    .vision-section, .mission-section {
        flex-direction: column;
        min-height: auto;
    }
    
    .section-image {
        flex: 0 0 400px;
        width: 100%;
    }
    
    .section-content {
        width: 100%;
        padding: 50px 40px;
    }
    
    .section-content h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .py-dd4{
            padding: 60px 0px;
        }
    .container {
        padding: 0px 15px;
    }
    
    .section-head h2 {
        font-size: 30px;
    }
    
    .section-image {
        height: 350px;
    }
    
    .section-content {
        padding: 40px 30px;
    }
    
    .section-content h3 {
        font-size: 28px;
    }
    
    .section-content > p {
        font-size: 16px;
    }
    
    .section-content li {
        font-size: 15px;
    }
    .cards {
    grid-template-columns: 1fr;
}

.card.offset {
    margin-top: 10px;
}
}

@media (max-width: 576px) {
    .section-head h2 {
        font-size: 28px;
    }
    
    .section-image {
        height: 300px;
    }
    
    .section-content {
        padding: 35px 25px;
    }
    
    .section-content h3 {
        font-size: 26px;
    }
    
    .section-content > p {
        font-size: 15px;
    }
    
    .section-content li {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .learn-more {
        padding: 10px 24px;
        font-size: 15px;
    }
}

@media (max-width: 400px) {
    .section-head h2 {
        font-size: 24px;
    }
    
    .section-image {
        height: 250px;
    }
    
    .section-content {
        padding: 30px 20px;
    }
    
    .section-content h3 {
        font-size: 24px;
    }
    
    .learn-more {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    
    .section-head h2 {
        font-size: 1.6rem;
    }
}
.admission-hero {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 120px 0;
}

.admission-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.badge {
  color: var(--secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.admission-steps {
  padding: 100px 0;
  background: var(--card);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.step-card {
  background: var(--white);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  position: relative;
}

.step-card i {
  width: 36px;
  height: 36px;
  color: var(--primary);
  margin-bottom: 16px;
}

.step-icon {
  position: absolute;

  right: -14px;
  width: 36px;
  height: 36px;
  background: var(--secondary);
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admission-form {
  padding: 0px 0 100px;
  background-color: #fff;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center; /* IMPORTANT */
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-family: inherit;
}

form textarea {
  min-height: 120px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 18px;
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
}

.contact-box {
  background: var(--primary);
  color: #fff;
  padding: 40px;
  border-radius: 30px;
  flex-direction: column;
  justify-content: center; /* vertically balanced */
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.contact-item i {
  color: var(--secondary);
}

.faq-item {
  background: var(--card);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* FOOTER */
.site-footer {
  background: #0f172a;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-grid {
}

.footer-grid a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}


.faq-section {
  margin-top: 40px; /* keeps FAQ on next line */
}

.faq-section h3 {
  margin-bottom: 50px;
  font-size: 22px;
}

/* Make FAQ items 2 columns */
.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* FAQ Card */
.faq-item {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  border-left: 4px solid #c9a227;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ==================== HERO SECTION (MATCHING VISION PAGE) ==================== */
    .admission-hero {
      background: linear-gradient(
          to right,
          rgba(35,47,95,0.4),
          rgba(35,47,95,0.3)
      ),
      url("https://res.cloudinary.com/dptxcqnnw/image/upload/v1769526887/about-vedanya_pulfkg.jpg") center/cover no-repeat;
      min-height: 70vh;
      display: flex;
      align-items: center;
      border-bottom-left-radius: 40px;
      border-bottom-right-radius: 40px;
      position: relative;
    }

    .admission-hero .container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
      width: 100%;
    }

    .admission-hero .badge {
      letter-spacing: 2px;
      color: #E6CC8F;
      font-size: 14px;
      text-transform: uppercase;
      font-weight: 500;
      display: inline-block;
      margin-bottom: 0.5rem;
      padding: 0.5rem 1rem;
      background: rgba(230, 204, 143, 0.15);
      border-radius: 20px;
    }

    .admission-hero h1 {
      font-family: 'STIX Two Text', serif;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      color: #ffffff;
      margin: 18px 0;
      line-height: 1.2;
    }

    .admission-hero p {
      color: #e5e5e5;
      font-size: 1.1rem;
      line-height: 1.7;
      max-width: 600px;
      opacity: 0.9;
    }

    /* ==================== ACCORDION STYLES ==================== */
    .faq-section {
      margin-top: 60px;
    }

    .faq {
      margin-top: 30px;
    }

    .faq-item {
      border-bottom: 1px solid rgba(0,0,0,0.1);
      padding: 5px 20px;
      max-height:max-content !important;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 18px 0;
      transition: all 0.3s ease;
    }

    .faq-question h4 {
      margin: 0;
      font-size: 1.1rem;
      color: #232F5F;
      font-weight: 500;
    }

    .faq-question i {
      color: #232F5F;
      transition: transform 0.3s ease;
    }

    .faq-question.active i {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      padding: 0 20px 0 0;
    }

    .faq-answer.show {
      max-height: 500px;
      padding-bottom: 20px;
    }

    .faq-answer p {
      margin: 0;
      color: #666;
      line-height: 1.6;
      white-space: pre-line;
    }
.admission-steps .section-title {
    justify-content: center;
}
    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 900px) {
      .admission-hero {
        min-height: 60vh;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
      }
      
      .admission-hero h1 {
        font-size: 2.5rem;
      }
      .faq {
    grid-template-columns: 1fr;
}
.faq-section h3 {
    margin-bottom: 30px;
    text-align: center;
}
.step-icon {
    position: static;
    margin: 0 auto 20px;
}

.step-card i {
    display: block;
    margin: 10px auto 10px;
}
    }

    @media (max-width: 600px) {
      .admission-hero {
        min-height: 50vh;
      }
      
      .admission-hero h1 {
        font-size: 2rem;
      }
      
      .admission-hero p {
        font-size: 1rem;
      }
    }
    /* ==================== GRID SYSTEM ==================== */
        .grid-cols-1 { grid-template-columns: 1fr; }
        .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

        @media (min-width: 768px) {
            .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        }

        @media (min-width: 1024px) {
            .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
            .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        }
 /* ==================== SECTIONS ==================== */
        .section-padding {
            padding: 4rem 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 3rem 0;
            }
        }
/* ==================== QUOTE SECTION (EXACTLY LIKE HOMEPAGE) ==================== */
        .quote-section {
            background: var(--secondary);
            /* padding: 6rem 0; */
        }

        .quote-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 0 auto;
            width: 100%;
            /* max-width: 1400px;
            padding: 0 2rem; */
        }

        .quote-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 20px 40px rgba(35, 47, 95, 0.1);
        }

        .quote-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .quote-image:hover img {
            transform: scale(1.03);
        }

        .quote-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                45deg,
                rgba(230, 204, 143, 0.15) 0%,
                rgba(230, 204, 143, 0.05) 100%
            );
            pointer-events: none;
        }

    

        .quote-heading {
            font-family: 'STIX Two Text', serif;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--primary, #232F5F);
            margin-bottom: 2rem;
            position: relative;
            padding-left: 0.75rem;
        }

        .quote-heading::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 16px;
            background: var(--secondary, #E6CC8F);
        }

        .quote-text {
            margin-bottom: 3rem;
        }

        .quote-main {
            font-family: 'STIX Two Text', serif;
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-style: italic;
            line-height: 1.4;
            color: var(--primary, #232F5F);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .quote-mark {
            color: var(--secondary, #E6CC8F);
            font-size: 2.5rem;
            line-height: 0;
            vertical-align: middle;
            position: relative;
            top: -5px;
        }

        .quote-author {
            font-family: 'STIX Two Text', serif;
            font-size: 1rem;
            font-weight: 500;
            color: rgba(35, 47, 95, 0.7);
            padding-left: 1.5rem;
            position: relative;
        }

        .quote-author::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 20px;
            height: 1px;
            background: var(--secondary, #E6CC8F);
        }
 /* ==================== FEATURE CARDS UPDATED WITH IMAGES ==================== */
        .feature-card {
            padding: 0;
            border-radius: var(--radius-xl);
            background: var(--card);
            box-shadow: var(--shadow-md);
            height: 100%;
            overflow: hidden;
            transition: all var(--transition-base);
        }

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

        /* Image container for feature cards */
        .feature-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-base);
        }

        .card-hover:hover .feature-image img {
            transform: scale(1.05);
        }

        /* Content area */
        .feature-content {
            padding: 1.5rem;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--foreground);
            margin-bottom: 0.75rem;
        }

        .feature-text {
            color: var(--primary);
            font-size: 1.125rem;
            line-height: 1.625;
        }

        /* ==================== STATS CARDS ==================== */
        .stats-card {
            padding: 1.5rem;
            border-radius: var(--radius-xl);
            background: var(--card);
            box-shadow: var(--shadow-md);
        }
 /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1200px) {
            .quote-container {
                padding: 0 2rem;
                gap: 3rem;
            }
            
            .quote-content {
                padding: 2.5rem 4rem 2.5rem 0;
            }
        }

        @media (max-width: 992px) {
            .quote-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .quote-image {
                height: 400px;
                width: 100%;
            }
            
            .quote-content {
                padding: 0;
                text-align: center;
            }
            
            .quote-heading::before {
                left: 50%;
                transform: translateX(-50%);
                top: -1rem;
                width: 16px;
                height: 4px;
            }
            
            .quote-author::before {
                left: 50%;
                transform: translateX(-50%);
                top: -0.75rem;
                width: 40px;
            }
        }

        @media (max-width: 768px) {
            .grid-cols-2, .grid-cols-3, .grid-cols-4 {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .feature-image {
                height: 180px;
            }
            
            .quote-section {
                padding: 4rem 0;
            }
            
            .quote-image {
                height: 350px;
            }
            
            .quote-main {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 600px) {
            
            .quote-image {
                height: 300px;
            }
            
            .quote-section {
                padding: 3rem 0;
            }
            
            .quote-main {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            
            .feature-image {
                height: 160px;
            }
            
            .quote-container {
                padding: 0 1.5rem;
            }
            
            .quote-image {
                height: 250px;
            }
            
            .quote-main {
                font-size: 1.25rem;
            }
            
            .quote-author {
                font-size: 0.875rem;
            }
        }

        @media (max-width: 360px) {
            
            .quote-image {
                height: 220px;
            }
        }
 /* ==================== GRID SYSTEM ==================== */
        .grid-cols-1 { grid-template-columns: 1fr; }
        .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

        @media (min-width: 768px) {
            .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
            .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        }

        @media (min-width: 1024px) {
            .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
        }
   /* ==================== INTELLIGENCE CARDS UPDATED WITH IMAGES ==================== */
        .intelligence-card {
            border-radius: 24px;
            background: var(--card);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            transition: all var(--transition-base);
            height: 100%;
        }

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

        /* Updated image header */
        .intelligence-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .intelligence-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-base);
        }

        .group:hover .intelligence-image img {
            transform: scale(1.05);
        }

        /* Overlay for better text visibility on images */
        .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
        }

        .intelligence-title {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        /* ==================== ACTIVITY TAGS ==================== */
        .activity-tag {
            font-size: 0.75rem;
            padding: 0.25rem 0.5rem;
            border-radius: 9999px;
            background: var(--accent);
            color: var(--accent-foreground);
        }

        /* ==================== PRACTICE SECTION ==================== */
        .practice-card {
            padding: 1.5rem;
            border-radius: var(--radius-xl);
            background: rgba(245, 240, 230, 0.05);
            border: 1px solid rgba(245, 240, 230, 0.1);
        }

        .intelligence-card  .flex.flex-wrap.gap-2 {
    flex-wrap: wrap;
}
        /* ==================== RESPONSIVE ==================== */


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

    

        @media (max-width: 480px) {
          
            
            .intelligence-image {
                height: 160px;
            }
        }


        /* ==================== SECTIONS ==================== */
        .section-padding.integsec {
            padding: 5rem 0;
        }

        @media (max-width: 768px) {
            .section-padding.integsec{
                padding: 3rem 0;
            }
        }



        
        /* ==================== SUPPORT AREA CARD WITH FULL-WIDTH IMAGE ==================== */
        .support-card {
            border-radius: var(--radius-xl);
            background: var(--card);
            box-shadow: var(--shadow-md);
            height: 100%;
            overflow: hidden;
            transition: all var(--transition-base);
        }

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

        .support-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .support-content {
            padding: 1.5rem;
        }

        /* ==================== PROCESS SECTION ==================== */
        .process-section {
            background: var(--primary);
            color: var(--primary-foreground);
            position: relative;
        }

        .process-connector {
            position: absolute;
            top: 2rem;
            left: 0;
            right: 0;
            height: 2px;
            background: rgba(245, 240, 230, 0.2);
        }

        @media (max-width: 768px) {
            .process-connector {
                display: none;
            }
        }

        .process-step {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background: var(--secondary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'STIX Two Text', serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 auto 1rem;
            position: relative;
            z-index: 10;
        }

        
        @media (max-width: 768px) {

            .grid-cols-2, .grid-cols-3, .grid-cols-5 {
                grid-template-columns: 1fr;
            }
            
            .support-image {
                height: 180px;
            }
        }

        @media (max-width: 600px) {
            
            .support-image {
                height: 160px;
            }
        }

        @media (max-width: 480px) {
            .support-image {
                height: 150px;
            }
            
            .support-content {
                padding: 1.25rem;
            }
        }

        @media (max-width: 360px) {
            
            .support-image {
                height: 140px;
            }
        }

        /* ==================== GRID SYSTEM ==================== */
        .grid-cols-1 { grid-template-columns: 1fr; }
        .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-cols-5 { grid-template-columns: repeat(5, 1fr); }

        @media (min-width: 640px) {
            .sm\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        }

        @media (min-width: 768px) {
            .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
            .md\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
        }

        @media (min-width: 1024px) {
            .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
            .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        }
  /* ==================== SUPPORT AREA CARD WITH FULL-WIDTH IMAGE ==================== */
        .support-card {
            border-radius: var(--radius-xl);
            background: var(--card);
            box-shadow: var(--shadow-md);
            height: 100%;
            overflow: hidden;
            transition: all var(--transition-base);
        }

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

        .support-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .support-content {
            padding: 1.5rem;
        }

        /* ==================== PROCESS SECTION ==================== */
        .process-section {
            background: var(--primary);
            color: var(--primary-foreground);
            position: relative;
        }

        .process-connector {
            position: absolute;
            top: 2rem;
            left: 0;
            right: 0;
            height: 2px;
            background: rgba(245, 240, 230, 0.2);
        }

        @media (max-width: 768px) {
            .process-connector {
                display: none;
            }
        }

        .process-step {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background: var(--secondary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'STIX Two Text', serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0 auto 1rem;
            position: relative;
            z-index: 10;
        }
/* ==================== GRID SYSTEM ==================== */
        .grid-cols-1 { grid-template-columns: 1fr; }

        @media (min-width: 768px) {
            .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
            .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
            .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
        }

        @media (min-width: 1024px) {
            .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
        }

        /* Feature Cards */
        .feature-card {
            background: var(--card);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            height: 100%;
            overflow: hidden;
        }

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

        .feature-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .feature-content {
            padding: 1.5rem;
            text-align: left;
        }

        /* Option Cards */
        .option-card {
            background: var(--card);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            height: 100%;
            overflow: hidden;
        }

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

        .option-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .option-content {
            padding: 1.5rem;
            text-align: center;
        }

        /* Schedule Card */
        .schedule-card {
            background: var(--card);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            transition: all var(--transition-base);
        }

        .schedule-card:hover {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .schedule-header {
            background: var(--primary);
            color: var(--primary-foreground);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
        }

        /* ==================== MAX WIDTHS ==================== */
        .max-w-2xl { max-width: 42rem; }
        .max-w-3xl { max-width: 48rem; }
        .max-w-4xl { max-width: 56rem; }
        .max-w-5xl { max-width: 64rem; }
        .max-w-xl { max-width: 36rem; }

        /* ==================== RESPONSIVE ==================== */

        @media (max-width: 768px) {
            .text-4xl {
                font-size: 1.875rem;
            }
            
            .text-5xl {
                font-size: 2.25rem;
            }
            
            .grid-cols-1, .grid-cols-2, .grid-cols-3, .grid-cols-4 {
                grid-template-columns: 1fr;
            }
            
            .feature-image {
                height: 180px;
            }
            
            .option-image {
                height: 160px;
            }
        }
        
        @media (max-width: 600px) {
           
            .feature-image {
                height: 160px;
            }
            
            .option-image {
                height: 150px;
            }
            
            .feature-content, .option-content {
                padding: 1.25rem;
            }
        }
        
        @media (max-width: 480px) {
            
            .py-20 {
                padding: 2rem 0;
            }
            
            .feature-image {
                height: 150px;
            }
            
            .option-image {
                height: 140px;
            }
        }
        
        @media (max-width: 360px) {
           
            .feature-image {
                height: 140px;
            }
            
            .option-image {
                height: 130px;
            }
        }

        
         .heading-section{
            font-size: 2.25rem;
            color: var(--primary);
        }

        .card-paragraph{
            font-size: 1.125rem;
            color: var(--primary);
        }

          .card-heading{
            font-size: 1.25rem;
            color: var(--primary);
        }

        .second-text{
            font-size: 1.125rem;
        }
        /* ==================== SPECIAL UTILITIES ==================== */
        .shrink-0 { flex-shrink: 0; }
        .last\:border-0:last-child { border-bottom: none; }
         .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--card);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .feature-image-container {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .feature-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-base);
        }

        .feature-card:hover .feature-image {
            transform: scale(1.05);
        }

        .feature-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .feature-title {
            font-family: 'STIX Two Text', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .feature-description {
            color: var(--muted-foreground);
            font-size: 1rem;
            line-height: 1.6;
            flex-grow: 1;
        }

        /* ==================== DAY STRUCTURE ==================== */
        .day-schedule {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
            transition: all var(--transition-base);
        }

        .day-schedule:hover {
            background: rgba(230, 204, 143, 0.05);
            padding-left: 0.5rem;
            padding-right: 0.5rem;
            border-radius: var(--radius);
        }

        .day-schedule:last-child {
            border-bottom: none;
        }

        .time-label {
            width: 6rem;
            font-size: 1.125rem;
            font-weight: 500;
            color: var(--secondary);
            flex-shrink: 0;
        }

        .activity-label {
            color: var(--foreground);
            flex-grow: 1;
            font-size: 1.25rem;
        }
 /* ==================== CARD STYLES WITH FULL-WIDTH IMAGES ==================== */
        /* Feature Cards */
        .feature-card {
            background: var(--card);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            height: 100%;
            overflow: hidden;
        }

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

        .feature-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .feature-content {
            padding: 1.5rem;
        }

        /* Learning Area Cards - Updated for Full-Width Images */
        .learning-area-card {
            background: var(--card);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            height: 100%;
            overflow: hidden;
        }

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

        .learning-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .learning-content {
            padding: 1.5rem;
        }

        /* ==================== MAX WIDTHS ==================== */
        .max-w-3xl { max-width: 48rem; }
        .max-w-4xl { max-width: 56rem; }
        .max-w-5xl { max-width: 64rem; }
        .max-w-xl { max-width: 36rem; }

        /* ==================== RESPONSIVE ==================== */

        @media (max-width: 768px) {
           
            .text-4xl {
                font-size: 1.875rem;
            }
            
            .text-5xl {
                font-size: 2.25rem;
            }
            
            .grid-cols-1, .grid-cols-2, .grid-cols-3 {
                grid-template-columns: 1fr;
            }
            
            .feature-image {
                height: 180px;
            }
            
            .learning-image {
                height: 160px;
            }
        }

        @media (max-width: 600px) {
          
            .feature-image {
                height: 160px;
            }
            
            .learning-image {
                height: 150px;
            }
        }

        @media (max-width: 480px) {
            
            .feature-image {
                height: 150px;
            }
            
            .learning-image {
                height: 140px;
            }
            
            .feature-content, .learning-content {
                padding: 1.25rem;
            }
        }
        
        @media (max-width: 360px) {
            
            .feature-image {
                height: 140px;
            }
            
            .learning-image {
                height: 130px;
            }
        }

        .py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
/* ==================== QUOTE SECTION (EXACTLY LIKE HOMEPAGE) ==================== */
        .quote-section {
            background: var(--secondary);
            /* padding: 6rem 0; */
        }

        .quote-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 0 auto;
            width: 100%;
            /* max-width: 1400px;
            padding: 0 2rem; */
        }

        .quote-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 20px 40px rgba(35, 47, 95, 0.1);
        }

        .quote-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .quote-image:hover img {
            transform: scale(1.03);
        }

        .quote-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                45deg,
                rgba(230, 204, 143, 0.15) 0%,
                rgba(230, 204, 143, 0.05) 100%
            );
            pointer-events: none;
        }


        .quote-heading {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--primary, #232F5F);
            margin-bottom: 2rem;
            position: relative;
            padding-left: 0.75rem;
        }

        .quote-heading::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 16px;
            background: var(--secondary, #E6CC8F);
        }

        .quote-text {
            margin-bottom: 3rem;
        }

        .quote-main {
            font-family: 'STIX Two Text', serif;
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-style: italic;
            line-height: 1.4;
            color: var(--primary, #232F5F);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .quote-mark {
            color: var(--secondary, #E6CC8F);
            font-size: 2.5rem;
            line-height: 0;
            vertical-align: middle;
            position: relative;
            top: -5px;
        }

        .quote-author {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            color: rgba(35, 47, 95, 0.7);
            padding-left: 1.5rem;
            position: relative;
        }

        .quote-author::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 20px;
            height: 1px;
            background: var(--secondary, #E6CC8F);
        }

       https://res.cloudinary.com/dptxcqnnw/image/upload/v1769526888/our-vision-1_avlvnt.jpg
        
        /* ==================== CARD STYLES WITH FULL-WIDTH IMAGES ==================== */
        /* Subject Cards */
        .subject-card {
            background: var(--card);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            height: 100%;
            overflow: hidden;
            text-align: center;
        }

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

        .subject-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .subject-content {
            padding: 1.5rem;
            text-align: left;
        }

        /* Highlight Cards */
        .highlight-card {
            background: var(--card);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            height: 100%;
            padding: 0px;
            overflow: hidden;
            border: none;
        }

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

        .highlight-image {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }

        .highlight-content {
            padding: 1.5rem;
        }
.subject-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    overflow: hidden;
    text-align: center;
}
        /* ==================== MAX WIDTHS ==================== */
        .max-w-3xl { max-width: 48rem; }
        .max-w-4xl { max-width: 56rem; }
        .max-w-5xl { max-width: 64rem; }
        .max-w-xl { max-width: 36rem; }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1200px) {
            .quote-container {
                padding: 0 2rem;
                gap: 3rem;
            }
            
            .quote-content {
                padding: 2.5rem 4rem 2.5rem 0;
            }
        }

        @media (max-width: 992px) {
            .quote-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .quote-image {
                height: 400px;
                width: 100%;
            }
            
            .quote-content {
                padding: 0;
                text-align: center;
            }
            
            .quote-heading::before {
                left: 50%;
                transform: translateX(-50%);
                top: -1rem;
                width: 16px;
                height: 4px;
            }
            
            .quote-author::before {
                left: 50%;
                transform: translateX(-50%);
                top: -0.75rem;
                width: 40px;
            }
        }

        @media (max-width: 768px) {
            
            .text-4xl {
                font-size: 1.875rem;
            }
            
            .text-5xl {
                font-size: 2.25rem;
            }
            
            .grid-cols-1, .grid-cols-2, .grid-cols-3 {
                grid-template-columns: 1fr;
            }
            
            .subject-image {
                height: 160px;
            }
            
            .highlight-image {
                height: 150px;
            }
            
            .quote-section {
                padding: 4rem 0;
            }
            
            .quote-image {
                height: 350px;
            }
            
            .quote-main {
                font-size: 1.75rem;
            }
        }
        
        @media (max-width: 600px) {
            
            .subject-image {
                height: 150px;
            }
            
            .highlight-image {
                height: 140px;
            }
            
            .quote-image {
                height: 300px;
            }
            
            .quote-section {
                padding: 3rem 0;
            }
            
            .quote-main {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .subject-image {
                height: 140px;
            }
            
            .highlight-image {
                height: 130px;
            }
            
            .subject-content, .highlight-content {
                padding: 1.25rem;
            }
            
            .quote-container {
                padding: 0 1.5rem;
            }
            
            .quote-image {
                height: 250px;
            }
            
            .quote-main {
                font-size: 1.25rem;
            }
            
            .quote-author {
                font-size: 0.875rem;
            }
        }
        
        @media (max-width: 360px) {
            .subject-image {
                height: 130px;
            }
            
            .highlight-image {
                height: 120px;
            }
            
            .quote-image {
                height: 220px;
            }
        }
    /* ==================== QUOTE SECTION (EXACTLY LIKE HOMEPAGE) ==================== */
        .quote-section {
            background: var(--secondary);
            /* padding: 6rem 0; */
        }

        .quote-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 0 auto;
            width: 100%;
            /* max-width: 1400px;
            padding: 0 2rem; */
        }

        .quote-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 20px 40px rgba(35, 47, 95, 0.1);
        }

        .quote-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .quote-image:hover img {
            transform: scale(1.03);
        }

        .quote-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                45deg,
                rgba(230, 204, 143, 0.15) 0%,
                rgba(230, 204, 143, 0.05) 100%
            );
            pointer-events: none;
        }

        .quote-heading {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--primary, #232F5F);
            margin-bottom: 2rem;
            position: relative;
            padding-left: 0.75rem;
        }

        .quote-heading::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 16px;
            background: var(--secondary, #E6CC8F);
        }

        .quote-text {
            margin-bottom: 3rem;
        }

        .quote-main {
            font-family: 'STIX Two Text', serif;
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-style: italic;
            line-height: 1.4;
            color: var(--primary, #232F5F);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .quote-mark {
            color: var(--secondary, #E6CC8F);
            font-size: 2.5rem;
            line-height: 0;
            vertical-align: middle;
            position: relative;
            top: -5px;
        }

        .quote-author {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            color: rgba(35, 47, 95, 0.7);
            padding-left: 1.5rem;
            position: relative;
        }

        .quote-author::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 20px;
            height: 1px;
            background: var(--secondary, #E6CC8F);
        }

       
        /* ==================== CARD STYLES WITH FULL-WIDTH IMAGES ==================== */
        /* Subject Cards */
        .subject-card {
            background: var(--card);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            height: 100%;
            overflow: hidden;
        }

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

        .subject-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .subject-content {
            padding: 1.5rem;
        }

        /* Approach Cards - Updated for Full-Width Images */
        .approach-card {
            background: var(--card);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            height: 100%;
            overflow: hidden;
        }

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

        .approach-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .approach-content {
            padding: 1.5rem;
        }

        /* ==================== MAX WIDTHS ==================== */
        .max-w-3xl { max-width: 48rem; }
        .max-w-4xl { max-width: 56rem; }
        .max-w-5xl { max-width: 64rem; }
        .max-w-xl { max-width: 36rem; }
    /* ==================== GRID SYSTEM ==================== */
        .grid-cols-1 { grid-template-columns: 1fr; }

        @media (min-width: 768px) {
            .mainsesvsdf .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        }

        @media (min-width: 1024px) {
            .mainsesvsdf .lg\:grid-cols-3 { grid-template-columns: repeat(4, 1fr); }
        }
        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1200px) {
            .quote-container {
                padding: 0 2rem;
                gap: 3rem;
            }
            
            .quote-content {
                padding: 2.5rem 4rem 2.5rem 0;
            }
        }

        @media (max-width: 992px) {
            .quote-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .quote-image {
                height: 400px;
                width: 100%;
            }
            
            .quote-content {
                padding: 0;
                text-align: center;
            }
            
            .quote-heading::before {
                left: 50%;
                transform: translateX(-50%);
                top: -1rem;
                width: 16px;
                height: 4px;
            }
            
            .quote-author::before {
                left: 50%;
                transform: translateX(-50%);
                top: -0.75rem;
                width: 40px;
            }
        }

        @media (max-width: 768px) {
            .text-4xl {
                font-size: 1.875rem;
            }
            
            .text-5xl {
                font-size: 2.25rem;
            }
            
            .grid-cols-1, .grid-cols-2, .grid-cols-3 {
                grid-template-columns: 1fr;
            }
            
            .subject-image {
                height: 180px;
            }
            
            .approach-image {
                height: 160px;
            }
            
            .quote-section {
                padding: 4rem 0;
            }
            
            .quote-image {
                height: 350px;
            }
            
            .quote-main {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 600px) {
            .subject-image {
                height: 160px;
            }
            
            .approach-image {
                height: 150px;
            }
            
            .subject-content, .approach-content {
                padding: 1.25rem;
            }
            
            .quote-image {
                height: 300px;
            }
            
            .quote-section {
                padding: 3rem 0;
            }
            
            .quote-main {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .subject-image {
                height: 150px;
            }
            
            .approach-image {
                height: 140px;
            }
            
            .quote-container {
                padding: 0 1.5rem;
            }
            
            .quote-image {
                height: 250px;
            }
            
            .quote-main {
                font-size: 1.25rem;
            }
            
            .quote-author {
                font-size: 0.875rem;
            }
        }

        @media (max-width: 360px) {
            .subject-image {
                height: 140px;
            }
            
            .approach-image {
                height: 130px;
            }
            
            .quote-image {
                height: 220px;
            }
        }
/* ==================== QUOTE SECTION (EXACTLY LIKE HOMEPAGE) ==================== */
        .quote-section {
            background: var(--secondary);
            /* padding: 6rem 0; */
        }

        .quote-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 0 auto;
            width: 100%;
            /* max-width: 1400px;
            padding: 0 2rem; */
        }

        .quote-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 400px;
            box-shadow: 0 20px 40px rgba(35, 47, 95, 0.1);
        }

        .quote-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .quote-image:hover img {
            transform: scale(1.03);
        }

        .quote-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                45deg,
                rgba(230, 204, 143, 0.15) 0%,
                rgba(230, 204, 143, 0.05) 100%
            );
            pointer-events: none;
        }

  

        .quote-heading {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--primary, #232F5F);
            margin-bottom: 2rem;
            position: relative;
            padding-left: 0.75rem;
        }

        .quote-heading::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 16px;
            background: var(--secondary, #E6CC8F);
        }

        .quote-text {
            margin-bottom: 3rem;
        }

        .quote-main {
            font-family: 'STIX Two Text', serif;
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-style: italic;
            line-height: 1.4;
            color: var(--primary, #232F5F);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .quote-mark {
            color: var(--secondary, #E6CC8F);
            font-size: 2.5rem;
            line-height: 0;
            vertical-align: middle;
            position: relative;
            top: -5px;
        }

        .quote-author {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            color: rgba(35, 47, 95, 0.7);
            padding-left: 1.5rem;
            position: relative;
        }

        .quote-author::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 20px;
            height: 1px;
            background: var(--secondary, #E6CC8F);
        }

        /* ==================== GRID SYSTEM ==================== */
        .grid-cols-1 { grid-template-columns: 1fr; }

        @media (min-width: 768px) {
            .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
            .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
        }

        @media (min-width: 1024px) {
            .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
        }

        

        /* ==================== STREAM CARD WITH IMAGES ==================== */
        .stream-card {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: var(--card);
            transition: all var(--transition-base);
            height: 100%;
        }

        .stream-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .stream-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .stream-header {
            background: var(--primary);
            padding: 1.5rem;
            color: var(--primary-foreground);
            text-align: center;
        }

        .stream-content {
            padding: 1.5rem;
        }

        /* ==================== CAREER TAGS ==================== */
        .career-tag {
            padding: 0.375rem 0.75rem;
            background: rgba(230, 204, 143, 0.15);
            color: var(--foreground);
            font-size: 0.75rem;
            border-radius: 9999px;
            transition: all var(--transition-base);
        }

        .career-tag:hover {
            background: rgba(230, 204, 143, 0.25);
            transform: translateY(-2px);
        }

        /* ==================== SUPPORT CARD WITH IMAGES ==================== */
        .support-card {
            background: var(--card);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            text-align: center;
            transition: all var(--transition-base);
            height: 100%;
            overflow: hidden;
        }

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

        .support-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
            display: block;
        }

        .support-content {
            padding: 1.5rem;
        }

        /* ==================== LIST STYLES ==================== */
        .space-y-2 > * + * { margin-top: 0.5rem; }

        /* ==================== MAX WIDTHS ==================== */
        .max-w-2xl { max-width: 42rem; }
        .max-w-3xl { max-width: 48rem; }
        .max-w-5xl { max-width: 64rem; }
        .max-w-xl { max-width: 36rem; }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1200px) {
            .quote-container {
                padding: 0 2rem;
                gap: 3rem;
            }
            
            .quote-content {
                padding: 2.5rem 4rem 2.5rem 0;
            }
        }

        @media (max-width: 992px) {
            .quote-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .quote-image {
                height: 400px;
                width: 100%;
            }
            
            .quote-content {
                padding: 0;
                text-align: center;
            }
            
            .quote-heading::before {
                left: 50%;
                transform: translateX(-50%);
                top: -1rem;
                width: 16px;
                height: 4px;
            }
            
            .quote-author::before {
                left: 50%;
                transform: translateX(-50%);
                top: -0.75rem;
                width: 40px;
            }
        }

        @media (max-width: 768px) {
           
            .text-4xl {
                font-size: 1.875rem;
            }
            
            .text-5xl {
                font-size: 2.25rem;
            }
            
            .grid-cols-1, .grid-cols-2, .grid-cols-3, .grid-cols-4 {
                grid-template-columns: 1fr;
            }
            
            .stream-image {
                height: 180px;
            }
            
            .support-image {
                height: 140px;
            }
            
            .quote-section {
                padding: 4rem 0;
            }
            
            .quote-image {
                height: 350px;
            }
            
            .quote-main {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 600px) {
            .stream-image {
                height: 160px;
            }
            
            .support-image {
                height: 130px;
            }
            
            .stream-content, .support-content {
                padding: 1.25rem;
            }
            
            .quote-image {
                height: 300px;
            }
            
            .quote-section {
                padding: 3rem 0;
            }
            
            .quote-main {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
           
            .stream-image {
                height: 150px;
            }
            
            .support-image {
                height: auto;
            }
            
            .quote-container {
                padding: 0 1.5rem;
            }
            
            .quote-image {
                height: 250px;
            }
            
            .quote-main {
                font-size: 1.25rem;
            }
            
            .quote-author {
                font-size: 0.875rem;
            }
        }

        @media (max-width: 360px) {
            .stream-image {
                height: 140px;
            }
            
            .support-image {
                height: 110px;
            }
            
            .quote-image {
                height: 220px;
            }
        }



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

/* ==================== CAROUSEL ==================== */
.carousel {
position: relative;
overflow: hidden;
height: 200px;
}

.carousel-track {
display: flex;
transition: transform 0.5s ease;
}

.carousel img {
width: 100%;
flex-shrink: 0;
object-fit: cover;
height: 200px;
}

.carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,0.4);
color: white;
border: none;
padding: 6px 10px;
cursor: pointer;
font-size: 18px;
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

/* ==================== CARD STYLES ==================== */
.isadferes .card {
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    padding: 0pc;
}

.isadferes .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-family: 'STIX Two Text', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.card-content ul {
    list-style-type: none;
    padding-left: 0;
}

.card-content ul li {
    padding: 0.25rem 0;
    font-family: 'STIX Two Text', serif;
    color: var(--primary);
    position: relative;
    padding-left: 1.25rem;
    font-size: 1.125rem;
}

.card-content ul li:before {
    content: "â€¢";
    color: var(--secondary);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}
.isadferes .grid { display:grid; gap:2rem; }
.isadferes .md-grid-2 { grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); }

.isadferes  .rounded-2xl { border-radius: var(--radius-xl); }
.isadferes  .shadow-lg { box-shadow: var(--shadow-lg); }
.isadferes .hover-shadow:hover { box-shadow: var(--shadow-xl); }

.isadferes  .py-20 { padding:5rem 0; }
.isadferes  .p-6 { padding:1.5rem; }
.isadferes  .mb-4 { margin-bottom:1rem; }
.isadferes  .mb-6 { margin-bottom:1.5rem; }

.text-center { text-align:center; }
.text-muted { color:var(--primary);font-family: 'STIX Two Text', serif; }

/* ===
/* Responsive adjustments for cards */
@media (max-width: 768px) {
    .carousel {
        height: 180px;
    }
    
    .carousel img {
        height: 180px;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .carousel {
        height: 160px;
    }
    
    .carousel img {
        height: 160px;
    }
}

.card-heading{
    color: var(--primary);
    font-size: 1.5rem;
}

.card-paragraph{
    color: var(--primary);
    font-size: 1.25rem;
}
/* ===== TABS STYLES ===== */
.tabs-container.ssferwtabbox {
    margin: 4rem auto;
    max-width: 1200px;
}

.ssferwtabbox .tabs-header {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid #eee;
}

.ssferwtabbox .tab-button {
    padding: 1rem 2.5rem;
    font-family: 'STIX Two Text', serif;
    font-size: 1.2rem;
    font-weight: 600;
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.ssferwtabbox .tab-button:hover {
    color: var(--primary);
}

.ssferwtabbox .tab-button.active {
    color: var(--primary);
}

.ssferwtabbox .tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary);
}

.ssferwtabbox .tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
    background: transparent;
}

.ssferwtabbox .tab-content.active {
    display: block;
}

/* ===== CONTENT LAYOUT ===== */
.ssferwtabbox .content-section {
    padding: 2rem 0;
}

.ssferwtabbox .content-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.ssferwtabbox .content-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ssferwtabbox .content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.ssferwtabbox .content-text {
    flex: 1;
}

.ssferwtabbox .content-text h2 {
    font-family: 'STIX Two Text', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.ssferwtabbox .content-text p {
    font-family: 'STIX Two Text', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* ===== 4 COLUMNS GRID ===== */
.ssferwtabbox .columns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ssferwtabbox .column-item {
    background: var(--secondary);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 204, 143, 0.3);
}

.ssferwtabbox .column-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--secondary), #f0dcb0);
}

.ssferwtabbox .column-item h3 {
    font-family: 'STIX Two Text', serif;
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.ssferwtabbox .column-item p {
    font-family: 'STIX Two Text', serif;
    color: var(--primary);
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== CAROUSEL (FOR 7+ YEARS) ===== */
.ssferwtabbox .carousel-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.ssferwtabbox .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.ssferwtabbox .carousel-slide {
    min-width: 100%;
    height: 100%;
}

.ssferwtabbox .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ssferwtabbox .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.ssferwtabbox .carousel-btn:hover {
    background: rgba(0,0,0,0.7);
}

.ssferwtabbox .carousel-prev {
    left: 20px;
}

.ssferwtabbox .carousel-next {
    right: 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 900px) {
  .ssferwtabbox  .content-row {
        flex-direction: column;
        gap: 2rem;
    }
    
   .ssferwtabbox .content-image img {
        height: 300px;
    }
    
   .ssferwtabbox .columns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ssferwtabbox .tabs-header {
        flex-direction: column;
        align-items: center;
    }
    
    .ssferwtabbox .tab-button {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }
    
    .ssferwtabbox .columns-grid {
        grid-template-columns: 1fr;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ssferwtabbox .content-text h2 {
        font-size: 1.8rem;
    }
    
    .ssferwtabbox .column-item {
        padding: 1.5rem;
    }
}
/* ==================== LANGUAGE CARDS WITH FULL-WIDTH IMAGES ==================== */
        .languagepagesec .language-card {
            background: var(--card);
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-base);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .languagepagesec .language-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .languagepagesec .language-image-container {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .languagepagesec .language-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-base);
        }

        .languagepagesec .language-card:hover .language-image {
            transform: scale(1.05);
        }

        .languagepagesec .language-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(35, 47, 95, 0.7), rgba(35, 47, 95, 0.9));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            color: var(--primary-foreground);
        }

        .languagepagesec .language-type {
            color: var(--secondary);
            font-size: 0.875rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.25rem;
        }

        .languagepagesec .language-title {
            font-size: 1.75rem;
            font-weight: 600;
            line-height: 1.2;
            margin: 0;
        }

        .languagepagesec .language-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .languagepagesec .language-description {
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.6;
            font-size: 1.25rem;
        }

        .languagepagesec .focus-title {
            font-family: 'STIX Two Text', serif;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
        }

        .languagepagesec .focus-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .languagepagesec .focus-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.5rem;
            font-size: 1.125rem;
            color: var(--primary);
        }

        .languagepagesec .focus-dot {
            color: var(--secondary);
            margin-right: 0.5rem;
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        /* ==================== APPROACH CARDS WITH FULL-WIDTH IMAGES ==================== */
        .languagepagesec .approach-card {
            background: var(--card);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

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

        .languagepagesec .approach-image-container {
            width: 100%;
            height: 160px;
            overflow: hidden;
            position: relative;
        }

        .languagepagesec .approach-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-base);
        }

        .languagepagesec .approach-card:hover .approach-image {
            transform: scale(1.05);
        }

        .languagepagesec .approach-icon-container {
            position: absolute;
            bottom: -1.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 3rem;
            height: 3rem;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.25rem;
        }

        .languagepagesec .approach-content {
            padding: 2rem 1.5rem 1.5rem;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .languagepagesec .approach-title {
            font-family: 'STIX Two Text', serif;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.25rem;
        }

        .languagepagesec .approach-description {
            color: var(--primary);
            font-size: 1.125rem;
            line-height: 1.5;
        }

        /* ==================== SPACE UTILITIES ==================== */
        .languagepagesec .space-y-2 > * + * { margin-top: 0.5rem; }

        /* ==================== MAX WIDTHS ==================== */
        .languagepagesec .max-w-3xl { max-width: 48rem; }
        .languagepagesec .max-w-5xl { max-width: 64rem; }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 900px) {      
            .languagepagesec .language-image-container {
                height: 180px;
            }
            
            .languagepagesec .approach-image-container {
                height: 150px;
            }
        }

        @media (max-width: 768px) {
            
            .languagepagesec .text-4xl {
                font-size: 1.875rem;
            }
            
            .languagepagesec .text-5xl {
                font-size: 2.25rem;
            }
            
            .languagepagesec .grid-cols-1, .languagepagesec .grid-cols-2, .languagepagesec .grid-cols-3, .languagepagesec .grid-cols-4 {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .languagepagesec .language-title {
                font-size: 1.5rem;
            }
            
            .languagepagesec .language-image-container {
                height: 180px;
            }
            
            .languagepagesec .approach-image-container {
                height: 160px;
            }
        }

        @media (max-width: 600px) {
            
            .languagepagesec .language-image-container {
                height: 160px;
            }
            
            .languagepagesec .approach-image-container {
                height: 150px;
            }
            
            .languagepagesec .language-content, .approach-content {
                padding: 1.25rem;
            }
        }

        @media (max-width: 480px) {
            
            .languagepagesec .language-image-container {
                height: 150px;
            }
            
            .languagepagesec .approach-image-container {
                height: 140px;
            }
            
            .languagepagesec .language-title {
                font-size: 1.375rem;
            }
        }

        @media (max-width: 360px) {
            
            .languagepagesec .language-image-container {
                height: 140px;
            }
            
            .languagepagesec .approach-image-container {
                height: 130px;
            }
            
            .languagepagesec .language-content, .approach-content {
                padding: 1rem;
            }
        }

/* ==================== SPORTS SPECIFIC STYLES ==================== */
.sportsecpage .grid { display:grid; gap:2rem; }
.sportsecpage .md-grid-2 { grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); }
@media (max-width: 768px) {
    .sportsecpage .md-grid-2 {
        grid-template-columns: 1fr;
    }
}


/* ==================== CAROUSEL ==================== */
.sportsecpage .carousel {
position: relative;
overflow: hidden;
height: 200px;
}

.sportsecpage .carousel-track {
display: flex;
transition: transform 0.5s ease;
}

.sportsecpage .carousel img {
width: 100%;
flex-shrink: 0;
object-fit: cover;
height: 200px;
}

.sportsecpage .carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0,0,0,0.4);
color: white;
border: none;
padding: 6px 10px;
cursor: pointer;
font-size: 18px;
z-index: 10;
}

.sportsecpage .carousel-btn.prev { left: 8px; }
.sportsecpage .carousel-btn.next { right: 8px; }

/* ==================== CARD STYLES ==================== */
.sportsecpage .card {
    background: var(--card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    padding: 0px;
}

.sportsecpage .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.sportsecpage .card-content {
    padding: 1.5rem;
}

.sportsecpage .card-content h3 {
    font-family: 'STIX Two Text', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.sportsecpage .card-content p {
    font-family: 'STIX Two Text', serif;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sportsecpage .card-content ul {
    list-style-type: none;
    padding-left: 0;
}

.sportsecpage .card-content ul li {
    padding: 0.25rem 0;
    font-family: 'STIX Two Text', serif;
    color: var(--primary);
    position: relative;
    padding-left: 1.25rem;
    font-size: 1.125rem;
}

.sportsecpage .card-content ul li:before {
    content: "â€¢";
    color: var(--secondary);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive adjustments for cards */
@media (max-width: 768px) {
    .sportsecpage .carousel {
        height: 180px;
    }
    
    .sportsecpage .carousel img {
        height: 180px;
    }
    
    .sportsecpage .card-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .sportsecpage .carousel {
        height: 160px;
    }
    
    .sportsecpage .carousel img {
        height: 160px;
    }
}

/* ==================== SPORTS SPECIFIC STYLES ==================== */
.sportsecpage .sports-headline {
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'STIX Two Text', serif;
}

.sportsecpage .sports-headline h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.sportsecpage .sports-headline p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.sportsecpage .card-heading{
    font-size: 1.5rem;
    color: var(--primary);
}

.sportsecpage .card-paragraph{
    font-size: 1.25rem;
    color: var(--primary);
}

/* ================= Technology Sec ================= */

.technologypgsecarea .grid{display:grid;gap:2rem}
.technologypgsecarea .md-grid-2{grid-template-columns:repeat(auto-fit,minmax(300px,1fr))}

.technologypgsecarea .tech-carousel{
position:relative;
height:180px;
overflow:hidden;
}

.technologypgsecarea .tech-carousel-track{
display:flex;
transition:.5s ease;
}

.technologypgsecarea .tech-carousel img{
width:100%;
height:180px;
object-fit:cover;
flex-shrink:0;
}

.technologypgsecarea .tech-carousel button{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,.45);
border:none;
color:#fff;
width:34px;
height:34px;
border-radius:50%;
cursor:pointer;
font-size:18px;
}

.technologypgsecarea .tech-carousel .prev{left:10px}
.technologypgsecarea .tech-carousel .next{right:10px}

/* ================= LIST ================= */
ul{list-style:none}
li{margin-bottom:.4rem;display:flex;gap:.5rem;align-items:center;font-family: 'STIX Two Text', serif;}
.dot{
width:6px;
height:6px;
background:var(--primary);
border-radius:50%;

}

/* ================= CARD STYLES ================= */
.technologypgsecarea .tech-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
}

.technologypgsecarea .tech-card:hover {
    transform: translateY(-10px);
}

/* ================= RESPONSIVE ================= */
.technologypgsecarea .card-heading{
    font-size: 1.5rem;
    color: var(--primary);
}

.technologypgsecarea .card-paragraph{
    font-size: 1.25rem;
    color: var(--primary);
    font-family:'STIX Two Text',serif;
}

.technologypgsecarea .tech-card li {
    font-size: 1.125rem;
}

/* ================= AWARD PAGE ================= */
.awardspagesecarea .slider-section {
    position: relative;
    padding: 3rem 0;
    background: transparent; /* Transparent background */
}

.awardspagesecarea .slider-title {
    text-align: center;
    margin-bottom: 3rem;
}

.awardspagesecarea .slider-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.awardspagesecarea .slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px; /* Space for arrows on both sides */
}

.awardspagesecarea .slider-container {
    overflow: hidden;
    width: 100%;
}

.awardspagesecarea .slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.awardspagesecarea .slider-slide {
    flex: 0 0 calc((100% - 4rem) / 3); /* 3 cards with gaps */
    min-width: 0; /* Important for flex shrink */
    border-radius: var(--radius);
    overflow: hidden;
    background: transparent; /* TRANSPARENT CARD BACKGROUND */
    transition: transform 0.3s ease;
}

.awardspagesecarea .slider-slide:hover {
    transform: translateY(-5px);
}

.awardspagesecarea .slide-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.awardspagesecarea .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.awardspagesecarea .slider-slide:hover .slide-image img {
    transform: scale(1.05);
}

.awardspagesecarea .slide-content {
    padding: 1.5rem;
    background: transparent; /* TRANSPARENT CONTENT BACKGROUND */
}

/* CARD HEADING STYLES - YOUR REQUEST */
.awardspagesecarea .slider-slide h3 {
    font-size: 1.25rem; /* 1.25rem font size */
    color: var(--primary); /* Primary color */
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

/* CARD TEXT STYLES - YOUR REQUEST */
.awardspagesecarea .slider-slide p {
    font-size: 1.125rem; /* 1.125rem font size */
    color: var(--primary); /* Primary color */
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* NAVIGATION ARROWS - POSITIONED OUTSIDE */
.awardspagesecarea .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 4rem;
    color: var(--primary);
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    outline: none;
}

.awardspagesecarea .slider-nav:hover {
    color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.awardspagesecarea .slider-prev {
    left: 0;
}

.awardspagesecarea .slider-next {
    right: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .awardspagesecarea .slider-wrapper {
        padding: 0 70px;
    }
    
    .awardspagesecarea .slider-slide {
        flex: 0 0 calc((100% - 2rem) / 2); /* 2 cards on tablet */
    }
    
    .awardspagesecarea .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .awardspagesecarea .slider-wrapper {
        padding: 0 60px;
    }
    
    .awardspagesecarea .slider-slide {
        flex: 0 0 100%; /* 1 card on mobile */
    }
    
    .awardspagesecarea .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 3rem;
    }
    
    .awardspagesecarea .slide-image {
        height: 200px;
    }
    
    /* Keep font sizes consistent on mobile */
    .awardspagesecarea .slider-slide h3 {
        font-size: 1.25rem; /* Keep 1.25rem on mobile */
    }
    
    .awardspagesecarea .slider-slide p {
        font-size: 1.125rem; /* Keep 1.125rem on mobile */
    }
}

@media (max-width: 480px) {
    .awardspagesecarea .slider-wrapper {
        padding: 0 0px;
    }
    
    .awardspagesecarea .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 2.5rem;
    }
    
    .awardspagesecarea .slide-image {
        height: 180px;
    }
    
    .slide-content {
        padding: 1.2rem;
    }
    
    .awardspagesecarea .slider-slide h3 {
        font-size: 1.25rem; /* Keep 1.25rem on mobile */
    }
    
    .awardspagesecarea .slider-slide p {
        font-size: 1.125rem; /* Keep 1.125rem on mobile */
    }
}


/* ================= DETAILS STRIP ================= */
.awardspagesecarea .details-strip {
    background: #fff;
    margin-top: -60px;
    position: relative;
    z-index: 2;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    width: 100%;
}

.awardspagesecarea .details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.awardspagesecarea .details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem 0;
    gap: 2rem;
    text-align: center;
}

.awardspagesecarea .detail-item span {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.awardspagesecarea .detail-item h4 {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    color: var(--primary);
}

.awardspagesecarea .section-heading{
    font-size: 2.5rem;
}

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

@media(max-width:500px){
    .awardspagesecarea .details-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= ABOUT / BEYOND ACADEMICS ================= */
.awardspagesecarea .about-campus {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.awardspagesecarea .single-campus-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform .4s ease;
}

.awardspagesecarea .single-campus-image img:hover {
    transform: scale(1.02);
}

.awardspagesecarea .about-campus .campus-description p {
    color: var(--primary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.awardspagesecarea .about-campus .campus-description h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: 1.3;
}

/* ================= CREATORS' LAB SECTION ================= */
.awardspagesecarea .creators-lab-section {
    background: #f3f3f3;
}

.awardspagesecarea .creators-lab {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 70px;
}

.awardspagesecarea .creators-lab-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--primary);
}

.awardspagesecarea .creators-lab-content p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--primary);
}

.awardspagesecarea .creators-lab-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* ================= GRADES ================= */
.awardspagesecarea .grades-accordion {
    display: flex;
    gap: 1rem;
    height: 320px;
}

.awardspagesecarea .grade-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    transition: flex .6s ease;
    height: 100%;
}

.awardspagesecarea .grades-accordion:hover .grade-panel { flex: .8; }
.awardspagesecarea .grades-accordion .grade-panel:hover { flex: 2.5; }

.awardspagesecarea .grade-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awardspagesecarea .grade-panel::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(35,47,95,.45), rgba(35,47,95,.15));
}

.awardspagesecarea .grade-content {
    position:absolute;
    inset:0;
    padding:1.5rem;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    color:#fff;
    z-index: 2;
}

.awardspagesecarea .grade-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Responsive adjustments */
@media(max-width: 900px){
    .awardspagesecarea .about-campus, 
    .awardspagesecarea .creators-lab { 
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .awardspagesecarea .grades-accordion { 
        flex-direction:column; 
        height:auto; 
    }
    .awardspagesecarea .grade-panel { 
        height:200px;
    }
}

/* ===== Blog Page ===== */
        .blog-hero {
            background: linear-gradient(
                to right,
                rgba(35,47,95,0.4),
                rgba(35,47,95,0.3)
            ),
            url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
            min-height: 65vh;
            display: flex;
            align-items: center;
        
            position: relative;
            margin-bottom: 2rem;
        }

        .blog-hero .hero-content {
            width: 100%;
            padding: 60px 0;
        }

        .blog-hero .inner-content {
            max-width: 1400px;
            margin: 0 auto;
            padding-left: 6rem;
            padding-right: 2rem;
        }

        .blog-hero .hero-label {
            letter-spacing: 2px;
            color: var(--secondary);
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 500;
            display: block;
            margin-bottom: 0.5rem;
        }

        .blog-hero .hero-title {
            font-size: clamp(2.5rem, 5vw, 3rem);
            color: white;
            margin: 18px 0;
            line-height: 1.2;
        }

        .blog-hero .hero-subtitle {
            color: #f0f0f0;
            font-size: 1.25rem;
            max-width: 600px;
            opacity: 0.9;
        }

        @media (max-width: 1200px) {
            .blog-hero .inner-content { padding-left: 2rem; }
        }
        @media (max-width: 768px) {
            .blog-hero { min-height: 40vh; }
            .blog-hero .inner-content { padding-left: 1.5rem; }
        }

        /* ===== BLOG SECTION HEADING ===== */
        .blogdetailpage .section-heading {
            text-align: center;
            margin: 4rem 0 3rem;
        }
        .blogdetailpage .section-heading h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .blogdetailpage .section-heading p {
            color: var(--muted-foreground);
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== BLOG GRID â€“ 3 CARDS IN A ROW ===== */
        .blogdetailpage .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .blogdetailpage .blog-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
        }

        .blogdetailpage .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .blogdetailpage .blog-image {
            height: 220px;
            width: 100%;
            overflow: hidden;
        }

        .blogdetailpage .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blogdetailpage .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blogdetailpage .blog-content {
            padding: 1.8rem 1.5rem 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blogdetailpage .blog-meta {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--secondary-dark);
            font-weight: 500;
            margin-bottom: 0.5rem;
            font-family: "STIX TWO TEXT", sans-serif;
        }

        .blogdetailpage .blog-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .blogdetailpage .blog-excerpt {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--muted-foreground);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex: 1;
        }

        .blogdetailpage .read-more {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: transparent;
            border: none;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 15px 0 0px;
            border-top: 1px solid var(--border);
            width: 100%;
            margin-top: 0.5rem;
            transition: color 0.2s;
            cursor: pointer;
            text-decoration: none;
        }

        .blogdetailpage .read-more i {
            font-size: 0.9rem;
            transition: transform 0.2s;
            color: var(--secondary-dark);
        }

        .blogdetailpage .read-more:hover {
            color: var(--primary-dark);
        }

        .blogdetailpage .read-more:hover i {
            transform: translateX(5px);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 992px) {
            .blogdetailpage .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .blogdetailpage .blog-grid {
                grid-template-columns: 1fr;
            }
            .blogdetailpage .blog-image {
                height: 200px;
            }
        }

        /* simple header simulation (to match original pages) */
        .blogdetailpage .dummy-header {
            background: var(--primary);
            color: white;
            padding: 0.5rem 2rem;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            height: 80px;
        }
        .blogdetailpage .dummy-header span {
            font-size: 1.5rem;
            font-weight: 600;
        }
        .blogdetailpage .dummy-header span small {
            color: var(--secondary);
            margin-left: 0.5rem;
            font-size: 1rem;
        }

/* ===== BLOG POST CONTENT ===== */
.container-narrow.blogdetailspage {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 2rem;
}
.hero-labeltos {
    letter-spacing: 2px;
    color: #e6cc8f;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}
.blogdetailspage .blog-post {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    padding: 3rem;
    margin-bottom: 4rem;
}

.blogdetailspage .post-title {
    font-size: 2.8rem;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.blogdetailspage .post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--muted-foreground);
    font-family: 'STIX Two Text', serif;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.blogdetailspage .post-meta i {
    color: var(--secondary-dark);
    margin-right: 0.3rem;
}

.blogdetailspage .featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-md);
}

.blogdetailspage .post-text {
    font-family: 'STIX Two Text', serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--foreground);
}

.blogdetailspage .post-text p {
    margin-bottom: 1.8rem;
}

.blogdetailspage .post-text p:first-of-type::first-letter {
    font-size: 3.5rem;
    float: left;
    line-height: 1;
    margin-right: 0.75rem;
    color: var(--secondary-dark);
    font-weight: 600;
    font-family: 'STIX Two Text', serif;
}

/* back to blog link */
.blogdetailspage .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.2s;
}

.blogdetailspage .back-link:hover {
    gap: 1rem;
    color: var(--secondary-dark);
}

/* ===== FOOTER ===== */
.blogdetailspage .footer-placeholder {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
    border-top: 2px solid var(--secondary);
}

/* dummy header */
.blogdetailspage .dummy-header {
    background: var(--primary);
    color: white;
    padding: 0.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    height: 80px;
}
.blogdetailspage .dummy-header span {
    font-size: 1.5rem;
    font-weight: 600;
}
.blogdetailspage .dummy-header span small {
    color: var(--secondary);
    margin-left: 0.5rem;
    font-size: 1rem;
}

@media (max-width: 700px) {
    .blogdetailspage .blog-post { padding: 1.8rem; }
    .blogdetailspage .post-title { font-size: 2rem; }
}

/*-- FAQ Start --*/
.faqpagesec .faq-section .faq,
.faqpagesec .faq-section {
    margin: 0px;
}
section.admission-form.faqpagesec {
    padding-top: 60px;
    padding-bottom: 60px;
}
section.policypages {
    padding: 60px 0px;
}

section.policypages h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}
.school-content .btn {
    background: transparent;
}
.school-content .btn:hover{
 background:rgba(245, 240, 230, 0.1);
}
.relation-options span {
    margin: 0px;
}
.relation-options span {
    margin: 0px;
}

.form-row {
    margin-bottom: 20px;
}

.form-row:last-child {
    margin: 0px;
}
.form-group select,
.dob-input select {
  width: 100%; 
	padding-right: 15px; /* Arrow ke liye extra space */
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
}
#campusVisitForm .form-group {
    margin-bottom: 15px;
}

#campusVisitForm .form-row {
    margin-bottom: 0px;
    grid-template-columns: repeat(2, 1fr);
}
#enquireNowPopup .submit-btn {
    margin: 0px;
}

.submit-btn span.wpcf7-spinner {}

span.wpcf7-spinner {
    display: none !important;
}

#enquireNowPopup .submit-section {
    padding-top: 0px;
    margin-bottom: 0px;
}

#enquireNowPopup .dob-section {
    margin-top: 0px;
    gap: 0px 0.75rem;
}

#enquireNowPopup .dob-section .dob-label {
    margin-bottom: 0.5rem;
    text-align: left;
}

/*-- Main Responsive --*/
@media only screen and (min-width: 767px) and (max-width: 1023px){
#enquireNowPopup .modal-container {
    margin: 0px !important;
    width: 100%;
}
#enquireNowPopup .dob-section .dob-input {
    margin-bottom: 15px;
}
#enquireNowPopup .dob-section .dob-input:last-child {
    margin-bottom: 0px;
}
}
@media only screen and (min-width: 320px) and (max-width: 766px){ 
#enquireNowPopup .modal-container {
    margin: 0px !important;
    width: 100%;
}
#enquireNowPopup .dob-section .dob-input {
    margin-bottom: 15px;
}
#enquireNowPopup .dob-section .dob-input:last-child {
    margin-bottom: 0px;
}
}