* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #0D1B2A;
            color: #E0E1DD;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 3rem;
            background-color: rgba(13, 27, 42, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(119, 141, 169, 0.2);
        }

        #logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #E0E1DD;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        #logo:hover {
            color: #778DA9;
        }

        nav ul {
            display: flex;
            list-style-type: none;
            gap: 2.5rem;
        }

        nav a {
            text-decoration: none;
            color: #E0E1DD;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #778DA9;
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: #778DA9;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section - Full Screen */
        #about-me {
            display: flex;
            align-items: center;
            justify-content: space-around;
            min-height: 100vh;
            padding: 8rem 5rem 4rem;
            background: linear-gradient(135deg, #0D1B2A 0%, #1B263B 100%);
            gap: 4rem;
        }

        #aboutme-text {
            flex: 1;
            max-width: 600px;
        }

        #aboutme-text h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #E0E1DD;
        }

        #aboutme-text p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            color: #778DA9;
        }

        #cta-button {
            background-color: #778DA9;
            color: #0D1B2A;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(119, 141, 169, 0.3);
        }

        #cta-button:hover {
            background-color: #E0E1DD;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(119, 141, 169, 0.4);
        }

        #about-me img {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #778DA9;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        #about-me img:hover {
            transform: scale(1.05);
        }

        span {
            animation: blinker 1s linear infinite;
        }

        @keyframes blinker {
            50% {
                opacity: 0;
            }
        }

        /* More Info Section - 3 Cards */
        #more-info {
            padding: 6rem 3rem;
            background-color: #1B263B;
        }

        #more-info h2.section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 4rem;
            color: #E0E1DD;
        }

        .info-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: auto auto;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .info-card {
            background: linear-gradient(135deg, #415a77 0%, #354a63 100%);
            color: #E0E1DD;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(119, 141, 169, 0.2);
        }

        .info-card:nth-child(3) {
            grid-column: 1 / -1;
        }

        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        .info-card h2 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #778DA9;
        }

        .info-card p {
            line-height: 1.8;
            margin-bottom: 1rem;
            color: #E0E1DD;
        }

        .info-card ul {
            list-style: none;
            line-height: 2;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .info-card ul li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .info-card ul li i {
            font-size: 2rem;
            color: #778DA9;
            min-width: 40px;
            text-align: center;
        }

        .skill-content {
            display: flex;
            flex-direction: column;
        }

        .skill-content strong {
            color: #778DA9;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 0.2rem;
        }

        .skill-content span {
            color: #E0E1DD;
            font-size: 0.95rem;
            animation: none;
        }

        .info-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }

        /* Projects Section - 4 Cards */
        #projects {
            background-color: #0D1B2A;
            padding: 6rem 3rem;
        }

        #projects h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 4rem;
            color: #E0E1DD;
        }

        .projects-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .project-card {
            background: linear-gradient(135deg, #1B263B 0%, #0D1B2A 100%);
            border: 1px solid #778DA9;
            border-radius: 12px;
            padding: 0;
            color: #E0E1DD;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(119, 141, 169, 0.3);
        }

        .project-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 2px solid #778DA9;
        }

        .project-card h2 {
            font-size: 1.5rem;
            margin: 1.5rem 1.5rem 1rem;
            color: #778DA9;
        }

        .project-card p {
            margin: 0 1.5rem 1.5rem;
            line-height: 1.6;
            color: #E0E1DD;
        }

        .project-card button {
            margin: 0 0.5rem 1.5rem 1.5rem;
            padding: 0.6rem 1.2rem;
            background-color: transparent;
            border: 2px solid #778DA9;
            color: #778DA9;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .project-card button:hover {
            background-color: #778DA9;
            color: #0D1B2A;
        }

        /* Experience Section */
        #experience {
            background: linear-gradient(135deg, #415a77 0%, #778DA9 100%);
            padding: 6rem 3rem;
        }

        #experience > h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 4rem;
            color: #0D1B2A;
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: #0D1B2A;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            height: 0;
            animation: timeline-grow 2s ease-out forwards;
            animation-play-state: paused;
        }

        .timeline.animate::after {
            animation-play-state: running;
        }

        @keyframes timeline-grow {
            0% {
                height: 0;
            }
            100% {
                height: 100%;
            }
        }

        .container {
            padding: 10px 50px;
            position: relative;
            width: 50%;
        }

        .text-box {
            padding: 20px 30px;
            background: #E0E1DD;
            position: relative;
            border-radius: 8px;
            font-size: 15px;
            color: #0D1B2A;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .text-box h2 {
            color: #415a77;
            margin-bottom: 0.5rem;
        }

        .text-box small {
            color: #778DA9;
            font-weight: 600;
            display: block;
            margin-bottom: 1rem;
        }

        .text-box p {
            line-height: 1.6;
            color: #1B263B;
        }

        .left-container {
            left: 0;
        }

        .right-container {
            left: 50%;
        }

        .container img {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            right: -30px;
            top: 32px;
            z-index: 10;
            background: #E0E1DD;
            border: 4px solid #0D1B2A;
            object-fit: cover;
        }

        .right-container img {
            left: -30px;
        }

        .left-container-arrow {
            height: 0;
            width: 0;
            position: absolute;
            top: 28px;
            z-index: 1;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 15px solid #E0E1DD;
            right: -15px;
        }

        .right-container-arrow {
            height: 0;
            width: 0;
            position: absolute;
            top: 28px;
            z-index: 1;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-right: 15px solid #E0E1DD;
            left: -15px;
        }

        /* Footer */
        footer {
            background-color: #0D1B2A;
            color: #E0E1DD;
            padding: 3rem 2rem 2rem;
            border-top: 1px solid rgba(119, 141, 169, 0.2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #778DA9;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .footer-section p,
        .footer-section a {
            color: #E0E1DD;
            line-height: 1.8;
            text-decoration: none;
            display: block;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #778DA9;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #1B263B;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: #778DA9;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(119, 141, 169, 0.2);
            color: #778DA9;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            #about-me {
                flex-direction: column;
                text-align: center;
                padding: 6rem 2rem 3rem;
            }

            #aboutme-text {
                max-width: 100%;
            }

            #about-me img {
                width: 250px;
                height: 250px;
            }

            .info-container {
                grid-template-columns: 1fr;
            }

            .info-card:nth-child(3) {
                grid-column: 1;
            }

            .timeline::after {
                left: 31px;
            }

            .container {
                width: 100%;
                padding-left: 80px;
                padding-right: 25px;
            }

            .container img {
                left: 10px;
                right: auto;
            }

            .right-container {
                left: 0;
            }

            .left-container-arrow,
            .right-container-arrow {
                border-right: 15px solid #E0E1DD;
                border-left: 0;
                left: -15px;
            }

            header {
                padding: 1rem 1.5rem;
            }

            nav ul {
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            #aboutme-text h1 {
                font-size: 2rem;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
        }