/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #ff6b35;
}

h2 {
    font-size: 2rem;
    color: #2c3e50;
}

h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #ff6b35;
    transition: color 0.3s ease;
}

a:hover {
    color: #e55a2b;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background-color: #e55a2b;
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background-color: #ff6b35;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #ff6b35;
    border: 1px solid #ff6b35;
}

.btn-outline:hover {
    background-color: #ff6b35;
    color: white;
}

/* Results Overview Section */
.results-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.results-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 50%, #ff6b35 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42, #ff6b35);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    color: #ff6b35;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-number::after {
    opacity: 1;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.stat-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Icon for each stat card */
.stat-card {
    position: relative;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.stat-card:hover::before {
    opacity: 0.2;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .results-overview {
        padding: 60px 0;
    }
    
    .overview-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 99998; /* High z-index for header */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative; /* Important for mobile nav positioning */
}

.logo h1 {
    margin-bottom: 0.25rem;
    font-size: 1.8rem;
}

.logo .tagline {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Navigation */
.nav {
    position: relative;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Navigation - Direct Approach */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .nav {
        position: relative;
        z-index: 999999 !important; /* Extremely high z-index */
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        background: #ff6b35 !important;
        border: none !important;
        border-radius: 4px;
        cursor: pointer;
        padding: 10px !important;
        z-index: 999999 !important; /* Extremely high z-index */
        position: relative !important;
    }
    
    .nav-toggle span {
        width: 25px !important;
        height: 3px !important;
        background-color: white !important;
        margin: 3px 0 !important;
        transition: all 0.3s ease;
    }
    
    .nav-list {
        display: none !important;
        position: fixed !important; /* Changed to fixed positioning */
        top: 60px !important; /* Fixed position from top */
        right: 0 !important;
        left: 0 !important; /* Full width */
        background: white !important;
        flex-direction: column !important;
        padding: 1rem !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
        border: 2px solid #ff6b35 !important;
        border-radius: 0 0 8px 8px !important;
        margin-top: 0 !important;
        z-index: 999999 !important; /* Extremely high z-index */
        min-height: 200px !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
        width: 100vw !important; /* Full viewport width */
    }
    
    .nav-list.active {
        display: flex !important;
    }
    
    .nav-list li {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    .nav-link {
        display: block !important;
        padding: 15px 25px !important;
        text-align: left !important;
        border-bottom: 1px solid #eee !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        color: #333 !important;
        font-weight: 600 !important;
        font-size: 16px !important;
        background: white !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: white !important;
        background-color: #ff6b35 !important;
    }
    
    .nav-link:last-child {
        border-bottom: none !important;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa500 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Page Hero Section - Reduced Height */
.page-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa500 100%);
    padding: 2.5rem 0; /* Reduced from default */
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffffff" opacity="0.03"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></svg>');
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffffff" opacity="0.03"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-text h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-feature svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.hero-pricing {
    margin-bottom: 2.5rem;
}

.price-text {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.price-period {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.btn-hero {
    background-color: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Coaching Focus Section */
.coaching-focus {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.focus-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.focus-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.focus-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 500;
}

.focus-batches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.batch-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 50%, #fff7ed 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.batch-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 50%, #ff8c42 100%);
    border-radius: 15px 15px 0 0;
}

.batch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.batch-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.batch-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.batch-item h3 {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 600;
}

.batch-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.core-subjects {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.core-subjects h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* New Contact Page Styles */
.contact-main-new {
    padding: 4rem 0 0.25rem 0; /* Further reduced bottom padding to 0.25rem */
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0;
    font-weight: 700;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.info-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.info-content h3 {
    font-size: 1.1rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-content p {
    color: #333;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.info-content small {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 400;
}

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

.form-section p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.map-info p {
    margin-bottom: 0.5rem;
}

.map-info p:last-child {
    margin-bottom: 1rem;
}

.info-content a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.map-section h3,
.form-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.map-container-new {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-embed {
    width: 100%;
    height: 300px;
    border: none;
}

.map-info {
    padding: 1.5rem;
    background: transparent;
    color: #2c3e50;
    text-align: left;
}

.co.logo {
    flex: 1;
    text-align: left;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo-link:hover {
    opacity: 0.8;
}

.map-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.map-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.form-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-new label {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fafafa;
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background-color: white;
}

.btn-full {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 0.625rem; /* Reduced from 1.25rem to 0.625rem (10px) */
    font-size: 2.5rem;
    color: #2c3e50;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: -2rem;
}

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

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 50%, #fff7ed 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(251, 146, 60, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fb923c 0%, #f97316 50%, #ff8c42 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(251, 146, 60, 0.2);
    border-color: rgba(251, 146, 60, 0.3);
}

.feature-icon {
    color: #fb923c;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.4rem;
    transition: color 0.4s ease;
}

.feature-card:hover h3 {
    color: #fb923c;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    transition: color 0.4s ease;
}

.feature-card:hover p {
    color: #475569;
}

/* Courses Section */
.courses-section {
    padding: 2rem 0;
}

/* Courses Preview */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.course-image-wrapper {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.course-content {
    padding: 1.5rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.course-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.btn-course {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-course:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-decoration: none;
}

/* Color Variations for Course Cards */
.course-yellow {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
}

.course-yellow .course-image {
    background: linear-gradient(135deg, #ffc107 0%, #ffdb4d 100%);
}

.course-orange {
    background: linear-gradient(135deg, #ffe5d9 0%, #ffd4b3 100%);
}

.course-orange .course-image {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.course-green {
    background: linear-gradient(135deg, #d4edda 0%, #b8e6c1 100%);
}

.course-green .course-image {
    background: linear-gradient(135deg, #66c266 0%, #52c152 100%);
}

.course-blue {
    background: linear-gradient(135deg, #d1ecf1 0%, #b3d9e6 100%);
}

.course-blue .course-image {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.course-purple {
    background: linear-gradient(135deg, #e7d4e8 0%, #d1a3e6 100%);
}

.course-purple .course-image {
    background: linear-gradient(135deg, #6f42c1 0%, #5a359a 100%);
}

/* Extensible Color System for Future Courses */
.course-red {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
}

.course-red .course-image {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.course-teal {
    background: linear-gradient(135deg, #d1ecf1 0%, #a2d9ce 100%);
}

.course-teal .course-image {
    background: linear-gradient(135deg, #20c997 0%, #198754 100%);
}

.course-pink {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
}

.course-pink .course-image {
    background: linear-gradient(135deg, #e83e8c 0%, #d63384 100%);
}

.course-indigo {
    background: linear-gradient(135deg, #e7d4e8 0%, #d1a3e6 100%);
}

.course-indigo .course-image {
    background: linear-gradient(135deg, #6610f2 0%, #520dc2 100%);
}

/* Top Achievers - New Design */
.top-achievers {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

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

.achiever-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.achiever-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.achiever-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.rank-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    z-index: 1;
}

.achiever-info {
    padding: 1.5rem;
    text-align: center;
}

.achiever-info h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.achievement {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Top Achievers */
@media (max-width: 768px) {
    .achievers-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .achiever-image {
        height: 200px;
    }
    
    .achiever-info {
        padding: 1rem;
    }
    
    .achiever-info h3 {
        font-size: 1.1rem;
    }
    
    .achievement {
        font-size: 0.9rem;
    }
    
    .rank-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Testimonials - Enhanced Design */
.testimonials {
    padding: 2rem 0; /* Increased from 0.25rem to 2rem for proper spacing */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 0.5rem; /* Reduced from 2rem to 0.5rem (8px) for less gap */
    border-radius: 15px; /* Added rounded corners to match stats section */
}

.testimonials-carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 -1rem;
}

.testimonials-carousel {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1rem;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    min-width: fit-content;
    transition: transform 0.5s ease-in-out; /* Smooth auto-scroll transition */
    padding: 1rem 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    min-width: 380px;
    max-width: 380px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    gap: 1rem;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

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

.student-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
}

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

.student-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: white;
}

.achievement-badge {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
}

.testimonial-content {
    padding: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

.testimonial-content p {
    margin: 0;
    position: relative;
    z-index: 1;
}

.quote-icon {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    opacity: 0.3;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.testimonial-arrow:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.testimonial-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.testimonial-arrow:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.testimonial-arrow-left {
    left: 1rem;
}

.testimonial-arrow-right {
    right: 1rem;
}

/* Subject-wise Performance - Enhanced Design */
.subject-performance {
    padding: 0.125rem 0; /* Further reduced from 0.625rem to 0.125rem (2px) */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.subject-carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 -1rem;
}

.subject-carousel {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1rem;
}

.subject-carousel::-webkit-scrollbar {
    display: none;
}

.subject-grid {
    display: flex;
    gap: 2rem;
    min-width: fit-content;
    padding: 1rem 0;
}

.subject-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
    min-width: 350px;
    max-width: 350px;
}

.subject-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.subject-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    gap: 1rem;
    position: relative;
}

.subject-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.subject-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.subject-badge {
    background: rgba(255,255,255,0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.performance-metrics {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1rem;
    background: #fafafa;
}

.metric-card {
    flex: 1;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.metric-highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.metric-label {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

.performance-details {
    padding: 1rem 1.5rem 1.5rem;
    background: white;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-size: 0.95rem;
    color: #ff6b35;
    font-weight: 600;
}

/* Subject Arrow Navigation */
.subject-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.subject-arrow:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.subject-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.subject-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.subject-arrow:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.subject-arrow-left {
    left: 1rem;
}

.subject-arrow-right {
    right: 1rem;
}

/* Subject-specific color variations */
.subject-physics .subject-header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.subject-chemistry .subject-header {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.subject-mathematics .subject-header {
    background: linear-gradient(135deg, #2196F3 0%, #42A5F5 100%);
}

.subject-biology .subject-header {
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
}

.subject-physics .metric-highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.subject-chemistry .metric-highlight {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.subject-mathematics .metric-highlight {
    background: linear-gradient(135deg, #2196F3 0%, #42A5F5 100%);
}

.subject-biology .metric-highlight {
    background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
}

.subject-physics .detail-value {
    color: #ff6b35;
}

.subject-chemistry .detail-value {
    color: #4CAF50;
}

.subject-mathematics .detail-value {
    color: #2196F3;
}

.subject-biology .detail-value {
    color: #9C27B0;
}

/* Responsive Subject Performance */
@media (max-width: 768px) {
    .subject-carousel-container {
        margin: 0 -0.5rem;
    }
    
    .subject-carousel {
        padding: 0 0.5rem;
    }
    
    .subject-grid {
        gap: 1.5rem;
    }
    
    .subject-card {
        min-width: 320px;
        max-width: 320px;
    }
    
    .subject-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .subject-icon {
        width: 40px;
        height: 40px;
    }
    
    .subject-header h3 {
        font-size: 1.1rem;
    }
    
    .subject-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .performance-metrics {
        padding: 1rem 1rem 0.75rem;
        gap: 0.75rem;
    }
    
    .metric-card {
        padding: 0.75rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .performance-details {
        padding: 0.75rem 1rem 1rem;
    }
    
    .detail-item {
        padding: 0.5rem 0;
    }
    
    .detail-label {
        font-size: 0.8rem;
    }
    
    .detail-value {
        font-size: 0.85rem;
    }
    
    .subject-arrow {
        width: 40px;
        height: 40px;
    }
    
    .subject-arrow-left {
        left: 0.5rem;
    }
    
    .subject-arrow-right {
        right: 0.5rem;
    }
}
@media (max-width: 768px) {
    .testimonials-carousel-container {
        margin: 0 -0.5rem;
    }
    
    .testimonials-carousel {
        padding: 0 0.5rem;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
    }
    
    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
    }
    
    .testimonial-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .student-image {
        width: 50px;
        height: 50px;
    }
    
    .student-info h4 {
        font-size: 1rem;
    }
    
    .achievement-badge {
        font-size: 0.8rem;
    }
    
    .testimonial-content {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .quote-icon {
        width: 25px;
        height: 25px;
        bottom: 0.75rem;
        right: 0.75rem;
    }
    
    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-arrow-left {
        left: 0.5rem;
    }
    
    .testimonial-arrow-right {
        right: 0.5rem;
    }
}

/* Courses Carousel */
.courses-preview {
    padding: 2rem 0;
    margin-top: -2rem;
}

.courses-carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 -1rem;
}

.courses-carousel {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1rem;
}

.courses-carousel::-webkit-scrollbar {
    display: none;
}

.courses-carousel .courses-grid {
    display: flex;
    gap: 2rem;
    min-width: fit-content;
    padding: 1rem 0;
}

.courses-carousel .course-card {
    min-width: 320px;
    max-width: 320px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.carousel-arrow:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.carousel-arrow-left {
    left: 1rem;
}

.carousel-arrow-right {
    right: 1rem;
}

/* Responsive Course Cards */
@media (max-width: 768px) {
    .courses-carousel-container {
        margin: 0 -0.5rem;
    }
    
    .courses-carousel {
        padding: 0 0.5rem;
    }
    
    .courses-carousel .courses-grid {
        gap: 1rem;
    }
    
    .courses-carousel .course-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow-left {
        left: 0.5rem;
    }
    
    .carousel-arrow-right {
        right: 0.5rem;
    }
    
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .course-card {
        min-height: 280px;
    }
    
    .course-image-wrapper {
        padding: 1.5rem;
    }
    
    .course-image {
        width: 80px;
        height: 80px;
    }
    
    .course-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .course-content h3 {
        font-size: 1.3rem;
    }
    
    .course-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .btn-course {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Stats Section */
.stats {
    color: white;
    padding: 1rem 0; /* Increased from 0.5rem to 1rem for better spacing */
}

.stats .container {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 15px;
    padding: 1.5rem 2rem; /* Reduced vertical padding from 3rem to 1.5rem */
    max-width: 1000px; /* Constrain width to prevent full-width extension */
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem; /* Reverted back to 1.5rem */
    text-align: center;
}

.stat-item {
    padding: 1rem; /* Reverted back to 1rem */
}

.stat-number {
    font-size: 2.5rem; /* Reduced from 3rem to 2.5rem */
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem; /* Reduced from 1.1rem to 1rem */
    opacity: 0.9;
}

/* Quick Links Section */
.quick-links {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.quick-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 50%, #ff6b35 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.link-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.link-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42, #ff6b35);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.link-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.link-card:hover::before {
    opacity: 1;
}

.link-card:hover::after {
    opacity: 1;
}

.link-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.link-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    transition: transform 0.4s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.1);
}

.link-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
    position: relative;
    z-index: 2;
}

.link-card:hover .link-content h3 {
    color: #ff6b35;
}

.link-content p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quick-links {
        padding: 3rem 0;
    }
    
    .links-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .link-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .link-icon {
        width: 50px;
        height: 50px;
    }
    
    .link-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .link-content h3 {
        font-size: 1.1rem;
    }
    
    .link-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .link-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* CTA Section */
.cta {
    background-color: #f8f9fa;
    text-align: center;
    padding: 4rem 0; /* Added more vertical padding */
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mentors Info Section */
.mentors-info {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mentors-info h2 {
    color: #ff6b35;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mentors-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Mentor Cards Grid */
.mentor-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mentor-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

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

.mentor-info {
    padding: 1.5rem;
}

.mentor-info h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mentor-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.mentor-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Student Activities Info Section */
.activities-info {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.activities-info h2 {
    color: #ff6b35;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.activities-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Activity Cards Grid */
.activity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.activity-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

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

.activity-info {
    padding: 1.5rem;
}

.activity-info h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.activity-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.activity-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.map-placeholder {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    text-align: center;
}

.map-icon {
    margin-right: 2rem;
    flex-shrink: 0;
}

.map-info {
    text-align: left;
    flex: 1;
}

.map-info h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-info p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.map-info .btn {
    margin-top: 1rem;
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s ease;
}

.map-info .btn:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

@media (max-width: 768px) {
    .map-placeholder {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .map-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .map-info {
        text-align: center;
    }
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 1.875rem 0 !important; /* 30px padding as requested - force override */
    position: relative;
    overflow: hidden;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-tab {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.gallery-tab:hover {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.gallery-tab.active {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.gallery-content {
    position: relative;
    min-height: 500px;
}

.gallery-tab-content {
    display: none;
}

.gallery-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image-container:hover {
    transform: scale(1.05);
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-image-container:hover .image-overlay {
    opacity: 1;
}

.zoom-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-image-container:hover .zoom-icon {
    opacity: 1;
    transform: scale(1.1);
}

.zoom-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
}

/* Gallery Navigation */
.gallery-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: rgba(255, 107, 53, 1);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 2rem;
}

.gallery-nav.next {
    right: 2rem;
}

.gallery-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-tabs {
        gap: 0.5rem;
    }
    
    .gallery-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image-container {
        height: 200px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-nav.prev {
        left: 1rem;
    }
    
    .gallery-nav.next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-tabs {
        justify-content: space-between;
    }
    
    .gallery-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-width: 100px;
        flex: 1;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-image-container {
        height: 180px;
    }
}

/* Premium FAQ Section */
.faq-section-premium {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0; /* Reduced from 80px 0 to 40px 0 */
    position: relative;
}

.faq-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ff6b35" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.faq-header {
    text-align: center;
    margin-bottom: 20px; /* Reduced from 60px to 20px */
    position: relative;
    z-index: 1;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-category-btn {
    background: white;
    border: 2px solid #e9ecef;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-category-btn:hover {
    border-color: #ff6b35;
    color: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.faq-category-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-color: #ff6b35;
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.faq-items {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.faq-category-content {
    display: none;
    padding: 30px;
}

.faq-category-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.faq-item-premium {
    border-bottom: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

.faq-item-premium:last-child {
    border-bottom: none;
}

.faq-item-premium:hover {
    background: #f8f9fa;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-premium.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item-premium.active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: #6c757d;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.faq-contact {
    text-align: center;
    position: relative;
    z-index: 1;
}

.faq-contact-content {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    color: white;
}

.faq-contact-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.faq-contact-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.faq-contact-content .btn {
    background: white;
    color: #ff6b35;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-contact-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.2);
}

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
    .faq-section-premium {
        padding: 60px 0;
    }
    
    .faq-categories {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .faq-category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq-items {
        margin-bottom: 30px;
    }
    
    .faq-category-content {
        padding: 20px;
    }
    
    .faq-question {
        padding: 20px 0;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-icon {
        width: 25px;
        height: 25px;
    }
    
    .faq-contact-content {
        padding: 30px 20px;
    }
    
    .faq-contact-content h3 {
        font-size: 1.5rem;
    }
    
    .faq-contact-content p {
        font-size: 1rem;
    }
    
    .faq-contact-content .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b8c5d6;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b35;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ff6b35;
    color: white;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #e55a2b;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #b8c5d6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    /* Remove duplicate mobile nav styles - using simplified approach above */
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-features {
        align-items: flex-start;
        text-align: left;
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    .hero-feature {
        font-size: 1rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .btn-hero {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .focus-content h2 {
        font-size: 2rem;
    }
    
    .focus-description {
        font-size: 1rem;
    }
    
    .focus-batches {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .batch-item {
        padding: 1.5rem;
    }
    
    .batch-icon {
        width: 60px;
        height: 60px;
    }
    
    .batch-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .core-subjects {
        padding: 1.5rem 2rem;
    }
    
    .core-subjects h3 {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-main-new {
        padding: 3rem 0 0.1rem 0; /* Minimal bottom padding for mobile only */
    }
    
    .contact-form-new {
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .form-group-new {
        gap: 0.5rem;
        width: 100%;
    }
    
    .form-group-new input,
    .form-group-new select,
    .form-group-new textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border: 2px solid #e9ecef;
        border-radius: 8px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .form-row .form-group-new {
        flex: 1;
        width: 100%;
    }
    
    .btn-primary.btn-full {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-left {
        gap: 1.5rem;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-header-top .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .info-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-right {
        gap: 2rem;
    }
    
    .map-embed {
        height: 250px;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .contact-form-new {
        gap: 1rem;
    }
    
    .form-group-new {
        gap: 0.5rem;
    }
    
    .form-group-new input,
    .form-group-new select,
    .form-group-new textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .btn-full {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .features-grid,
    .courses-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .page-hero {
        padding: 2rem 0; /* Reduced height for tablet */
    }
    
    .page-hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-features {
        max-width: 250px;
    }
    
    .hero-feature {
        font-size: 0.9rem;
    }
    
    .btn-hero {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.whatsapp-button svg {
    color: white;
    width: 28px;
    height: 28px;
}

.whatsapp-button:active {
    transform: scale(0.95);
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        width: 45px;
        height: 45px;
        bottom: 10px;
        left: 10px;
    }
    
    .whatsapp-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Ensure WhatsApp button doesn't interfere with other elements */
.whatsapp-button:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}
