/* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
            :root {
            --primary-color: #007bff;
            --text-dark: #333;
            --text-light: #fff;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; overflow-x: hidden; }
        .container { width: 90%; max-width: 1200px; margin: auto; padding: 0 20px; }
        
        /* Header Responsiveness */
        header { position: fixed; width: 100%; top: 0; z-index: 1000; background:black; transition: 0.3s; }
        .header-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .nav-links { display: flex; list-style: none; }
        .nav-links li { margin-left: 20px; }

        .mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

        /* Hero Section Responsiveness */
        .hero { padding: 120px 0 60px; min-height: 100vh; display: flex; align-items: center; }
        .hero-content { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
        .hero-text { flex: 1; min-width: 300px; }
        .hero-image { flex: 1; min-width: 300px; text-align: center; }
        .profile-img { width: 300px; height: 300px; object-fit: cover; border-radius: 50%; }
        
        /* Updated Hero Button */
        .email-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #f80c08;
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 30px;
        }
        
        .email-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            background: #202021;
        }
        
        .email-btn i {
            font-size: 1.1rem;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #525455;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* About & Experience */
        .about-content { display: flex; gap: 40px; flex-wrap: wrap; }
        .about-text { flex: 1; min-width: 300px; }
        .about-image { flex: 1; min-width: 300px; }
        .about-image img { width: 100%; border-radius: 10px; }
        .skills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
        .skill-item { background: rgb(140, 137, 137); padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; }

        /* Projects Grid */
        .projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
        .project-card { border: 1px solid black; border-radius: 10px; overflow: hidden; }
        .project-img { width: 100%; height: 200px; object-fit: cover; }
        .project-content { padding: 20px; }

        /* Experience Section - Matched to Project Style */
        .experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
        .experience-card { 
            border: 1px solid rgb(197, 64, 64); 
            border-radius: 10px; 
            overflow: hidden; 
            display: flex; 
            flex-direction: column; 
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: rgba(0, 0, 0, 0.7);
        }
        .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
            border-color: #f80505;
        }
        .experience { background: linear-gradient(rgba(34, 24, 24, 0.9), rgba(243, 239, 239, 0.9)), url('https://images.unsplash.com/photo-1509228468518-180dd4864904?auto=format&fit=crop&q=80&w=2000'); background-size: cover; background-attachment: fixed; }
        .experience-content { padding: 20px; flex-grow: 1; }

        .exp-date {
            display: inline-block;
            background: #f80505;
            color: #060606;
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .exp-company {
            font-size: 1rem;
            color: hsl(0, 92%, 46%);
            font-weight: 600;
            margin-bottom: 10px;
            
        }
        
        .exp-description { color: #fff; font-size: 0.95rem; }
        
        .exp-description p {
            margin-bottom: 10px;
        }
        
        /* SIMPLIFIED Contact Section - NO FORM */
        .contact-content { 
            display: flex; 
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 40px; 
            margin-top: 40px;
        }
        
        .direct-email-cta {
            text-align: center;
            margin-top: 50px;
            padding: 40px;
            background: #f8f9fa;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid #eaeaea;
            max-width: 800px;
            width: 100%;
        }
        
        .direct-email-cta h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #333;
        }
        
        .direct-email-cta p {
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: #0e0e0e;
            padding: 60px 0 30px;
            text-align: center;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #f0eaea;
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: #ee0505ef;
        }
        
        footer p {
            color: #fff;
            margin-bottom: 30px;
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #5b5858;
            color: #777;
            font-size: 0.9rem;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: #fff;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active { left: 0; }
            .nav-links li { margin: 15px 0; }
            .hero-content { flex-direction: column-reverse; text-align: center; }
            .social-links { justify-content: center; }
            
            .experience-grid { grid-template-columns: 1fr; }
            
            .direct-email-cta {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            .container { width: 95%; }
            .project-card { min-width: 100%; }
            
            .email-btn {
                padding: 10px 25px;
                font-size: 0.95rem;
            }
        }

        :root {
            --primary: #000000;
            --secondary: #fbf3f3;
            --accent: #ff0000;
            --gray: #333333;
            --light-gray: #444444;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary);
            color: var(--secondary);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        h1 {
            font-size: 3.5rem;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        h2:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background-color: var(--accent);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent);
            color: var(--secondary);
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #cc0000;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(0, 0, 0, 0.9);
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
         .nav-links li a:hover {
            color: #f40707 !important;
            transition: 0.3s;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background:none;
            border: none;
            color: var(--secondary);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            padding-top: 80px;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
                       radial-gradient(circle at 30% 70%, rgba(0, 100, 255, 0.1) 0%, transparent 50%);
            z-index: 0;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            flex: 1;
            padding-right: 50px;
        }

        .hero-image {
            flex: 1;
            text-align: center;
            position: relative;
        }

        /* Data Science Background Effect for Profile Picture */
        .hero-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 380px;
            height: 380px;
            background: 
                radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1.5" fill="%23ff0000" opacity="0.5"/><circle cx="50" cy="30" r="1.5" fill="%230070ff" opacity="0.5"/><circle cx="80" cy="40" r="1.5" fill="%2300ff88" opacity="0.5"/><circle cx="30" cy="70" r="1.5" fill="%23ff0000" opacity="0.5"/><circle cx="60" cy="80" r="1.5" fill="%230070ff" opacity="0.5"/><circle cx="90" cy="60" r="1.5" fill="%2300ff88" opacity="0.5"/></svg>') repeat,
                linear-gradient(45deg, transparent 30%, rgba(0, 100, 255, 0.05) 50%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1.05);
            }
        }

        .profile-img {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--accent);
            box-shadow: 0 0 40px rgba(255, 0, 0, 0.4);
            position: relative;
            z-index: 2;
            background-color: var(--primary);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 10px;
        }

        .hero h1 span {
            color: var(--accent);
        }

        .hero .title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #cccccc;
        }

        .social-links {
            display: flex;
            margin-top: 30px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: var(--gray);
            color: var(--secondary);
            border-radius: 50%;
            margin-right: 15px;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-5px);
        }

        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .about-text {
            flex: 1;
            padding-right: 50px;
        }

        .about-image {
            flex: 1;
            text-align: center;
            position: relative;
        }

        /* Add data science visualization pattern to about section */
        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 150px;
            height: 150px;
            background: 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M0,20 Q10,5 20,20 T40,20" fill="none" stroke="%23ff0000" stroke-width="1.5" opacity="0.3"/><path d="M0,25 Q10,10 20,25 T40,25" fill="none" stroke="%230070ff" stroke-width="1.5" opacity="0.3"/><path d="M0,30 Q10,15 20,30 T40,30" fill="none" stroke="%2300ff88" stroke-width="1.5" opacity="0.3"/></svg>') repeat;
            z-index: -1;
            opacity: 0.7;
        }

        .about-image img {
            width: 100%;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 1;
        }

        .skills {
            display: flex;
            flex-wrap:wrap;
            margin-top: 30px;
        }

        .skill-item {
            background-color: var(--gray);
            padding: 10px 20px;
            margin: 0 10px 10px 0;
            border-radius: 5px;
            font-weight: 500;
            
        }

        .skill-item:nth-child(odd) {
            border-left: 4px solid var(--accent);
        }

        .skill-item:nth-child(even) {
            border-left: 4px solid var(--secondary);
        }

        /* Experience Section */
        .experience {
            background-color: var(--gray);
            position: relative;
            overflow: hidden;
        }

        /* Add data grid pattern background to experience section */
        .experience::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><line x1="0" y1="20" x2="100" y2="20" stroke="%23ff0000" stroke-width="1" opacity="0.1"/><line x1="0" y1="40" x2="100" y2="40" stroke="%23ff0000" stroke-width="1" opacity="0.1"/><line x1="0" y1="60" x2="100" y2="60" stroke="%23ff0000" stroke-width="1" opacity="0.1"/><line x1="0" y1="80" x2="100" y2="80" stroke="%23ff0000" stroke-width="1" opacity="0.1"/></svg>') repeat;
            z-index: 0;
        }

        .timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background-color: var(--accent);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 50px;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            justify-content: flex-start;
            padding-right: calc(50% + 30px);
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-end;
            padding-left: calc(50% + 30px);
        }

        .timeline-content {
            background-color: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            width: 100%;
            word-wrap: break-word;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
        }

        .timeline-content:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
            background-color: #1a1a1a;
        }

        .timeline-content h3 {
            color: var(--accent);
        }

        .timeline-date {
            position: absolute;
            top: 0;
            background-color: var(--accent);
            color: var(--secondary);
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
        }

        .timeline-item:nth-child(odd) .timeline-date {
            right: calc(50% - 75px);
        }

        .timeline-item:nth-child(even) .timeline-date {
            left: calc(50% - 75px);
        }

        /* Projects Section */
        .projects {
            position: relative;
            overflow: hidden;
        }

        /* Add subtle data grid pattern to projects section */
        .projects::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect x="0" y="0" width="60" height="60" fill="none" stroke="%23ff0000" stroke-width="0.5" opacity="0.05"/></svg>') repeat;
            z-index: 0;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .project-card {
            background-color: var(--gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
        }

        .project-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-img {
            transform: scale(1.05);
        }

        .project-content {
            padding: 25px;
        }

        .project-content h3 {
            color: var(--accent);
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            margin-top: 15px;
        }

        .tag {
            background-color: var(--light-gray);
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 0.8rem;
            margin-right: 8px;
            margin-bottom: 8px;
            border: 1px solid rgba(255, 0, 0, 0.3);
        }

        /* Contact Section */
        .contact {
            background-color: var(--gray);
            position: relative;
            overflow: hidden;
        }

        /* Add data flow pattern to contact section */
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><path d="M10,10 C30,30 50,50 70,30 C90,10 110,30 110,50" fill="none" stroke="%23ff0000" stroke-width="1" opacity="0.05"/></svg>') repeat;
            z-index: 0;
        }

        .contact-content {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .contact-info {
            flex: 1;
            padding-right: 50px;
        }

        .contact-form {
            flex: 1;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.5rem;
            color: var(--accent);
            border: 2px solid rgba(255, 0, 0, 0.3);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            background-color: var(--light-gray);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: var(--secondary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: #111;
            padding: 50px 0 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Add subtle data dots pattern to footer */
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="5" cy="5" r="1" fill="%23ff0000" opacity="0.1"/><circle cx="20" cy="15" r="1" fill="%23ff0000" opacity="0.1"/><circle cx="35" cy="25" r="1" fill="%23ff0000" opacity="0.1"/></svg>') repeat;
            z-index: 0;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .footer-logo span {
            color: var(--accent);
        }

        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid var(--light-gray);
            color: #999;
            position: relative;
            z-index: 1;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero-content,
            .about-content,
            .contact-content {
                flex-direction: column;
            }
            
            .hero-text,
            .about-text,
            .contact-info {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .profile-img {
                width: 300px;
                height: 300px;
            }
            
            .hero-image::before {
                width: 330px;
                height: 330px;
            }
            
            .timeline:before {
                left: 30px;
            }
            
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                justify-content: flex-start;
                padding-right: 0;
                padding-left: 80px;
            }
            
            .timeline-item:nth-child(odd) .timeline-date,
            .timeline-item:nth-child(even) .timeline-date {
                left: 0;
                right: auto;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: #000000;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.5s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 0 0 30px 0;
            }
            
            .nav-links a {
                font-size: 1.5rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .profile-img {
                width: 250px;
                height: 250px;
            }
            
            .hero-image::before {
                width: 280px;
                height: 280px;
            }
            
            .about-image::before {
                width: 120px;
                height: 120px;
                top: -10px;
                right: -10px;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero .title {
                font-size: 1.4rem;
            }
            
            .profile-img {
                width: 200px;
                height: 200px;
            }
            
            .hero-image::before {
                width: 230px;
                height: 230px;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .about-image::before {
                display: none;
            }
        }