/* Master Chef Training Institute - Complete CSS Styles */
/* Golden Gradient Theme: #ebc779 + #c88c0c + Black */
/* Body Font: Inter | Heading Font: Poppins */
/* All sizes reduced to 85% of original */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #ebc779;
    --primary-gold-dark: #c88c0c;
    --text-dark: #000000;
    --text-medium: #333333;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #fef9f4;
    --shadow-sm: 0 1.7px 6.8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6.8px 21.25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12.75px 29.75px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 21.25px 42.5px rgba(0, 0, 0, 0.2);
    --gradient-gold: linear-gradient(135deg, #ebc779 0%, #c88c0c 100%);
    --tg-body-font-family: 'Inter', sans-serif;
    --tg-heading-font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 13.6px; /* 16px * 0.85 */
}

body {
    font-family: var(--tg-body-font-family);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--tg-heading-font-family);
    font-weight: 700;
    line-height: 1.2;
}

/* Container - Updated to 100% width */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.7rem; /* 2rem * 0.85 */
}

/* Master Chef Training Institute - Blog Page CSS */
/* Golden Gradient Theme: #ebc779 + #c88c0c + Black */
/* Body Font: Inter | Heading Font: Poppins */
/* All sizes reduced to 85% of original */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #ebc779;
    --primary-gold-dark: #c88c0c;
    --text-dark: #000000;
    --text-medium: #333333;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #fef9f4;
    --shadow-sm: 0 1.7px 6.8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6.8px 21.25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12.75px 29.75px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 21.25px 42.5px rgba(0, 0, 0, 0.2);
    --gradient-gold: linear-gradient(135deg, #ebc779 0%, #c88c0c 100%);
    --tg-body-font-family: 'Inter', sans-serif;
    --tg-heading-font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 13.6px; /* 16px * 0.85 */
}

body {
    font-family: var(--tg-body-font-family);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--tg-heading-font-family);
    font-weight: 700;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.7rem; /* 2rem * 0.85 */
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.95rem 0; /* Increased from 0.85rem */
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent; /* Start transparent */
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95); /* White background when scrolled */
    backdrop-filter: blur(17px);
    box-shadow: var(--shadow-md);
    padding: 0.7125rem 0; /* Slightly increased */
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.9rem; /* Increased padding */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.7125rem; /* Increased gap */
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

.logo-image {
    width: 82.5px; /* Kept your size */
    height: 82.5px; /* Kept your size */
    border-radius: 50%;
    object-fit: cover;
    border: 1.7px solid var(--primary-gold);
}

.logo-text {
    font-size: 1.235rem; /* Increased from 1.105rem (95% scale) */
    font-weight: 800;
    font-family: var(--tg-heading-font-family);
    color: var(--text-dark);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.375rem; /* Increased gap between nav links */
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white; /* White by default */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    font-size: 0.95rem; /* Increased from 85% to 95% scale */
    transition: all 0.3s ease;
    position: relative;
    padding: 0.475rem 0; /* Increased padding */
}

/* When navbar is scrolled, change nav link color to gradient gold */
.navbar.scrolled .nav-link {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.85px; /* Slightly increased */
    background: var(--gradient-gold);
    transition: width 0.3s ease;
    border-radius: 1.9px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-btn {
    background: var(--gradient-gold);
    color: white;
    padding: 0.7125rem 1.425rem; /* Increased padding */
    border-radius: 23.75px; /* Increased border radius */
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    font-size: 0.95rem; /* Increased font size */
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-btn:hover {
    transform: translateY(-1.9px);
    box-shadow: var(--shadow-xl);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3.8px; /* Increased gap */
    padding: 7.6px; /* Increased padding */
}

.hamburger {
    width: 23.75px; /* Increased width */
    height: 2.85px; /* Increased height */
    background: white;
    transition: all 0.3s ease;
    border-radius: 1.9px;
}

.navbar.scrolled .hamburger {
    background: var(--text-dark);
}

/* Blog Page Header */
.blog-page-header {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 68px; /* 80px * 0.85 */
}

.blog-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.blog-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 680px; /* 800px * 0.85 */
    margin: 0 auto;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6375rem; /* 0.75rem * 0.85 */
    margin-bottom: 1.7rem; /* 2rem * 0.85 */
    font-family: var(--tg-body-font-family);
}

.blog-breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: white;
}

.blog-breadcrumb .current {
    color: rgba(255, 255, 255, 0.8);
}

.blog-breadcrumb i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.68rem; /* 0.8rem * 0.85 */
}

.blog-page-title {
    font-size: 2.975rem; /* 3.5rem * 0.85 */
    font-weight: 900;
    font-family: var(--tg-heading-font-family);
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
    line-height: 1.1;
}

.blog-page-subtitle {
    font-size: 1.02rem; /* 1.2rem * 0.85 */
    font-family: var(--tg-body-font-family);
    opacity: 0.9;
    font-weight: 400;
}

/* Blog Categories Section */
.blog-categories-section {
    padding: 42.5px 0; /* 50px * 0.85 */
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.blog-categories-nav {
    display: flex;
    justify-content: center;
    gap: 1.275rem; /* 1.5rem * 0.85 */
    flex-wrap: wrap;
}

.category-tab {
    background: var(--bg-light);
    border: none;
    padding: 0.85rem 1.275rem; /* 1rem 1.5rem * 0.85 */
    border-radius: 21.25px; /* 25px * 0.85 */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    color: var(--text-medium);
    box-shadow: var(--shadow-sm);
}

.category-tab:hover {
    transform: translateY(-2.55px); /* -3px * 0.85 */
    box-shadow: var(--shadow-md);
    background: white;
}

.category-tab.active {
    background: var(--gradient-gold);
    color: white;
    transform: translateY(-2.55px); /* -3px * 0.85 */
    box-shadow: var(--shadow-lg);
}

.category-tab i {
    font-size: 0.85rem; /* 1rem * 0.85 */
}

/* Featured Post Section */
.featured-post-section {
    padding: 68px 0; /* 80px * 0.85 */
    background: var(--bg-cream);
}

.featured-post {
    background: white;
    border-radius: 12.75px; /* 15px * 0.85 */
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-6.8px); /* -8px * 0.85 */
    box-shadow: var(--shadow-xl);
}

.featured-post-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2.55rem; /* 3rem * 0.85 */
}

