﻿h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

    a:hover {
        color: var(--secondary-color);
    }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

    .btn-primary:hover {
        background-color: transparent;
        border-color: var(--secondary-color);
        color: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

    .btn-outline:hover {
        background-color: var(--white);
        color: var(--secondary-color);
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

    .btn-light:hover {
        background-color: transparent;
        border-color: var(--white);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }

.btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

    .btn-outline-light:hover {
        background-color: var(--white);
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }

.section-header {
    text-align: center;
/*    margin-bottom: 70px;*/
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    display: block;
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
}

.section-title {
    font-size: 40px;
    color: var(--white);
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(to right, var(--secondary-color), transparent);
    }

.section-description {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--text-light);
    font-size: 16px;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    margin-top: -110px;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 1200px;
    overflow: hidden;
    background: #000;
}

/* ===== CAROUSEL CONTAINER ===== */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== SLIDES ===== */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

    .carousel-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 100, 110, 0.85) 0%, rgba(0, 130, 140, 0.75) 50%, rgba(0, 70, 80, 0.9) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

    .slide-content .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.content-wrapper {
    max-width: 800px;
    animation: slideUpFade 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.slide-description {
    text-align: center !important;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* ===== HERO BUTTONS ===== */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc, #0052a3);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
        background: linear-gradient(135deg, #0052a3, #004080);
    }

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

    .btn-outline:hover {
        border-color: white;
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

/* ===== CAROUSEL NAVIGATION ===== */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .carousel-nav:hover {
        background: rgba(0, 0, 0, 0.7);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-nav.prev {
        left: 20px;
    }

    .carousel-nav.next {
        right: 20px;
    }

    .carousel-nav svg {
        width: 24px;
        height: 24px;
    }

/* ===== CAROUSEL INDICATORS ===== */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

        .carousel-indicators button:hover {
            background: rgba(255, 255, 255, 0.5);
            transform: scale(1.2);
        }

        .carousel-indicators button.active {
            background: white;
            width: 32px;
            border-radius: 6px;
        }

            .carousel-indicators button.active::after {
                content: '';
                position: absolute;
                top: -4px;
                left: -4px;
                right: -4px;
                bottom: -4px;
                border-radius: 10px;
                border: 1px solid rgba(255, 255, 255, 0.3);
            }

/* ===== PROGRESS BAR ===== */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.1s linear;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    animation: fadeIn 1s ease 1s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0;
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }

    .slide-content .container {
        padding: 0 16px;
    }

    .content-wrapper {
        text-align: center;
    }

    .slide-title {
        font-size: clamp(2rem, 4vw, 2.75rem);
    }

    .slide-description {
        font-size: clamp(1rem, 1.8vw, 1.25rem);
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .carousel-nav {
        width: 44px;
        height: 44px;
    }

        .carousel-nav.prev {
            left: 10px;
        }

        .carousel-nav.next {
            right: 10px;
        }

        .carousel-nav svg {
            width: 20px;
            height: 20px;
        }

    .carousel-indicators {
        bottom: 20px;
    }

        .carousel-indicators button {
            width: 10px;
            height: 10px;
        }

            .carousel-indicators button.active {
                width: 24px;
            }
}

@media screen and (max-width: 480px) {
    .hero-section {
        min-height: 450px;
        height: 90vh;
    }

    .slide-title {
        font-size: 1.75rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        opacity: 0.9;
    }

    .scroll-indicator {
        bottom: 10px;
    }

    .mouse {
        width: 22px;
        height: 34px;
    }

    .scroll-text {
        font-size: 10px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .carousel-nav {
        background: black;
        border-color: white;
    }

    .btn-outline {
        border-color: white;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .carousel-slide,
    .content-wrapper,
    .btn,
    .carousel-nav {
        transition: none !important;
        animation: none !important;
    }

    .carousel-slide {
        transition: opacity 0.5s ease !important;
    }
}
/* Quick Info Bar  */
.quick-info-bar {
    background: linear-gradient(360deg, #298a8a 0%, #227373 100%);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wave-container {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
/*    margin-top: 4rem;*/
    transform: rotate(180deg);
}

.wave-layer {
    padding: 0 !important;
    margin: 0 !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    fill: none;
}

.wave-layer-1 .wave-path {
    fill: rgba(255, 255, 255, 0.15);
}

.wave-layer-2 .wave-path {
    fill: rgba(255, 255, 255, 0.1);
}

.wave-layer-3 .wave-path {
    fill: rgba(255, 255, 255, 0.05);
}

.quick-info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 30px 0;
    max-width: 1240px;
    margin: 0 auto;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

    .quick-info-item:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.2);
        box-shadow: var(--shadow-hover);
    }

.info-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.quick-info-item:hover .info-icon {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
}

.quick-info-item i {
    font-size: 30px;
    color: var(--white);
    transition: var(--transition);
}

.quick-info-item:hover i {
    color: var(--secondary-color);
}

.info-content {
    display: flex;
    flex-direction: column;
}

.quick-info-item h3 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: var(--white);
}

.quick-info-item p {
    font-size: 12px;
    margin: 8px 0 0;
    opacity: 0.9;
    font-weight: 400;
}



/* About Section */
.about-section {
    width: 100%;
    padding: 0px 0px;
    background: linear-gradient(180deg, #298a8a 0%, #227373 100%);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

    .about-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 1;
    }

    .about-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(231, 76, 60, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 1;
    }


.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Enhanced Creative Image Design with Perfect Alignment */
.about-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-art-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-grid {
    position: relative;
    width: 400px;
    height: 400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    transform: rotate(-5deg);
}

.floating-element {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid transparent;
    background-size: cover;
    background-position: center;
}

.element-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    background-image: url('/images/aboutf.webp');
    border-color: var(--secondary-color);
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.element-2 {
    grid-column: 2 / 4;
    grid-row: 2 / 4;
    background-image: url('/images/aboutb.jpg');
    border-color: var(--secondary-color);
    animation: float 8s ease-in-out infinite 1s;
    z-index: 2;
}

.element-3 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    background-image: url('/assets/nits-logo.jpg');
    border-color: var(--secondary-color);
    animation: float 7s ease-in-out infinite 0.5s;
    z-index: 4;
}

.element-4 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    animation: float 5s ease-in-out infinite 1.5s;
}

    .element-4 i {
        font-size: 36px;
        color: var(--white);
    }

.floating-element:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10 !important;
    box-shadow: var(--shadow-hover);
}

.floating-element::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: var(--transition);
}

