/* Custom properties */
        :root {
            --primary-color: #0a0a0a;
            --secondary-color: #f8f9fa;
            --accent-color: #FE314A;
            --text-color: #333;
            --light-gray: #f0f0f0;
            --dark-gray: #555;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --gradient: linear-gradient(135deg, #FE314A 0%, #FF8E53 100%);
        }

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--secondary-color);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        .btn {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 15px 32px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 16px;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 20px rgba(254, 49, 74, 0.3);
            position: relative;
            z-index: 1;
            overflow: hidden;
            text-transform: uppercase;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(135deg, #FF8E53 0%, #FE314A 100%);
            transition: var(--transition);
            z-index: -1;
            border-radius: 50px;
        }

        .btn:hover:before {
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(254, 49, 74, 0.4);
        }

        .section-title {
            font-size: 42px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            font-weight: 800;
            color: var(--primary-color);
            text-transform: uppercase;
        }

        .section-subtitle {
            display: block;
            font-size: 16px;
            font-weight: 500;
            color: var(--accent-color);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-description {
            max-width: 700px;
            margin-bottom: 50px;
            color: var(--dark-gray);
            font-size: 18px;
            line-height: 1.8;
        }

        /* Animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideLeft {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .reveal {
            opacity: 0;
            transition: all 1s;
        }

        .reveal.active {
            opacity: 1;
        }

        .active.fade-up {
            animation: fadeUp 0.8s forwards;
        }

        .active.fade-in {
            animation: scaleIn 0.8s forwards;
        }

        .active.slide-right {
            animation: slideRight 0.8s forwards;
        }

        .active.slide-left {
            animation: slideLeft 0.8s forwards;
        }

        /* Header */
        header {
            background-color: transparent;
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            padding: 20px 0;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--box-shadow);
            padding: 15px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo img {
            vertical-align: middle;
            margin-right: 8px;
        }
        .logo {
            display: flex;
            align-items: center;
            font-size: 28px;
            font-weight: 900;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .logo img {
            width: 40px; /* Adjust size as needed */
            height: auto;
            margin-right: 10px;
        }
        
        .logo span {
            color: var(--accent-color);
        }

        .nav-links {
            display: flex;
            align-items: center;
        }

        .nav-links li {
            margin-left: 40px;
        }

        .nav-links a {
            position: relative;
            font-weight: 600;
            font-size: 16px;
            transition: var(--transition);
            color: var(--primary-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            margin: 5px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-color: var(--secondary-color);
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background-color: var(--primary-color);
            clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
            z-index: 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 64px;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--primary-color);
            font-weight: 900;
            text-transform: uppercase;
        }

        .hero-text h1 span {
            color: var(--accent-color);
            display: block;
        }

        .hero-text p {
            font-size: 18px;
            margin-bottom: 35px;
            max-width: 500px;
            color: var(--dark-gray);
            line-height: 1.8;
        }

        .hero-image {
            text-align: right;
            position: relative;
        }

        .hero-image img {
            border-radius: 20px;
            box-shadow: var(--box-shadow);
            max-height: 550px;
            width: 90%;
            object-fit: cover;
            transition: var(--transition);
            filter: brightness(0.9);
        }

        .hero-image::before {
            content: '';
            position: absolute;
            width: 90%;
            height: calc(100% - 40px);
            border: 5px solid var(--accent-color);
            border-radius: 20px;
            top: -20px;
            left: 0;
            z-index: -1;
        }

        .social-links-vertical {
            position: absolute;
            left: -60px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            z-index: 10;
        }

        .social-links-vertical a {
            width: 40px;
            height: 40px;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin: 8px 0;
            transition: var(--transition);
            color: var(--primary-color);
            font-size: 18px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .social-links-vertical a:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-5px);
        }

        .scroll-down {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            z-index: 1;
        }

        .scroll-down span {
            margin-bottom: 10px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 2px;
            font-size: 12px;
        }

        .scroll-down i {
            animation: bounce 2s infinite;
            font-size: 24px;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* About Section */
        .about {
            background-color: white;
            overflow: hidden;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: 20px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            width: 100%;
            filter: brightness(0.95);
        }

        .about-image::after {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            background: var(--gradient);
            bottom: -30px;
            right: -30px;
            border-radius: 20px;
            z-index: -1;
        }

        .about-text p {
            margin-bottom: 25px;
            color: var(--dark-gray);
            font-size: 17px;
            line-height: 1.8;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
            background-color: var(--light-gray);
            padding: 30px 20px;
            border-radius: 20px;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow);
            background: var(--gradient);
        }

        .stat-item:hover .stat-value,
        .stat-item:hover .stat-title {
            color: white;
        }

        .stat-value {
            font-size: 40px;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 10px;
            transition: var(--transition);
        }

        .stat-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-color);
            text-transform: uppercase;
            transition: var(--transition);
        }

        .skills-container {
            margin-top: 40px;
        }

        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .skill-tag {
            background-color: var(--light-gray);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            transition: var(--transition);
            color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .skill-tag:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(254, 49, 74, 0.2);
        }

        /* Services Section */
        .services {
            background-color: var(--secondary-color);
            position: relative;
            overflow: hidden;
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
        }

        .service-item {
            background-color: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .service-item:hover {
            transform: translateY(-15px);
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient);
            transition: var(--transition);
            z-index: -1;
            opacity: 0;
        }

        .service-item:hover::before {
            height: 100%;
            opacity: 1;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background-color: var(--light-gray);
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
            margin-bottom: 25px;
            font-size: 28px;
            color: var(--accent-color);
            transition: var(--transition);
        }

        .service-item:hover .service-icon {
            background-color: white;
            color: var(--accent-color);
        }

        .service-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .service-description {
            color: var(--dark-gray);
            font-size: 16px;
            line-height: 1.7;
            transition: var(--transition);
        }

        .service-item:hover .service-title,
        .service-item:hover .service-description {
            color: white;
        }

        /* Projects Section */
        .projects {
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .project-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }

        .project-filter {
            padding: 12px 24px;
            background-color: var(--light-gray);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            transition: var(--transition);
            color: var(--primary-color);
        }

        .project-filter.active,
        .project-filter:hover {
            background: var(--gradient);
            color: white;
            box-shadow: 0 5px 15px rgba(254, 49, 74, 0.3);
        }

        .projects-carousel {
            margin-top: 50px;
            position: relative;
            padding: 0 50px;
        }

        .swiper-container {
            overflow: visible;
        }

        .project-slide {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            background-color: white;
            transform: scale(0.85);
            opacity: 0.5;
        }

        .swiper-slide-active .project-slide {
            transform: scale(1);
            opacity: 1;
        }

        .project-image {
            position: relative;
            overflow: hidden;
            height: 300px;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .project-slide:hover .project-image img {
            transform: scale(1.1);
        }

        .video-duration {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            width: 70px;
            height: 70px;
            background-color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            opacity: 0;
            transition: var(--transition);
            z-index: 2;
            box-shadow: 0 10px 30px rgba(254, 49, 74, 0.5);
        }

        .play-button i {
            font-size: 24px;
            margin-left: 5px;
        }

        .project-slide:hover .play-button {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: var(--transition);
        }

        .project-slide:hover .project-overlay {
            opacity: 1;
        }

        .project-overlay h3 {
            color: white;
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .project-overlay p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            margin-bottom: 15px;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .project-overlay .tag {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }

        .project-info {
            padding: 25px;
        }

        .project-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .project-info p {
            color: var(--dark-gray);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .carousel-navigation {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 30px;
        }

        .carousel-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: white;
            box-shadow: var(--box-shadow);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-button:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-5px);
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--secondary-color);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(254, 49, 74, 0.05);
            border-radius: 50%;
            top: -200px;
            right: -200px;
        }

        .testimonials-carousel {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-slide {
            background-color: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: var(--box-shadow);
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .testimonial-slide::before {
            content: '\201C';
            font-size: 150px;
            line-height: 0;
            position: absolute;
            top: 70px;
            left: 30px;
            color: rgba(254, 49, 74, 0.1);
            font-family: Georgia, serif;
            z-index: -1;
        }

        .testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            font-style: italic;
            color: var(--dark-gray);
            margin-bottom: 30px;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .author-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 15px;
            border: 5px solid var(--light-gray);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .author-role {
            color: var(--accent-color);
            font-size: 15px;
            font-weight: 600;
        }

        .testimonial-pagination {
            text-align: center;
            margin-top: 40px;
        }

        .testimonial-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: var(--dark-gray);
            opacity: 0.3;
            transition: var(--transition);
            margin: 0 5px;
        }

        .testimonial-pagination .swiper-pagination-bullet-active {
            background-color: var(--accent-color);
            opacity: 1;
            transform: scale(1.3);
        }

        /* Contact Section */
        .contact {
            background-color: white;
            position: relative;
            overflow: hidden;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info {
            padding: 40px;
            background-color: var(--light-gray);
            border-radius: 20px;
            position: relative;
            z-index: 1;
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        .contact-info::before {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: var(--gradient);
            border-radius: 50%;
            top: -75px;
            right: -75px;
            z-index: -1;
            opacity: 0.1;
        }

        .contact-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .contact-text {
            color: var(--dark-gray);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .contact-item:hover {
            transform: translateX(10px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 20px;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(254, 49, 74, 0.3);
        }

        .contact-label {
            font-weight: 600;
            font-size: 17px;
            color: var(--primary-color);
        }

        .contact-value {
            font-size: 15px;
            color: var(--dark-gray);
            display: block;
            margin-top: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary-color);
            font-size: 18px;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .social-links a:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(254, 49, 74, 0.3);
        }

        .contact-form {
            padding: 40px;
            background-color: white;
            border-radius: 20px;
            box-shadow: var(--box-shadow);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--primary-color);
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--light-gray);
            border-radius: 10px;
            font-size: 16px;
            transition: var(--transition);
            color: var(--primary-color);
            font-family: inherit;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(254, 49, 74, 0.1);
        }

        textarea.form-control {
            height: 150px;
            resize: none;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            border-radius: 10px;
            text-align: center;
            margin-top: 10px;
            font-size: 16px;
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0 40px;
            text-align: center;
        }

        .footer-logo {
            font-size: 32px;
            font-weight: 900;
            margin-bottom: 30px;
            display: inline-block;
        }

        .footer-logo span {
            color: var(--accent-color);
        }

        .footer-text {
            max-width: 600px;
            margin: 0 auto 40px;
            color: #aaa;
            line-height: 1.8;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-links a {
            color: #aaa;
            font-weight: 500;
            transition: var(--transition);
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .footer-social a {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 20px;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--gradient);
            transform: translateY(-10px);
        }

        .copyright {
            color: #aaa;
            font-size: 15px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Decorative Elements */
        .circle-decoration {
            position: absolute;
            border-radius: 50%;
            z-index: -1;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            background: rgba(254, 49, 74, 0.05);
            top: 10%;
            left: -150px;
        }

        .circle-2 {
            width: 200px;
            height: 200px;
            background: rgba(255, 142, 83, 0.05);
            bottom: 5%;
            right: -100px;
        }

        /* Media Queries */
        @media screen and (max-width: 1200px) {
            .hero-text h1 {
                font-size: 54px;
            }
            .social-links-vertical {
                left: -20px;
            }
        }

        @media screen and (max-width: 992px) {
            section {
                padding: 80px 0;
            }
            .hero-text h1 {
                font-size: 48px;
            }
            .about-content, 
            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .about-image {
                order: -1;
            }
            .social-links-vertical {
                display: none;
            }
            .services-container {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            .testimonial-slide {
                padding: 40px 30px;
            }
        }

        @media screen and (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            .section-title {
                font-size: 36px;
            }
            .hero {
                min-height: auto;
                padding-top: 120px;
                padding-bottom: 60px;
            }
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            .hero-text p {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-image {
                text-align: center;
            }
            .hero-image img {
                width: 80%;
                margin: 0 auto;
            }
            .hero::before {
                width: 100%;
                height: 40%;
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
                top: 0;
            }
            .stat-item {
                padding: 20px 15px;
            }
            .stat-value {
                font-size: 32px;
            }
            .stat-title {
                font-size: 14px;
            }
            .nav-links {
                position: fixed;
                right: 0;
                top: 0;
                background-color: var(--primary-color);
                height: 100vh;
                width: 300px;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 50px 0;
                clip-path: circle(0px at calc(100% - 45px) 45px);
                transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                pointer-events: none;
                z-index: 100;
            }
            .nav-links.open {
                clip-path: circle(1000px at calc(100% - 45px) 45px);
                pointer-events: all;
            }
            .nav-links li {
                margin: 20px 0;
                opacity: 0;
            }
            .nav-links li a {
                font-size: 20px;
                color: white;
            }
            .burger {
                display: block;
                z-index: 101;
            }
            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
                background-color: white;
            }
            .burger.active .line2 {
                opacity: 0;
            }
            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
                background-color: white;
            }
            .projects-carousel {
                padding: 0 20px;
            }
            .carousel-button {
                width: 50px;
                height: 50px;
            }
            .testimonial-text {
                font-size: 16px;
            }
            .contact-info,
            .contact-form {
                padding: 30px;
            }
        }

        @media screen and (max-width: 576px) {
            .section-title {
                font-size: 32px;
            }
            .hero-text h1 {
                font-size: 36px;
            }
            .stats-container {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .project-slide {
                transform: scale(1);
            }
            .project-filter {
                padding: 10px 16px;
                font-size: 14px;
            }
            .testimonial-slide {
                padding: 30px 20px;
            }
            .author-image {
                width: 60px;
                height: 60px;
            }
            .footer-links {
                gap: 15px;
            }
        }

        /* Animation for nav links */
        @keyframes navLinkFade {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
    