.featured-post-image {
    position: relative;
    height: 340px; /* 400px * 0.85 */
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 17px; /* 20px * 0.85 */
    left: 17px; /* 20px * 0.85 */
    background: var(--gradient-gold);
    color: white;
    padding: 0.425rem 0.85rem; /* 0.5rem 1rem * 0.85 */
    border-radius: 17px; /* 20px * 0.85 */
    font-size: 0.68rem; /* 0.8rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
}

.featured-post-info {
    padding: 2.55rem; /* 3rem * 0.85 */
}

.featured-post-meta {
    display: flex;
    align-items: center;
    gap: 1.275rem; /* 1.5rem * 0.85 */
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
    flex-wrap: wrap;
}

.category-badge {
    padding: 0.2125rem 0.6375rem; /* 0.25rem 0.75rem * 0.85 */
    border-radius: 10.2px; /* 12px * 0.85 */
    font-size: 0.6375rem; /* 0.75rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    text-transform: uppercase;
}

.category-badge.business {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.category-badge.recipes {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: white;
}

.category-badge.success {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
}

.category-badge.trends {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.post-date,
.read-time {
    font-size: 0.68rem; /* 0.8rem * 0.85 */
    color: var(--text-light);
    font-family: var(--tg-body-font-family);
    display: flex;
    align-items: center;
    gap: 0.2125rem; /* 0.25rem * 0.85 */
}

.featured-post-title {
    font-size: 1.7rem; /* 2rem * 0.85 */
    font-weight: 800;
    font-family: var(--tg-heading-font-family);
    color: var(--text-dark);
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
    line-height: 1.2;
}

.featured-post-excerpt {
    font-size: 0.935rem; /* 1.1rem * 0.85 */
    font-family: var(--tg-body-font-family);
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.7rem; /* 2rem * 0.85 */
}

.featured-post-author {
    display: flex;
    align-items: center;
    gap: 0.85rem; /* 1rem * 0.85 */
    margin-bottom: 1.7rem; /* 2rem * 0.85 */
}

.author-avatar {
    width: 42.5px; /* 50px * 0.85 */
    height: 42.5px; /* 50px * 0.85 */
    border-radius: 50%;
    object-fit: cover;
    border: 1.7px solid var(--primary-gold); /* 2px * 0.85 */
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    color: var(--text-dark);
}

.author-title {
    font-size: 0.68rem; /* 0.8rem * 0.85 */
    font-family: var(--tg-body-font-family);
    color: var(--text-light);
}

.read-more-btn {
    background: var(--gradient-gold);
    color: white;
    padding: 0.85rem 1.7rem; /* 1rem 2rem * 0.85 */
    border-radius: 6.8px; /* 8px * 0.85 */
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    display: inline-flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-1.7px); /* -2px * 0.85 */
    box-shadow: var(--shadow-md);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(2.55px); /* 3px * 0.85 */
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 68px 0; /* 80px * 0.85 */
    background: white;
}

.blog-section-header {
    text-align: center;
    margin-bottom: 3.4rem; /* 4rem * 0.85 */
}

.blog-section-label {
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.7px; /* 2px * 0.85 */
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
}

.blog-section-title {
    font-size: 2.125rem; /* 2.5rem * 0.85 */
    font-weight: 800;
    font-family: var(--tg-heading-font-family);
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
    color: var(--text-dark);
}

.blog-section-subtitle {
    font-size: 0.935rem; /* 1.1rem * 0.85 */
    font-family: var(--tg-body-font-family);
    color: var(--text-medium);
    max-width: 510px; /* 600px * 0.85 */
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(297.5px, 1fr)); /* 350px * 0.85 */
    gap: 2.55rem; /* 3rem * 0.85 */
}

/* Blog Post Card */
.blog-post-card {
    background: white;
    border-radius: 12.75px; /* 15px * 0.85 */
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0.85px solid #f0f0f0; /* 1px * 0.85 */
}

.blog-post-card:hover {
    transform: translateY(-6.8px); /* -8px * 0.85 */
    box-shadow: var(--shadow-lg);
}

.post-image {
    position: relative;
    height: 191.25px; /* 225px * 0.85 */
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-category-badge {
    position: absolute;
    top: 12.75px; /* 15px * 0.85 */
    left: 12.75px; /* 15px * 0.85 */
    padding: 0.2125rem 0.6375rem; /* 0.25rem 0.75rem * 0.85 */
    border-radius: 10.2px; /* 12px * 0.85 */
    font-size: 0.6375rem; /* 0.75rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    text-transform: uppercase;
}

.post-read-time {
    position: absolute;
    top: 12.75px; /* 15px * 0.85 */
    right: 12.75px; /* 15px * 0.85 */
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.2125rem 0.6375rem; /* 0.25rem 0.75rem * 0.85 */
    border-radius: 10.2px; /* 12px * 0.85 */
    font-size: 0.6375rem; /* 0.75rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
}

.post-content {
    padding: 1.275rem; /* 1.5rem * 0.85 */
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem; /* 1rem * 0.85 */
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
    flex-wrap: wrap;
}

.post-date,
.post-author {
    font-size: 0.6375rem; /* 0.75rem * 0.85 */
    color: var(--text-light);
    font-family: var(--tg-body-font-family);
    display: flex;
    align-items: center;
    gap: 0.2125rem; /* 0.25rem * 0.85 */
}

.post-title {
    font-size: 1.02rem; /* 1.2rem * 0.85 */
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    color: var(--text-dark);
    margin-bottom: 0.6375rem; /* 0.75rem * 0.85 */
    line-height: 1.3;
}

.post-excerpt {
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    font-family: var(--tg-body-font-family);
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.425rem; /* 0.5rem * 0.85 */
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
}

.tag {
    background: var(--bg-light);
    color: var(--text-medium);
    padding: 0.17rem 0.425rem; /* 0.2rem 0.5rem * 0.85 */
    border-radius: 8.5px; /* 10px * 0.85 */
    font-size: 0.595rem; /* 0.7rem * 0.85 */
    font-weight: 500;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.05);
}