.floating-element:hover::after {
    opacity: 1;
}

.tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tech-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary-color);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: spin 20s linear infinite;
}

    .tech-icon:nth-child(1) {
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .tech-icon:nth-child(2) {
        top: 70%;
        left: 15%;
        animation-delay: -5s;
    }

    .tech-icon:nth-child(3) {
        top: 20%;
        right: 15%;
        animation-delay: -10s;
    }

    .tech-icon:nth-child(4) {
        bottom: 10%;
        right: 10%;
        animation-delay: -15s;
    }

.experience-badge {
    position: absolute;
    bottom: 0px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px 30px;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow);
    z-index: 6;
    transition: var(--transition);
    border: 3px solid var(--white);
}

    .experience-badge:hover {
        transform: translateY(-3px);
    }

    .experience-badge span {
        font-size: 48px;
        font-weight: 900;
        display: block;
        line-height: 1;
    }

    .experience-badge p {
        margin-bottom: 0;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* About Text & Cards */
.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-left: 5px solid var(--secondary-color);
}

    .feature-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        transition: var(--transition);
    }

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.15);
        box-shadow: var(--shadow-hover);
    }

        .feature-item:hover::before {
            width: 10px;
        }

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: rotate(15deg) scale(1.1);
}

.feature-icon i {
    font-size: 22px;
    color: var(--white);
}

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 700;
}

.feature-item p {
    font-size: 16px;
    color: var(--light-color);
    margin-bottom: 0;
    line-height: 1.7;
}

