/* Base Styles */
:root {
    /* ogs */
    /* 
    --primary-color: #ff7700;
    --primary-light: #FF6B35;
    --secondary-color: #ff7700e1;
    --accent-color: #ff881f;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #C2C2C2;
    --background-color: #fff;
    --background-color-dark: #202020;
    --background-alt: #fff5f0;
    --border-color: #e1e1e1;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(255, 69, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(255, 69, 0, 0.1);
    --transition: all 0.3s ease;
    */

    /* testing colors  */
    --primary-color: #ff7700;
    --primary-light: #FF6B35;
    --secondary-color: #ff7700e1;
    --accent-color: #ff881f;
    /* --text-color: #333; */
    --text-color: #ffffff;
    /* --text-light: #666; */
    --text-light: #999;
    --text-lighter: #C2C2C2;
    --background-color: #09090B;
    --background-color-dark: #202020;
    --background-alt: #fff5f0;
    --border-color: #e1e1e1;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(255, 69, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(255, 69, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #09090B;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* border: 2px solid rgb(49, 47, 47); */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--text-color);
}

.highlight {
    color: var(--accent-color);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--accent-color);
    font-size: 15px;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    padding: 10px 20px;
    border: 1px solid var(--accent-color);
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.btn-lg {
    padding: 8px 28px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-links {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-links img {
    filter: invert();
}

#cta-btn-one {
    margin-right: 15px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(100px);
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    padding: 15px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-item a {
    color: white;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

.nav-item a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    /* background-color: var(--primary-color); */
    color: white;
    
    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

    background: linear-gradient(rgba(4, 9, 30, 0), rgba(0, 0, 0, 0.5)), url(../image/herobg.webp);

    background-size: cover;
    background-position: center center;
    margin-top: 0;
    position: relative;
    background-attachment: fixed;
}

.hero .container {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-shape {
    position: absolute;
    bottom: -200px;
    left: 0;
    width: 100%;
    height: 300px;
    background-color: white;
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

.hero-title {
    font-size: 3.0rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}



.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.instructors {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.instructor {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.instructor-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.video-container {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}


.ytvideo {
    border-radius: 15px;
    width: 555px;
    height: 325px;
}

.video-placeholder {
    width: 100%;
    /* height: auto; */
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.video-container:hover .video-placeholder {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: white;
}

.hero-btn-group {
    display: flex;
    justify-content: left;
}

/* Courses Section */
.courses {
    padding: 100px 0;
    background-color: var(--background-color);
}

.courses-box{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.course{
    width: 366px;
    margin-bottom: 10px;
}

.course img{
    border-radius: 10px;
}

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

.header-bento {
    text-align: center;
    margin-bottom: 40px;
}

.header-bento h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff7700, #ffaa44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header p {
    color: #888;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 170px);
    gap: 20px;
    margin-bottom: 40px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 119, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    text-align: left;
}

.spacer {
    height: 20px;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.bento-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #ff7700;
    box-shadow: 0 25px 50px rgba(255, 119, 0, 0.25);
}

/* Grid Item Sizes */
.item-1 {
    grid-column: span 2;
    grid-row: span 1;
}

.item-2 {
    grid-column: span 1;
    grid-row: span 2;
}

.item-3 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-4 {
    grid-column: span 1;
    grid-row: span 2;
}

.item-5 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-6 {
    grid-column: span 1;
    grid-row: span 2;
}

.item-7 {
    grid-column: span 2;
    grid-row: span 1;
}

/* Content Styling */
.icon {
    width: 50px;
    height: 50px;
    /* background: linear-gradient(135deg, #ff7700, #ff8a1a); */
    color: var(--accent-color);
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    font-size: 28px;
    transition: all 0.3s ease;
    /* box-shadow: 0 8px 25px rgba(255, 119, 0, 0.3); */
}

.icon i {
    font-size: 35px;
}

.icon-txt {
    /* background: linear-gradient(135deg, #ff7700, #ff8a1a); */
    font-weight: 900;
    color: white;
    font-size: 25px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin-bottom: 4px;
    font-size: 28px;
    transition: all 0.3s ease;
    /* box-shadow: 0 8px 25px rgba(255, 119, 0, 0.3); */
}

/* .bento-item:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 119, 0, 0.4);
} */

.title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.subtitle {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.3;
}

.metric {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ff7700;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff7700, #ffaa44);
    border-radius: 5px;
    animation: progressGrow 2s ease-out;
}

@keyframes progressGrow {
    from {
        width: 0;
    }
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.course-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.course-item:hover {
    background: rgba(255, 119, 0, 0.1);
    transform: translateX(5px);
}

.course-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 119, 0, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.course-info {
    flex: 1;
}

.course-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.course-students {
    font-size: 0.8rem;
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 119, 0, 0.1);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff7700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-container {
    margin-top: 16px;
    height: 80px;
    display: flex;
    align-items: end;
    gap: 6px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, rgba(255, 119, 0, 0.3), rgba(255, 119, 0, 0.7));
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
    position: relative;
}

.chart-bar:hover {
    background: linear-gradient(to top, #ff7700, #ffaa44);
    transform: scaleY(1.1);
}

.floating-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff7700, #ff8a1a);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 119, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 119, 0, 0.6);
    }
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

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

.category {
    padding: 8px 20px;
    border-radius: 30px;
    background-color: var(--background-alt);
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.category.active,
.category:hover {
    background-color: var(--accent-color);
    color: white;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.course-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    /* filter: brightness(0) invert(1);
    transition: var(--transition); */
}

.course-content {
    padding: 20px;
}

.course-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 10px;
    background-color: var(--background-alt);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.course-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.course-description {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.rating,
.students {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background-color: var(--background-color);

    opacity: 1;
    background-image: radial-gradient(#ff77005b 0.8500000000000001px, #09090b 0.8500000000000001px);
    background-size: 17px 17px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* background-color: white; */
/* .feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
} */


.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 119, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    text-align: center;
}

.spacer {
    height: 20px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.bento-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #ff7700;
    box-shadow: 0 25px 50px rgba(255, 119, 0, 0.25);
}


.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: var(--text-light);
}

.about {
    padding: 100px 0 0 0;
    background-color: var(--background-color);
}

.about p {
    font-size: 17.6px;
    font-weight: 400;
    line-height: 29.9px;
    text-align: center;

}

.about-para {
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* For Who Section */
.orbit-section {
    /* padding-bottom: 100px; */
    background-color: var(--background-color);
    position: relative;
    height: 100vh;
}

.orbit-section .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.mobile-view-skills {
    display: none;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--background-alt);
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.highlight-card {
    background-color: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.stat-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-subheader {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.stat-link {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    color: white;
    font-weight: 500;
    transition: var(--transition);
}

.stat-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stat-description {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.stat-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-slider {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.testimonial-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: normal;
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.control-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

.control-prev,
.control-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.control-prev:hover,
.control-next:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Founder Section */
.founder {
    padding: 100px 0;
    /* background-color: var(--background-color); */
    background: linear-gradient(rgba(4, 9, 30, 0), rgba(0, 0, 0, 0.5)), url(../image/founderbg.svg);
    background-size: cover;
    background-position: center center;
}

.founder-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    /* align-items: center; */
}

.founder-name {
    display: inline;
}

.founder-bio {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.founder-journey {
    margin-bottom: 20px;
    color: var(--text-lighter);
}

.founder-philosophy {
    font-style: italic;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.social-profiles h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    color: black;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.founder-image {
    position: relative;
}

.founder-img {
    width: 100%;
    border-radius: 15px;
    /* box-shadow: var(--shadow-lg); */
}

/* students testimonial Section */
.stu-testimonial {
    padding: 100px 0;
    background-color: var(--background-color);
}

.stu-testimonial-box {
    /* display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px; */

    display: flex;
    /* gap: 30px; */
}

.testimonial-box-col {
    flex: 1;
    min-width: 300px;
    height: 90vh;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    backdrop-filter: blur(5px);
}

.srcoll-track {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    animation: scrollUp linear infinite;
    will-change: transform;
}

.testimonial-box-col:nth-child(1) .srcoll-track {
    animation-duration: 40s;
}

.testimonial-box-col:nth-child(2) .srcoll-track {
    animation-duration: 50s;
}

.testimonial-box-col:nth-child(3) .srcoll-track {
    animation-duration: 35s;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.student-card {
    /* margin-top: 30px; */
    /* background-color: rgb(39, 37, 37); */
    background-color: #161616;
    border-radius: var(--border-radius);
    padding: 30px;
    /* box-shadow: var(--shadow); */
    transition: var(--transition);
}

.student-card:hover {
    transform: translateY(-5px);
    /* box-shadow: var(--shadow-lg); */
}

.student-image {
    margin-bottom: 20px;
}

.student-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.student-info {
    margin-bottom: 15px;
}

.student-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.student-title {
    color: var(--text-light);
    font-size: 0.9rem;
}

.student-testimonial {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--background-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: var(--transition);
    padding: 0 0 0 20px;
}

.faq-item.active .faq-answer {
    height: auto;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer Styles */
.footer {
    /* background-color: var(--background-color-dark); */
    /* background: #161617; */
    background: #000000;
    backdrop-filter: blur(10px);
    color: white;
    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 30px;
}

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

.apps {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.footer-tagline {
    margin-top: 15px;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    gap: 15px;
}

.footer-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.footer-add {
    display: inline-block;
}

.footer-add h1 {
    font-size: 30px;
}

.footer-add p {
    color: var(--text-lighter);
    text-wrap: balance;
}

.footer-highlight {
    color: white;
}

.footer-txt {
    font-weight: 500;
    font-size: 200px;
    line-height: 250px;
    /* background: linear-gradient(179.71deg, hsla(0, 0%, 100%, 0.48) -123.44%, #000000 77.24%); */
    background: linear-gradient(179.71deg, hsl(28, 100%, 50%) -100.44%, #000000 80.24%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    padding: 0;
    z-index: 2;
    display: inline-block;
    position: relative;
    text-align: center;
}

/* #contact{
    color: white;
} */

.contact {
    margin-top: 8px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    margin-top: 15px;
    opacity: 0.7;
    font-size: 0.9rem;
}

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

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