.post-read-more {
    color: var(--primary-gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    font-size: 0.68rem; /* 0.8rem * 0.85 */
    display: flex;
    align-items: center;
    gap: 0.2125rem; /* 0.25rem * 0.85 */
    transition: all 0.3s ease;
}

.post-read-more:hover {
    color: var(--primary-gold);
    transform: translateX(2.55px); /* 3px * 0.85 */
}

.post-read-more i {
    transition: transform 0.3s ease;
}

.post-read-more:hover i {
    transform: translateX(2.55px); /* 3px * 0.85 */
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 3.4rem; /* 4rem * 0.85 */
}

.load-more-btn {
    background: transparent;
    color: var(--primary-gold-dark);
    padding: 0.85rem 2.125rem; /* 1rem 2.5rem * 0.85 */
    border: 1.7px solid var(--primary-gold-dark); /* 2px * 0.85 */
    border-radius: 21.25px; /* 25px * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
}

.load-more-btn:hover {
    background: var(--primary-gold-dark);
    color: white;
    transform: translateY(-2.55px); /* -3px * 0.85 */
    box-shadow: var(--shadow-md);
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 68px 0; /* 80px * 0.85 */
    background: var(--bg-light);
}

.blog-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.4rem; /* 4rem * 0.85 */
    align-items: center;
}

.newsletter-cta,
.contribute-cta {
    background: white;
    padding: 2.55rem; /* 3rem * 0.85 */
    border-radius: 12.75px; /* 15px * 0.85 */
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.newsletter-cta:hover,
.contribute-cta:hover {
    transform: translateY(-4.25px); /* -5px * 0.85 */
    box-shadow: var(--shadow-lg);
}

.newsletter-icon,
.contribute-icon {
    width: 68px; /* 80px * 0.85 */
    height: 68px; /* 80px * 0.85 */
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.275rem; /* 1.5rem * 0.85 */
}

.newsletter-icon i,
.contribute-icon i {
    font-size: 1.7rem; /* 2rem * 0.85 */
    color: white;
}

.newsletter-cta h3,
.contribute-cta h3 {
    font-size: 1.275rem; /* 1.5rem * 0.85 */
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    color: var(--text-dark);
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
}

.newsletter-cta p,
.contribute-cta p {
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    font-family: var(--tg-body-font-family);
    color: var(--text-medium);
    margin-bottom: 1.7rem; /* 2rem * 0.85 */
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.85rem; /* 1rem * 0.85 */
    max-width: 340px; /* 400px * 0.85 */
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.85rem; /* 1rem * 0.85 */
    border: 1.7px solid #e0e0e0; /* 2px * 0.85 */
    border-radius: 6.8px; /* 8px * 0.85 */
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2.55px rgba(235, 199, 121, 0.2); /* 3px * 0.85 */
}

.newsletter-btn {
    background: var(--gradient-gold);
    color: white;
    padding: 0.85rem 1.275rem; /* 1rem 1.5rem * 0.85 */
    border: none;
    border-radius: 6.8px; /* 8px * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
}

.newsletter-btn:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-1.7px); /* -2px * 0.85 */
}

.contribute-btn {
    background: var(--gradient-gold);
    color: white;
    padding: 0.85rem 1.7rem; /* 1rem 2rem * 0.85 */
    border-radius: 6.8px; /* 8px * 0.85 */
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    display: inline-flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
    transition: all 0.3s ease;
}

.contribute-btn:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-1.7px); /* -2px * 0.85 */
    box-shadow: var(--shadow-md);
}

/* Footer - Inherited from main styles */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 51px 0 17px; /* 60px 20px * 0.85 */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(212.5px, 1fr)); /* 250px * 0.85 */
    gap: 2.55rem; /* 3rem * 0.85 */
    margin-bottom: 2.55rem; /* 3rem * 0.85 */
}

.footer-section h4 {
    font-family: var(--tg-heading-font-family);
    font-size: 1.02rem; /* 1.2rem * 0.85 */
    font-weight: 600;
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6375rem; /* 0.75rem * 0.85 */
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
}

.footer-logo-image {
    width: 34px; /* 40px * 0.85 */
    height: 34px; /* 40px * 0.85 */
    border-radius: 50%;
    object-fit: cover;
    border: 1.7px solid var(--primary-gold); /* 2px * 0.85 */
}

.footer-logo-text {
    font-size: 0.935rem; /* 1.1rem * 0.85 */
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
}

.footer-social {
    display: flex;
    gap: 0.85rem; /* 1rem * 0.85 */
}

.footer-social a {
    width: 34px; /* 40px * 0.85 */
    height: 34px; /* 40px * 0.85 */
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-2.55px); /* -3px * 0.85 */
    box-shadow: var(--shadow-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6375rem; /* 0.75rem * 0.85 */
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(4.25px); /* 5px * 0.85 */
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem; /* 1rem * 0.85 */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6375rem; /* 0.75rem * 0.85 */
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    color: var(--primary-gold);
    transform: translateX(4.25px); /* 5px * 0.85 */
}

.contact-item i {
    color: var(--primary-gold);
    width: 17px; /* 20px * 0.85 */
}

.footer-bottom {
    border-top: 0.85px solid rgba(255, 255, 255, 0.1); /* 1px * 0.85 */
    padding-top: 1.7rem; /* 2rem * 0.85 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem; /* 1rem * 0.85 */
}

.footer-copyright p {
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.7rem; /* 2rem * 0.85 */
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

/* Blog Post Filtering Animation */
.blog-post-card.hide {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.blog-post-card.show {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading .load-more-btn,
.loading .newsletter-btn {
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-post-content {
        grid-template-columns: 1fr;
        gap: 1.7rem; /* 2rem * 0.85 */
    }

    .featured-post-image {
        height: 255px; /* 300px * 0.85 */
    }

    .blog-posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); /* 300px * 0.85 */
        gap: 2.125rem; /* 2.5rem * 0.85 */
    }

    .blog-cta-content {
        grid-template-columns: 1fr;
        gap: 2.55rem; /* 3rem * 0.85 */
    }

    .blog-page-title {
        font-size: 2.38rem; /* 2.8rem * 0.85 */
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .blog-page-title {
        font-size: 1.87rem; /* 2.2rem * 0.85 */
    }

    .blog-section-title {
        font-size: 1.7rem; /* 2rem * 0.85 */
    }

    .featured-post-title {
        font-size: 1.36rem; /* 1.6rem * 0.85 */
    }

    .category-tab {
        font-size: 0.68rem; /* 0.8rem * 0.85 */
        padding: 0.6375rem 1.02rem; /* 0.75rem 1.2rem * 0.85 */
    }

    .blog-categories-nav {
        gap: 0.85rem; /* 1rem * 0.85 */
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.7rem; /* 2rem * 0.85 */
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .blog-breadcrumb {
        flex-direction: column;
        gap: 0.425rem; /* 0.5rem * 0.85 */
    }

    .featured-post-meta {
        gap: 0.85rem; /* 1rem * 0.85 */
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.85rem; /* 1rem * 0.85 */
    }

    .blog-page-title {
        font-size: 1.53rem; /* 1.8rem * 0.85 */
    }

    .blog-section-title {
        font-size: 1.36rem; /* 1.6rem * 0.85 */
    }

    .featured-post-title {
        font-size: 1.19rem; /* 1.4rem * 0.85 */
    }

    .category-tab {
        padding: 0.6375rem 0.85rem; /* 0.75rem 1rem * 0.85 */
        font-size: 0.595rem; /* 0.7rem * 0.85 */
        flex-direction: column;
        text-align: center;
        gap: 0.2125rem; /* 0.25rem * 0.85 */
        min-width: auto;
    }

    .category-tab i {
        font-size: 0.765rem; /* 0.9rem * 0.85 */
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.275rem; /* 1.5rem * 0.85 */
    }

    .blog-post-card {
        margin: 0 auto;
        max-width: 272px; /* 320px * 0.85 */
    }

    .post-image {
        height: 170px; /* 200px * 0.85 */
    }

    .featured-post-image {
        height: 212.5px; /* 250px * 0.85 */
    }

    .featured-post-info {
        padding: 1.7rem; /* 2rem * 0.85 */
    }

    .post-content {
        padding: 1.02rem; /* 1.2rem * 0.85 */
    }

    .post-title {
        font-size: 0.935rem; /* 1.1rem * 0.85 */
    }

    .post-excerpt {
        font-size: 0.68rem; /* 0.8rem * 0.85 */
    }

    .newsletter-cta,
    .contribute-cta {
        padding: 1.7rem; /* 2rem * 0.85 */
    }

    .newsletter-icon,
    .contribute-icon {
        width: 51px; /* 60px * 0.85 */
        height: 51px; /* 60px * 0.85 */
    }

    .newsletter-icon i,
    .contribute-icon i {
        font-size: 1.275rem; /* 1.5rem * 0.85 */
    }

    .load-more-btn {
        padding: 0.74375rem 1.7rem; /* 0.875rem 2rem * 0.85 */
        font-size: 0.765rem; /* 0.9rem * 0.85 */
        width: 100%;
        max-width: 255px; /* 300px * 0.85 */
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.7rem; /* 2rem * 0.85 */
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6.8px; /* 8px * 0.85 */
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 3.4px; /* 4px * 0.85 */
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-dark);
}

/* Selection Styles */
::selection {
    background: var(--primary-gold);
    color: white;
}

::-moz-selection {
    background: var(--primary-gold);
    color: white;
}

/* Focus Styles */
*:focus {
    outline: 1.7px solid var(--primary-gold); /* 2px * 0.85 */
    outline-offset: 1.7px; /* 2px * 0.85 */
    border-radius: 3.4px; /* 4px * 0.85 */
}

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(17px); /* 20px * 0.85 */ 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-17px); /* -20px * 0.85 */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

.slide-down {
    animation: slideDown 0.3s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu,
    .blog-header-background,
    .blog-header-overlay,
    .blog-categories-section,
    .blog-cta-section,
    .load-more-section {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .blog-page-header {
        background: white !important;
        color: black !important;
        margin-top: 0 !important;
        min-height: auto !important;
        padding: 1.7rem 0 !important;
    }
    
    .blog-post-card,
    .featured-post {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
        margin-bottom: 1.7rem !important;
    }
    
    .read-more-btn,
    .post-read-more,
    .load-more-btn,
    .newsletter-btn,
    .contribute-btn {
        display: none !important;
    }

    .post-image,
    .featured-post-image {
        height: auto !important;
        max-height: 170px !important;
    }
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.mb-1 {
    margin-bottom: 0.85rem !important;
}

.mb-2 {
    margin-bottom: 1.7rem !important;
}

.mb-3 {
    margin-bottom: 2.55rem !important;
}

.mt-1 {
    margin-top: 0.85rem !important;
}

.mt-2 {
    margin-top: 1.7rem !important;
}

.mt-3 {
    margin-top: 2.55rem !important;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Future dark mode implementation */
    /* Currently maintaining light theme for brand consistency */
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .blog-post-card,
    .featured-post,
    .newsletter-cta,
    .contribute-cta {
        border: 2px solid var(--text-dark) !important;
    }
    
    .category-tab,
    .load-more-btn {
        border: 2px solid var(--primary-gold-dark) !important;
    }
}

/* Hero Section - Updated */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
  
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.7rem; /* 2rem * 0.85 */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.4rem; /* 4rem * 0.85 */
    align-items: center;
    position: relative;
    z-index: 3;
    min-height: 80vh;
    padding-top: 68px; /* 80px * 0.85 */
}

.hero-content {
    color: var(--text-dark);
}

.hero-badge {
    background: var(--gradient-gold);
    color: white;
    padding: 0.425rem 0.85rem; /* 0.5rem 1rem * 0.85 */
    border-radius: 17px; /* 20px * 0.85 */
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
    display: inline-block;
}

.hero-title {
    font-size: 2.975rem; /* 3.5rem * 0.85 */
    font-weight: 900;
    font-family: var(--tg-heading-font-family);
    line-height: 1.1;
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
    color: white;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 0.935rem; /* 1.1rem * 0.85 */
    font-family: var(--tg-body-font-family);
    color: white;
    margin-bottom: 1.7rem; /* 2rem * 0.85 */
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem; /* 1rem * 0.85 */
    margin-bottom: 1.7rem; /* 2rem * 0.85 */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6375rem; /* 0.75rem * 0.85 */
    font-family: var(--tg-body-font-family);
    font-weight: 500;
    color: white;
}

.feature-item i {
    color: var(--primary-gold-dark);
    font-size: 1.02rem; /* 1.2rem * 0.85 */
}

/* Updated Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 0.85rem; /* 1rem * 0.85 */
    flex-wrap: wrap;
}

.enroll-btn-hero {
    background: var(--gradient-gold);
    color: white;
    padding: 0.85rem 1.7rem; /* 1rem 2rem * 0.85 */
    border: none;
    border-radius: 21.25px; /* 25px * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
    font-size: 0.85rem; /* 1rem * 0.85 */
}

.brochure-btn-hero {
    background: transparent;
    color: white;
    padding: 0.85rem 1.7rem; /* 1rem 2rem * 0.85 */
    border: 1.7px solid var(--primary-gold); /* 2px * 0.85 */
    border-radius: 21.25px; /* 25px * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
    font-size: 0.85rem; /* 1rem * 0.85 */
}

.enroll-btn-hero:hover,
.brochure-btn-hero:hover {
    transform: translateY(-1.7px); /* -2px * 0.85 */
    box-shadow: var(--shadow-lg);
}

.brochure-btn-hero:hover {
    background: var(--primary-gold);
    color: white;
}

.enroll-btn-hero i,
.brochure-btn-hero i {
    transition: transform 0.3s ease;
}

.enroll-btn-hero:hover i,
.brochure-btn-hero:hover i {
    transform: translateX(4.25px); /* 5px * 0.85 */
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-section {
    position: relative;
    text-align: center;
}

.video-container {
    position: relative;
    width: 340px; /* 400px * 0.85 */
    height: 340px; /* 400px * 0.85 */
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-gold);
    padding: 8.5px; /* 10px * 0.85 */
    margin-bottom: 1.7rem; /* 2rem * 0.85 */
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px; /* 80px * 0.85 */
    height: 68px; /* 80px * 0.85 */
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.play-button i {
    font-size: 1.7rem; /* 2rem * 0.85 */
    color: var(--primary-gold-dark);
    margin-left: 4.25px; /* 5px * 0.85 */
}

.video-badge {
    position: absolute;
    bottom: 17px; /* 20px * 0.85 */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.6375rem 1.275rem; /* 0.75rem 1.5rem * 0.85 */
    border-radius: 21.25px; /* 25px * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.student-avatars {
    display: flex;
    justify-content: center;
    gap: -8.5px; /* -10px * 0.85 */
}

.student-avatars img {
    width: 42.5px; /* 50px * 0.85 */
    height: 42.5px; /* 50px * 0.85 */
    border-radius: 50%;
    border: 2.55px solid white; /* 3px * 0.85 */
    margin-left: -8.5px; /* -10px * 0.85 */
    box-shadow: var(--shadow-sm);
}

.student-avatars img:first-child {
    margin-left: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3.4rem; /* 4rem * 0.85 */
}

.section-label {
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.7px; /* 2px * 0.85 */
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
}

.section-title {
    font-size: 2.125rem; /* 2.5rem * 0.85 */
    font-weight: 800;
    font-family: var(--tg-heading-font-family);
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 0.935rem; /* 1.1rem * 0.85 */
    font-family: var(--tg-body-font-family);
    color: var(--text-medium);
    max-width: 510px; /* 600px * 0.85 */
    margin: 0 auto;
    line-height: 1.6;
}

/* Categories Section */
.categories {
    padding: 68px 0; /* 80px * 0.85 */
    background: var(--bg-light);
}

.categories-slider {
    display: flex;
    justify-content: center;
    gap: 1.7rem; /* 2rem * 0.85 */
    flex-wrap: wrap;
    margin-top: 2.55rem; /* 3rem * 0.85 */
}

.category-item {
    background: white;
    padding: 1.7rem; /* 2rem * 0.85 */
    border-radius: 50%;
    width: 153px; /* 180px * 0.85 */
    height: 153px; /* 180px * 0.85 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.category-item:hover {
    transform: translateY(-8.5px); /* -10px * 0.85 */
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 51px; /* 60px * 0.85 */
    height: 51px; /* 60px * 0.85 */
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
}

.category-icon i {
    font-size: 1.275rem; /* 1.5rem * 0.85 */
    color: white;
}

.category-item h3 {
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-heading-font-family);
    color: var(--text-dark);
    line-height: 1.3;
}

/* About Section - New */
.about {
    padding: 68px 0; /* 80px * 0.85 */
    background: white;
}

.about-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.7rem; /* 2rem * 0.85 */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.4rem; /* 4rem * 0.85 */
    align-items: center;
}

.about-image-container {
    position: relative;
    border-radius: 12.75px; /* 15px * 0.85 */
    overflow: hidden;
}

.about-main-image {
    width: 100%;
    height: 425px; /* 500px * 0.85 */
    object-fit: cover;
    border-radius: 12.75px; /* 15px * 0.85 */
}

.about-stats-card {
    position: absolute;
    bottom: 17px; /* 20px * 0.85 */
    right: 17px; /* 20px * 0.85 */
    background: white;
    padding: 1.275rem; /* 1.5rem * 0.85 */
    border-radius: 12.75px; /* 15px * 0.85 */
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-stats-card h4 {
    font-size: 1.7rem; /* 2rem * 0.85 */
    font-weight: 800;
    color: var(--primary-gold-dark);
    margin-bottom: 0.425rem; /* 0.5rem * 0.85 */
    font-family: var(--tg-heading-font-family);
}

.about-stats-card p {
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    color: var(--text-medium);
    font-family: var(--tg-body-font-family);
}

.about-description {
    font-family: var(--tg-body-font-family);
    font-size: 0.935rem; /* 1.1rem * 0.85 */
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.7rem; /* 2rem * 0.85 */
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.275rem; /* 1.5rem * 0.85 */
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem; /* 1rem * 0.85 */
}

.highlight-icon {
    width: 42.5px; /* 50px * 0.85 */
    height: 42.5px; /* 50px * 0.85 */
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.02rem; /* 1.2rem * 0.85 */
    color: white;
}

.highlight-content h4 {
    font-size: 0.935rem; /* 1.1rem * 0.85 */
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.425rem; /* 0.5rem * 0.85 */
    font-family: var(--tg-heading-font-family);
}

.highlight-content p {
    font-size: 0.8075rem; /* 0.95rem * 0.85 */
    color: var(--text-medium);
    line-height: 1.5;
    font-family: var(--tg-body-font-family);
}

/* Courses Section - Updated */
.courses {
    padding: 68px 0; /* 80px * 0.85 */
    background: var(--bg-light);
}

.course-tabs {
    display: flex;
    justify-content: center;
    gap: 0.85rem; /* 1rem * 0.85 */
    margin-bottom: 2.55rem; /* 3rem * 0.85 */
    flex-wrap: wrap;
}

.course-tab {
    background: white;
    border: 1.7px solid #e0e0e0; /* 2px * 0.85 */
    padding: 0.6375rem 1.275rem; /* 0.75rem 1.5rem * 0.85 */
    border-radius: 21.25px; /* 25px * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-medium);
}

.course-tab.active {
    background: var(--gradient-gold);
    color: white;
    border-color: var(--primary-gold-dark);
    transform: translateY(-1.7px); /* -2px * 0.85 */
    box-shadow: var(--shadow-md);
}

.course-tab:hover:not(.active) {
    border-color: var(--primary-gold);
    transform: translateY(-0.85px); /* -1px * 0.85 */
}

.course-content {
    display: none;
}

.course-content.active {
    display: block;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); /* 300px * 0.85 */
    gap: 1.7rem; /* 2rem * 0.85 */
}

.course-card {
    background: white;
    border-radius: 12.75px; /* 15px * 0.85 */
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0.85px solid #f0f0f0; /* 1px * 0.85 */
}

.course-card:hover {
    transform: translateY(-6.8px); /* -8px * 0.85 */
    box-shadow: var(--shadow-lg);
}

.course-image {
    position: relative;
    height: 170px; /* 200px * 0.85 */
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 12.75px; /* 15px * 0.85 */
    right: 12.75px; /* 15px * 0.85 */
    background: var(--gradient-gold);
    color: white;
    padding: 0.425rem 0.85rem; /* 0.5rem 1rem * 0.85 */
    border-radius: 17px; /* 20px * 0.85 */
    font-size: 0.68rem; /* 0.8rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
}

.course-duration {
    position: absolute;
    top: 12.75px; /* 15px * 0.85 */
    left: 12.75px; /* 15px * 0.85 */
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.425rem 0.85rem; /* 0.5rem 1rem * 0.85 */
    border-radius: 17px; /* 20px * 0.85 */
    font-size: 0.68rem; /* 0.8rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
}

.course-badge.women {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.course-badge.trending {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.course-content-inner {
    padding: 1.275rem; /* 1.5rem * 0.85 */
}

.course-category {
    font-size: 0.68rem; /* 0.8rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    margin-bottom: 0.425rem; /* 0.5rem * 0.85 */
}

.course-content-inner h3 {
    font-size: 1.02rem; /* 1.2rem * 0.85 */
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    color: var(--text-dark);
    margin-bottom: 0.425rem; /* 0.5rem * 0.85 */
}

.course-content-inner p {
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    font-family: var(--tg-body-font-family);
    color: var(--text-medium);
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
    line-height: 1.5;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.425rem; /* 0.5rem * 0.85 */
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
}

.course-features span {
    display: flex;
    align-items: center;
    gap: 0.2125rem; /* 0.25rem * 0.85 */
    font-size: 0.6375rem; /* 0.75rem * 0.85 */
    color: var(--text-light);
    background: var(--bg-light);
    padding: 0.2125rem 0.425rem; /* 0.25rem 0.5rem * 0.85 */
    border-radius: 10.2px; /* 12px * 0.85 */
    font-family: var(--tg-body-font-family);
}

.course-features i {
    font-size: 0.595rem; /* 0.7rem * 0.85 */
    color: var(--primary-gold-dark);
}

.enroll-btn {
    background: var(--gradient-gold);
    color: white;
    padding: 0.6375rem 1.275rem; /* 0.75rem 1.5rem * 0.85 */
    border: none;
    border-radius: 6.8px; /* 8px * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
    width: 100%;
    justify-content: center;
}

.enroll-btn:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-1.7px); /* -2px * 0.85 */
    box-shadow: var(--shadow-md);
}

.enroll-btn i {
    transition: transform 0.3s ease;
}

.enroll-btn:hover i {
    transform: translateX(2.55px); /* 3px * 0.85 */
}

/* Newsletter Banner */
.newsletter-banner {
    padding: 51px 0; /* 60px * 0.85 */
    background: var(--text-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.banner-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.7rem; /* 2rem * 0.85 */
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.55rem; /* 3rem * 0.85 */
    align-items: center;
}

.banner-image {
    position: relative;
}

.banner-image img {
    width: 170px; /* 200px * 0.85 */
    height: 170px; /* 200px * 0.85 */
    border-radius: 50%;
    object-fit: cover;
    border: 3.4px solid var(--primary-gold); /* 4px * 0.85 */
}

.banner-content h2 {
    font-size: 1.87rem; /* 2.2rem * 0.85 */
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    margin-bottom: 1.7rem; /* 2rem * 0.85 */
    color: white;
}

.banner-content .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-form {
    display: flex;
    gap: 0.85rem; /* 1rem * 0.85 */
    max-width: 425px; /* 500px * 0.85 */
}

.email-input {
    flex: 1;
    padding: 0.85rem; /* 1rem * 0.85 */
    border: none;
    border-radius: 6.8px; /* 8px * 0.85 */
    font-family: var(--tg-body-font-family);
    font-size: 0.85rem; /* 1rem * 0.85 */
}

.subscribe-btn {
    background: var(--gradient-gold);
    color: white;
    padding: 0.85rem 1.7rem; /* 1rem 2rem * 0.85 */
    border: none;
    border-radius: 6.8px; /* 8px * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-1.7px); /* -2px * 0.85 */
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 68px 0; /* 80px * 0.85 */
    background: white;
}

.why-choose-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.7rem; /* 2rem * 0.85 */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.4rem; /* 4rem * 0.85 */
    align-items: center;
}

.circular-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-container {
    position: relative;
    width: 475px; /* Adjusted to accommodate larger center image */
    height: 475px; /* Adjusted to accommodate larger center image */
}

.circular-text-svg {
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}

.circular-text-svg text {
    font-family: var(--tg-body-font-family);
    font-size: 11px; /* Slightly adjusted for better proportion */
    font-weight: 600;
    fill: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 2.75px; /* Adjusted to match new proportions */
}

.center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 257.5px; /* Your requested size */
    height: 257.5px; /* Your requested size */
    border-radius: 50%;
    overflow: hidden;
    border: 3.7px solid var(--primary-gold); /* Adjusted border thickness */
}

