:root {
    --primary-color: #0066FF;
    --secondary-color: hsl(0, 0%, 7%);
    --accent-color: #00E5FF;
    --text-color: #333333;
    --background-color: #FFFFFF;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    transition: var(--transition);
}

.scrolled .logo-text {
    color: var(--secondary-color);
}

.logo-text span {
    color: var(--accent-color);
}

.logo-dot {
    width: 5px;
    height: 5px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-left: 2px;
    animation: pulse 2s infinite;
}

.nav-elements {
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.scrolled .nav-links a {
    color: rgba(17, 17, 17, 0.8);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
    opacity: 0;
}

.nav-links a:hover {
    color: white;
}

.scrolled .nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    opacity: 1;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-contact {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scrolled .nav-contact {
    color: var(--secondary-color);
}

.nav-contact:hover {
    color: var(--accent-color);
}

.contact-btn {
    padding: 0.8rem 1.8rem;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    background-color: white;
    transform: translateY(-2px);
}

.contact-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.scrolled .hamburger {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.hamburger-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background-color: white;
    transition: var(--transition);
    transform-origin: center;
}

.scrolled .hamburger span {
    background-color: var(--secondary-color);
}

.hamburger:hover span:nth-child(2) {
    transform: translateX(4px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Menu */
@media (max-width: 1024px) {
    .nav-elements {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        padding: 120px 2rem 2rem;
        flex-direction: column;
        gap: 2rem;
        opacity: 0;
        transition: all 0.4s ease;
    }

    .nav-elements.active {
        display: flex;
        opacity: 1;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--secondary-color);
    }

    .nav-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .nav-contact {
        color: var(--secondary-color);
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .hamburger {
        display: block;
        z-index: 100;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomBackground 20s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: -1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    color: white;
}

.hero-content {
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 229, 255, 0.2);
    z-index: -1;
}

.hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

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

.primary-btn, .secondary-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.primary-btn {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
}

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

.primary-btn:hover {
    background-color: white;
    transform: translateY(-2px);
}

.secondary-btn:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s forwards 1.5s;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: arrow 1.5s infinite;
    opacity: 0;
}

.arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrows span:nth-child(3) {
    animation-delay: 0.4s;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(0, 0);
    }
}

@keyframes zoomBackground {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-elements {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .logo-image {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

.about-text .phone-number {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

.about-images {
    position: relative;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

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

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

.main-image {
    width: 80%;
    height: 500px;
    position: relative;
    z-index: 2;
}

.secondary-image {
    max-width: 370px;
    height: 370px;
    position: absolute;
    bottom: -50px;
    right: 0;
    z-index: 1;
}

.secondary-image img {
    transition: none;
}

.secondary-image img:hover {
    transform: none;
}

.about-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color) 25%, transparent 25%) -10px 0,
                linear-gradient(225deg, var(--accent-color) 25%, transparent 25%) -10px 0,
                linear-gradient(315deg, var(--accent-color) 25%, transparent 25%),
                linear-gradient(45deg, var(--accent-color) 25%, transparent 25%);
    background-size: 20px 20px;
    background-color: rgba(0, 229, 255, 0.1);
    top: -30px;
    right: -30px;
    border-radius: 30px;
    z-index: 0;
    opacity: 0.3;
}

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

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(0, 229, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--accent-color);
    color: white;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

/* About Section text styles */
.about-text {
    max-width: 800px;
    margin-right: auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.about-text .highlight-paragraph {
    font-size: 1.3rem;
    color: var(--secondary-color);
    line-height: 1.6;
    font-weight: 500;
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
}

.about-text .phone-number {
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.about-text .phone-number:hover {
    transform: translateY(-2px);
}

.about-text .stats-grid {
    margin-top: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Responsive Design for About Section */
@media (max-width: 1200px) {
    .about-content {
        gap: 4rem;
    }
    .scroll-indicator{
        display: none;
    }

    .section-title {
        font-size: 3rem;
    }

    .main-image {
        height: 400px;
    }

    .secondary-image {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-stack {
        max-width: 600px;
        margin: 0 auto;
        position: relative;
        height: 400px;
    }

    .secondary-image {
        width: 200px;
        height: 200px;
        position: absolute;
        bottom: -30px;
        right: 0;
        z-index: 999;
        border-radius: 20px;

    }


}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    .scroll-indicator{
        display: none;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .image-stack {
        height: 350px;
    }

    .secondary-image {
        width: 150px;
        height: 150px;
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 2rem;
    }

    .image-stack {
        height: 300px;
    }

    .secondary-image {
        width: 120px;
        height: 120px;
        bottom: -15px;
        right: 10px;
    }
}

/* Courses Section */
.courses {

    background-color: white;
}

.courses-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.courses-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.header-content {
    max-width: 600px;
}

.courses-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.course-nav-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid #eee;
    background: white;
    border-radius: 50px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-nav-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.course-nav-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.course-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.course-level {
    font-size: 0.9rem;
    font-weight: 500;
}

.course-content {
    padding: 2rem;
}

.course-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.course-tag {
    font-size: 0.85rem;
    color: var(--accent-color);
    background: rgba(0, 229, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 500;
}

.course-duration {
    font-size: 0.85rem;
    color: #666;
    background: #f5f5f5;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 500;
}

.course-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.course-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.feature svg {
    color: var(--accent-color);
}

.course-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.course-btn svg {
    transition: transform 0.3s ease;
}

.course-btn:hover {
    background: var(--secondary-color);
}

.course-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Design for Courses */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .courses-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .courses {
        padding: 80px 0;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .courses-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .course-nav-btn {
        white-space: nowrap;
    }

    .course-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Schedule Section */
.schedule {
    padding-top: 120px;
    background-color: var(--bg-light);
}

.schedule-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.schedule-header {
    text-align: center;
    margin-bottom: 4rem;
}

.schedule-wrapper {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.schedule-nav {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.schedule-nav-btn {
    padding: 1rem 2rem;
    border: none;
    background: none;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.schedule-nav-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.schedule-nav-btn:hover {
    color: var(--accent-color);
}

.schedule-nav-btn.active {
    color: var(--accent-color);
}

.schedule-nav-btn.active::after {
    transform: scaleX(1);
}

.schedule-content {
    padding: 2rem;
}

.schedule-day {
    display: none;
}

.schedule-day.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
}

.time-slot {
    min-width: 100px;
}

.time {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.duration {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.class-info {
    flex: 1;
}

.class-info h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.class-info p {
    color: #666;
    font-size: 0.9rem;
}

.class-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.instructor, .spots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.instructor svg, .spots svg {
    color: var(--accent-color);
}

.book-btn {
    padding: 0.8rem 1.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

/* Responsive Design for Schedule */
@media (max-width: 992px) {
    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }


    .class-meta {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .book-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .schedule {
        padding: 80px 0;
    }

    .schedule-nav {
        padding: 1rem;
    }

    .schedule-nav-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .schedule-content {
        padding: 1rem;
    }

    .time {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .schedule-nav {
        gap: 0.5rem;
    }

    .schedule-nav-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .schedule-item {
        padding: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: white;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

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

.form-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 12px;
    background: white;
    color: var(--secondary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #666;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

.form-group input:focus ~ label,
.form-group select:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    padding: 0 0.5rem;
    color: var(--accent-color);
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Responsive Design for Contact */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }

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

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo .logo {
    font-size: 2rem;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-links-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column ul li {
    margin-bottom: 1rem;
}

.footer-links-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.separator {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design for Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-info {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background-color: #f8f9fa;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.pricing-card.popular {
    border: 2px solid var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.period {
    color: #666;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.pricing-features li svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Design for Pricing */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 80px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: white;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.quote-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
}

.rating {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Responsive Design for Testimonials */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background-color: white;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Design for Portfolio */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 80px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 60px;
    background-color: #fff;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.last-updated {
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.legal-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #666;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 40px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}

/* Accordion Styles */
.accordion-section {
    margin-bottom: 3rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    background: white;
}

.accordion-header {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(0, 229, 255, 0.05);
}

.accordion-header h3 {
    font-size: 1.2rem;
    color: var (--secondary-color);
    margin: 0;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 229, 255, 0.02);
}

.accordion-content-inner {
    padding: 1.5rem;
}

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

.accordion-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.accordion-content ul li {
    margin-bottom: 0.5rem;
}

.accordion-item.active .accordion-header {
    background: rgba(0, 229, 255, 0.05);
}

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

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

/* Course Info Box */
.course-info-box {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 40px;
    padding: 3.5rem;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.15);
    transition: all 0.5s ease;
}

.course-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(20%, -20%);
    z-index: 0;
    transition: all 0.5s ease;
}

.course-info-box:hover::before {
    transform: translate(20%, -20%) scale(1.2);
}

.course-info-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.course-info-text {
    max-width: 650px;
}

.course-icon {
    width: 90px;
    height: 90px;
    background: var(--accent-color);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.course-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(0, 229, 255, 0.5), rgba(0, 229, 255, 0.2));
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.course-info-box:hover .course-icon {
    transform: translateY(-5px) rotate(5deg);
}

.course-info-box:hover .course-icon::after {
    opacity: 1;
    inset: -6px;
}

.course-icon svg {
    width: 45px;
    height: 45px;
    color: white;
    transition: transform 0.4s ease;
}

.course-info-box:hover .course-icon svg {
    transform: scale(1.1);
}

.course-info-box h2 {
    font-size: 3.2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.8rem;
    line-height: 1.2;
    position: relative;
}

.course-info-box h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.course-info-box:hover h2::after {
    width: 120px;
}

.course-info-box p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.8rem;
}

.course-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    margin: 2.8rem 0;
}

.course-feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(10px);
}

.course-feature-item:hover {
    transform: translateY(-5px);
    background: white;
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.1);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 16px rgba(0, 229, 255, 0.1);
}

.course-feature-item:hover .feature-icon {
    background: var(--accent-color);
    color: white;
    transform: rotate(10deg);
}

.course-feature-item p {
    font-size: 1.15rem;
    margin: 0;
    color: var(--secondary-color);
    font-weight: 500;
}

.course-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.course-info-box:hover .course-image-wrapper {
    transform: perspective(1000px) rotateY(0deg);
}

.course-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 229, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.course-info-box:hover .course-image-wrapper::before {
    opacity: 1;
}

.course-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.course-info-box:hover .course-image-wrapper img {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .course-info-box {
        padding: 3rem;
    }

    .course-info-content {
        gap: 3rem;
    }

    .course-info-box h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .course-info-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .course-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
        transform: perspective(1000px) rotateY(0deg);
    }

    .course-features-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .course-info-box {
        padding: 2rem;
        margin-bottom: 3rem;
        border-radius: 30px;
    }

    .course-icon {
        width: 70px;
        height: 70px;
    }

    .course-icon svg {
        width: 35px;
        height: 35px;
    }

    .course-info-box h2 {
        font-size: 2.2rem;
    }

    .course-info-box p {
        font-size: 1.1rem;
    }

    .course-feature-item {
        padding: 1.2rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* Schools Section */
.schools-section {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

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

.schools-features li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    font-size: 1.1rem;
}

.schools-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.schools-contact {
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-align: center;
    margin: 2rem 0;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .schools-features li {
        font-size: 1rem;
    }
}

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

.price-category {
    margin-bottom: 4rem;
}

.price-category-title {
    font-size: 2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.price-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.price-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.price-card .price small {
    font-size: 1rem;
    color: #666;
}

.price-card .details {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.price-card .validity {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Price Categories Layout */
.price-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.price-category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.price-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.price-category-card:hover img {
    transform: scale(1.1);
}

.price-category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: white;
}

.price-category-overlay h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price-category-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.price-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.price-details-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.price-details-modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-color);
    color: white;
}

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

.modal-price-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8f9fa;
    text-align: center;
    transition: all 0.3s ease;
}

.modal-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.modal-price-card h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.modal-price-value {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-price-description {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .price-categories {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 2rem;
    }
}

/* Course sections styling */
.courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.course-info-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.course-info-box:hover {
    transform: translateY(-5px);
}

.course-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.course-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.course-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.course-info-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.course-info-box p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.course-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #f5f7ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

/* Schools section specific styling */
.schools-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
    border: 2px solid #f0f2ff;
}

.schools-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--heading-color);
}

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

.schools-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var (--text-color);
}

.schools-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.schools-contact {
    text-align: center;
    font-size: 1.2rem;
    margin: 2rem 0;
    color: var(--heading-color);
    font-weight: 500;
}

.schools-section .course-cta {
    text-align: center;
    margin-top: 2rem;
}

.schools-section .primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.schools-section .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .course-info-content {
        grid-template-columns: 1fr;
    }

    .course-info-box {
        padding: 2rem;
    }

    .schools-section h2 {
        font-size: 1.8rem;
    }

    .schools-features li {
        font-size: 1rem;
    }
}

/* CTA Button Styles */
.courses-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    background: var(--accent-color);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
}

.cta-button svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}
.courses-cta{
    margin-bottom: 5rem;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    margin: 40px auto;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: sticky;
    top: 10px;
    right: 10px;
    float: right;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 1001;
    margin-bottom: 10px;
}

.close-modal:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .modal {
        padding: 10px;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 20px auto;
        max-height: 85vh;
    }

    .close-modal {
        position: sticky;
        top: 5px;
        margin-bottom: 15px;
    }
}