/* 
 * MATSYA L.S.A KHERLI - Main Stylesheet
 * Livestock Assistant Training Institute
 * पशुधन सहायक प्रशिक्षण संस्थान
 * Theme: Deep Navy Blue (#07172C), Royal Blue (#1D4ED8), Gold (#D4AF37), Natural Green (#15803D)
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-dark: #07172c;
    --primary: #0b2545;
    --primary-light: #133e68;
    --royal-blue: #1d4ed8;
    --royal-blue-light: #2563eb;
    --royal-blue-glow: rgba(29, 78, 216, 0.25);
    
    --gold: #d4af37;
    --gold-light: #f59e0b;
    --gold-dark: #b48512;
    --gold-glow: rgba(212, 175, 55, 0.35);

    --accent-green: #15803d;
    --accent-green-light: #22c55e;
    --accent-green-soft: #dcfce7;

    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;
    --white: #ffffff;
    
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --border-gold: rgba(212, 175, 55, 0.4);

    --font-heading: 'Outfit', 'Noto Sans Devanagari', sans-serif;
    --font-brand: 'Outfit', 'Cinzel', sans-serif;
    --font-body: 'Outfit', 'Noto Sans Devanagari', sans-serif;

    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px -3px rgba(7, 23, 44, 0.12), 0 4px 10px -2px rgba(7, 23, 44, 0.06);
    --shadow-card: 0 12px 30px -5px rgba(11, 37, 69, 0.09);
    --shadow-gold: 0 10px 25px -3px rgba(212, 175, 55, 0.35);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ==================== Top Bar (Two-Level Header) ==================== */
.topbar {
    background: var(--primary-dark);
    color: #e2e8f0;
    font-size: 0.84rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #cbd5e1;
}

.topbar-item i {
    color: var(--gold);
}

.topbar-item a:hover {
    color: var(--gold-light);
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topbar-portals {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar-portal-btn {
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.22rem 0.65rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.topbar-portal-btn.btn-admin {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.4);
}

.topbar-portal-btn.btn-admin:hover {
    background: #38bdf8;
    color: #041c38;
}

.topbar-portal-btn.btn-accountant {
    background: rgba(250, 204, 21, 0.15);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.4);
}

.topbar-portal-btn.btn-accountant:hover {
    background: #facc15;
    color: #041c38;
}

.topbar-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--gold);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.topbar-apply-link {
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.topbar-apply-link:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

/* ==================== Main Navigation ==================== */
.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px -2px rgba(7, 23, 44, 0.08);
    transition: var(--transition);
}