.center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.why-choose-text .section-description {
    font-family: var(--tg-body-font-family);
    font-size: 0.85rem; /* 1rem * 0.85 */
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.7rem; /* 2rem * 0.85 */
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem; /* 1rem * 0.85 */
}

.features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 0.85rem; /* 1rem * 0.85 */
    font-family: var(--tg-body-font-family);
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.425rem 0; /* 0.5rem * 0.85 */
}

.features-list .feature-item i {
    color: var(--primary-gold-dark);
    font-size: 0.85rem; /* 1rem * 0.85 */
}

/* Testimonials Section - New */
.testimonials {
    padding: 68px 0; /* 80px * 0.85 */
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); /* 300px * 0.85 */
    gap: 1.7rem; /* 2rem * 0.85 */
    margin-top: 2.55rem; /* 3rem * 0.85 */
}

.testimonial-card {
    background: white;
    border-radius: 12.75px; /* 15px * 0.85 */
    padding: 1.7rem; /* 2rem * 0.85 */
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 0.85px solid #f0f0f0; /* 1px * 0.85 */
}

.testimonial-card:hover {
    transform: translateY(-4.25px); /* -5px * 0.85 */
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    font-size: 1.02rem; /* 1.2rem * 0.85 */
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
}

.testimonial-text {
    font-family: var(--tg-body-font-family);
    font-size: 0.85rem; /* 1rem * 0.85 */
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem; /* 1rem * 0.85 */
}

.testimonial-image {
    width: 42.5px; /* 50px * 0.85 */
    height: 42.5px; /* 50px * 0.85 */
    border-radius: 50%;
    object-fit: cover;
    border: 1.7px solid var(--primary-gold); /* 2px * 0.85 */
}

.testimonial-info h4 {
    font-family: var(--tg-heading-font-family);
    font-size: 0.935rem; /* 1.1rem * 0.85 */
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2125rem; /* 0.25rem * 0.85 */
}

.testimonial-info p {
    font-family: var(--tg-body-font-family);
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    color: var(--text-light);
    margin: 0;
}

/* CTA Section - New */
/* CTA Section - Updated with Background Image and Parallax */
.cta-section {
    padding: 68px 0; /* 80px * 0.85 */
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Slightly larger for parallax effect */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('./Images/her\ \(3\).jpeg') center/cover;
    z-index: -1;
    will-change: transform;
    transform: translateZ(0);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}
.cta-content {
    max-width: 680px; /* 800px * 0.85 */
    margin: 0 auto;
}

.cta-badge {
    background:var(--gradient-gold);
    color: white;
    padding: 0.425rem 0.85rem; /* 0.5rem 1rem * 0.85 */
    border-radius: 17px; /* 20px * 0.85 */
    font-size: 0.765rem; /* 0.9rem * 0.85 */
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
    display: inline-block;
}

.cta-title {
    font-size: 2.55rem; /* 3rem * 0.85 */
    font-weight: 800;
    font-family: var(--tg-heading-font-family);
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
    color: white;
}

.cta-description {
    font-size: 1.02rem; /* 1.2rem * 0.85 */
    font-family: var(--tg-body-font-family);
    margin-bottom: 2.125rem; /* 2.5rem * 0.85 */
    line-height: 1.6;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.275rem; /* 1.5rem * 0.85 */
    margin-bottom: 1.7rem; /* 2rem * 0.85 */
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: white;
    color: var(--primary-gold-dark);
    padding: 0.85rem 1.7rem; /* 1rem 2rem * 0.85 */
    border-radius: 21.25px; /* 25px * 0.85 */
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
    box-shadow: var(--shadow-md);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 0.85rem 1.7rem; /* 1rem 2rem * 0.85 */
    border: 1.7px solid white; /* 2px * 0.85 */
    border-radius: 21.25px; /* 25px * 0.85 */
    text-decoration: none;
    font-weight: 600;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
}

.cta-btn-primary:hover {
    transform: translateY(-2.55px); /* -3px * 0.85 */
    box-shadow: var(--shadow-xl);
}

.cta-btn-secondary:hover {
    background: white;
    color: var(--primary-gold-dark);
    transform: translateY(-2.55px); /* -3px * 0.85 */
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 1.7rem; /* 2rem * 0.85 */
    flex-wrap: wrap;
    font-family: var(--tg-body-font-family);
    opacity: 0.9;
}

.cta-contact-info span {
    display: flex;
    align-items: center;
    gap: 0.425rem; /* 0.5rem * 0.85 */
}

/* Footer - New */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 51px 0 17px; /* 60px 20px * 0.85 */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(212.5px, 1fr)); /* 250px * 0.85 */
    gap: 2.55rem; /* 3rem * 0.85 */
    margin-bottom: 2.55rem; /* 3rem * 0.85 */
}

.footer-section h4 {
    font-family: var(--tg-heading-font-family);
    font-size: 1.02rem; /* 1.2rem * 0.85 */
    font-weight: 600;
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6375rem; /* 0.75rem * 0.85 */
    margin-bottom: 0.85rem; /* 1rem * 0.85 */
}

.footer-logo-image {
    width: 34px; /* 40px * 0.85 */
    height: 34px; /* 40px * 0.85 */
    border-radius: 50%;
    object-fit: cover;
    border: 1.7px solid var(--primary-gold); /* 2px * 0.85 */
}

.footer-logo-text {
    font-size: 0.935rem; /* 1.1rem * 0.85 */
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
}

.footer-social {
    display: flex;
    gap: 0.85rem; /* 1rem * 0.85 */
}

.footer-social a {
    width: 34px; /* 40px * 0.85 */
    height: 34px; /* 40px * 0.85 */
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-2.55px); /* -3px * 0.85 */
    box-shadow: var(--shadow-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6375rem; /* 0.75rem * 0.85 */
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(4.25px); /* 5px * 0.85 */
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem; /* 1rem * 0.85 */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6375rem; /* 0.75rem * 0.85 */
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--primary-gold);
    width: 17px; /* 20px * 0.85 */
}

.footer-bottom {
    border-top: 0.85px solid rgba(255, 255, 255, 0.1); /* 1px * 0.85 */
    padding-top: 1.7rem; /* 2rem * 0.85 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem; /* 1rem * 0.85 */
}

.footer-copyright p {
    font-family: var(--tg-body-font-family);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.7rem; /* 2rem * 0.85 */
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: var(--tg-body-font-family);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design - Updated for 100% width */
@media (max-width: 1024px) {
    .container,
    .nav-container,
    .hero-container,
    .banner-container,
    .why-choose-content,
    .about-content {
        max-width: 100%;
        padding: 0 1.275rem; /* 1.5rem * 0.85 */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.55rem; /* 3rem * 0.85 */
    }

    .hero-title {
        font-size: 2.38rem; /* 2.8rem * 0.85 */
    }

    .banner-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-choose-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.55rem; /* 3rem * 0.85 */
    }

    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); /* 280px * 0.85 */
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-title {
        font-size: 1.87rem; /* 2.2rem * 0.85 */
    }

    .section-title {
        font-size: 1.7rem; /* 2rem * 0.85 */
    }

    .cta-title {
        font-size: 1.87rem; /* 2.2rem * 0.85 */
    }

    .categories-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem; /* 1rem * 0.85 */
    }

    .category-item {
        width: 127.5px; /* 150px * 0.85 */
        height: 127.5px; /* 150px * 0.85 */
        padding: 1.275rem; /* 1.5rem * 0.85 */
    }

    .course-tabs {
        flex-direction: column;
        align-items: center;
    }

    .course-tab {
        width: 100%;
        max-width: 255px; /* 300px * 0.85 */
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .video-container {
        width: 255px; /* 300px * 0.85 */
        height: 255px; /* 300px * 0.85 */
    }

    .hero-buttons {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 0.85rem; /* 1rem * 0.85 */
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container,
    .hero-container,
    .banner-container,
    .why-choose-content,
    .about-content {
        padding: 0 0.85rem; /* 1rem * 0.85 */
    }

    .hero-title {
        font-size: 1.53rem; /* 1.8rem * 0.85 */
    }

    .section-title {
        font-size: 1.36rem; /* 1.6rem * 0.85 */
    }

    .cta-title {
        font-size: 1.53rem; /* 1.8rem * 0.85 */
    }

    .hero-description {
        font-size: 0.85rem; /* 1rem * 0.85 */
    }

    .hero-features {
        gap: 0.6375rem; /* 0.75rem * 0.85 */
    }

    .feature-item {
        font-size: 0.765rem; /* 0.9rem * 0.85 */
    }

    .hero-buttons {
        flex-direction: column;
    }

    .enroll-btn-hero,
    .brochure-btn-hero {
        padding: 0.74375rem 1.275rem; /* 0.875rem 1.5rem * 0.85 */
        font-size: 0.765rem; /* 0.9rem * 0.85 */
        justify-content: center;
    }

    .video-container {
        width: 212.5px; /* 250px * 0.85 */
        height: 212.5px; /* 250px * 0.85 */
    }

    .play-button {
        width: 51px; /* 60px * 0.85 */
        height: 51px; /* 60px * 0.85 */
    }

    .play-button i {
        font-size: 1.275rem; /* 1.5rem * 0.85 */
    }

    .video-badge {
        font-size: 0.68rem; /* 0.8rem * 0.85 */
        padding: 0.425rem 0.85rem; /* 0.5rem 1rem * 0.85 */
    }

    .student-avatars img {
        width: 34px; /* 40px * 0.85 */
        height: 34px; /* 40px * 0.85 */
    }

    .categories-slider {
        flex-direction: column;
        align-items: center;
    }

    .category-item {
        width: 102px; /* 120px * 0.85 */
        height: 102px; /* 120px * 0.85 */
        padding: 0.85rem; /* 1rem * 0.85 */
    }

    .category-item h3 {
        font-size: 0.68rem; /* 0.8rem * 0.85 */
    }

    .category-icon {
        width: 34px; /* 40px * 0.85 */
        height: 34px; /* 40px * 0.85 */
        margin-bottom: 0.425rem; /* 0.5rem * 0.85 */
    }

    .category-icon i {
        font-size: 1.02rem; /* 1.2rem * 0.85 */
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card {
        margin: 0 auto;
        max-width: 272px; /* 320px * 0.85 */
    }

    .course-image {
        height: 153px; /* 180px * 0.85 */
    }

    .course-content-inner {
        padding: 1.0625rem; /* 1.25rem * 0.85 */
    }

    .course-content-inner h3 {
        font-size: 0.935rem; /* 1.1rem * 0.85 */
    }

    .enroll-btn {
        padding: 0.53125rem 1.0625rem; /* 0.625rem 1.25rem * 0.85 */
        font-size: 0.765rem; /* 0.9rem * 0.85 */
    }

    .about-main-image {
        height: 255px; /* 300px * 0.85 */
    }

    .about-stats-card {
        bottom: 8.5px; /* 10px * 0.85 */
        right: 8.5px; /* 10px * 0.85 */
        padding: 0.85rem; /* 1rem * 0.85 */
    }

    .banner-image img {
        width: 127.5px; /* 150px * 0.85 */
        height: 127.5px; /* 150px * 0.85 */
    }

    .banner-content h2 {
        font-size: 1.36rem; /* 1.6rem * 0.85 */
        margin-bottom: 1.275rem; /* 1.5rem * 0.85 */
    }

    .email-input,
    .subscribe-btn {
        padding: 0.74375rem; /* 0.875rem * 0.85 */
        font-size: 0.765rem; /* 0.9rem * 0.85 */
    }

    .testimonial-card {
        padding: 1.275rem; /* 1.5rem * 0.85 */
    }

    .testimonial-image {
        width: 34px; /* 40px * 0.85 */
        height: 34px; /* 40px * 0.85 */
    }

    .testimonial-info h4 {
        font-size: 0.85rem; /* 1rem * 0.85 */
    }

    .testimonial-info p {
        font-size: 0.68rem; /* 0.8rem * 0.85 */
    }

    .circle-container {
        width: 170px; /* 200px * 0.85 */
        height: 170px; /* 200px * 0.85 */
    }

    .center-image {
        width: 85px; /* 100px * 0.85 */
        height: 85px; /* 100px * 0.85 */
    }

    .circular-text-svg text {
        font-size: 6.8px; /* 8px * 0.85 */
        letter-spacing: 0.85px; /* 1px * 0.85 */
    }

    .features-list .feature-item {
        font-size: 0.765rem; /* 0.9rem * 0.85 */
        gap: 0.6375rem; /* 0.75rem * 0.85 */
    }

    .logo-text {
        font-size: 0.935rem; /* 1.1rem * 0.85 */
    }

    .nav-link {
        font-size: 0.765rem; /* 0.9rem * 0.85 */
    }

    .cta-btn {
        padding: 0.53125rem 1.0625rem; /* 0.625rem 1.25rem * 0.85 */
        font-size: 0.765rem; /* 0.9rem * 0.85 */
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.74375rem 1.275rem; /* 0.875rem 1.5rem * 0.85 */
        font-size: 0.765rem; /* 0.9rem * 0.85 */
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.7rem; /* 2rem * 0.85 */
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.hidden { display: none !important; }
.visible { display: block !important; }

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(17px); } /* 20px * 0.85 */
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6.8px; /* 8px * 0.85 */
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 3.4px; /* 4px * 0.85 */
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-dark);
}

/* Selection Styles */
::selection {
    background: var(--primary-gold);
    color: white;
}

::-moz-selection {
    background: var(--primary-gold);
    color: white;
}

/* Focus Styles */
*:focus {
    outline: 1.7px solid var(--primary-gold); /* 2px * 0.85 */
    outline-offset: 1.7px; /* 2px * 0.85 */
    border-radius: 3.4px; /* 4px * 0.85 */
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu,
    .hero-video,
    .video-overlay {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero,
    .newsletter-banner,
    .cta-section {
        background: white !important;
        color: black !important;
    }
}