:root {
    --alpine-white: #FAFAFA;
    --pure-white: #FFFFFF;
    --harvest-gold: #D4AF37;
    --harvest-gold-light: #E5C158;
    --harvest-gold-dark: #B8941F;
    --hash-grey: #2C2C2C;
    --hash-grey-light: #4A4A4A;
    --hash-grey-medium: #6B6B6B;
    --hash-grey-light-bg: #F5F5F5;
    --border-grey: #E0E0E0;
    --text-grey: #555555;
    --dark-black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--hash-grey);
    line-height: 1.6;
    background-color: var(--pure-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--hash-grey);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-grey);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Apple Glass Navbar */
.glass-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.glass-navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.glass-navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
}

.glass-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hash-grey);
    line-height: 1.2;
}

.brand-name span {
    color: var(--harvest-gold);
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--hash-grey-medium);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.glass-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.glass-toggle span {
    width: 25px;
    height: 2px;
    background: var(--hash-grey);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.glass-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.glass-toggle.active span:nth-child(2) {
    opacity: 0;
}

.glass-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.glass-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.glass-link {
    color: var(--hash-grey);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.glass-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--harvest-gold);
    transition: width 0.3s ease;
}

.glass-link:hover::after,
.glass-link.active::after {
    width: 100%;
}

.glass-link:hover,
.glass-link.active {
    color: var(--harvest-gold);
}