.main-header .container {
    max-width: 1360px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    gap: 1rem;
    width: 100%;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-logo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.brand-link:hover .brand-logo {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.brand-title {
    font-family: var(--font-brand);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.brand-title span {
    color: var(--royal-blue);
}

.brand-subtitle {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    white-space: nowrap;
    line-height: 1.2;
}

.brand-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 0.70rem;
    color: var(--accent-green);
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 600;
    font-size: 0.86rem;
    padding: 0.4rem 0.52rem;
    border-radius: var(--radius-sm);
    color: var(--primary);
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
    display: block;
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    color: var(--royal-blue);
    background: rgba(29, 78, 216, 0.06);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.mobile-apply-item,
.mobile-portal-btns,
.mobile-portal-links {
    display: none !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.6rem 1.15rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.45);
}

.btn-navy {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary-light);
}

.btn-navy:hover {
    background: var(--royal-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(29, 78, 216, 0.3);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.btn-block {
    width: 100%;
}

/* Mobile Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==================== Hero Section ==================== */
.hero-wrapper {
    position: relative;
    background: linear-gradient(135deg, #05101f 0%, #07172c 40%, #0b2545 75%, #133e68 100%);
    color: var(--white);
    padding: 4.5rem 0 5.5rem;
    overflow: hidden;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(29, 78, 216, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(212, 175, 55, 0.14) 0%, transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(21, 128, 61, 0.12) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1.5px solid var(--gold);
    color: var(--gold-light);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.1rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-title .highlight {
    background: linear-gradient(90deg, #f59e0b, #d4af37, #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.45rem;
    color: #93c5fd;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.hero-motto {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.05rem;
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.07);
    border-left: 3px solid var(--gold);
    padding: 0.55rem 1.2rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* Feature Indicators Under Buttons */
.hero-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.75rem;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #e2e8f0;
}

.indicator-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Hero Media & Image Frame */
.hero-media-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 28px;
    overflow: visible;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(212, 175, 55, 0.2);
    border: 3px solid rgba(212, 175, 55, 0.4);
    background: #07172c;
    display: inline-block;
    max-width: 480px;
    width: 100%;
}

.hero-main-photo {
    width: 100%;
    height: auto;
    border-radius: 25px;
    display: block;
    object-fit: cover;
}

.hero-script-tag {
    position: absolute;
    top: -18px;
    left: 16px;
    background: rgba(7, 23, 44, 0.9);
    border: 1.5px solid var(--gold);
    border-radius: 12px;
    padding: 6px 14px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    z-index: 4;
}

.hero-script-tag span {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--gold-light);
    font-weight: 700;
}

.hero-script-tag em {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: #e2e8f0;
    font-style: normal;
    font-weight: 600;
}

.hero-stamp-badge {
    position: absolute;
    bottom: -24px;
    right: -15px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    z-index: 5;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.hero-stamp-badge:hover {
    transform: scale(1.08) rotate(5deg);
}

.hero-stamp-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn-hero-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #041c38 !important;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.btn-hero-gold:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.55);
    color: #041c38 !important;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff !important;
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #f59e0b;
    color: #fef08a !important;
    transform: translateY(-2px);
}

/* ==================== Animal Focus Strip (8 Categories) ==================== */
.animal-strip-section {
    background: #ffffff;
    padding: 1.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 10;
    margin-top: -1.5rem;
}

.animal-strip-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.85rem;
}

.animal-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem 0.5rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.28s ease;
    cursor: pointer;
}

.animal-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: #f59e0b;
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.18);
}

.animal-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform 0.25s ease;
}

.animal-card:hover .animal-icon-wrap {
    transform: scale(1.12);
}

.icon-cattle { background: #fef3c7; color: #d97706; }
.icon-health { background: #e0f2fe; color: #0284c7; }
.icon-fodder { background: #dcfce7; color: #16a34a; }
.icon-goat { background: #ffedd5; color: #ea580c; }
.icon-poultry { background: #fee2e2; color: #dc2626; }
.icon-firstaid { background: #fce7f3; color: #db2777; }
.icon-farm { background: #ede9fe; color: #7c3aed; }
.icon-practical { background: #ccfbf1; color: #0d9488; }

.animal-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== Stats & Motto Counter Bar ==================== */
.stats-motto-bar {
    background: #07172c;
    padding: 1.25rem 0;
    border-bottom: 2px solid #f59e0b;
}

.stats-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stats-left-items {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.45rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.stats-gold-ribbon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 0.65rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}

.ribbon-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    color: #041c38;
    white-space: nowrap;
}

/* ==================== About Showcase Section ==================== */
.about-showcase-section {
    background: #ffffff;
    padding: 5rem 0;
}

.about-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
}

.about-photo-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border: 3px solid #f1f5f9;
    position: relative;
}

.about-farm-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-title {
    font-size: 2.35rem;
    font-weight: 900;
    color: #041c38;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.text-gold {
    color: #d97706;
}

.about-lead {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.2rem;
}

.pillar-box {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.25s ease;
}

.pillar-box:hover {
    background: #ffffff;
    border-color: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 0.75rem;
}

.pillar-box h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.pillar-box p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.about-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-gold-pill {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #041c38 !important;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 0.75rem 1.6rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.btn-gold-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.cow-calf-sketch-wrap {
    display: flex;
    align-items: center;
}

.cow-calf-sketch {
    max-height: 75px;
    width: auto;
    object-fit: contain;
}

/* ==================== Why Choose Section ==================== */
.why-choose-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.section-heading-centered {
    font-size: 2.35rem;
    font-weight: 900;
    color: #041c38;
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 2.5rem;
    align-items: stretch;
}

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.why-item-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
}

.why-item-card:hover {
    border-color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.1);
}

.why-card-icon.icon-blue {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(29, 78, 216, 0.1);
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.why-item-card h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.why-banner-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    min-height: 300px;
    display: flex;
}

.pasture-banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.pasture-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-banner-card:hover .pasture-banner-img {
    transform: scale(1.05);
}

.pasture-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(4, 28, 56, 0.95) 0%, rgba(4, 28, 56, 0.65) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.pasture-banner-title {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fef08a;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.btn-pasture-cta {
    background: #f59e0b;
    color: #041c38 !important;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: all 0.25s ease;
}

.btn-pasture-cta:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.55);
}

/* ==================== 12 Course Modules Section ==================== */
.course-modules-section {
    background: #ffffff;
    padding: 5rem 0;
}

.section-header-wrap {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3rem;
}

.section-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #d97706;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.section-main-heading {
    font-size: 2.35rem;
    font-weight: 900;
    color: #041c38;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.section-hindi-subheading {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 0.8rem;
}

.section-lead-desc {
    font-size: 1.02rem;
    color: #64748b;
    line-height: 1.65;
}

.course-cards-grid-12 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
}