.feature-item-cards {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.feature-item-card {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    border: 1px dashed var(--secondary-color);
    border-radius: 12px;
    padding: 15px;
}

    .feature-item-card i {
        color: var(--secondary-color);
    }
        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }
        /* Responsive Design - Mobile First Approach */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image {
                order: 1;
                height: 400px;
            }

            .about-text {
                order: 2;
            }

            .section-title {
                font-size: 36px;
            }

            .floating-grid {
                width: 350px;
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 40px 20px;
            }

            .section-title {
                font-size: 30px;
            }

                .section-title i {
                    font-size: 28px;
                }

            .about-image {
                height: 350px;
            }

            .floating-grid {
                width: 300px;
                height: 300px;
            }

            .experience-badge {
                bottom: -15px;
                right: -15px;
                padding: 15px 20px;
            }

                .experience-badge span {
                    font-size: 36px;
                }

                .experience-badge p {
                    font-size: 14px;
                }

            .feature-item {
                padding: 20px;
            }

                .feature-item h4 {
                    font-size: 20px;
                }

                .feature-item p {
                    font-size: 15px;
                }
        }

        @media (max-width: 576px) {
            .about-image {
                height: 300px;
            }

            .floating-grid {
                width: 260px;
                height: 260px;
            }

            .tech-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .section-title {
                font-size: 26px;
            }

            .section-subtitle {
                font-size: 16px;
            }
        }

        @media (max-width: 400px) {
            .about-image {
                height: 250px;
            }

            .floating-grid {
                width: 220px;
                height: 220px;
            }

            .experience-badge {
                padding: 12px 16px;
                bottom: -10px;
                right: -10px;
            }

                .experience-badge span {
                    font-size: 30px;
                }
        }
        /* Departments Section */
        .departments-section {
    padding: 40px 0;
    background: linear-gradient(360deg, #298a8a 0%, #227373 100%);
    position: relative;
    overflow: hidden;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.department-card {
    background: linear-gradient(135deg, #298a8a 0%, #185757 100%);
    border: dashed 2px var(--secondary-color);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .department-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border: none;
        opacity: 0;
        z-index: -1;
        transition: var(--transition);
    }

.card-hover-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(52, 152, 219, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    transition: var(--transition);
}

.department-card:hover {
    transform: translateY(-12px);
    border: none;
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

    .department-card:hover::before {
        opacity: 1;
    }

    .department-card:hover .card-icon {
        background-color: var(--white);
        
    }

        .department-card:hover .card-icon i {
            color: var(--primary-color);
        }

        .department-card:hover p,
        .department-card:hover .read-more {
            color: var(--white);
        }

.card-icon {
    width: 90px;
    height: 90px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

    .card-icon i {
        font-size: 34px;
        color: var(--secondary-color);
        transition: var(--transition);
    }

.department-card h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.department-card p {
    color: var(--white);
    margin-bottom: 25px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

    .read-more i {
        margin-left: 8px;
        transition: var(--transition);
    }

.department-card:hover .read-more i {
    transform: translateX(5px);
}






/* Classes Section - Enhanced */
.classes-section {
    background: linear-gradient(180deg, #298a8a 0%, #227373 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.classes-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Enhanced Card Styling */
.class-card {
    background: linear-gradient(135deg, rgba(40, 138, 138, 0.95), rgba(24, 87, 87, 0.95));
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: none;
}

    .class-card.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        display: block;
        animation: cardAppear 0.6s ease-out forwards;
    }

@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px ;
    position: relative;
}

.card-label {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(248, 183, 57, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid rgba(248, 183, 57, 0.3);
    backdrop-filter: blur(5px);
}

    .card-label i {
        color: var(--secondary-color);
        font-size: 18px;
    }

    .card-label span {
        color: var(--white);
        font-weight: 600;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.card-indicator {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: var(--white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-total {
    font-size: 18px;
    opacity: 0.7;
    font-weight: 500;
}

/* Card Content */
.card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 35px 30px;
    align-items: center;
}

/* Card Image */
.class-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.05));
}

    .class-image lottie-player {
        width: 100%;
        height: 100%;
        max-width: 550px;
    }

/* Card Info */
.class-info {
    color: var(--white);
    position: relative;
}

    .class-info h3 {
        font-size: 42px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
        font-weight: 800;
        background: linear-gradient(135deg, #fff, #f0f0f0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

        .class-info h3::after {
            content: '';
            position: absolute;
            left:40%;
            bottom: -15px;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), #ffd166);
            border-radius: 3px;
            box-shadow: 0 4px 12px rgba(248, 183, 57, 0.4);
        }

.class-grade {
    font-size: 22px;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 10px 30px;
    display: inline-block;
    padding: 0px 20px;
    background: rgba(248, 183, 57, 0.1);
    border-radius: 50px;
    border: 2px solid rgba(248, 183, 57, 0.2);
    backdrop-filter: blur(5px);
}

.class-description {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    padding: 25px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    border-left: 4px solid var(--secondary-color);
}

/* Built-in Card Controls */
.card-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 10px 20px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-indicator {
    display: flex;
    gap: 20px;
}

.progress-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .progress-dot.active {
        background: var(--secondary-color);
        transform: scale(1.3);
        box-shadow: 0 0 15px rgba(248, 183, 57, 0.6);
    }

    .progress-dot:hover {
        background: var(--secondary-color);
        transform: scale(1.2);
    }

.control-buttons {
    display: flex;
    gap: 12px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

    .control-btn:hover {
        background: rgba(248, 183, 57, 0.3);
        border-color: var(--secondary-color);
        color: var(--secondary-color);
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(248, 183, 57, 0.3);
    }

    .control-btn:active {
        transform: scale(0.95);
    }

/* Progress Bar as Bottom Border */
.card-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--secondary-color), #ffd166);
    transition: width 3s linear;
    border-radius: 0 0 24px 24px;
}

/* Auto-rotate Status */
.auto-rotate-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

    .auto-rotate-info i {
        color: var(--secondary-color);
        font-size: 18px;
    }

.status-btn {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 5px;
}

    .status-btn:hover {
        opacity: 1;
        color: var(--secondary-color);
    }

/* Mobile Responsive */
@media (max-width: 992px) {
    .classes-section {
        padding: 60px 0;
    }

    .card-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 25px 25px;
    }

    .class-image {
        height: 300px;
        order: -1;
    }

    .class-info h3 {
        font-size: 36px;
        text-align: center;
        display: block;
    }

        .class-info h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

    .class-grade {
        font-size: 18px;
        padding: 10px 20px;
        display: block;
        text-align: center;
        width: fit-content;
        margin: 20px auto 25px;
    }

    .class-description {
        font-size: 16px;
        padding: 20px;
        text-align: center;
    }

    .card-header {
        padding: 20px 25px 15px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .card-controls {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }

    .control-buttons {
        order: -1;
    }

    .progress-indicator {
        order: 1;
    }

    .card-label {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .class-info h3 {
        font-size: 32px;
    }

    .class-image {
        height: 250px;
    }

    .class-grade {
        font-size: 16px;
        padding: 8px 18px;
    }

    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .progress-dot {
        width: 12px;
        height: 12px;
    }

    .auto-rotate-info {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .card-content {
        padding: 0 20px 20px;
        gap: 30px;
    }

    .class-info h3 {
        font-size: 28px;
    }

    .class-image {
        height: 220px;
    }

    .class-description {
        font-size: 15px;
        padding: 15px;
    }

    .card-header {
        padding: 15px 20px 10px;
    }

    .card-number {
        font-size: 28px;
    }
}

/* Animation for pulse effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(248, 183, 57, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(248, 183, 57, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(248, 183, 57, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}








/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(360deg, #298a8a 0%, #227373 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background-color: var(--primary-color);
    border: 2px dashed var(--secondary-color);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .testimonial-card:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border: none;
        transform: translateY(-2px);
        box-shadow: var(--shadow-hover);
    }

.quote-icon {
    font-size: 44px;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 25px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

    .testimonial-content p {
        color: beige;
        font-style: italic;
        margin-bottom: 25px;
        position: relative;
        font-size: 16px;
        line-height: 1.6;
    }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

    .testimonial-author img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--secondary-color);
    }

    .testimonial-author h4 {
        font-size: 20px;
        margin-bottom: 8px;
        color: var(--secondary-color);
    }

    .testimonial-author p {
        font-size: 15px;
        color: beige;
        margin-bottom: 0;
        font-style: normal;
    }


/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }

    .about-content {
        gap: 40px;
    }

    .class-card {
        grid-template-columns: 1fr;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }

    .class-image img {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .quick-info-items {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        margin-bottom: 40px;
    }



    .teacher-card {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .quick-info-item {
        padding: 20px;
        gap: 20px;
    }

        .quick-info-item h3 {
            font-size: 32px;
        }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .quick-info-item i {
        font-size: 24px;
    }

    .wave-container {
        height: 120px;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
    }

    .class-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .quick-info-items {
        grid-template-columns: 1fr 1fr;
    }

    .quick-info-item {
        padding: 15px;
        gap: 15px;
    }

        .quick-info-item h3 {
            font-size: 28px;
        }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .wave-container {
        height: 100px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .department-card {
        padding: 25px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 480px) {
    .quick-info-items {
        grid-template-columns: 1fr;
    }



    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 18px;
    }
}


/* Scroll Container */

.scrolling-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #298a8a 0%, #227373 100%);
    position: relative;
    overflow: hidden;
}

.scroll-container {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
/*    background: var(--primary-color);*/
}

    .scroll-container .infinite-scroll-wrapper {
        overflow: hidden;
        width: 100%;
        position: relative;
    }

.infinite-scroll-wrapper .infinite-scroll-content {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    animation: scroll 100s linear infinite;
    width: 100%;
    gap: 16px;
}

.infinite-scroll-wrapper .infinite-scroll-items {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    gap: 16px;
}

.infinite-scroll-items .item-wrap {
    position: relative;
    min-width: 200px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.item-wrap img {
    border-radius: 35px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.item-wrap .text {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    color: #fff;
    font-weight: 500;
}

.item-wrap:hover img {
    transform: scale(1.05);
}

@media (min-width: 1024px) {
    .infinite-scroll-wrapper:hover .infinite-scroll-content {
        animation-play-state: paused;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}























/* FAQ Section */
/* FAQ Section - Clean & Professional */
.faq-section {
    background: linear-gradient(180deg, #298a8a 0%, #227373 100%);
    padding: 80px 0;
    position: relative;
}

    .faq-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(40, 138, 138, 0.2), transparent);
    }


/* FAQ Items */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

/* FAQ Item */
.faq-item {
    background: linear-gradient(135deg, #298a8a 0%, #227373 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--secondary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .faq-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border-color: #cbd5e1;
    }

    .faq-item.active {
        border-color: var(--secondary-color);
        box-shadow: 0 15px 35px rgba(248, 183, 57, 0.15);
    }

/* FAQ Header */
.faq-header {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
    background: background: linear-gradient(135deg, #227373 0%, #298a8a 100%);
    transition: all 0.3s ease;
}

.faq-item.active .faq-header {
    background: linear-gradient(135deg, rgba(248, 183, 57, 0.03), transparent);
}

.faq-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: white;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-number {
    background: linear-gradient(135deg, var(--secondary-color), #e6a52d);
    transform: scale(1.1);
}

.faq-question-content {
    flex: 1;
}

    .faq-question-content h3 {
        margin: 0 0 8px 0;
        color: beige;
        font-size: 1.3rem;
        font-weight: 600;
        line-height: 1.4;
        transition: color 0.3s ease;
    }

.faq-item.active .faq-question-content h3 {
    color: var(--secondary-color);
}

.faq-preview {
    margin: 0;
    color: beige;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* FAQ Toggle Button */
.faq-toggle {
    width: 50px;
    height: 50px;
    border: none;
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748b;
    flex-shrink: 0;
}

    .faq-toggle:hover {
        background: var(--secondary-color);
        color: #227373;
    }

    .faq-toggle i {
        font-size: 1.1rem;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

.faq-item.active .faq-toggle {
    background: var(--secondary-color);
    color: white;
}

    .faq-item.active .faq-toggle i {
        transform: rotate(180deg);
    }

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.answer-content {
    padding: 0 30px 30px 115px;
}

    .answer-content p {
        color: beige;
        line-height: 1.6;
        margin-bottom: 25px;
        font-size: 1.05rem;
    }

/* Tech Highlights */
.tech-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .tech-item:hover {
        border-color: var(--secondary-color);
        transform: translateY(-2px);
    }

.tech-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    flex-shrink: 0;
}

    .tech-icon i {
        font-size: 1.8rem;
        color: #227373;
    }

.tech-info h4 {
    margin: 0 0 5px 0;
    color: beige;
    font-size: 1.05rem;
    font-weight: 600;
}

.tech-info p {
    margin: 0;
    color: white;
    font-size: 0.9rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

    .step:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 10px 0;
    color: beige;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Support Packages */
.support-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.package {
    padding: 25px;
    background: teal;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .package.premium {
        border-color: var(--secondary-color);
        background: linear-gradient(135deg, rgba(248, 183, 57, 0.05), transparent);
    }

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .package-header h4 {
        margin: 0;
        color: #1e293b;
        font-size: 1.2rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .package-header h4 i {
            color: var(--secondary-color);
        }

.package-tag {
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package.premium .package-tag {
    background: #227373;
}

.package ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package li {
    padding: 8px 0;
    color: beige;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .package li i {
        color: var(--secondary-color);
        font-size: 1rem;
    }

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.timeline-item {
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

    .timeline-item:hover {
        border-color: var(--secondary-color);
        transform: translateY(-2px);
    }

.timeline-phase {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.phase-duration {
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.timeline-phase h4 {
    margin: 0;
    color: beige;
    font-size: 1.1rem;
    font-weight: 600;
}

.timeline-item p {
    margin: 0;
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* FAQ CTA */
.faq-cta {
    background: linear-gradient(135deg, #298a8a, #227373);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(40, 138, 138, 0.3);
    position: relative;
    overflow: hidden;
}

    .faq-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
        background-size: 40px 40px;
        opacity: 0.1;
    }

.cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

    .cta-icon i {
        font-size: 2.5rem;
        color: white;
    }

.cta-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

    .cta-text h3 {
        margin: 0 0 10px 0;
        color: white;
        font-size: 1.8rem;
        font-weight: 700;
    }

    .cta-text p {
        margin: 0;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
    }

.cta-button {
    background: var(--secondary-color);
    color: white;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(248, 183, 57, 0.3);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

    .cta-button:hover {
        background: var(--secondary-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(248, 183, 57, 0.4);
    }

/* Responsive Design */
@media (max-width: 992px) {
    .faq-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .faq-header {
        padding: 25px;
    }

    .answer-content {
        padding: 0 25px 25px 105px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 15px;
    }

        .section-title i {
            font-size: 2rem;
        }

    .faq-header {
        gap: 20px;
    }

    .faq-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .answer-content {
        padding: 0 20px 20px;
    }

    .tech-highlights {
        grid-template-columns: 1fr;
    }

    .support-packages {
        grid-template-columns: 1fr;
    }

    .faq-cta {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
        gap: 25px;
    }

    .cta-text h3 {
        font-size: 1.6rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .faq-header {
        padding: 20px;
    }

    .faq-question-content h3 {
        font-size: 1.2rem;
    }

    .faq-toggle {
        width: 45px;
        height: 45px;
    }

    .step {
        padding: 20px;
    }

    .package {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

    .faq-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .faq-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .faq-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .faq-item:nth-child(4) {
        animation-delay: 0.4s;
    }
