 :root {
            --primary-color: #6c63ff;
            --secondary-color: #ff6584;
            --dark-color: #121212;
            --dark-secondary: #1e1e1e;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --success-color: #28a745;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-color);
            color: var(--light-color);
            overflow-x: hidden;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: var(--light-color);
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background-color: rgba(18, 18, 18, 0.9);
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--light-color);
        }

        .logo span {
            color: var(--primary-color);
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-size: 1rem;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* Responsive Navigation */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark-secondary);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 40px;
                transition: all 0.5s ease;
            }

            .nav-links.active {
                left: 0;
            }

            header.scrolled .nav-links {
                top: 70px;
                height: calc(100vh - 70px);
            }

            .logo{
                display: none;
            }
        }

                /* Hero Section */
        .hero {
            min-height: 100vh;
            padding: 150px 0 100px;
            display: flex;
            align-items: center;
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .hero-content {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }

        .hero-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .greeting {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .name {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .name .glow {
            color: var(--primary-color);
            /* text-shadow: 0 0 10px rgba(108, 99, 255, 0.5); */
            /* animation: glow 2s ease-in-out infinite alternate; */
        }

        .title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--gray-color);
        }

        .title .typing {
            color: var(--primary-color);
        }

        .description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 600px;
            color: rgba(255, 255, 255, 0.7);
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: var(--light-color);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
        }

        .btn-secondary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-secondary:hover {
            background-color: var(--primary-color);
            color: var(--light-color);
            transform: translateY(-3px);
        }

        .image-wrapper {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
        }

        .profile-img {
            width: 100%;
            border-radius: 20px;
            position: relative;
            z-index: 2;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
        }

        .glowing-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 105%;
            height: 105%;
            border-radius: 25px;
            background: linear-gradient(45deg, transparent, var(--primary-color), transparent);
            z-index: 1;
            animation: rotate 8s linear infinite;
            opacity: 0.7;
        }

        .glowing-dot {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background-color: var(--primary-color);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--primary-color),
                        0 0 40px var(--primary-color);
            z-index: 3;
        }

        /* Animations */
        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(108, 99, 255, 0.5);
            }
            to {
                text-shadow: 0 0 20px rgba(108, 99, 255, 0.8), 
                            0 0 30px rgba(108, 99, 255, 0.4);
            }
        }

        @keyframes rotate {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        /* Responsive Hero Section */
        @media (max-width: 992px) {
            .hero .container {
                flex-direction: column;
                text-align: center;
            }

            .hero-content {
                padding-right: 0;
                margin-bottom: 50px;
            }

            .description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-btns {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .name {
                font-size: 2.5rem;
            }

            .hero{
                min-height: 70vh;
                padding: 0px;
            }

            .title {
                font-size: 1.5rem;
            }

            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }

            .hero-image{
                display: none;
            }

            .btn {
                width: 100%;
            }
        }

                /* Section Styling */
        .section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-title span {
            color: var(--primary-color);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-color);
        }

        /* About Section */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .about-img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
        }

        .experience-box {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--dark-secondary);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .experience-content {
            text-align: center;
        }

        .experience-content h3 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .experience-content p {
            font-size: 0.9rem;
            color: var(--gray-color);
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--light-color);
        }

        .about-text p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.7);
        }

        .about-details {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }

        .detail-item p {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.7);
        }

        .detail-item p span {
            color: var(--light-color);
            font-weight: 500;
            margin-right: 10px;
        }

        .skills-progress {
            margin: 40px 0;
        }

        .skills-progress h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--light-color);
        }

        .progress-item {
            margin-bottom: 20px;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .progress-info span {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .progress-info span:first-child {
            font-weight: 500;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background-color: var(--dark-secondary);
            border-radius: 10px;
            overflow: hidden;
        }

        .progress-line {
            height: 100%;
            border-radius: 10px;
            position: relative;
            width: 0;
            transition: width 1.5s ease;
        }

        .progress-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-color);
            border-radius: 10px;
        }

        .html-css::after {
            background: linear-gradient(90deg, var(--primary-color), #e34c26);
        }

        .javascript::after {
            background: linear-gradient(90deg, var(--primary-color), #f0db4f);
        }

        .react::after {
            background: linear-gradient(90deg, var(--primary-color), #61dbfb);
        }

        .php::after {
            background: linear-gradient(90deg, var(--primary-color), #787cb5);
        }

        .mysql::after {
            background: linear-gradient(90deg, var(--primary-color), #00758f);
        }

        /* Responsive About Section */
        @media (max-width: 768px) {
            .about-image {
                text-align: center;
            }

            .experience-box {
                right: 50%;
                transform: translateX(50%);
            }

            .about-text {
                text-align: center;
            }

            .about-details {
                justify-content: center;
            }

            .section{
                padding: 0px 0px 45px 0px;
            }
        }

                /* Skills Section */
        .skills {
    background-color: var(--dark-secondary);
    overflow: hidden; /* Prevent horizontal scroll */
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

/* Mobile Carousel Styles */
@media (max-width: 768px) {
    .skills-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px; /* Space for scrollbar */
        gap: 15px;
        grid-template-columns: unset;
    }

    .skills-grid::-webkit-scrollbar {
        height: 6px;
    }

    .skills-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .skills-grid::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    .skill-card {
        width: 100%;
        scroll-snap-align: start;
        flex-shrink: 0;
        margin: 0 10px;
    }

    /* Hide hover effects on touch devices */
    @media (hover: none) {
        .skill-card:hover {
            transform: none;
            box-shadow: none;
            border-color: rgba(255, 255, 255, 0.05);
        }
        
        .skill-card:hover .skill-icon {
            background-color: rgba(108, 99, 255, 0.1);
            color: var(--primary-color);
            box-shadow: none;
        }
    }
}

/* Skill Card Styles (unchanged) */
.skill-card {
    background-color: var(--dark-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.skill-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    background-color: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.5);
}

.skill-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

.skill-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}



                /* Projects Section */
        .project-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 8px 20px;
            background-color: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .filter-btn:hover, .filter-btn.active {
            background-color: var(--primary-color);
            color: var(--light-color);
            box-shadow: 0 0 15px rgba(108, 99, 255, 0.3);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .project-card {
            background-color: var(--dark-secondary);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .project-image {
            position: relative;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .project-links {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(108, 99, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .project-card:hover .project-links {
            opacity: 1;
        }

        .project-link {
            width: 50px;
            height: 50px;
            background-color: var(--light-color);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .project-link:hover {
            background-color: var(--primary-color);
            color: var(--light-color);
            transform: translateY(-5px);
        }

        .project-info {
            padding: 20px;
        }

        .project-info h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--light-color);
        }

        .project-info p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .project-tags span {
            background-color: rgba(108, 99, 255, 0.1);
            color: var(--primary-color);
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
        }

        /* Responsive Projects Section */
        @media (max-width: 768px) {
            .projects-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 576px) {
            .project-filters {
                gap: 10px;
            }
            
            .filter-btn {
                padding: 6px 15px;
                font-size: 0.8rem;
            }
        }

                /* Contact Section */
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-right: 20px;
            flex-shrink: 0;
        }

        .info-text h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--light-color);
        }

        .info-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 40px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: var(--dark-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--light-color);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background-color: var(--dark-secondary);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: var(--light-color);
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 10px rgba(108, 99, 255, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .error-message {
            color: var(--secondary-color);
            font-size: 0.8rem;
            margin-top: 5px;
            display: block;
        }

        .form-success {
            margin-top: 20px;
            padding: 15px;
            background-color: rgba(40, 167, 69, 0.2);
            border: 1px solid var(--success-color);
            border-radius: 10px;
            color: var(--light-color);
            display: none;
        }

        /* Responsive Contact Section */
        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
            }

            .social-links {
                justify-content: center;
            }
        }

                /* Footer */
        .footer {
            background-color: var(--dark-secondary);
            padding: 30px 0;
            text-align: center;
            position: relative;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .footer p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366; /* WhatsApp green color */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background-color: #128C7E; /* Darker WhatsApp green on hover */
}

        /* Responsive Footer */
        @media (max-width: 576px) {
            .footer-links {
                gap: 10px;
            }
            
            .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
        }

                /* Reviews Section */
        .reviews {
            background-color: var(--dark-secondary);
        }

        .reviews-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 30px;
            gap: 30px;
            padding-bottom: 20px;
        }

        .reviews-slider::-webkit-scrollbar {
            display: none;
        }

        .review-card {
            min-width: 100%;
            scroll-snap-align: start;
            background-color: var(--dark-color);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .client-avatar img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .client-details h4 {
            font-size: 1.1rem;
            color: var(--light-color);
            margin-bottom: 5px;
        }

        .client-details p {
            font-size: 0.8rem;
            color: var(--gray-color);
        }

        .review-rating {
            color: var(--primary-color);
        }

        .review-rating .fa-star-half-alt {
            color: var(--primary-color);
        }

        .review-content {
            margin-bottom: 20px;
        }

        .review-content p {
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
            position: relative;
            padding-left: 20px;
        }

        .review-content p::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.2;
            font-family: serif;
        }

        .review-screenshot {
            margin-top: 20px;
            text-align: center;
        }

        .screenshot-thumbnail {
            width: 100%;
            max-height: 200px;
            object-fit: contain;
            border-radius: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .screenshot-thumbnail:hover {
            opacity: 0.8;
        }

        .view-screenshot-btn {
            background-color: rgba(108, 99, 255, 0.1);
            color: var(--primary-color);
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .view-screenshot-btn:hover {
            background-color: var(--primary-color);
            color: var(--light-color);
        }

        /* Screenshot Modal */
        .screenshot-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            overflow: auto;
        }

        .modal-content {
            display: block;
            margin: 5% auto;
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 30px;
            color: var(--light-color);
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: var(--primary-color);
        }

        /* Slider Controls */
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .prev-review,
        .next-review {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: var(--light-color);
            border-radius: 50%;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .prev-review:hover,
        .next-review:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
        }

        /* Responsive Reviews Section */
        @media (min-width: 768px) {
            .review-card {
                min-width: calc(50% - 15px);
            }
        }

        @media (min-width: 992px) {
            .review-card {
                min-width: calc(33.333% - 20px);
            }
            
            .reviews-slider {
                overflow-x: visible;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .slider-controls {
                display: none;
            }
        }

                /* Achievements Section */
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .achievement-card {
            background-color: var(--dark-secondary);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .achievement-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .achievement-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .achievement-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary-color);
            background-color: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .achievement-card:hover .achievement-icon {
            background-color: var(--primary-color);
            color: var(--light-color);
            box-shadow: 0 0 20px rgba(108, 99, 255, 0.5);
        }

        .achievement-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--light-color);
        }

        .achievement-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .achievement-date {
            display: inline-block;
            padding: 5px 15px;
            background-color: rgba(108, 99, 255, 0.1);
            color: var(--primary-color);
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
        }