.module-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.module-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #f59e0b, #1d4ed8);
    transition: width 0.3s ease;
}

.module-card:hover {
    border-color: #1d4ed8;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(29, 78, 216, 0.12);
}

.module-card:hover::after {
    width: 100%;
}

.module-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(29, 78, 216, 0.08);
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1rem;
    transition: all 0.25s ease;
}

.module-card:hover .module-icon-box {
    background: #1d4ed8;
    color: #ffffff;
}

.module-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.module-card p {
    font-size: 0.87rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
    flex-grow: 1;
}

/* ==================== Practical Training Showcase ==================== */
.practical-showcase-section {
    background: linear-gradient(135deg, #05101f 0%, #07172c 55%, #0b2545 100%);
    padding: 5.5rem 0;
    color: #ffffff;
    position: relative;
}

.section-header-wrap.dark-theme .gold-tag {
    background: rgba(245, 158, 11, 0.18);
    border-color: #f59e0b;
    color: #fbbf24;
}

.section-header-wrap.dark-theme .light-heading {
    color: #ffffff;
}

.section-header-wrap.dark-theme .cyan-sub {
    color: #93c5fd;
}

.section-header-wrap.dark-theme .light-desc {
    color: #cbd5e1;
}

.practical-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
}

.practical-card-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
}

.practical-card-item:hover {
    transform: translateY(-6px);
    border-color: #f59e0b;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.practical-img-box {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

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

.practical-card-item:hover .practical-img-box img {
    transform: scale(1.08);
}

.practical-overlay-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(4, 28, 56, 0.88);
    border: 1px solid rgba(245, 158, 11, 0.6);
    color: #fef08a;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.practical-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.practical-card-body h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.45rem;
    line-height: 1.3;
}

.practical-card-body p {
    font-size: 0.86rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

/* ==================== Animal Health & Care Section ==================== */
.animal-health-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.animal-health-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
}

.health-feature-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.health-feature-card:hover {
    border-color: #0284c7;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(2, 132, 199, 0.12);
}

.health-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(2, 132, 199, 0.1);
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.health-feature-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.45rem;
}

.health-feature-card p {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* ==================== Dairy & Livestock Section ==================== */
.dairy-future-section {
    background: #ffffff;
    padding: 5rem 0;
}

.dairy-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.dairy-points-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.dairy-point-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #334155;
}

