        :root {
            --primary: #1a1a1a;
            --secondary: #2d2d2d;
            --accent: #0066cc;
            --text: #333333;
            --text-light: #666666;
            --bg: #ffffff;
            --bg-alt: #f8f8f8;
            --border: #e0e0e0;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Work Sans', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Typography */
        h1,
        h2,
        h3 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }

        nav.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 400;
            position: relative;
            transition: var(--transition);
            letter-spacing: 0.5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 102, 204, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            33% {
                transform: translate(30px, -30px) rotate(120deg);
            }

            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .greeting {
            font-size: 1.1rem;
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.3s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .hero h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--primary);
            opacity: 0;
            animation: fadeIn 1s ease-out 0.5s forwards;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            font-weight: 300;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.7s forwards;
        }

        .hero-description {
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.9s forwards;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.1s forwards;
        }

        .btn {
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-block;
            cursor: pointer;
            border: none;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
        }

        .btn-primary:hover {
            background: #0052a3;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--accent);
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            color: var(--accent);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: var(--text-light);
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .skill-tag {
            background: var(--bg-alt);
            padding: 0.75rem 1rem;
            border-radius: 6px;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid var(--border);
        }

        .skill-tag:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
            transform: translateY(-3px);
        }

        /* Experience Section */
        .experience-timeline {
            position: relative;
            padding-left: 2rem;
        }

        .experience-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border);
        }

        .experience-item {
            position: relative;
            margin-bottom: 3rem;
            padding-left: 2rem;
        }

        .experience-item::before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 0.5rem;
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 0 2px var(--accent);
        }

        .experience-date {
            color: var(--accent);
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .experience-title {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .experience-company {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-style: italic;
        }

        .experience-description {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
            gap: 2.5rem;
        }

        .project-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: var(--transition);
            cursor: pointer;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--accent);
        }

        .project-header {
            background: var(--bg-alt);
            padding: 2rem;
            border-bottom: 1px solid var(--border);
        }

        .project-title {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .project-tech {
            color: var(--accent);
            font-size: 0.85rem;
            font-weight: 500;
        }

        .project-body {
            padding: 2rem;
        }

        .project-description {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .project-metrics {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .metric {
            display: flex;
            flex-direction: column;
        }

        .metric-value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
        }

        .metric-label {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* Education Section */
        .education-card {
            background: var(--bg-alt);
            padding: 3rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .education-info h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .education-degree {
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .education-year {
            color: var(--accent);
            font-weight: 500;
        }

        .education-cgpa {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 8px;
            border: 1px solid var(--border);
        }

        .cgpa-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .cgpa-label {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Certifications Section */
        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
            gap: 1.5rem;
        }

        .cert-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .cert-card:hover {
            border-color: var(--accent);
            transform: translateX(5px);
        }

        .cert-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            flex-shrink: 0;
        }

        .cert-info h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
            color: var(--primary);
        }

        .cert-issuer {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--bg-alt);
            border-radius: 8px;
            transition: var(--transition);
            border: 1px solid var(--border);
        }

        .contact-item:hover {
            border-color: var(--accent);
            transform: translateX(5px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            stroke: white;
        }

        .contact-details h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            color: var(--primary);
        }

        .contact-details a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-details a:hover {
            color: var(--accent);
        }

        .contact-form {
            background: var(--bg-alt);
            padding: 3rem;
            border-radius: 8px;
            border: 1px solid var(--border);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-family: 'Work Sans', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            stroke: white;
        }

        .social-link:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
            z-index: 999;
        }

        .scroll-top svg {
            width: 24px;
            height: 24px;
            stroke: white;
        }

        .scroll-top.visible {
            opacity: 1;
            pointer-events: all;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 968px) {

            .hero-container,
            .about-content,
            .contact-content,
            .education-card {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .hero {
                padding: 6rem 1.5rem 3rem;
                min-height: auto;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            section {
                padding: 4rem 1.5rem;
            }

            .nav-container {
                padding: 1.5rem 1.5rem;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 2rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                gap: 1.5rem;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(7px, 7px);
            }

            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .menu-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }

            .projects-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .skills-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

            .stats-grid {
                gap: 1.5rem;
            }

            .certifications-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .contact-form {
                padding: 2rem;
            }

            .education-card {
                padding: 2rem;
                gap: 2rem;
            }

            .experience-timeline {
                padding-left: 1.5rem;
            }

            .experience-item {
                padding-left: 1.5rem;
                margin-bottom: 2.5rem;
            }
        }

        @media (max-width: 640px) {
            .hero {
                padding: 5rem 1rem 2rem;
            }

            .hero h1 {
                font-size: 2.5rem;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            section {
                padding: 3rem 1rem;
            }

            .nav-container {
                padding: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .stat-card {
                padding: 1.25rem;
                text-align: center;
            }

            .skills-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }

            .skill-tag {
                padding: 0.6rem 0.5rem;
                font-size: 0.85rem;
            }

            .certifications-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 1rem;
            }

            .cert-card {
                padding: 1rem;
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }

            .cert-icon {
                margin: 0 auto;
            }

            .projects-grid {
                gap: 1.5rem;
            }

            .project-header,
            .project-body {
                padding: 1.5rem;
            }

            .project-title {
                font-size: 1.2rem;
            }

            .contact-item {
                padding: 1.25rem;
                flex-direction: row;
                align-items: flex-start;
            }

            .contact-icon {
                width: 45px;
                height: 45px;
            }

            .contact-icon svg {
                width: 20px;
                height: 20px;
            }

            .contact-form {
                padding: 1.5rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.875rem;
                font-size: 0.95rem;
            }

            .education-card {
                padding: 1.5rem;
                gap: 1.5rem;
            }

            .education-info h3 {
                font-size: 1.4rem;
            }

            .cgpa-number {
                font-size: 2.5rem;
            }

            .experience-timeline {
                padding-left: 2rem;
            }

            .experience-timeline::before {
                left: 0.5rem;
            }

            .experience-item {
                padding-left: 1.5rem;
                margin-bottom: 2rem;
            }

            .experience-item::before {
                left: -2.15rem;
            }

            .experience-title {
                font-size: 1.1rem;
            }

            .scroll-top {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 45px;
                height: 45px;
            }

            .scroll-top svg {
                width: 20px;
                height: 20px;
            }

            footer {
                padding: 2.5rem 1rem;
            }

            .social-links {
                gap: 1.5rem;
            }

            .social-link {
                width: 40px;
                height: 40px;
            }

            .social-link svg {
                width: 18px;
                height: 18px;
            }
        }

        /* Animation Observer */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }