        :root {
            --primary: #3a86ff;
            --primary-dark: #2667cc;
            --primary-light: rgba(58, 134, 255, 0.1);
            --secondary: #8338ec;
            --accent: #ff006e;
            --dark: #0d1b2a;
            --darker: #070f1a;
            --light: #e0e1dd;
            --gray: #778da9;
            --dark-gray: #1b263b;
            --success: #38b000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        ::selection {
            background: var(--primary);
            color: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background-color: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            padding: 10px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo i {
            margin-right: 10px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--light);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            font-size: 16px;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            bottom: -8px;
            left: 0;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            color: var(--light);
            font-size: 24px;
            z-index: 1001;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            background: linear-gradient(-45deg,
                    var(--dark) 0%,
                    var(--darker) 30%,
                    #1a2a3a 60%,
                    #0f1a26 100%);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            position: relative;
            overflow: hidden;
        }

        @keyframes gradientBG {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* Floating Particles Animation */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 5px;
            height: 5px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: floatParticle linear infinite;
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        /* Glowing Text Effect */
        .glow-text {
            text-shadow: 0 0 10px rgba(58, 134, 255, 0.5);
            animation: glowPulse 3s ease-in-out infinite alternate;
        }

        @keyframes glowPulse {
            from {
                text-shadow: 0 0 10px rgba(58, 134, 255, 0.5);
            }

            to {
                text-shadow: 0 0 20px rgba(58, 134, 255, 0.8),
                    0 0 30px rgba(58, 134, 255, 0.3);
            }
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            flex: 1;
            padding-right: 50px;
        }

        .hero-text h1 {
            font-size: clamp(36px, 5vw, 60px);
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 700;
        }

        .hero-text h1 span {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .hero-text h1 span::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background-color: var(--primary);
            bottom: 5px;
            left: 0;
            z-index: -1;
            opacity: 0.3;
            border-radius: 3px;
        }

        .hero-text .title {
            font-size: clamp(16px, 2vw, 20px);
            color: var(--gray);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            font-weight: 400;
        }

        .hero-text .title::before {
            content: '';
            display: inline-block;
            width: 30px;
            height: 2px;
            background-color: var(--primary);
            margin-right: 15px;
        }

        .hero-text p {
            font-size: clamp(16px, 2vw, 18px);
            color: var(--gray);
            margin-bottom: 30px;
            max-width: 600px;
            font-weight: 300;
            line-height: 1.8;
        }

        .hero-image {
            flex: 1;
            text-align: center;
            position: relative;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary);
            border-radius: 20px;
            top: 20px;
            left: 20px;
            z-index: -1;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-image:hover::before {
            top: 15px;
            left: 15px;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 2px solid var(--primary);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-image:hover img {
            transform: translate(-5px, -5px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.2),
                    transparent);
            transition: 0.5s;
            z-index: -1;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(58, 134, 255, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            margin-left: 15px;
            transition: all 0.3s;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 0 20px rgba(58, 134, 255, 0.5);
        }

        .social-icons {
            display: flex;
            margin-top: 30px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--dark-gray);
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .social-icons a::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(58, 134, 255, 0.2) 0%, rgba(58, 134, 255, 0) 100%);
            top: 0;
            left: 0;
            transform: scale(0);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 50%;
        }

        .social-icons a:hover::before {
            transform: scale(1);
        }

        .social-icons a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
        }

        /* About Section */
        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: clamp(28px, 5vw, 36px);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            font-weight: 700;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--primary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary);
            border-radius: 10px;
            top: 20px;
            left: 20px;
            z-index: -1;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-image:hover::before {
            top: 15px;
            left: 15px;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--dark-gray);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-image:hover img {
            transform: translate(-5px, -5px);
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: clamp(22px, 3vw, 28px);
            margin-bottom: 20px;
            color: var(--primary);
            font-weight: 600;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--gray);
            line-height: 1.8;
            font-weight: 300;
        }

        .info-list {
            margin-top: 30px;
        }

        .info-item {
            display: flex;
            margin-bottom: 15px;
            transition: all 0.3s;
        }

        .info-item:hover {
            transform: translateX(5px);
        }

        .info-item strong {
            min-width: 120px;
            display: inline-block;
            color: var(--light);
            font-weight: 500;
        }

        .info-item span {
            color: var(--gray);
            font-weight: 300;
        }

        /* Photo Gallery Section */
        .photo-gallery {
            background-color: var(--darker);
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            aspect-ratio: 1/1;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
            bottom: 0;
            left: 0;
            opacity: 0;
            transition: all 0.3s;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            padding: 20px;
            color: white;
            z-index: 2;
            transition: all 0.3s;
        }

        .gallery-item:hover .gallery-caption {
            bottom: 0;
        }

        /* Skills Section */
        .skills {
            background-color: var(--darker);
        }

        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .skill-card {
            background-color: var(--dark-gray);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 3px solid var(--primary);
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(58, 134, 255, 0.05) 0%, rgba(58, 134, 255, 0) 100%);
            top: 0;
            left: 0;
            z-index: 0;
        }

        .skill-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border-color: var(--primary);
        }

        .skill-card i {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .skill-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .skill-card p {
            color: var(--gray);
            position: relative;
            z-index: 1;
            font-weight: 300;
            line-height: 1.8;
        }

        /* Experience Section */
        .experience-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .experience-card {
            background-color: var(--dark-gray);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            border-left: 3px solid var(--primary);
            transition: all 0.3s;
        }

        .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border-color: var(--primary);
        }

        .experience-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .experience-title {
            font-size: 22px;
            color: var(--primary);
            font-weight: 600;
        }

        .experience-date {
            color: var(--gray);
            font-size: 14px;
            background-color: var(--dark);
            padding: 5px 10px;
            border-radius: 20px;
        }

        .experience-company {
            color: var(--light);
            margin-bottom: 15px;
            display: block;
            font-weight: 500;
        }

        .experience-list {
            list-style-position: inside;
        }

        .experience-list li {
            margin-bottom: 10px;
            color: var(--gray);
            position: relative;
            padding-left: 15px;
            font-weight: 300;
            line-height: 1.8;
        }

        .experience-list li::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: var(--primary);
        }

        /* Projects Section */
        .project-card.featured {
            border: 2px solid var(--secondary);
            position: relative;
        }

        .project-card.featured::after {
            content: 'Featured';
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--secondary);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }

        .projects-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .project-card {
            background-color: var(--dark-gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
            border: 1px solid var(--dark-gray);
            position: relative;
        }

        .project-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
            bottom: 0;
            left: 0;
            opacity: 0;
            transition: all 0.3s;
            z-index: 1;
        }

        .project-card:hover::before {
            opacity: 1;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border-color: var(--primary);
        }

        .project-image {
            height: 200px;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .project-info {
            padding: 25px;
            position: relative;
            z-index: 2;
        }

        .project-info h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--primary);
            font-weight: 600;
        }

        .project-info p {
            color: var(--gray);
            margin-bottom: 20px;
            font-weight: 300;
            line-height: 1.8;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .project-tags span {
            background-color: var(--primary-light);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 12px;
            color: var(--primary);
            font-weight: 500;
        }

        /* Education Section */
        .education {
            background-color: var(--darker);
        }

        .education-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .education-card {
            background-color: var(--dark-gray);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border-left: 3px solid var(--primary);
            transition: all 0.3s;
        }

        .education-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            border-color: var(--primary);
        }

        .education-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary);
            font-weight: 600;
        }

        .education-card .institution {
            color: var(--light);
            margin-bottom: 10px;
            display: block;
            font-weight: 500;
        }

        .education-card .date {
            color: var(--gray);
            margin-bottom: 15px;
            display: block;
            font-size: 14px;
        }

        .education-card p {
            color: var(--gray);
            font-weight: 300;
            line-height: 1.8;
        }

        /* Contact Section */
        .contact-container {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary);
            font-weight: 600;
        }

        .contact-info p {
            margin-bottom: 30px;
            color: var(--gray);
            font-weight: 300;
            line-height: 1.8;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            transition: all 0.3s;
        }

        .contact-item:hover {
            transform: translateX(5px);
        }

        .contact-item i {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-item i.fa-whatsapp {
            background-color: #25d366;
        }

        .social-links a {
            text-decoration: none;
        }

        .social-icons a {
            text-decoration: none;
        }

        .contact-form {
            flex: 1;
            background: rgba(13, 27, 42, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(58, 134, 255, 0.2);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
        }

        .contact-form:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--light);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: var(--dark);
            border: 1px solid var(--dark-gray);
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s;
            color: var(--light);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(58, 134, 255, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Footer */
        footer {
            background-color: var(--darker);
            color: white;
            padding: 30px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 10px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
        }

        /* Floating elements */
        .floating {
            position: absolute;
            opacity: 0.1;
            z-index: 0;
        }

        .floating-1 {
            top: 10%;
            left: 5%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-2 {
            top: 60%;
            right: 10%;
            animation: float 8s ease-in-out infinite;
        }

        .floating-3 {
            bottom: 10%;
            left: 15%;
            animation: float 7s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }

            100% {
                transform: translateY(0) rotate(0deg);
            }
        }

        /* WhatsApp Contact Item Styles */
        .whatsapp-item {
            align-items: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .whatsapp-item:hover {
            transform: translateX(5px);
        }

        .whatsapp-icon {
            width: 40px;
            height: 40px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            transition: all 0.3s ease;
        }

        .whatsapp-item:hover .whatsapp-icon {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-text a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .whatsapp-text a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: #25d366;
            bottom: -2px;
            left: 0;
            transition: width 0.3s ease;
        }

        .whatsapp-text a:hover {
            color: #25d366;
        }

        .whatsapp-text a:hover::after {
            width: 100%;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
            transition: all 0.3s ease-in-out;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }

            .hero-text {
                padding-right: 0;
                margin-bottom: 50px;
                text-align: center;
            }

            .hero-buttons {
                display: flex;
                justify-content: center;
            }

            .about-content {
                flex-direction: column;
            }

            .contact-container {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--darker);
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
                transition: left 0.3s;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .gallery-container {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }

            .whatsapp-text a {
                font-size: 14px;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 30px;
                right: 20px;
                font-size: 25px;
            }
        }

        @media (max-width: 576px) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-outline {
                margin-left: 0;
                margin-top: 15px;
            }

            .projects-container {
                grid-template-columns: 1fr;
            }

            .experience-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .experience-date {
                margin-top: -10px;
            }
        }

        @media (min-width: 1200px) {
            .projects-container {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            }
        }