.dairy-point-item i {
    color: #16a34a;
    font-size: 1.15rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.dairy-point-item strong {
    color: #0f172a;
    display: block;
    margin-bottom: 0.15rem;
}

.dairy-point-item span {
    color: #64748b;
}

.dairy-img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    border: 3px solid #f1f5f9;
}

.dairy-feature-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.dairy-badge-overlay {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(4, 28, 56, 0.9);
    border: 1.5px solid #f59e0b;
    color: #fef08a;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

/* ==================== Career Pathway Section ==================== */
.career-pathway-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.career-pathway-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
}

.career-box {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-left: 4px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.career-box:hover {
    border-color: #f59e0b;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.15);
}

.career-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(4, 28, 56, 0.06);
    color: #041c38;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
}

.career-box h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.career-box p {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.career-disclaimer-note {
    margin-top: 2.5rem;
    background: #fffbeb;
    border: 1.5px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    font-size: 0.88rem;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    line-height: 1.5;
}

.career-disclaimer-note i {
    font-size: 1.2rem;
    color: #d97706;
    flex-shrink: 0;
}

/* ==================== Facilities Highlight Section ==================== */
.facilities-highlight-section {
    background: #ffffff;
    padding: 5rem 0;
}

.facilities-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
}

.facility-item-card {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.25s ease;
}

.facility-item-card:hover {
    background: #ffffff;
    border-color: #1d4ed8;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.1);
}

.facility-item-card .facility-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(29, 78, 216, 0.08);
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
}

.facility-item-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.facility-item-card p {
    font-size: 0.86rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.btn-outline-navy {
    background: transparent;
    color: #041c38 !important;
    border: 1.5px solid #041c38;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
}

.btn-outline-navy:hover {
    background: #041c38;
    color: #ffffff !important;
}

/* ==================== Gallery Preview Section ==================== */
.gallery-preview-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.gallery-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-photo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.gallery-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-photo-card:hover img {
    transform: scale(1.08);
}

.gallery-photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(0deg, rgba(4, 28, 56, 0.95) 0%, rgba(4, 28, 56, 0.6) 65%, transparent 100%);
    color: #ffffff;
}

.gallery-tag {
    background: #f59e0b;
    color: #041c38;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 0.35rem;
}

.gallery-photo-info h4 {
    font-size: 0.96rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    line-height: 1.35;
}

/* ==================== Admission CTA & Quick Enquiry Form ==================== */
.admission-cta-section {
    background: #ffffff;
    padding: 5rem 0;
}

.cta-banner-wrap {
    background: linear-gradient(135deg, #041c38 0%, #07172c 60%, #0b2545 100%);
    border-radius: 28px;
    padding: 3.5rem;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(4, 28, 56, 0.25);
    border: 2px solid rgba(245, 158, 11, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-banner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(245, 158, 11, 0.18);
    border: 1.5px solid #f59e0b;
    color: #fef08a;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.35rem 0.95rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.2rem;
}

.cta-main-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.cta-subtitle-text {
    font-size: 1.02rem;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.cta-contact-pills {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cta-pill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    backdrop-filter: blur(6px);
}

.cta-pill-item i {
    font-size: 1.35rem;
    color: #f59e0b;
}

.cta-pill-item small {
    display: block;
    font-size: 0.74rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cta-pill-item strong {
    display: block;
    font-size: 1.05rem;
    color: #ffffff;
}

.cta-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    color: #0f172a;
}

.cta-form-card .form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #041c38;
    margin-bottom: 0.25rem;
}

.cta-form-card .form-subtitle {
    font-size: 0.84rem;
    color: #64748b;
    margin-bottom: 1.4rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

.form-field label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
}

.form-field input,
.form-field select,
.form-field textarea {
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    font-family: inherit;
    color: #0f172a;
    transition: border-color 0.2s ease;
    background: #ffffff;
    width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

.btn-navy-solid {
    background: #041c38;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    border: none;
}

.btn-navy-solid:hover {
    background: #0b2545;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 28, 56, 0.25);
}

/* ==================== Sections Layout ==================== */
.section {
    padding: 4.5rem 0;
}

.section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--gold-dark);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.35rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.section-title-hindi {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-green);
    font-weight: 700;
    display: block;
    margin-top: 0.35rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-top: 0.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.75rem;
    align-items: center;
}

/* ==================== L.S.A. Course Cards (12 Modules) ==================== */
.course-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.course-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--royal-blue));
    transition: width 0.35s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: rgba(29, 78, 216, 0.3);
}

.course-card:hover::after {
    width: 100%;
}

.course-icon-box {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    background: rgba(11, 37, 69, 0.05);
    color: var(--royal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.15rem;
    transition: var(--transition);
}

.course-card:hover .course-icon-box {
    background: var(--royal-blue);
    color: #ffffff;
}

.course-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.course-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== Why Choose Us Section ==================== */
.why-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-top-color: var(--royal-blue);
}

.why-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.why-content h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.why-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==================== Course Topics Grid (18 Learning Areas) ==================== */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.topic-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--transition);
}

.topic-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.topic-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.topic-details h4 {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.topic-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==================== Practical Training Cards ==================== */
.practical-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.practical-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: rgba(212, 175, 55, 0.5);
}

.practical-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(29, 78, 216, 0.08);
    color: var(--royal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.15rem;
}

.practical-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.practical-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== Career & Scope Badges ==================== */
.career-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    border-left: 4px solid var(--gold);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.career-card h4 {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.career-card h4 i {
    color: var(--gold-dark);
}

.career-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.disclaimer-box {
    background: #fffbeb;
    border: 1px solid #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #92400e;
}

/* ==================== Facilities Cards ==================== */
.facility-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 1.75rem;
}

.facility-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(29, 78, 216, 0.4);
}

.facility-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(11, 37, 69, 0.06);
    color: var(--royal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.facility-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.facility-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== Gallery Filter & Grid ==================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.45rem 1.1rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: var(--gold);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    background: var(--white);
    aspect-ratio: 4 / 3;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 23, 44, 0.92) 0%, rgba(7, 23, 44, 0.25) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.gallery-overlay span {
    font-size: 0.78rem;
    color: var(--gold-light);
    font-weight: 700;
    text-transform: uppercase;
}

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #07172c, #133e68);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.gallery-placeholder i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

/* ==================== Admission & Forms ==================== */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

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

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.form-label .required {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--text-dark);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

/* ==================== Contact Cards ==================== */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==================== Footer (Identical to Reference Design) ==================== */
.site-footer {
    background: #041c38;
    color: #cbd5e1;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}

.footer-main-wrap {
    position: relative;
    padding: 60px 0 40px;
    background: #041c38;
}

/* Subtle livestock & farm silhouette in bottom background */
.footer-silhouette {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 620px;
    max-width: 55%;
    height: 175px;
    background: url('../images/footer_livestock_silhouette.png') no-repeat right bottom;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
    opacity: 0.95;
}

.footer-container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.25fr;
    gap: 42px;
    margin-bottom: 1.5rem;
    align-items: start;
}

/* Column 1: Branding */
.footer-col-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand-logo-link {
    display: inline-block;
    margin-bottom: 14px;
}

.footer-brand-logo {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    border: 2px solid #eab308;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.footer-brand-logo:hover {
    transform: scale(1.03);
}

.footer-brand-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.38rem;
    font-weight: 800;
    margin: 0 0 4px 0;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.25;
}

.footer-brand-subtitle-en {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.35;
}

.footer-brand-subtitle-hi {
    color: #7dd3fc;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.35;
}

.footer-about {
    color: #94a3b8;
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 320px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.92rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.footer-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
    filter: brightness(1.1);
}

