 :root {
            --primary-color: #5d4037;
            --accent-color: #3D2B1F;
            --brandblue-color: #096c6c;
            --brandorng-color: #be5103;
            --light-color: #f5f5f5;
            --dark-color: #333;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background-color: var(--light-color);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
                
        /* Tab System */
        .tab-container {
            margin-top: 100px;
            padding: 20px 0;
        }
        
        .tabs {
            display: flex;
            background-color: white;
            border-radius: 8px 8px 0 0;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .tab-button {
            flex: 1;
            padding: 15px;
            background-color: white;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            color: var(--dark-color);
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }
        
        .tab-button:hover {
            background-color: rgba(93, 64, 55, 0.05);
        }
        
        .tab-button.active {
            color: var(--primary-color);
            border-bottom: 3px solid var(--primary-color);
        }
        
        .tab-content {
            display: none;
            padding: 30px;
            background-color: white;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* Hero Section */
        /* Hero Carousel Styles */
.hero {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed; /* This creates the parallax effect */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Overlay Text Styling */
.hero-overlay-text {
    position: absolute;
    top: 10%;
    left: 10%;
    transform: translateX(-50%);
    text-align: left;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-slide.active .hero-overlay-text {
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-slide:not(.active) .hero-overlay-text {
    opacity: 0;
}

.overlay-line1, .overlay-line2 {
    display: block;
    color: white;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.overlay-line1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation-delay: 0.7s;
}

.overlay-line2 {
    font-size: 1.8rem;
    opacity: 0.9;
    animation-delay: 1s;
}

/* Hero Content (main text and button) */
.hero-content {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-content .btn {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-content .btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Dot Navigation */
.hero-dots {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.dot.active {
    background-color: white;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .overlay-line1 {
        font-size: 2rem;
    }
    
    .overlay-line2 {
        font-size: 1.2rem;
    }
    
    .dot {
        height: 12px;
        width: 12px;
    }
}        
        /* About Section */
        .about {
            padding: 80px 0;
            text-align: center;
        }
        
        .about h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        
        .about-card {
            flex: 1;
            min-width: 300px;
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: var(--transition);
        }
        
        .about-card:hover {
            transform: translateY(-10px);
        }
        
        .about-card img {
            width: 240px;
            height: 240px;
            margin-bottom: 20px;
        }
        
        .about-card h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Classes Section */
        .classes {
            padding: 80px 0;
            background-color: rgba(93, 64, 55, 0.05);
        }
        
        .classes h2 {
            font-size: 36px;
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        
        .class-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .class-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: var(--transition);
        }
        
        .class-card:hover {
            transform: translateY(-5px);
        }
        
        .class-image {
            height: 330px;
            background-size: cover;
            background-position: center;
        }
        
        .class-details {
            padding: 20px;
        }
        
        .class-details h3 {
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .class-details p {
            margin-bottom: 15px;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
        }
        
        .contact h2 {
            font-size: 36px;
            text-align: center;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-info h3 {
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 16px;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
                
        /* Responsive Styles */
        @media (max-width: 768px) {
            .menu-icon {
                display: block;
            }
            
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--light-color);
                transition: var(--transition);
                z-index: 99;
            }
            
            .main-nav.active {
                left: 0;
            }
            
            .main-nav ul {
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
            }
            
            .main-nav li {
                margin: 10px 0;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .tabs {
                flex-direction: column;
            }
            
            .tab-button {
                border-bottom: none;
                border-left: 3px solid transparent;
            }
            
            .tab-button.active {
                border-bottom: none;
                border-left: 3px solid var(--primary-color);
            }
        }