.glass-btn {
    background: var(--harvest-gold);
    color: var(--pure-white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.glass-btn:hover {
    background: var(--harvest-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(44,44,44,0.85) 0%, rgba(44,44,44,0.7) 100%), 
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pure-white);
    padding: 120px 20px 80px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    color: var(--pure-white);
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content .tagline {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.hero-content .highlight {
    color: var(--harvest-gold);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-gold {
    background: var(--harvest-gold);
    color: var(--pure-white);
    border-color: var(--harvest-gold);
}

.btn-gold:hover {
    background: var(--harvest-gold-dark);
    border-color: var(--harvest-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

.btn-outline-gold {
    background: transparent;
    color: var(--harvest-gold);
    border-color: var(--harvest-gold);
}

.btn-outline-gold:hover {
    background: var(--harvest-gold);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--pure-white);
    color: var(--hash-grey);
    border-color: var(--pure-white);
}

.btn-white:hover {
    background: transparent;
    color: var(--pure-white);
    border-color: var(--pure-white);
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--harvest-gold);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--hash-grey-medium);
    max-width: 700px;
    margin: 20px auto 0;
}

.bg-alpine {
    background: var(--alpine-white);
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.about-content .lead {
    font-size: 1.3rem;
    color: var(--harvest-gold);
    font-weight: 500;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Dark Cards - Updated Styling */
.curriculum-section,
.methodology-section,
.audience-section {
    background: var(--pure-white);
    padding: 100px 0;
}

.dark-card {
    background: var(--hash-grey);
    border: 2px solid var(--harvest-gold);
    border-radius: 10px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--harvest-gold-light);
}

.card-number {
    font-size: 3rem;
    color: var(--harvest-gold);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-title-gold {
    color: var(--harvest-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-subtitle {
    color: var(--pure-white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dark-card .card-text {
    color: var(--pure-white);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.card-list li {
    color: var(--pure-white);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.card-list li:last-child {
    border-bottom: none;
}

.card-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--harvest-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.dark-card .btn-outline-gold {
    margin-top: auto;
    align-self: flex-start;
}

.industries-box {
    background: var(--hash-grey);
    border: 2px solid var(--harvest-gold);
    border-radius: 10px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.industries-box .card-title-gold {
    margin-bottom: 15px;
}

.industries-box .card-text {
    color: var(--pure-white);
    font-size: 1.1rem;
    margin: 0;
}

/* Form Container */
.form-container {
    background: var(--alpine-white);
    padding: 100px 0;
    text-align: center;
}

.form-container h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.form-container > .container > p {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--pure-white);
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    overflow: hidden;
    border-top: 5px solid var(--harvest-gold);
}

.form-wrapper iframe {
    width: 100%;
    border: none;
}

/* Dark Footer */
.dark-footer {
    background: var(--dark-black);
    color: var(--pure-white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand-section .footer-brand {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand-section .footer-brand span {
    color: var(--harvest-gold);
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links-section h5,
.footer-contact-section h5,
.footer-social-section h5 {
    color: var(--harvest-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links-section ul {
    list-style: none;
    padding: 0;
}

.footer-links-section li {
    margin-bottom: 12px;
}

.footer-links-section a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer-links-section a:hover {
    color: var(--harvest-gold);
    padding-left: 5px;
}

.footer-contact-section p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--pure-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--harvest-gold);
    border-color: var(--harvest-gold);
    transform: translateY(-3px);
    color: var(--pure-white);
}

.social-handles p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--harvest-gold);
}

.footer-bottom a:hover {
    color: var(--harvest-gold-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-gold {
    color: var(--harvest-gold) !important;
}

.text-center {
    text-align: center;
}

.text-center .dark-card {
    text-align: center;
}

.text-center .card-list {
    text-align: left;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col, .col-6, .col-4, .col-8, .col-12, .col-md-3, .col-md-4, .col-md-6, .col-md-8, .col-lg-4, .col-lg-6, .col-lg-8 {
    padding: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333%; }
    .col-md-6 { width: 50%; }
    .col-md-8 { width: 66.666%; }
}

@media (min-width: 992px) {
    .col-lg-4 { width: 33.333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-8 { width: 66.666%; }
}

/* Responsive Design */
@media (max-width: 991px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .glass-navbar {
        width: calc(100% - 30px);
        top: 15px;
    }
    
    .glass-toggle {
        display: flex;
    }
    
    .glass-menu {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 15px;
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .glass-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .glass-link {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    
    .glass-btn {
        width: 100%;
        text-align: center;
    }
    
    section {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .glass-navbar {
        width: calc(100% - 20px);
        top: 10px;
    }
    
    .glass-navbar-container {
        padding: 12px 20px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .logo-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content .tagline {
        font-size: 1.1rem;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
    }
    
    .dark-card {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}
/* Team Section - Frosted Glass Cards */
.team-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 100px 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    padding: 35px 25px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.35);
    border-color: var(--harvest-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.team-photo {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--harvest-gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.glass-card .card-title-gold {
    color: var(--harvest-gold);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.glass-card .card-subtitle {
    color: var(--hash-grey);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-card .card-text {
    color: var(--hash-grey);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.glass-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--harvest-gold);
    border-radius: 50%;
    color: var(--harvest-gold);
    transition: all 0.3s ease;
}

.glass-social-icon:hover {
    background: var(--harvest-gold);
    color: var(--pure-white);
    transform: translateY(-3px);
}

/* Methodology Section Fix - Constrain cards */
.methodology-section .dark-card {
    min-height: auto;
    max-width: 100%;
}

.methodology-section .col-lg-6 {
    margin-bottom: 30px;
}
/* Programs Page - Page Header */
.page-header-section {
    padding: 150px 0 80px;
    background: var(--alpine-white);
}

/* Level Header Card */
.level-header-card {
    background: var(--hash-grey);
    border: 2px solid var(--harvest-gold);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.level-badge {
    display: inline-block;
    background: var(--harvest-gold);
    color: var(--pure-white);
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.level-title {
    color: var(--harvest-gold);
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.level-subtitle {
    color: var(--pure-white);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.level-description {
    color: var(--pure-white);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Level Sections */
.level-section {
    padding: 100px 0;
    background: var(--pure-white);
}

.level-section.bg-alpine {
    background: var(--alpine-white);
}

/* Signature Section */
.signature-section {
    padding: 100px 0;
    background: var(--pure-white);
}

/* Delivery Section */
.delivery-section {
    padding: 100px 0;
    background: var(--alpine-white);
}

/* Card List Styling */
.card-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.card-list li {
    color: var(--pure-white);
    padding: 10px 0 10px 25px;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.95rem;
}

.card-list li:last-child {
    border-bottom: none;
}

.card-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--harvest-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .level-header-card {
        padding: 30px 20px;
    }
    
    .level-title {
        font-size: 1.8rem;
    }
    
    .level-subtitle {
        font-size: 1rem;
    }
}
/* Blogs Page - Apple Glass OS Style */
.blog-glass-section {
    padding: 100px 0;
    /* Soft gradient background so the glass effect is visible */
    background: linear-gradient(135deg, #f0f2f5 0%, #e1e4e8 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background blobs to enhance the glass effect */
.blog-glass-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.blog-glass-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44,44,44,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.blog-glass-section .container {
    position: relative;
    z-index: 1;
}

/* Apple Glass Blog Card */
.blog-glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-glass-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Inner Image Widget Style */
.blog-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    height: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-glass-card:hover .blog-image-wrapper img {
    transform: scale(1.05);
}

.blog-content {
    padding: 5px 5px 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--harvest-gold-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.blog-title {
    color: var(--hash-grey);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--hash-grey-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--harvest-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-read-more:hover {
    color: var(--harvest-gold-dark);
    transform: translateX(5px);
}

/* Newsletter Glass Box */
.newsletter-section {
    padding: 80px 0;
    background: var(--pure-white);
}

.newsletter-glass-box {
    background: linear-gradient(135deg, rgba(44,44,44,0.95) 0%, rgba(26,26,46,0.95) 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    color: var(--pure-white);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.newsletter-glass-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-glass-box h2 {
    color: var(--harvest-gold);
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
}

.newsletter-glass-box p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}

.newsletter-glass-box .btn-gold {
    position: relative;
}

/* Responsive adjustments for Blog Cards */
@media (max-width: 767px) {
    .blog-glass-section {
        padding: 60px 0;
    }
    
    .blog-glass-card {
        padding: 15px;
        border-radius: 20px;
    }
    
    .blog-image-wrapper {
        height: 180px;
        border-radius: 14px;
    }
    
    .blog-title {
        font-size: 1.15rem;
    }
    
    .newsletter-glass-box {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .newsletter-glass-box h2 {
        font-size: 1.8rem;
    }
}
/* ============================================
   VIEWPORT FIXES - Add at the end of style.css
   ============================================ */

/* Force sections to fit one viewport height */
.viewport-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    box-sizing: border-box;
}

.viewport-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

/* --- 1. Our Philosophy Section Fix --- */
.philosophy-row {
    display: flex;
    align-items: center;
    gap: 50px;
    max-height: 80vh;
}

.philosophy-image-col {
    flex: 1;
    max-height: 70vh;
    overflow: hidden;
    border-radius: 10px;
}

.philosophy-image-col img {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.philosophy-content-col {
    flex: 1;
    padding: 20px;
}

.philosophy-content-col h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.philosophy-content-col .lead {
    font-size: 1.2rem;
    color: var(--harvest-gold);
    font-weight: 500;
    margin-bottom: 20px;
}

.philosophy-content-col p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* --- 2, 3, 4. Compact Grid System for Cards --- */
.compact-grid {
    display: grid;
    gap: 20px;
    width: 100%;
}

/* 3 columns for Curriculum */
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* 2x2 grid for Methodology and Who We Serve */
.grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Compact Card Styling */
.compact-card {
    background: var(--hash-grey);
    border: 2px solid var(--harvest-gold);
    border-radius: 10px;
    padding: 25px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    transition: all 0.3s ease;
}

.compact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.compact-card .card-number {
    font-size: 2.5rem;
    color: var(--harvest-gold);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.compact-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.compact-card .card-title-gold {
    color: var(--harvest-gold);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.compact-card .card-subtitle {
    color: var(--pure-white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compact-card .card-text {
    color: var(--pure-white);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.compact-card .card-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.compact-card .card-list li {
    color: var(--pure-white);
    padding: 8px 0 8px 25px;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
}

.compact-card .card-list li:last-child {
    border-bottom: none;
}

.compact-card .card-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--harvest-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Center text for Who We Serve cards */
.text-center.compact-card {
    text-align: center;
    align-items: center;
}

.text-center.compact-card .card-list li {
    text-align: left;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .viewport-section {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .philosophy-row {
        flex-direction: column;
        max-height: none;
    }
    
    .philosophy-image-col {
        max-height: 400px;
        width: 100%;
    }
    
    .compact-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-2x2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .viewport-section {
        padding: 70px 0 50px;
    }
    
    .philosophy-content-col h2 {
        font-size: 2rem;
    }
    
    .compact-card {
        padding: 20px;
    }
}
/* ============================================
   VINH GIANG STYLE ENROLLMENT SECTION
   ============================================ */
.vg-enroll-section {
    background-color: #111111; /* Very dark grey/black */
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.vg-container {
    max-width: 1000px;
    margin: 0 auto;
}

.vg-title {
    font-family: 'Playfair Display', serif; /* Elegant serif font */
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #ffffff;
}

.vg-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.vg-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
}

.vg-feature {
    font-size: 1.1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.vg-check {
    color: var(--harvest-gold);
    margin-right: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

.vg-form {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
}

.vg-input-group {
    flex: 1;
    min-width: 250px;
}

.vg-form input {
    width: 100%;
    padding: 18px 20px;
    background-color: #222222;
    border: 1px solid #333333;
    color: #ffffff;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.vg-form input:focus {
    outline: none;
    border-color: var(--harvest-gold);
}

.vg-form input::placeholder {
    color: #888888;
}

.vg-btn {
    width: 100%;
    padding: 18px 30px;
    background-color: var(--harvest-gold);
    color: #000000;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vg-btn:hover {
    background-color: #b8962e; /* Darker gold */
    transform: translateY(-2px);
}

/* ============================================
   VINH GIANG STYLE FOOTER
   ============================================ */
.vg-footer {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 60px 20px 30px;
    border-top: 1px solid #222;
    font-family: 'Inter', sans-serif;
}

.vg-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vg-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.vg-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vg-logo .gold {
    color: var(--harvest-gold);
}

.vg-socials a {
    color: #ffffff;
    margin-left: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.vg-socials a:hover {
    color: var(--harvest-gold);
}

.vg-footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    border-bottom: 1px solid #222;
    padding-bottom: 50px;
}

.vg-footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.vg-footer-nav a:hover {
    color: var(--harvest-gold);
}

.vg-footer-bottom {
    text-align: center;
    color: #666666;
    font-size: 0.85rem;
}

/* Responsive adjustments for Vinh Giang section */
@media (max-width: 768px) {
    .vg-title {
        font-size: 2.5rem;
    }
    .vg-features {
        flex-direction: column;
        gap: 15px;
    }
    .vg-form {
        flex-direction: column;
    }
    .vg-footer-top, .vg-footer-nav {
        flex-direction: column;
        text-align: center;
    }
    .vg-socials a {
        margin: 0 10px;
    }
}
/* ============================================
   VIEWPORT WRAPPER (Form + Footer)
   ============================================ */
.viewport-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Form Section Styling */
.vg-enroll-section {
    flex: 1.2; /* Takes slightly more space */
    background-color: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.vg-container {
    max-width: 1000px;
    width: 100%;
}

.vg-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: #ffffff;
}

.vg-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 30px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vg-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.vg-feature {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.vg-check {
    color: var(--harvest-gold);
    margin-right: 8px;
    font-weight: bold;
}

.vg-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vg-input-group input {
    width: 100%;
    padding: 15px;
    background-color: #222222;
    border: 1px solid #333333;
    color: #ffffff;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.vg-input-group input:focus {
    outline: none;
    border-color: var(--harvest-gold);
}

.vg-input-group input::placeholder {
    color: #888888;
}

.vg-submit-group {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.vg-btn {
    background-color: var(--harvest-gold);
    color: #000000;
    border: none;
    padding: 15px 50px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vg-btn:hover {
    background-color: #b8962e;
    transform: translateY(-2px);
}

/* Footer Styling (Compact for Viewport) */
.dark-footer.viewport-footer {
    flex: 0.8; /* Takes less space */
    background: #000000;
    color: #ffffff;
    padding: 30px 0 20px;
    display: flex;
    align-items: center;
}

.dark-footer.viewport-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.dark-footer.viewport-footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.dark-footer.viewport-footer .footer-brand span {
    color: var(--harvest-gold);
}

.dark-footer.viewport-footer .footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0;
}

.dark-footer.viewport-footer h5 {
    color: var(--harvest-gold);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.dark-footer.viewport-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dark-footer.viewport-footer li {
    margin-bottom: 5px;
}

.dark-footer.viewport-footer li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.dark-footer.viewport-footer li a:hover {
    color: var(--harvest-gold);
}

.dark-footer.viewport-footer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.dark-footer.viewport-footer .social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.dark-footer.viewport-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s;
}

.dark-footer.viewport-footer .social-links a:hover {
    background: var(--harvest-gold);
    color: #000000;
}

.dark-footer.viewport-footer .social-handles p {
    font-size: 0.8rem;
    margin: 0;
}

.dark-footer.viewport-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    text-align: center;
}

.dark-footer.viewport-footer .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.dark-footer.viewport-footer .footer-bottom a {
    color: var(--harvest-gold);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .viewport-wrapper {
        min-height: auto;
    }
    .vg-form-grid {
        grid-template-columns: 1fr;
    }
    .dark-footer.viewport-footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .dark-footer.viewport-footer .social-links {
        justify-content: center;
    }
}
/* Updated Form Styles */
.vg-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vg-input-group input,
.vg-input-group select,
.vg-input-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #222222;
    border: 1px solid #333333;
    color: #ffffff;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.vg-input-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.vg-input-group select option {
    background-color: #222222;
    color: #ffffff;
}

.vg-input-group textarea {
    resize: vertical;
    min-height: 80px;
}

.vg-input-group input:focus,
.vg-input-group select:focus,
.vg-input-group textarea:focus {
    outline: none;
    border-color: var(--harvest-gold);
}

.vg-input-group input::placeholder,
.vg-input-group textarea::placeholder {
    color: #888888;
}

.vg-full-width {
    grid-column: 1 / -1;
}

/* Capsule Submit Button */
.vg-btn {
    background-color: var(--harvest-gold);
    color: #000000;
    border: none;
    padding: 12px 40px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px; /* Capsule shape */
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.vg-btn:hover {
    background-color: #b8962e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .vg-form-grid {
        grid-template-columns: 1fr;
    }
    
    .vg-btn {
        padding: 12px 50px;
        width: 100%;
        max-width: 200px;
    }
}
/* Fix Submit Button Size - Match Enroll Now Button */
.vg-submit-group {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.vg-btn {
    background-color: var(--harvest-gold);
    color: #000000;
    border: none;
    padding: 12px 35px; /* Reduced padding */
    font-weight: 700;
    font-size: 0.9rem; /* Smaller font */
    border-radius: 50px; /* Capsule shape */
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: auto; /* Prevent stretching */
    min-height: 45px; /* Match Enroll Now button height */
    width: auto; /* Prevent full width */
    display: inline-block;
    line-height: 1.2;
}

.vg-btn:hover {
    background-color: #b8962e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .vg-btn {
        padding: 10px 30px;
        font-size: 0.85rem;
        min-height: 40px;
    }
}
/* Force Small Submit Button - Override Everything */
.vg-submit-group {
    display: flex !important;
    justify-content: center !important;
    margin-top: 20px !important;
    width: 100% !important;
}

.vg-btn {
    background-color: #D4AF37 !important;
    color: #000000 !important;
    border: none !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border-radius: 20px !important;
    cursor: pointer !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    width: auto !important;
    min-width: 100px !important;
    max-width: 120px !important;
    display: inline-block !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.vg-btn:hover {
    background-color: #b8962e !important;
    transform: translateY(-1px) !important;
}

.vg-btn:active {
    transform: translateY(0) !important;
}
/* ============================================
   ENROLL SECTION - FIT IN ONE VIEWPORT
   ============================================ */
.vg-enroll-section {
    min-height: 100vh !important;
    max-height: 100vh !important;
    height: 100vh !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 60px 20px 40px !important;
    box-sizing: border-box !important;
    background-color: #111111;
    color: #ffffff;
}

.vg-container {
    max-width: 1000px;
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.vg-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem !important;
    margin-bottom: 10px !important;
    text-align: center;
    color: #ffffff;
    line-height: 1.2;
}

.vg-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem !important;
    color: #cccccc;
    margin-bottom: 20px !important;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.vg-features {
    display: flex;
    justify-content: center;
    gap: 25px !important;
    margin-bottom: 20px !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem !important;
    flex-wrap: wrap;
}

.vg-feature {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.vg-check {
    color: var(--harvest-gold);
    margin-right: 6px;
    font-weight: bold;
    font-size: 1rem;
}

.vg-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px !important;
    margin-bottom: 10px !important;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.vg-input-group input,
.vg-input-group select,
.vg-input-group textarea {
    width: 100%;
    padding: 10px 12px !important;
    background-color: #222222;
    border: 1px solid #333333;
    color: #ffffff;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem !important;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.vg-input-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px !important;
}

.vg-input-group select option {
    background-color: #222222;
    color: #ffffff;
}

.vg-input-group textarea {
    resize: none;
    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;
}

.vg-input-group input:focus,
.vg-input-group select:focus,
.vg-input-group textarea:focus {
    outline: none;
    border-color: var(--harvest-gold);
}

.vg-input-group input::placeholder,
.vg-input-group textarea::placeholder {
    color: #888888;
}

.vg-full-width {
    grid-column: 1 / -1;
}

.vg-submit-group {
    display: flex;
    justify-content: center;
    margin-top: 8px !important;
}

.vg-btn {
    background-color: var(--harvest-gold) !important;
    color: #000000 !important;
    border: none !important;
    padding: 10px 30px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
    display: inline-block !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.vg-btn:hover {
    background-color: #b8962e !important;
    transform: translateY(-1px) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .vg-enroll-section {
        padding: 80px 15px 30px !important;
        height: auto !important;
        min-height: 100vh !important;
    }
    
    .vg-title {
        font-size: 1.6rem !important;
    }
    
    .vg-subtitle {
        font-size: 0.85rem !important;
    }
    
    .vg-features {
        gap: 15px !important;
        font-size: 0.75rem !important;
    }
    
    .vg-form-grid {
        grid-template-columns: 1fr;
        gap: 8px !important;
    }
    
    .vg-input-group input,
    .vg-input-group select,
    .vg-input-group textarea {
        padding: 10px !important;
        font-size: 0.85rem !important;
    }
}
/* ============================================
   TEAM SECTION - APPLE GLASS OS STYLE
   ============================================ */
.team-section-glass {
    background: linear-gradient(135deg, rgba(250,250,250,0.9) 0%, rgba(240,240,240,0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.team-section-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.team-section-glass .container {
    position: relative;
    z-index: 1;
}

.glass-team-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass-team-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.team-photo-square {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.team-photo-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.glass-team-card .card-title-gold {
    color: var(--harvest-gold);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.glass-team-card .card-subtitle {
    color: var(--hash-grey);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-team-card .card-text {
    color: var(--hash-grey);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 0.9rem;
}

.linkedin-btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--hash-grey);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.linkedin-btn-glass:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
    color: var(--hash-grey);
}

.linkedin-btn-glass svg {
    transition: transform 0.3s ease;
}

.linkedin-btn-glass:hover svg {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .team-section-glass {
        padding: 50px 0;
    }
    
    .team-photo-square {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 767px) {
    .team-photo-square {
        width: 130px;
        height: 130px;
    }
    
    .glass-team-card {
        padding: 20px;
    }
}
/* ============================================
   PROGRAMS PAGE - VIEWPORT SECTIONS
   ============================================ */
.viewport-section {
    min-height: 100vh !important;
    max-height: 100vh !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    padding: 80px 20px 40px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.viewport-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-height: 100%;
}

.viewport-container .section-header {
    margin-bottom: 30px !important;
    text-align: center;
}

.viewport-container .section-header h2 {
    font-size: 2.2rem !important;
    margin-bottom: 10px !important;
}

.viewport-container .section-header p {
    font-size: 1rem !important;
    color: #666;
}

/* Level Header Card */
.level-header-card {
    background: var(--hash-grey);
    border: 2px solid var(--harvest-gold);
    border-radius: 10px;
    padding: 25px 30px;
    margin-bottom: 30px;
    text-align: center;
}

.level-badge {
    display: inline-block;
    background: var(--harvest-gold);
    color: var(--pure-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.level-title {
    color: var(--harvest-gold);
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.level-subtitle {
    color: var(--pure-white);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.level-description {
    color: var(--pure-white);
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Compact Grid for Programs */
.compact-grid {
    display: grid;
    gap: 15px;
    width: 100%;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
}

.compact-card {
    background: var(--hash-grey);
    border: 2px solid var(--harvest-gold);
    border-radius: 10px;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.compact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.compact-card .card-number {
    font-size: 2rem;
    color: var(--harvest-gold);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.compact-card .card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.compact-card .card-title-gold {
    color: var(--harvest-gold);
    font-size: 1.15rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.compact-card .card-subtitle {
    color: var(--pure-white);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compact-card .card-text {
    color: var(--pure-white);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
    flex-grow: 1;
}

.compact-card .card-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.compact-card .card-list li {
    color: var(--pure-white);
    padding: 6px 0 6px 22px;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.85rem;
}

.compact-card .card-list li:last-child {
    border-bottom: none;
}

.compact-card .card-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--harvest-gold);
    font-weight: bold;
    font-size: 1rem;
}

/* Viewport Wrapper for Form + Footer */
.viewport-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Enroll Section in Viewport */
.vg-enroll-section {
    flex: 1.2;
    background-color: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.vg-container {
    max-width: 1000px;
    width: 100%;
}

.vg-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
    color: #ffffff;
}

.vg-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 20px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vg-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.vg-feature {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.vg-check {
    color: var(--harvest-gold);
    margin-right: 6px;
    font-weight: bold;
}

.vg-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.vg-input-group input,
.vg-input-group select,
.vg-input-group textarea {
    width: 100%;
    padding: 10px 12px;
    background-color: #222222;
    border: 1px solid #333333;
    color: #ffffff;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.vg-input-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.vg-input-group select option {
    background-color: #222222;
    color: #ffffff;
}

.vg-input-group textarea {
    resize: none;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
}

.vg-input-group input:focus,
.vg-input-group select:focus,
.vg-input-group textarea:focus {
    outline: none;
    border-color: var(--harvest-gold);
}

.vg-input-group input::placeholder,
.vg-input-group textarea::placeholder {
    color: #888888;
}

.vg-full-width {
    grid-column: 1 / -1;
}

.vg-submit-group {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.vg-btn {
    background-color: var(--harvest-gold) !important;
    color: #000000 !important;
    border: none !important;
    padding: 10px 30px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
    display: inline-block !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.vg-btn:hover {
    background-color: #b8962e !important;
    transform: translateY(-1px) !important;
}

/* Footer in Viewport */
.dark-footer.viewport-footer {
    flex: 0.8;
    background: #000000;
    color: #ffffff;
    padding: 30px 0 20px;
    display: flex;
    align-items: center;
}

.dark-footer.viewport-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.dark-footer.viewport-footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.dark-footer.viewport-footer .footer-brand span {
    color: var(--harvest-gold);
}

.dark-footer.viewport-footer .footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0;
}

.dark-footer.viewport-footer h5 {
    color: var(--harvest-gold);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.dark-footer.viewport-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dark-footer.viewport-footer li {
    margin-bottom: 5px;
}

.dark-footer.viewport-footer li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.dark-footer.viewport-footer li a:hover {
    color: var(--harvest-gold);
}

.dark-footer.viewport-footer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.dark-footer.viewport-footer .social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.dark-footer.viewport-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s;
}

.dark-footer.viewport-footer .social-links a:hover {
    background: var(--harvest-gold);
    color: #000000;
}

.dark-footer.viewport-footer .social-handles p {
    font-size: 0.8rem;
    margin: 0;
}

.dark-footer.viewport-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    text-align: center;
}

.dark-footer.viewport-footer .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.dark-footer.viewport-footer .footer-bottom a {
    color: var(--harvest-gold);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .viewport-section {
        height: auto !important;
        min-height: 100vh !important;
        max-height: none !important;
        padding: 80px 20px 50px !important;
    }
    
    .compact-grid {
        grid-template-columns: 1fr !important;
    }
    
    .grid-2x2 {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .vg-form-grid {
        grid-template-columns: 1fr;
    }
    
    .dark-footer.viewport-footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .dark-footer.viewport-footer .social-links {
        justify-content: center;
    }
}
/* ============================================
   METHODOLOGY SECTION - ONE VIEWPORT FIX
   ============================================ */
.viewport-section-fixed {
    min-height: 100vh !important;
    max-height: 100vh !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    padding: 80px 20px 40px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    position: relative !important;
}

.viewport-container-fixed {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-height: 100%;
}

.methodology-grid-fixed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-height: calc(100vh - 200px);
}

.methodology-grid-fixed .col-lg-6 {
    margin-bottom: 0;
}

.methodology-grid-fixed .dark-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 25px;
}

.methodology-grid-fixed .card-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   TEAM SECTION - FIX OVERLAP & BIGGER PHOTOS
   ============================================ */
.team-section-fixed {
    padding: 80px 0;
    background: var(--pure-white);
    position: relative;
    z-index: 1;
    clear: both;
}

.team-section-fixed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--harvest-gold), transparent);
}

.team-grid-fixed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.team-member-card {
    background: var(--pure-white);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member-card:hover {
    transform: translateY(-8px);
    border-color: var(--harvest-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

/* BIGGER PHOTOS */
.team-photo-large {
    width: 280px;
    height: 280px;
    margin: 0 auto 25px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.team-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member-card .card-title-gold {
    color: var(--harvest-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.team-member-card .card-subtitle {
    color: var(--hash-grey);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member-card .card-text {
    color: var(--hash-grey);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 1rem;
}

.linkedin-btn-fixed {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--hash-grey);
    border: 2px solid rgba(212, 175, 55, 0.4);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.linkedin-btn-fixed:hover {
    background: var(--harvest-gold);
    border-color: var(--harvest-gold);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.linkedin-btn-fixed svg {
    transition: transform 0.3s ease;
}

.linkedin-btn-fixed:hover svg {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .viewport-section-fixed {
        height: auto !important;
        min-height: 100vh !important;
        max-height: none !important;
    }
    
    .methodology-grid-fixed {
        grid-template-columns: 1fr;
        max-height: none;
    }
    
    .team-grid-fixed {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-photo-large {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 767px) {
    .team-photo-large {
        width: 180px;
        height: 180px;
    }
    
    .team-member-card {
        padding: 30px 20px;
    }
}
/* ============================================
   PAGE HEADER SECTION
   ============================================ */
.page-header-section {
    padding: 150px 0 80px;
    background: var(--alpine-white);
}

/* ============================================
   METHODOLOGY SECTION - NORMAL FLOW (FIXED)
   ============================================ */
.methodology-section {
    padding: 80px 0;
    background: var(--pure-white);
    position: relative;
    z-index: 1;
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-grid .dark-card {
    padding: 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ============================================
   DELIVERY SECTION
   ============================================ */
.delivery-section {
    padding: 80px 0;
    background: var(--alpine-white);
    position: relative;
    z-index: 1;
}

/* ============================================
   TEAM SECTION - BIGGER PHOTOS, NO OVERLAP
   ============================================ */
.team-section {
    padding: 80px 0;
    background: var(--pure-white);
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.team-member-card {
    background: var(--pure-white);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member-card:hover {
    transform: translateY(-8px);
    border-color: var(--harvest-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

/* BIGGER PHOTOS - 280px */
.team-photo-large {
    width: 280px;
    height: 280px;
    margin: 0 auto 25px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.team-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member-card .card-title-gold {
    color: var(--harvest-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.team-member-card .card-subtitle {
    color: var(--hash-grey);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member-card .card-text {
    color: var(--hash-grey);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 1rem;
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--hash-grey);
    border: 2px solid rgba(212, 175, 55, 0.4);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.linkedin-btn:hover {
    background: var(--harvest-gold);
    border-color: var(--harvest-gold);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.linkedin-btn svg {
    transition: transform 0.3s ease;
}

.linkedin-btn:hover svg {
    transform: scale(1.1);
}

/* ============================================
   VIEWPORT WRAPPER (Form + Footer)
   ============================================ */
.viewport-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Enroll Section in Viewport */
.vg-enroll-section {
    flex: 1.2;
    background-color: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.vg-container {
    max-width: 1000px;
    width: 100%;
}

.vg-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
    color: #ffffff;
}

.vg-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 20px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vg-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.vg-feature {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.vg-check {
    color: var(--harvest-gold);
    margin-right: 6px;
    font-weight: bold;
}

.vg-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.vg-input-group input,
.vg-input-group select,
.vg-input-group textarea {
    width: 100%;
    padding: 10px 12px;
    background-color: #222222;
    border: 1px solid #333333;
    color: #ffffff;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.vg-input-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.vg-input-group select option {
    background-color: #222222;
    color: #ffffff;
}

.vg-input-group textarea {
    resize: none;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
}

.vg-input-group input:focus,
.vg-input-group select:focus,
.vg-input-group textarea:focus {
    outline: none;
    border-color: var(--harvest-gold);
}

.vg-input-group input::placeholder,
.vg-input-group textarea::placeholder {
    color: #888888;
}

.vg-full-width {
    grid-column: 1 / -1;
}

.vg-submit-group {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.vg-btn {
    background-color: var(--harvest-gold) !important;
    color: #000000 !important;
    border: none !important;
    padding: 10px 30px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
    display: inline-block !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.vg-btn:hover {
    background-color: #b8962e !important;
    transform: translateY(-1px) !important;
}

/* Footer in Viewport */
.dark-footer.viewport-footer {
    flex: 0.8;
    background: #000000;
    color: #ffffff;
    padding: 30px 0 20px;
    display: flex;
    align-items: center;
}

.dark-footer.viewport-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.dark-footer.viewport-footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.dark-footer.viewport-footer .footer-brand span {
    color: var(--harvest-gold);
}

.dark-footer.viewport-footer .footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0;
}

.dark-footer.viewport-footer h5 {
    color: var(--harvest-gold);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.dark-footer.viewport-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dark-footer.viewport-footer li {
    margin-bottom: 5px;
}

.dark-footer.viewport-footer li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.dark-footer.viewport-footer li a:hover {
    color: var(--harvest-gold);
}

.dark-footer.viewport-footer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.dark-footer.viewport-footer .social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.dark-footer.viewport-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s;
}

.dark-footer.viewport-footer .social-links a:hover {
    background: var(--harvest-gold);
    color: #000000;
}

.dark-footer.viewport-footer .social-handles p {
    font-size: 0.8rem;
    margin: 0;
}

.dark-footer.viewport-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    text-align: center;
}

.dark-footer.viewport-footer .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.dark-footer.viewport-footer .footer-bottom a {
    color: var(--harvest-gold);
    text-decoration: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-photo-large {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .vg-form-grid {
        grid-template-columns: 1fr;
    }
    
    .dark-footer.viewport-footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .dark-footer.viewport-footer .social-links {
        justify-content: center;
    }
    
    .team-photo-large {
        width: 180px;
        height: 180px;
    }
    
    .team-member-card {
        padding: 30px 20px;
    }
}
/* ============================================
   PROGRAMS PAGE - NO OVERLAP FIX
   ============================================ */

/* Page Header */
.programs-page-header {
    padding: 150px 0 80px;
    background: var(--alpine-white);
    position: relative;
    z-index: 1;
}

/* Viewport Sections (for sections that fit) */
.programs-viewport-section {
    min-height: 100vh;
    max-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 20px 40px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.programs-viewport-section.bg-alpine {
    background: var(--alpine-white);
}

.programs-viewport-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-height: 100%;
}

/* Level 3 Section - FIXED: Normal Flow, No Overlap */
.programs-normal-section {
    padding: 80px 0;
    background: var(--pure-white);
    position: relative;
    z-index: 1;
    clear: both;
}

.programs-normal-section .level-header-card {
    background: var(--hash-grey);
    border: 2px solid var(--harvest-gold);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.programs-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Level Header Card */
.level-header-card {
    background: var(--hash-grey);
    border: 2px solid var(--harvest-gold);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.level-badge {
    display: inline-block;
    background: var(--harvest-gold);
    color: var(--pure-white);
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.level-title {
    color: var(--harvest-gold);
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.level-subtitle {
    color: var(--pure-white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.level-description {
    color: var(--pure-white);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Compact Grid */
.compact-grid {
    display: grid;
    gap: 20px;
    width: 100%;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Compact Card */
.compact-card {
    background: var(--hash-grey);
    border: 2px solid var(--harvest-gold);
    border-radius: 10px;
    padding: 25px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    transition: all 0.3s ease;
}

.compact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.compact-card .card-number {
    font-size: 2.5rem;
    color: var(--harvest-gold);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.card-icon-svg {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compact-card .card-title-gold {
    color: var(--harvest-gold);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.compact-card .card-subtitle {
    color: var(--pure-white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compact-card .card-text {
    color: var(--pure-white);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.compact-card .card-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.compact-card .card-list li {
    color: var(--pure-white);
    padding: 8px 0 8px 25px;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
}

.compact-card .card-list li:last-child {
    border-bottom: none;
}

.compact-card .card-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--harvest-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--hash-grey);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Viewport Wrapper */
.viewport-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Enroll Section */
.vg-enroll-section {
    flex: 1.2;
    background-color: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.vg-container {
    max-width: 1000px;
    width: 100%;
}

.vg-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
    color: #ffffff;
}

.vg-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 20px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vg-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.vg-feature {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.vg-check {
    color: var(--harvest-gold);
    margin-right: 6px;
    font-weight: bold;
}

.vg-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.vg-input-group input,
.vg-input-group select,
.vg-input-group textarea {
    width: 100%;
    padding: 10px 12px;
    background-color: #222222;
    border: 1px solid #333333;
    color: #ffffff;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.vg-input-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.vg-input-group select option {
    background-color: #222222;
    color: #ffffff;
}

.vg-input-group textarea {
    resize: none;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
}

.vg-input-group input:focus,
.vg-input-group select:focus,
.vg-input-group textarea:focus {
    outline: none;
    border-color: var(--harvest-gold);
}

.vg-input-group input::placeholder,
.vg-input-group textarea::placeholder {
    color: #888888;
}

.vg-full-width {
    grid-column: 1 / -1;
}

.vg-submit-group {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.vg-btn {
    background-color: var(--harvest-gold) !important;
    color: #000000 !important;
    border: none !important;
    padding: 10px 30px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
    display: inline-block !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.vg-btn:hover {
    background-color: #b8962e !important;
    transform: translateY(-1px) !important;
}

/* Footer */
.dark-footer.viewport-footer {
    flex: 0.8;
    background: #000000;
    color: #ffffff;
    padding: 30px 0 20px;
    display: flex;
    align-items: center;
}

.dark-footer.viewport-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.dark-footer.viewport-footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.dark-footer.viewport-footer .footer-brand span {
    color: var(--harvest-gold);
}

.dark-footer.viewport-footer .footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0;
}

.dark-footer.viewport-footer h5 {
    color: var(--harvest-gold);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.dark-footer.viewport-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dark-footer.viewport-footer li {
    margin-bottom: 5px;
}

.dark-footer.viewport-footer li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.dark-footer.viewport-footer li a:hover {
    color: var(--harvest-gold);
}

.dark-footer.viewport-footer p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.dark-footer.viewport-footer .social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.dark-footer.viewport-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s;
}

.dark-footer.viewport-footer .social-links a:hover {
    background: var(--harvest-gold);
    color: #000000;
}

.dark-footer.viewport-footer .social-handles p {
    font-size: 0.8rem;
    margin: 0;
}

.dark-footer.viewport-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    text-align: center;
}

.dark-footer.viewport-footer .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.dark-footer.viewport-footer .footer-bottom a {
    color: var(--harvest-gold);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .programs-viewport-section {
        height: auto !important;
        min-height: 100vh !important;
        max-height: none !important;
    }
    
    .compact-grid {
        grid-template-columns: 1fr !important;
    }
    
    .programs-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vg-form-grid {
        grid-template-columns: 1fr;
    }
    
    .dark-footer.viewport-footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .dark-footer.viewport-footer .social-links {
        justify-content: center;
    }
}
/* ============================================
   NAVBAR SCROLL BEHAVIOR - Hide on Scroll Up, Show on Scroll Down
   ============================================ */
.glass-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.4s ease-in-out;
}

.glass-navbar.navbar-hidden {
    transform: translateX(-50%) translateY(-150%);
}

.glass-navbar.navbar-visible {
    transform: translateX(-50%) translateY(0);
}

/* Larger Logo in Navbar */
.logo-wrapper {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

.navbar-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Footer Logo Styling */
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pure-white);
}

.footer-brand-name span {
    color: var(--harvest-gold);
}

/* Custom Hero Background */
.hero-section {
    background: linear-gradient(135deg, rgba(44,44,44,0.85) 0%, rgba(44,44,44,0.7) 100%),
                url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
/* ============================================
CUSTOM LOGO STYLING - NAVBAR & FOOTER
============================================ */

/* Navbar Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Footer Logo */
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pure-white);
}

.footer-brand-name span {
    color: var(--harvest-gold);
}

/* ============================================
CUSTOM HERO BACKGROUND
============================================ */

.hero-section {
    background: linear-gradient(135deg, rgba(44,44,44,0.85) 0%, rgba(44,44,44,0.7) 100%),
                url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
/* Custom About Us Page Header Background */
.page-header-section {
    background: linear-gradient(135deg, rgba(44,44,44,0.85) 0%, rgba(44,44,44,0.7) 100%),
                url('images/aboutus-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pure-white);
    padding: 150px 20px 80px;
    position: relative;
}
/* ============================================
PROGRAMS HERO SECTION - CUSTOM IMAGE & TEXT
============================================ */
.programs-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 20px 80px;
    overflow: hidden;
}

/* Image styling to act as background */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark overlay to make white text readable */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Adjust opacity (0.75) if you want it lighter/darker */
    z-index: -1;
}

/* Text styling matching About Us page */
.programs-hero-section .section-header h2 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* Gold underline for the heading */
.programs-hero-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--harvest-gold);
}

.programs-hero-section .section-header p {
    color: #ffffff;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 25px auto 0;
    opacity: 0.9;
}

/* Gold text utility class */
.text-gold {
    color: var(--harvest-gold) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .programs-hero-section .section-header h2 {
        font-size: 2.5rem;
    }
    .programs-hero-section .section-header p {
        font-size: 1rem;
    }
}
/* ============================================
BLOGS PAGE - HERO SECTION STYLING
============================================ */
.blogs-hero-section {
    position: relative;
    padding: 150px 0 80px;
    text-align: center;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image from HTML */
.blogs-hero-section .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Light Overlay to make dark text readable (matching programs.html style) */
.blogs-hero-section .hero-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 250, 250, 0.92); /* Light alpine-white overlay */
    z-index: -1;
}

/* Text Color same as programs.html (Dark Grey) */
.blogs-hero-section .section-header h2 {
    color: var(--hash-grey) !important;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.blogs-hero-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--harvest-gold);
}

.blogs-hero-section .section-header p {
    color: var(--hash-grey-medium) !important;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blogs-hero-section {
        padding: 120px 0 60px;
    }
    .blogs-hero-section .section-header h2 {
        font-size: 2.2rem;
    }
    .blogs-hero-section .section-header p {
        font-size: 1rem;
    }
}
