/*
Theme Name: AkshatVastu
Description: A professional Vastu consultancy website theme
Version: 1.0
Author: AkshatVastu Team
*/

/* 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: #003366;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1rem, 2vw, 1.25rem); }
h6 { font-size: clamp(0.9rem, 1.8vw, 1rem); }

p {
    margin-bottom: 1rem;
    color: #003366;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(199, 154, 88, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(199, 154, 88, 0.1);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(199, 154, 88, 0.15);
    border-bottom: 1px solid rgba(199, 154, 88, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Site Logo */
.site-logo {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #003366;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    height: 100%;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-logo .logo-image {
    height: 60px !important;
    width: auto !important;
    max-width: 120px !important;
    margin-right: 12px;
    object-fit: contain;
    display: block;
}

/* Additional logo size enforcement */
.site-logo img {
    height: 60px !important;
    width: auto !important;
    max-width: 120px !important;
}

.site-logo span {
    font-weight: 700;
    color: #C79A58;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-weight: 500;
    color: #003366;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
    position: relative;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.main-navigation a:hover {
    color: #C79A58;
    background: rgba(199, 154, 88, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C79A58, #FFEDBD);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.main-navigation a:hover::after {
    width: 60%;
}

/* Header CTA */
.header-cta {
    margin-left: 1rem;
}

.header-cta .btn {
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    color: #003366;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 154, 88, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header-cta .btn:hover {
    background: linear-gradient(135deg, #B88A48, #E6D4A8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 154, 88, 0.4);
    color: #003366;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    width: 0 !important;
    height: 0 !important;
    position: relative;
    align-self: center;
    margin: 0;
    overflow: hidden !important;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: #C79A58;
    margin: 0 auto;
    transition: all 0.3s ease;
    border-radius: 1px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle .bar:nth-child(1) {
    top: 8px;
}

.mobile-menu-toggle .bar:nth-child(2) {
    top: 14px;
}

.mobile-menu-toggle .bar:nth-child(3) {
    top: 20px;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    top: 14px;
    transform: translateX(-50%) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scale(0);
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    top: 14px;
    transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 1024px) {
    .main-navigation {
        display: none;
    }
    
    .main-navigation.active {
        display: flex;
    }
}

/* Desktop: Hide hamburger menu completely */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .mobile-menu-toggle .bar {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        width: 30px !important;
        height: 30px !important;
        overflow: visible !important;
    }
    
    .mobile-menu-toggle .bar {
        display: block !important;
    }
    
    .main-navigation {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(20px);
        z-index: 999;
    }
    
    .main-navigation.active {
        left: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 2rem 0;
        list-style: none;
        margin: 0;
    }
    
    .main-navigation li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .main-navigation a {
        padding: 1.2rem 2rem;
        display: block;
        text-align: center;
        font-size: 1.1rem;
        color: #2c3e50;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin: 0 1rem;
        border-radius: 8px;
    }
    
    .main-navigation a:hover {
        background: rgba(102, 126, 234, 0.08);
        color: #667eea;
        transform: none;
    }
    
    .main-navigation a::after {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 80px);
}

.hero-content {
    text-align: left;
    color: #003366;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #003366;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #003366;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    color: #003366;
    font-weight: 400;
    line-height: 1.6;
    max-width: 500px;
    opacity: 0.9;
}

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

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #003366;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
}

.hero-feature i {
    color: #C79A58;
    font-size: 1.1rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.9rem, 2.5vw, 1.1rem) clamp(1.8rem, 4vw, 2.2rem);
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: clamp(0.9rem, 2vw, 1rem);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: #C79A58;
    color: #003366;
    box-shadow: 0 4px 15px rgba(199, 154, 88, 0.3);
}

.btn-primary:hover {
    background: #B88A48;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 154, 88, 0.4);
    color: #003366;
}

.btn-secondary {
    background: transparent;
    color: #003366;
    border: 2px solid rgba(0, 51, 102, 0.8);
}

.btn-secondary:hover {
    background: rgba(0, 51, 102, 0.1);
    border-color: #003366;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.hero-image-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    z-index: 3;
}

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

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003366;
    display: block;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: #003366;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* Sections */
.section {
    padding: clamp(3rem, 8vw, 5rem) 0;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #003366;
}

.section-subtitle {
    text-align: center;
    color: #003366;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    background: #fff9e6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: 0 20px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #003366;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #003366;
}

.service-description {
    color: #003366;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0.8;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: #003366;
    position: relative;
    padding-left: 1.8rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0.9;
    line-height: 1.5;
}

.service-list li i {
    position: absolute;
    left: 0;
    color: #C79A58;
    font-size: 0.9rem;
    top: 0.6rem;
}

/* About Section */
.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: 0 20px;
}