.social-fb { background: #1877f2; }
.social-yt { background: #ff0000; }
.social-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.social-wa { background: #25d366; }

/* Column Headings & Gold Bar */
.footer-col-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.01em;
}

.footer-gold-bar {
    width: 38px;
    height: 3px;
    background: #eab308;
    border-radius: 2px;
    margin: 8px 0 18px;
}

/* Column 2: Quick Links */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 8px;
}

.footer-nav-list a {
    color: #cbd5e1;
    font-size: 0.91rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-nav-list a:hover {
    color: #f59e0b;
    transform: translateX(4px);
}

.link-chevron {
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 700;
    transition: color 0.25s ease;
}

.footer-nav-list a:hover .link-chevron {
    color: #f59e0b;
}

/* Column 3: Staff Portals */
.footer-portal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-portal-list li {
    margin-bottom: 12px;
}

.portal-link {
    color: #cbd5e1;
    font-size: 0.91rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.portal-link:hover {
    color: #f59e0b;
    transform: translateX(4px);
}

.portal-icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.portal-icon.icon-admin {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.portal-icon.icon-accountant {
    color: #facc15;
    background: rgba(250, 204, 21, 0.12);
    border: 1px solid rgba(250, 204, 21, 0.3);
}

.portal-icon.icon-topic,
.portal-icon.icon-career,
.portal-icon.icon-facilities {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
}

/* Column 4: Campus Contact */
.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-entry {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.91rem;
    color: #cbd5e1;
    line-height: 1.45;
}

.contact-entry a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-entry a:hover {
    color: #f59e0b;
}

.contact-entry-icon {
    color: #eab308;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-directions-btn-wrap {
    margin-top: 20px;
}

.btn-footer-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #eab308;
    border-radius: 8px;
    background: transparent;
    color: #ffffff;
    padding: 9px 20px;
    font-size: 0.91rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-footer-directions i {
    color: #eab308;
    transition: color 0.3s ease;
}

.btn-footer-directions:hover {
    background: #eab308;
    color: #041c38;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.35);
}

.btn-footer-directions:hover i {
    color: #041c38;
}

/* Back to Top Button */
.footer-back-to-top {
    position: absolute;
    right: 20px;
    bottom: -15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #041c38;
    border: 1.5px solid #eab308;
    color: #eab308;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.footer-back-to-top:hover {
    background: #eab308;
    color: #041c38;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(234, 179, 8, 0.45);
}

/* ==================== Bottom Footer Bar ==================== */
.footer-bottom-bar {
    background: #031427;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0;
    font-size: 0.86rem;
    position: relative;
    z-index: 5;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom-col {
    flex: 1;
}

.footer-bottom-left {
    text-align: left;
    color: #94a3b8;
}

.footer-bottom-left .copyright-text {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.86rem;
}

.footer-bottom-divider {
    width: 1px;
    height: 32px;
    background: rgba(212, 175, 55, 0.45);
    flex-shrink: 0;
}

.footer-bottom-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.vt-credit-row {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.vt-credit-link {
    color: #f59e0b;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.vt-credit-link:hover {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.vt-credit-link i {
    font-size: 0.74rem;
}

.vt-credit-url-row {
    margin-top: -1px;
}

.vt-credit-sublink {
    color: #94a3b8;
    font-size: 0.78rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.vt-credit-sublink:hover {
    color: #f59e0b;
}

.footer-bottom-right {
    text-align: right;
    color: #e2e8f0;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
}

.tagline-pipe {
    color: #eab308;
    font-weight: 700;
    margin: 0 6px;
}

/* ==================== Footer Responsive ==================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.9fr 1fr 1.1fr;
        gap: 30px;
    }
    .footer-silhouette {
        width: 480px;
        max-width: 50%;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-silhouette {
        width: 380px;
        max-width: 60%;
        opacity: 0.85;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        text-align: center;
        width: 100%;
    }
    .footer-bottom-divider {
        display: none;
    }
    .footer-back-to-top {
        right: 16px;
        bottom: -15px;
    }
}

@media (max-width: 600px) {
    .footer-main-wrap {
        padding: 40px 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-silhouette {
        width: 280px;
        max-width: 85%;
        height: 95px;
        opacity: 0.7;
    }
    .footer-about {
        max-width: 100%;
    }
    .footer-back-to-top {
        right: 14px;
        bottom: -12px;
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

/* ==================== Floating Actions ==================== */
.floating-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fab-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.fab-call {
    background: var(--primary);
    border: 2px solid var(--gold);
}

.fab-call:hover {
    transform: scale(1.1);
    background: var(--gold);
    color: var(--primary-dark);
}

.fab-apply {
    background: var(--gold);
    color: var(--primary-dark);
    font-weight: 800;
}

.fab-apply:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

/* ==================== Toast Notifications ==================== */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    min-width: 300px;
    max-width: 420px;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    pointer-events: auto;
    animation: toastSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--primary);
}

.toast.toast-success { border-left-color: #16a34a; }
.toast.toast-error { border-left-color: #dc2626; }
.toast.toast-warning { border-left-color: #d97706; }
.toast.toast-info { border-left-color: var(--gold); }

.toast-icon { font-size: 1.25rem; }
.toast-success .toast-icon { color: #16a34a; }
.toast-error .toast-icon { color: #dc2626; }
.toast-warning .toast-icon { color: #d97706; }
.toast-info .toast-icon { color: var(--gold-dark); }

.toast-content {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.toast-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 1rem;
}

@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==================== Responsive Queries ==================== */
@media (max-width: 1120px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5.5rem 1.5rem 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        transition: right 0.35s ease;
        z-index: 1050;
        gap: 0.5rem;
        overflow-y: auto;
    }
    .nav-menu.is-open {
        right: 0;
    }
    .nav-link {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.95rem;
    }
    .mobile-apply-item {
        display: block !important;
        width: 100%;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--border-color);
    }
    .nav-actions {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    .hero-desc {
        margin: 0 auto 2rem;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
    .animal-strip-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .about-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .why-choose-layout {
        grid-template-columns: 1fr;
    }
    .course-cards-grid-12 {
        grid-template-columns: repeat(2, 1fr);
    }
    .practical-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .animal-health-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dairy-split-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .career-pathway-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .facilities-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-banner-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .topbar {
        font-size: 0.78rem;
    }
    .topbar-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    .topbar-info {
        justify-content: center;
        gap: 0.75rem;
    }
    .brand-logo {
        width: 48px;
        height: 48px;
    }
    .brand-title {
        font-size: 1.1rem;
    }
    .brand-subtitle {
        font-size: 0.7rem;
    }
    .brand-hindi {
        font-size: 0.65rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-indicators {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .hero-script-tag {
        top: -12px;
        left: 8px;
        padding: 4px 10px;
    }
    .hero-stamp-badge {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: -8px;
    }
    .animal-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    .animal-strip-section {
        margin-top: 0;
        padding: 1.25rem 0;
    }
    .stats-flex-container {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1.25rem;
    }
    .stats-left-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        justify-content: center;
    }
    .stats-gold-ribbon {
        text-align: center;
    }
    .about-title {
        font-size: 1.9rem;
    }
    .about-pillars-grid {
        grid-template-columns: 1fr;
    }
    .about-footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .section-heading-centered {
        font-size: 1.9rem;
    }
    .section-main-heading {
        font-size: 1.9rem;
    }
    .why-cards-grid {
        grid-template-columns: 1fr;
    }
    .course-cards-grid-12 {
        grid-template-columns: 1fr;
    }
    .practical-photo-grid {
        grid-template-columns: 1fr;
    }
    .animal-health-grid {
        grid-template-columns: 1fr;
    }
    .career-pathway-grid {
        grid-template-columns: 1fr;
    }
    .facilities-cards-grid {
        grid-template-columns: 1fr;
    }
    .gallery-showcase-grid {
        grid-template-columns: 1fr;
    }
    .cta-banner-wrap {
        padding: 2rem 1.25rem;
    }
    .cta-main-title {
        font-size: 1.8rem;
    }
    .form-group-row {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}
