 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Raleway:wght@300;400;500;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
            border: none;
            outline: none;
            font-family: 'Raleway', sans-serif;
        }

        html {
            font-size: 62.5%;
            scroll-behavior: smooth;
        }

        body {
            width: 100%;
            min-height: 100vh;
            overflow-x: hidden;
            background-color: #0a0a0a;
            color: white;
            position: relative;
            font-family: 'Raleway', sans-serif;
        }

        /* Advanced Background Animation */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
        }

        .gradient-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0a0a0a 75%, #1a1a2e 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .floating-shapes div {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
            animation: float 20s infinite linear;
        }

        .floating-shapes div:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
            background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
        }

        .floating-shapes div:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 80%;
            animation-delay: -5s;
            animation-duration: 25s;
        }

        .floating-shapes div:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: -10s;
            background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
        }

        .floating-shapes div:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 40%;
            left: 70%;
            animation-delay: -15s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(90deg);
            }
            50% {
                transform: translateY(0) rotate(180deg);
            }
            75% {
                transform: translateY(20px) rotate(270deg);
            }
        }

        .grid-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(52, 152, 219, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(52, 152, 219, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.3;
        }

        header {
            margin-top: 20px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 9%;
            background-color: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(15px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(52, 152, 219, 0.2);
        }

        .logo {
            font-size: 3.5rem;
            color: #3498db;
            font-weight: 800;
            cursor: pointer;
            transition: 0.5s ease;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
        }

        .logo:hover {
            transform: scale(1.1);
            text-shadow: 0 0 25px rgba(52, 152, 219, 0.8);
        }

        nav a {
            font-size: 1.8rem;
            color: white;
            margin-left: 4rem;
            font-weight: 500;
            transition: 0.3s ease;
            border-bottom: 3px solid transparent;
            padding-bottom: 5px;
            font-family: 'Montserrat', sans-serif;
        }

        nav a:hover,
        nav a.active {
            color: #3498db;
            border-bottom: 3px solid #3498db;
            text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
        }

        .menu-toggle {
            display: none;
            font-size: 2.5rem;
            color: white;
            cursor: pointer;
        }

        section {
            min-height: 100vh;
            padding: 10rem 9% 5rem;
        }

        /* HOME SECTION - FIXED LAYOUT */
        .home {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8rem;
            position: relative;
            overflow: hidden;
        }

        .home-content {
            flex: 1;
            order: 1; /* Content on LEFT side */
        }

        .home-img {
            flex: 1;
            order: 2; /* Image on RIGHT side */
            border-radius: 50%;
            position: relative;
            z-index: 1;
            animation: floatImage 4s ease-in-out infinite;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        @keyframes floatImage {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        .home-img img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s linear;
            border: 5px solid #3498db;
            aspect-ratio: 1/1;
            object-fit: cover;
            background-color: white;
            padding: 5px;
            box-shadow: 0 0 40px rgba(52, 152, 219, 0.5);
        }

        .home-img img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 60px rgba(52, 152, 219, 0.8);
        }

        .home::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(52, 152, 219, 0.15) 0%, transparent 70%);
            top: -300px;
            right: -300px;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.05); }
        }

        .home .home-content h1 {
            font-size: 6rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 2rem;
            font-family: 'Montserrat', sans-serif;
            color: #3498db; /* Original blue color */
        }

        span {
            color: #3498db;
        }

        .home-content h3 {
            font-size: 4rem;
            margin-bottom: 1rem;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            color: #ffffff; /* White color */
        }

        .home-content p {
            font-size: 1.8rem;
            line-height: 1.8;
            margin-bottom: 3rem;
            color: #bdc3c7;
            max-width: 600px;
        }

        .contact-info {
            font-size: 1.8rem;
            margin-bottom: 4rem;
            line-height: 2;
            color: #ecf0f1;
        }

        .contact-info i {
            color: #3498db;
            margin-right: 1rem;
            width: 20px;
        }

        .contact-info a {
            color: #3498db;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
        }

        .contact-info a:hover {
            color: #2ecc71;
            text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
        }

        .contact-info a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #2ecc71;
            transition: width 0.3s ease;
        }

        .contact-info a:hover::after {
            width: 100%;
        }

        .social-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .social-icons a {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 90px;
            height: 90px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.1);
            font-size: 3.2rem;
            border-radius: 15px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
        }

        /* Individual platform colors */
        .linkedin-icon {
            color: #0077B5; /* LinkedIn blue */
        }
        
        .github-icon {
            color: #ffffff; /* GitHub white */
        }
        
        .leetcode-icon {
            color: #FFA116; /* LeetCode orange */
        }
        
        .gfg-icon {
            color: #2F8D46; /* GeeksforGeeks green */
        }
        
        .medium-icon {
            color: #ffffff; /* Medium white */
        }

        .social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: 0.5s;
        }

        .social-icons a:hover::before {
            left: 100%;
        }

        .social-icons a:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        /* Platform-specific hover backgrounds */
        .social-icons a[href*="linkedin"]:hover {
            background-color: #0077B5;
            border-color: #0077B5;
        }
        
        .social-icons a[href*="github"]:hover {
            background-color: #333333;
            border-color: #333333;
        }
        
        .social-icons a[href*="leetcode"]:hover {
            background-color: #FFA116;
            border-color: #FFA116;
        }
        
        .social-icons a[href*="geeksforgeeks"]:hover {
            background-color: #2F8D46;
            border-color: #2F8D46;
        }
        
        .social-icons a[href*="medium"]:hover {
            background-color: #00ab6c;
            border-color: #00ab6c;
        }

        /* Platform name below icon */
        .platform-name {
            font-size: 1.2rem;
            color: #bdc3c7;
            margin-top: 8px;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
        }

        .social-icons a:hover .platform-name {
            color: white;
            font-weight: 600;
        }

        /* Icon styling */
        .social-icons a i {
            transition: all 0.3s ease;
        }

        .social-icons a:hover i {
            color: white !important;
        }

        .btn {
            display: inline-block;
            padding: 1.8rem 4rem;
            background: linear-gradient(45deg, #3498db, #2ecc71);
            border-radius: 50px;
            font-size: 2rem;
            color: white;
            letter-spacing: 0.2rem;
            font-weight: 600;
            transition: all 0.4s ease;
            cursor: pointer;
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
            border: none;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
        }

        .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;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(52, 152, 219, 0.5);
            background: linear-gradient(45deg, #2ecc71, #3498db);
        }

        .typing-text {
            font-size: 3.5rem;
            font-weight: 700;
            min-width: 280px;
            height: 6rem;
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            font-family: 'Montserrat', sans-serif;
        }

        .typing-text span {
            position: relative;
        }

        .typing-text span::before {
            content: "Software Developer";
            color: #3498db;
            animation: words 20s infinite;
            text-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
        }

        .typing-text span::after {
            content: "";
            background-color: #0a0a0a;
            position: absolute;
            width: calc(100% + 8px);
            height: 100%;
            border-left: 3px solid #3498db;
            right: -8px;
            animation: cursor 0.8s infinite;
        }

        @keyframes cursor {
            0%, 100% {
                border-left: 3px solid #3498db;
            }
            50% {
                border-left: 3px solid transparent;
            }
        }

         @keyframes words {
            0%, 20% {
                content: "Software Developer";
            }
            21%, 40% {
                content: "Java Full Stack Developer";
            }
            41%, 60% {
                content: "AI & Data Science Student";
            }
            61%, 80% {
                content: "Problem Solver";
            }
            81%, 100% {
                content: "Web Developer";
            }
        } 

        /* Experience Section - REPLACED ABOUT */
        .experience {
            background-color: rgba(26, 26, 46, 0.5);
            position: relative;
            overflow: hidden;
        }

        .experience::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
            bottom: -200px;
            left: -200px;
        }

        .heading {
            font-size: 6rem;
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(45deg, #3498db, #2ecc71);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .heading::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 5px;
            background: linear-gradient(45deg, #3498db, #2ecc71);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }

        .experience-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .experience-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 4rem;
            border-radius: 20px;
            margin-bottom: 4rem;
            border: 1px solid rgba(52, 152, 219, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .experience-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
            border-color: #3498db;
        }

        .experience-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
            transition: 0.5s;
        }

        .experience-item:hover::before {
            left: 100%;
        }

        .experience-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .experience-header h3 {
            font-size: 2.8rem;
            color: #3498db;
            font-family: 'Montserrat', sans-serif;
        }

        .experience-date {
            font-size: 1.8rem;
            color: #2ecc71;
            font-weight: 600;
            background: rgba(46, 204, 113, 0.1);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            border: 1px solid rgba(46, 204, 113, 0.3);
        }

        .experience-details {
            font-size: 1.8rem;
            line-height: 1.8;
            color: #ecf0f1;
        }

        .experience-details p {
            margin-bottom: 1.5rem;
        }

        .experience-details ul {
            margin-left: 2rem;
            margin-bottom: 2rem;
            list-style: none;
        }

        .experience-details li {
            margin-bottom: 1rem;
            position: relative;
            padding-left: 2rem;
        }

        .experience-details li::before {
            content: '▸';
            color: #3498db;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* Education Section */
        .education {
            background-color: rgba(10, 10, 10, 0.8);
            position: relative;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, #3498db, #2ecc71);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
            margin-bottom: 5rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            padding-right: 70px;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            padding-left: 70px;
        }

        .timeline-content {
            padding: 3rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            border-left: 5px solid #3498db;
            position: relative;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(52, 152, 219, 0.2);
            transition: all 0.4s ease;
        }

        .timeline-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
            border-color: #3498db;
        }

        .timeline-content h3 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #3498db;
            font-family: 'Montserrat', sans-serif;
        }

        .timeline-content p {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
            color: #ecf0f1;
        }

        .timeline-content .date {
            font-size: 1.6rem;
            color: #2ecc71;
            font-style: italic;
            font-weight: 500;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            border-left: 5px solid #3498db;
        }

        .timeline-item:nth-child(even) .timeline-content {
            border-right: 5px solid #2ecc71;
            border-left: none;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background: linear-gradient(45deg, #3498db, #2ecc71);
            border: 4px solid #0a0a0a;
            border-radius: 50%;
            top: 15px;
            z-index: 1;
        }

        .timeline-item:nth-child(odd)::after {
            right: -12px;
        }

        .timeline-item:nth-child(even)::after {
            left: -12px;
        }

        .college-link {
            display: inline-block;
            margin-top: 1rem;
            color: #2ecc71;
            font-size: 1.6rem;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .college-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #2ecc71;
            transition: width 0.3s ease;
        }

        .college-link:hover {
            color: #3498db;
        }

        .college-link:hover::after {
            width: 100%;
        }

        /* Skills Section */
        .skills {
            background-color: rgba(26, 26, 46, 0.5);
        }

        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 3rem;
        }

        .skill-category {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 3rem;
            border-radius: 15px;
            transition: transform 0.3s ease;
            border: 1px solid rgba(52, 152, 219, 0.2);
            backdrop-filter: blur(10px);
        }

        .skill-category:hover {
            transform: translateY(-10px);
            border-color: #3498db;
            box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
        }

        .skill-category h3 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #3498db;
            text-align: center;
            font-family: 'Montserrat', sans-serif;
        }

        .skill-items {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }

        .skill-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background-color: rgba(37, 37, 37, 0.5);
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid rgba(52, 152, 219, 0.1);
        }

        .skill-item:hover {
            background-color: rgba(52, 152, 219, 0.2);
            transform: scale(1.1);
            border-color: #3498db;
        }

        .skill-item i {
            font-size: 3rem;
            margin-bottom: 5px;
        }

        .skill-item span {
            font-size: 1.2rem;
            color: white;
        }

        /* Projects Section */
        .projects {
            background-color: rgba(10, 10, 10, 0.8);
        }

        .projects-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 4rem;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(52, 152, 219, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
            border-color: #3498db;
        }

        .project-image {
            width: 100%;
            height: 180px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 2rem;
            background-size: cover;
            background-position: center;
        }

        .project-card h3 {
            font-size: 2.2rem;
            color: #3498db;
            margin-bottom: 1.5rem;
            font-family: 'Montserrat', sans-serif;
            text-align: center;
        }

        .project-card p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: #bdc3c7;
            text-align: center;
            flex-grow: 1;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .tech-tag {
            background: linear-gradient(45deg, #3498db, #2ecc71);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .project-links {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-top: auto;
        }

        .project-link {
            position: relative;
            color: #fff;
            padding: 1.2rem 3rem;
            border-radius: 30px;
            font-size: 1.4rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            z-index: 1;
            background: transparent;
        }

        .project-link::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(90deg, #3498db, #2ecc71, #3498db);
            background-size: 200% auto;
            z-index: -2;
            border-radius: 30px;
            animation: gradientMoveBtn 3s linear infinite;
        }

        .project-link::after {
            content: '';
            position: absolute;
            top: 2px; left: 2px; right: 2px; bottom: 2px;
            background: #151515;
            z-index: -1;
            border-radius: 28px;
            transition: all 0.4s ease;
        }

        .project-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
            color: #fff;
            text-shadow: 0 0 5px rgba(0,0,0,0.5);
        }

        .project-link:hover::after {
            opacity: 0;
        }

        @keyframes gradientMoveBtn {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        .demo-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #e74c3c, #f39c12);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-size: 1.2rem;
            font-weight: 600;
            z-index: 10;
        }

        /* Certifications Section */
        .certifications {
            background-color: rgba(26, 26, 46, 0.5);
        }

        .certifications-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 3rem;
        }

        .cert-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 3rem;
            border-radius: 20px;
            transition: all 0.4s ease;
            border: 1px solid rgba(52, 152, 219, 0.2);
            backdrop-filter: blur(10px);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .cert-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
            border-color: #3498db;
        }

        .cert-img {
            width: 100%;
            height: 180px;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 2rem;
            background-color: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cert-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 5px;
        }

        .cert-card h3 {
            font-size: 2.2rem;
            color: #3498db;
            margin-bottom: 1.5rem;
            min-height: 60px;
            font-family: 'Montserrat', sans-serif;
        }

        .cert-card p {
            font-size: 1.6rem;
            margin-bottom: 2rem;
            flex-grow: 1;
            color: #ecf0f1;
        }

        .cert-link {
            background: linear-gradient(45deg, #3498db, #2ecc71);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-size: 1.6rem;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cert-link:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
        }

        /* Contact Section */
        .contact {
            background-color: rgba(10, 10, 10, 0.8);
            text-align: center;
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-info-large {
            font-size: 2.2rem;
            margin-bottom: 5rem;
            line-height: 1.8;
            color: #ecf0f1;
        }

        .contact-info-large i {
            color: #3498db;
            margin-right: 1.5rem;
            width: 25px;
        }

        .contact-info-large a {
            color: #3498db;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
        }

        .contact-info-large a:hover {
            color: #2ecc71;
            text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
        }

        .contact-info-large a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #2ecc71;
            transition: width 0.3s ease;
        }

        .contact-info-large a:hover::after {
            width: 100%;
        }

        .contact-social-icons {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .contact-social-icons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 7rem;
            height: 7rem;
            background-color: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(52, 152, 219, 0.3);
            font-size: 3rem;
            border-radius: 50%;
            transition: all 0.4s ease;
            color: #3498db;
            position: relative;
            overflow: hidden;
        }

        .contact-social-icons a::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;
        }

        .contact-social-icons a:hover::before {
            left: 100%;
        }

        .contact-social-icons a:hover {
            color: white;
            transform: translateY(-10px) scale(1.1);
            background-color: #3498db;
            border-color: #3498db;
            box-shadow: 0 10px 30px rgba(52, 152, 219, 0.5);
        }

        footer {
            background-color: rgba(26, 26, 46, 0.8);
            padding: 4rem 0;
            text-align: center;
            font-size: 1.8rem;
            color: #bdc3c7;
            border-top: 1px solid rgba(52, 152, 219, 0.2);
        }

        footer p {
            margin-bottom: 1rem;
        }

        /* Responsive Design */
        @media(max-width: 1200px) {
            .home {
                gap: 4rem;
            }
            
            html {
                font-size: 55%;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item:nth-child(odd)::after,
            .timeline-item:nth-child(even)::after {
                left: 18px;
            }
        }

        @media(max-width: 995px) {
            .menu-toggle {
                display: block;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 15rem;
                transition: right 0.5s ease;
                z-index: 999;
                border-left: 3px solid #3498db;
            }

            nav.active {
                right: 0;
            }

            nav a {
                display: block;
                font-size: 2.5rem;
                margin: 2.5rem 0;
                text-align: center;
                padding: 1rem;
            }

            nav a:hover,
            nav a.active {
                padding: 1rem;
                border-radius: 0.5rem;
                border-bottom: 0.5rem solid #3498db;
            }

            .home {
                flex-direction: column;
                text-align: center;
                gap: 6rem;
                padding-top: 15rem;
            }

            .home-content {
                order: 2;
            }

            .home-img {
                order: 1;
            }

            .home-img img {
                width: 70vw;
                max-width: 400px;
            }

            .home .home-content h3 {
                font-size: 3.5rem;
            }

            .home-content h1 {
                font-size: 5rem;
            }

            .typing-text {
                font-size: 3rem;
                height: 5rem;
                justify-content: center;
            }
            
            .social-icons {
                justify-content: center;
            }
            
            .contact-social-icons {
                flex-wrap: wrap;
            }
        }

        @media(max-width: 768px) {
            section {
                padding: 12rem 5% 5rem;
            }

            .heading {
                font-size: 5rem;
            }

            .skills-container,
            .projects-container,
            .certifications-container {
                grid-template-columns: 1fr;
            }

            .project-card {
                height: auto;
            }

            .home-img img {
                width: 80vw;
            }
            
            .experience-item {
                padding: 3rem;
            }
            
            .experience-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .social-icons a {
                width: 80px;
                height: 80px;
                font-size: 2.8rem;
            }
            
            .platform-name {
                font-size: 1.1rem;
            }
        }

        @media(max-width: 450px) {
            html {
                font-size: 50%;
            }

            .home-img img {
                width: 90vw;
            }

            .social-icons a {
                width: 70px;
                height: 70px;
                font-size: 2.5rem;
            }
            
            .platform-name {
                font-size: 1rem;
            }
            
            .heading {
                font-size: 4rem;
            }
            
            .contact-social-icons a {
                width: 6rem;
                height: 6rem;
                font-size: 2.5rem;
            }
        }