      /* Base styles */
       :root {
        --purple: #bb5bf1;
        --dark: #121212;
        --darker: #0a0a0a;
        --light: #ffffff;
        --gray: #2a2a2a;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Arial', sans-serif;
    }
    
    body {
        background-color: var(--dark);
        color: var(--light);
        overflow-x: hidden;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Header */
    header {
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    nav ul {
        display: flex;
        list-style: none;
    }
    
    nav ul li {
        margin-left: 30px;
    }
    
    nav ul li a {
        color: var(--light);
        text-decoration: none;
        transition: color 0.3s;
    }
    
    nav ul li a:hover {
        color: var(--purple);
    }
    
    /* Hero section */
    .hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 80px 0;
        position: relative;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .hero-content h1 span {
        color: var(--purple);
        display: block;
        font-size: 3.5rem;
        margin: 10px 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .btn-group {
        display: flex;
        gap: 20px;
    }
    
    .btn {
        padding: 12px 24px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s;
    }
    
    .btn-primary {
        background-color: var(--purple);
        color: var(--light);
        border: none;
    }
    
    .btn-secondary {
        background-color: var(--gray);
        color: var(--light);
        border: none;
    }
    
    .btn-primary:hover, .btn-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .hero-image {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        max-width: 70%;
        position: relative;
    }
    
    .hero-image img {
        max-width: 70%;
        height: auto;
        margin: 0;
        padding: 0;
    }
    
    /* About section */
    .about {
        padding: 80px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .about-image {
        flex: 1;
        max-width: 80%;
        height: auto;
        margin: 0 auto;
    }
    
    .about-content {
        flex: 1;
        padding-left: 50px;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .about-content h2 span {
        color: var(--purple);
    }
    
    .about-content p {
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .skills {
        margin-top: 30px;
    }
    
    .skills h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .skills ul {
        list-style: none;
    }
    
    .skills ul li {
        margin-bottom: 8px;
    }
    
    /* Services section */
    .services {
        padding: 80px 0;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-header h3 {
        color: var(--purple);
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .service-card {
        background-color: var(--gray);
        padding: 30px;
        border-radius: 10px;
        transition: transform 0.3s;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
    }
    
    .service-icon {
        font-size: 2.5rem;
        color: var(--purple);
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        margin-bottom: 15px;
    }
    
    .service-card p {
        line-height: 1.6;
    }

    /* Review section */

.testimonials-section {
    margin: 40px 0;
}

.section-title {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #a0a0a0;
    font-size: 1rem;
    margin-bottom: 25px;
}

.highlight {
    color: #b052dd;
}

   .testimonial-container {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #b052dd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    position: relative;
    align-items: center;
    text-align: center;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.client-info {
    flex-grow: 1;
}

.client-name {
    color: #ffffff;
    font-weight: bold;
    margin: 0;
    font-size: 16px;
}

.client-title {
    color: #b052dd;
    font-size: 14px;
    margin: 3px 0 0 0;
}

.rating {
    color: #b052dd;
    font-size: 16px;
    margin-top: 5px;
}

.testimonial-text {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
    font-style: italic;
}

.source-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 15px;
}

.source-link a {
    color: #b052dd;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.source-link a:hover {
    text-decoration: underline;
}

.source-icon {
    height: 16px;
    margin-right: 6px;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.nav-dot {
    height: 8px;
    width: 8px;
    background-color: #4d4d4d;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    cursor: pointer;
}

.nav-dot.active {
    background-color: #b052dd;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s;
}
.review-image {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
}

.review-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;  
}

.testimonial-container {
    padding: 25px;
}

.source-link {
    text-align: center;
    margin-top: 15px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.arrow-btn {
    background: none;
    border: none;
    color: #b052dd;
    font-size: 18px;
    cursor: pointer;
    padding: 0 10px;
}

.arrow-btn:hover {
    color: #9e3dce;
}

@media (max-width: 768px) {
    .testimonial-container {
        padding: 15px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
} 
    /* Projects section */
    .projects {
        padding: 80px 0;
    }
    
    .filter-buttons {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        gap: 15px;
    }
    
    .filter-button {
        background-color: var(--gray);
        color: var(--light);
        border: none;
        padding: 10px 20px;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .filter-button.active, .filter-button:hover {
        background-color: var(--purple);
    }
    
    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .project-card {
        background-color: var(--gray);
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        height: 250px;
        cursor: pointer;
    }
    
    .project-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }
    
    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s;
        padding: 20px;
        text-align: center;
    }
    
    .project-card:hover .project-overlay {
        opacity: 1;
    }
    
    .project-card:hover img {
        transform: scale(1.1);
    }
    
    .project-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .project-category {
        color: var(--purple);
        margin-bottom: 15px;
    }
    .extra-project {
  display: none;
    }

    
    /* Contact section */
    .contact {
        padding: 80px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .contact-image {
        flex: 1;
        max-width: 80%;
        height: auto;
        margin-right: auto;
        margin-left: 0;
    }
    
    .contact-form {
        flex: 1;
        padding-left: 50px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 5px;
    }
    
    .form-control {
        width: 100%;
        padding: 12px;
        background-color: var(--gray);
        border: none;
        border-radius: 5px;
        color: var(--light);
    }
    
    textarea.form-control {
        min-height: 150px;
        resize: vertical;
    }
    
    /* Footer */
    footer {
        padding: 40px 0;
        text-align: center;
        background-color: var(--darker);
    }
    
    .footer-nav {
        margin-bottom: 20px;
    }
    
    .footer-nav ul {
        display: flex;
        justify-content: center;
        list-style: none;
    }
    
    .footer-nav ul li {
        margin: 0 15px;
    }
    
    .footer-nav ul li a {
        color: var(--light);
        text-decoration: none;
    }
    
    .social-links {
        margin-bottom: 20px;
    }
    
    .social-links a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--gray);
        color: var(--light);
        margin: 0 10px;
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .social-links a:hover {
        background-color: var(--purple);
        transform: translateY(-3px);
    }

    .purple-box {
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 150px;
        background-color: var(--purple);
        z-index: -1;
    }
    
    .gray-box {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 150px;
        height: 150px;
        background-color: #444;
        z-index: -1;
    }