.about-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: clamp(250px, 50vw, 400px);
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Courses Section */
.courses-section {
    background: #fff9e6;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: 0 20px;
}

.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.course-image {
    height: clamp(150px, 25vw, 200px);
    background: linear-gradient(135deg, #ffd54f, #ffb74d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.course-content {
    padding: clamp(1.5rem, 4vw, 2rem);
}

.course-title {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.course-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #666;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: 0 20px;
}

.testimonial-card {
    background: #fff9e6;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 12px;
    border-left: 4px solid #e67e22;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.1;
}

.contact-section .section-title {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(3rem, 6vw, 4rem);
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-info {
    text-align: center;
    padding: clamp(2rem, 4vw, 3rem);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
}

.contact-info:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #003366;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.contact-info p {
    color: #003366;
    font-size: clamp(1rem, 2vw, 1.1rem);
    position: relative;
    z-index: 2;
    opacity: 0.8;
}

.contact-form-container {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: clamp(2.5rem, 5vw, 3.5rem);
    border-radius: 25px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    color: #2c3e50;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
}

.form-group {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: clamp(0.95rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: clamp(1rem, 2.5vw, 1.2rem);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: clamp(0.95rem, 2vw, 1rem);
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #f5576c;
    box-shadow: 0 0 0 4px rgba(245, 87, 108, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #C79A58;
    color: #003366;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 154, 88, 0.3);
    width: 100%;
}

.submit-btn:hover {
    background: #B88A48;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 154, 88, 0.4);
    color: #003366;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #003366, #004080);
    color: #FFFFFF;
    padding: 3rem 0 1rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
}

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

.footer-section h3 {
    color: #FFEDBD;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: 2rem;
    }
    
    .services-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}


@media (max-width: 768px) {
    
    /* Hero Section Mobile Styles */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 20px;
        min-height: calc(100vh - 80px);
    }
    
    .hero-content {
        text-align: center;
        order: 2;
        padding-top: 1rem;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .hero-image-container {
        max-width: 100%;
    }
    
    .hero-main-image {
        max-width: 100%;
        height: auto;
    }
    
    .hero-features {
        justify-content: center;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-feature {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .hero-stats {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin-top: 2rem;
        width: 100%;
        justify-content: space-around;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .hero-stat {
        flex: 1;
    }
    
    .hero-stat-number {
        font-size: 1.2rem;
    }
    
    .hero-stat-label {
        font-size: 0.7rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        margin: 0 20px;
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 1rem 15px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        max-width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .hero-stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .hero-stat:last-child {
        border-bottom: none;
    }
    
    .hero-stat-number {
        font-size: 1.1rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .service-card,
    .course-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0 15px;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .course-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

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

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

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading */
/* Optimized loading screen - faster fade out */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2c692, #e2c692);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-content {
    text-align: center;
    color:#e2c692;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(44, 62, 80, 0.3);
    border-top: 3px solid #2c3e50;
    border-radius: 50%;
	background: linear-gradient(135deg, #e2c692, #e2c692);
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

/* ========================================
   NEW PAGE STYLES - COMPLETE REDESIGN
   ======================================== */

/* Page Hero Sections - Fixed Navbar Overlap & Better Readability */
.page-hero-section {
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.1;
}

.page-hero-content {
    max-width: 800px;
    text-align: center;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #003366;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #003366;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page - Modern Design */
.about-page-section {
    background: linear-gradient(135deg, #FFEDBD, #FFFFFF);
    padding: 120px 0;
    position: relative;
}

.about-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-page-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: #003366;
}

.about-page-text h3 {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #003366;
}

.about-page-text p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #003366;
    opacity: 0.9;
}

.about-page-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.about-page-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

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

/* Team Section - Modern Cards */
.team-section {
    background: linear-gradient(135deg, #FFEDBD, #FFFFFF);
    padding: 120px 0;
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(199, 154, 88, 0.2);
}

.team-member-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.team-member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 154, 88, 0.1), rgba(255, 237, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-member:hover .team-member-image::before {
    opacity: 1;
}

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

.team-member:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-info {
    padding: 2rem;
}

.team-member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #003366;
}

.team-member-title {
    display: inline-block;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    color: #003366;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #003366;
    opacity: 0.8;
}

/* Values Section - Modern Cards */
.values-section {
    background: #FFFFFF;
    padding: 120px 0;
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-card {
    background: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(199, 154, 88, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #003366;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #003366;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #003366;
    opacity: 0.8;
}

/* Process Section - Modern Steps */
.process-section {
    background: linear-gradient(135deg, #FFEDBD, #FFFFFF);
    padding: 120px 0;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.process-step {
    background: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(199, 154, 88, 0.2);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #003366;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1) rotate(5deg);
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #003366;
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #003366;
    opacity: 0.8;
}

/* FAQ Section - Modern Accordion Style */
.faq-section {
    background: #FFFFFF;
    padding: 120px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    gap: 2rem;
}

.faq-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(199, 154, 88, 0.2);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #003366;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #003366;
    opacity: 0.8;
}

/* Map Section - Real Google Maps */
.map-section {
    background: linear-gradient(135deg, #FFEDBD, #FFFFFF);
    padding: 120px 0;
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
}

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

.google-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.google-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    text-align: center;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-info h3 {
    color: #003366;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.map-info p {
    color: #003366;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.map-info .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    color: #003366;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 154, 88, 0.3);
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.map-info .btn:hover {
    background: linear-gradient(135deg, #B88A48, #E6D4A8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 154, 88, 0.4);
    color: #003366;
    text-decoration: none;
}

/* Contact Form - Modern Design */
.contact-form-section {
    background: #FFFFFF;
    padding: 120px 0;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-form {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #003366;
    text-align: center;
}

/* CTA Section - Modern Design */
.cta-section {
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #003366;
    line-height: 1.2;
}

.cta-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #003366;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Responsive Design - Modern Breakpoints */
@media (max-width: 1024px) {
    .page-hero-section {
        min-height: 80vh;
        padding-top: 80px;
    }
    
    .about-page-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 20px;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 20px;
    }
    
    .team-grid,
    .values-grid,
    .process-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 2rem;
    }
    
    .about-page-section,
    .team-section,
    .values-section,
    .process-section,
    .faq-section,
    .map-section,
    .contact-form-section,
    .cta-section,
    .founder-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .page-hero-section {
        min-height: 70vh;
        padding-top: 80px;
    }
    
    .page-hero-content {
        padding: 0 20px;
    }
    
    .about-page-content {
        padding: 0 15px;
    }
    
    .founder-content {
        padding: 0 15px;
    }
    
    .team-grid,
    .values-grid,
    .process-grid,
    .faq-grid {
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 3rem 2rem;
    }
    
    .map-info {
        padding: 2rem 1.5rem;
    }
    
    .about-page-section,
    .team-section,
    .values-section,
    .process-section,
    .faq-section,
    .map-section,
    .contact-form-section,
    .cta-section,
    .founder-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-hero-section {
        min-height: 60vh;
        padding-top: 80px;
    }
    
    .page-hero-content,
    .about-page-content,
    .founder-content,
    .team-grid,
    .values-grid,
    .process-grid,
    .faq-grid,
    .map-container,
    .contact-form-container,
    .cta-content {
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .map-info {
        padding: 2rem 1.5rem;
    }
    
    .team-member-info,
    .value-card,
    .process-step,
    .faq-item {
        padding: 2rem 1.5rem;
    }
    
    .about-page-section,
    .team-section,
    .values-section,
    .process-section,
    .faq-section,
    .map-section,
    .contact-form-section,
    .cta-section,
    .founder-section {
        padding: 40px 0;
    }
} 

/* ========================================
   ADDITIONAL PAGE STYLES - NEW CLASSES
   ======================================== */

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #003366;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #003366;
}

.service-description {
    color: #003366;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    opacity: 0.8;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding:  30px;
}

.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
	
}

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

.course-image {
    height: clamp(150px, 25vw, 200px);
    background: linear-gradient(135deg, #ffd54f, #ffb74d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.course-content {
    padding: clamp(1.5rem, 4vw, 2rem);
}

.course-title {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.course-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    color: #666;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}

.testimonial-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff9800, #ffc107);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.testimonial-author p {
    color: #ff9800;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Form Styles */
.consultation-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

/* Google Calendar Style Date Input */
.form-group input[type="date"] {
    position: relative;
    background: #ffffff !important;
    border: 1px solid #dadce0 !important;
    border-radius: 4px !important;
    padding: 0.75rem 1rem !important;
    padding-right: 2.5rem !important;
    font-size: 0.9375rem !important;
    font-family: 'Inter', 'Google Sans', 'Roboto', Arial, sans-serif !important;
    color: #202124 !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.08) !important;
    width: 100% !important;
}

.form-group input[type="date"]:hover {
    border-color: #80868b !important;
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.12) !important;
}

.form-group input[type="date"]:focus {
    border-color: #4285f4 !important;
    box-shadow: 0 2px 5px 0 rgba(66, 133, 244, 0.15) !important;
    outline: none !important;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer !important;
    background: transparent !important;
    padding: 0.25rem !important;
    margin-left: 0.5rem !important;
    opacity: 0.6 !important;
    transition: opacity 0.2s ease !important;
    filter: invert(0.4) !important;
    width: 20px !important;
    height: 20px !important;
}

.form-group input[type="date"]:hover::-webkit-calendar-picker-indicator {
    opacity: 1 !important;
}

.form-group input[type="date"]:focus::-webkit-calendar-picker-indicator {
    opacity: 1 !important;
    filter: invert(0.4) sepia(1) saturate(5) hue-rotate(190deg) !important;
}

/* Firefox date input styling */
@-moz-document url-prefix() {
    .form-group input[type="date"] {
        padding-right: 1rem !important;
    }
}

/* Calendar Widget Styles */
.calendar-widget {
    background: white;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.calendar-nav-btn {
    background: #f5f5f5;
    border: 1px solid #dadce0;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #5f6368;
}

.calendar-nav-btn:hover {
    background: #e8f0fe;
    border-color: #4285f4;
    color: #4285f4;
}

.calendar-month-year {
    font-size: 1rem;
    font-weight: 600;
    color: #202124;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 0.5rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5f6368;
    padding: 0.5rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #202124;
    background: #f8f9fa;
}

.calendar-day.empty {
    background: transparent;
    cursor: default;
}

.calendar-day.past {
    color: #bdc1c6;
    background: #f5f5f5;
    cursor: not-allowed;
}

.calendar-day.booked {
    color: #ea4335;
    background: #fce8e6;
    cursor: not-allowed;
    position: relative;
}

.calendar-day.booked::after {
    content: '✕';
    position: absolute;
    font-size: 0.7rem;
    opacity: 0.7;
}

.calendar-day.available {
    background: #e8f5e9;
    color: #2e7d32;
}

.calendar-day.available:hover {
    background: #c8e6c9;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: #4285f4;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.4);
}

/* Time Slots Styles */
.time-slots-container {
    margin-top: 0.5rem;
    min-height: 200px;
}

.time-slots-message {
    text-align: center;
    color: #5f6368;
    padding: 2rem;
    font-size: 0.9rem;
}

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

.time-slot-btn {
    padding: 0.75rem 1rem;
    border: 2px solid #dadce0;
    border-radius: 8px;
    background: white;
    color: #202124;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.time-slot-btn:hover:not(.disabled) {
    border-color: #4285f4;
    background: #e8f0fe;
    color: #4285f4;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

.time-slot-btn.active {
    background: #4285f4;
    border-color: #4285f4;
    color: white;
    box-shadow: 0 2px 12px rgba(66, 133, 244, 0.4);
}

.time-slot-btn.disabled {
    background: #f5f5f5;
    color: #bdc1c6;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: line-through;
}

/* Calendar and Time Row Layout */
.calendar-time-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.calendar-group,
.time-slots-group {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .calendar-time-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Responsive adjustments for new grids */
@media (max-width: 1024px) {
    .services-grid,
    .courses-grid,
    .contact-info-grid,
    .why-choose-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .courses-grid,
    .contact-info-grid,
    .why-choose-grid,
    .testimonials-grid {
        padding: 0 15px;
    }
    
    .service-card,
    .course-card,
    .contact-info-card,
    .why-choose-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-card,
    .course-card,
    .contact-info-card,
    .why-choose-card,
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon,
    .course-icon,
    .why-choose-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
} 

/* Founder Section - Modern Design */
.founder-section {
    background: #FFFFFF;
    padding: 120px 0;
    position: relative;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
}

.founder-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.founder-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.founder-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

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

.founder-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #003366;
}

.founder-info h3 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: #C79A58;
}

.founder-title {
    display: inline-block;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    color: #003366;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #003366;
    opacity: 0.9;
}

.founder-expertise,
.founder-credentials {
    margin-bottom: 2rem;
}

.founder-expertise h4,
.founder-credentials h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #003366;
}

.founder-expertise ul,
.founder-credentials ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.founder-expertise li,
.founder-credentials li {
    padding: 0.5rem 0;
    color: #003366;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.founder-expertise li::before,
.founder-credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C79A58;
    font-weight: bold;
}

/* Additional logo size enforcement */
.site-logo img {
    height: 35px !important;
    width: auto !important;
    max-width: 120px !important;
}

/* Why Choose Section - Services & Courses */
.why-choose-section {
    background: #FFFFFF;
    padding: 120px 0;
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
}

.why-choose-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.why-choose-card {
    background: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(199, 154, 88, 0.2);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #003366;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #003366;
}

.why-choose-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #003366;
    opacity: 0.8;
}

/* Course Cards - Enhanced */
.course-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(199, 154, 88, 0.2);
}

.course-image {
    height: 200px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003366;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.course-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 154, 88, 0.1), rgba(255, 237, 189, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card:hover .course-image::before {
    opacity: 1;
}

.course-content {
    padding: 2rem;
}

.course-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #003366;
}

.course-description {
    color: #003366;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0.8;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.course-features li {
    padding: 0.5rem 0;
    color: #003366;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C79A58;
    font-weight: bold;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #003366;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Contact Info Grid - Enhanced */
.contact-info-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info-card {
    background: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(199, 154, 88, 0.2);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C79A58, #FFEDBD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #003366;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #003366;
}

.contact-info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #003366;
    opacity: 0.8;
}

/* Fade In Up Animation */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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