* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Times New Roman', Times, serif;
            line-height: 1.6;
            color: #2B338C;
            background-color: #FFFFFF;
        }

        /* Navigation Styles */
        .nav {
            width: 100%;
            height: 100px;
            background: #148B40;
            position: fixed;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        .menu {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: space-between;
        }

        .menu ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .menu ul li {
            margin: 0 20px;
        }

        .menu ul li a {
            text-decoration: none;
            color: #FFFFFF;
            font-size: 18px;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .menu ul li a:hover {
            color: rgb(201, 198, 198);
        }

        .GIT ul li {
            border: solid 2px white;
            padding: 10px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .GIT ul li:hover {
            background: #2B338C;
        }

        .GIT ul li:hover a {
            color: white;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #FFFFFF;
            font-size: 24px;
            cursor: pointer;
        }

        /* Intro Section */
        #Introductions {
            padding-top: 100px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 20px 50px;
            background: linear-gradient(135deg, #FFFFFF 0%, #fcfeff 100%);
            position: relative;
            overflow: hidden;
        }

        #Introductions::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23D4AF37" stop-opacity="0.1"/><stop offset="100%" stop-color="%23D4AF37" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="300" r="100" fill="url(%23a)"/><circle cx="800" cy="200" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
            background-size: cover;
            z-index: 0;
        }

        .intro-container {
            max-width: 1400px;
            width: 100%;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .intro-content {
            text-align: left;
        }

        /* .intro-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        } */

        /* .intro-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid #148B40;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(10, 25, 47, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.3s ease;
            max-width: 400px;
            width: 100%;
        }

        .intro-card:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
        } */

        .greeting {
            font-size: clamp(18px, 2vw, 24px);
            color: #148B40;
            font-weight: 600;
            margin-bottom: 10px;
            opacity: 0;
            animation: slideInLeft 0.8s ease forwards 0.2s;
        }

        .Intro h1 {
            font-size: clamp(45px, 8vw, 70px);
            font-weight: 700;
            color:#2B338C ;
            margin-bottom: 15px;
            line-height: 1.1;
            opacity: 0;
            animation: slideInLeft 0.8s ease forwards 0.4s;
        }

        .Intro span {
            background: linear-gradient(135deg, #148b40, rgb(5, 32, 15));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            font-weight: 800;
        }

        .Intro h2 {
            font-size: clamp(20px, 3vw, 28px);
            font-weight: 300;
            color: #2B338C;
            margin-bottom: 25px;
            opacity: 0;
            animation: slideInLeft 0.8s ease forwards 0.6s;
        }

        .role-highlight {
            color:#148b40;
            font-weight: 600;
        }

        .intro-description {
            font-size: clamp(16px, 2vw, 18px);
            color:black;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0;
            animation: slideInLeft 0.8s ease forwards 0.8s;
        }

        .Box {
            margin: 30px 0;
            opacity: 0;
            animation: slideInUp 0.8s ease forwards 1s;
        }

        .Resume {
            font-weight: 600;
            display: inline-block;
            border-radius: 50px;
            font-size: 16px;
            text-decoration: none;
            color: #FFFFFF;
            background: linear-gradient(135deg, #2B338C, #1a2a4a);
            border: 2px solid #148B40;
            padding: 15px 35px;
            margin: 8px;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .Resume::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #148B40, #34be67);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .Resume:hover::before {
            left: 0;
        }

        .Resume:hover {
            color: #2B338C;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }

        .Resume.secondary {
            background: transparent;
            color: #2B338C;
        }

        .Resume.secondary:hover {
            color: #FFFFFF;
        }

        .socials {
            margin-top: 30px;
            opacity: 0;
            animation: slideInUp 0.8s ease forwards 1.2s;
        }

        .socials a {
            margin: 0 12px;
            display: inline-block;
            transition: all 0.3s ease;
            padding: 10px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
        }

        .socials a:hover {
            transform: translateY(-8px) scale(1.1);
            background: #98FF98;
        }

        .socials a:hover i {
            color: #FFFFFF !important;
        }

        .profile-image {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, #98FF98, #067406);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: #2B338C;
            font-weight: bold;
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
            animation: float 6s ease-in-out infinite;
        }       

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* About Section */
        #about {
            padding: 80px 20px;
            background: #2B338C;
            min-height: 600px;
        }

        .section-title {
            font-size: clamp(24px, 4vw, 30px);
            color: #f3f3f3;
            font-weight: 900;
            text-align: center;
            margin-bottom: 10px;
        }

        .section-main-title {
            font-size: clamp(40px, 8vw, 40px);
            color: #222fb4;
            text-align: center;
            margin-bottom: 15px;
        }

        .underline {
            width: 200px;
            height: 5px;
            background-color: #ff6600;
            margin: 0 auto 50px;
        }

        .introduction {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .intro {
            flex: 1;
            min-width: 300px;
        }

        .intro h1 {
            font-weight: 600;
            font-size: clamp(28px, 4vw, 36px);
            color: #FFFFFF;
            margin-bottom: 20px;
        }

        .intro p {
            text-align: justify;
            font-size: clamp(16px, 2vw, 18px);
            color: #FFFFFF;
            line-height: 1.6;
        }

        .photo {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .photo img {
            width: 100%;
            max-width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #ff6600;
        }

        /* Expertise Section */
        #Expertise {
            padding: 80px 20px;
            background-color: #FFFFFF;
        }

        .maincomponent {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 50px auto 0;
        }

        .component {
            background: #FFFFFF;
            border: 2px solid #148B40;
            padding: 30px 20px;
            border-radius: 10px;
            text-align: center;
            font-size: clamp(18px, 2vw, 20px);
            font-weight: 600;
            color: #2B338C;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .component:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
            background-color: #2B338C;
            color: #FFFFFF;
        }

        /* Qualification Section */
        #Qualification {
            padding: 80px 20px;
            background: #2B338C;
        }

        .qualification-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            max-width: 1200px;
            margin: 50px auto 0;
        }

        .qual-photo {
            flex: 1;
            min-width: 250px;
            text-align: center;
        }

        .qual-photo img {
            width: 100%;
            max-width: 250px;
            height: 250px;
        }

        .qual-text {
            flex: 2;
            min-width: 300px;
        }

        .qual-text h1 {
            font-weight: 600;
            font-size: clamp(24px, 3vw, 30px);
            color: #FFFFFF;
            margin-bottom: 10px;
        }

        .qual-text p {
            font-style: italic;
            font-size: clamp(16px, 2vw, 20px);
            color: #f8f8f8;
            margin-bottom: 30px;
        }

        /* Experience Section */
        #Experience {
            padding: 80px 20px;
            background-color: #FFFFFF;
        }

        .Exp {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 50px auto 0;
        }

        .indexp {
            background: #FFFFFF;
            border: 2px solid #2B338C;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(38, 95, 182, 0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .indexp:hover {
            transform: translateY(-10px);
            border-color: #148B40;
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
        }

        .indexp img {
            width: 200px;
            height: 120px;
            object-fit: contain;
            margin-bottom: 20px;
            border-radius: 5px;
            padding: 5px;
        }

        .orgn {
            font-size: clamp(20px, 3vw, 20px);
            color:#ff6600;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .post {
            font-size: 18px;
            margin-bottom: 5px;
            color: #148B40;
            font-weight: 600;
        }

        .date {
            font-style: italic;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2B338C;
        }

        .indexp ul {
            line-height: 1.6;
            padding-left: 20px;
        }

        .indexp li {
            margin-bottom: 8px;
            font-size: clamp(14px, 1.8vw, 16px);
            color:black;
        }

        /* Contact Section */
        #Contact {
            padding: 80px 20px;
            background: #2B338C;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .connect {
            text-align: left;
        }

        .connect p {
            color:#f3f3f3;
            font-size: clamp(22px, 3vw, 28px);
            font-weight: 300;
            margin-bottom: 15px;
            opacity: 0;
            animation: slideInLeft 0.8s ease forwards 0.2s;
        }

        .connect h1 {
            color: #FFFFFF;
            font-size: clamp(35px, 6vw, 50px);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            opacity: 0;
            animation: slideInLeft 0.8s ease forwards 0.4s;
        }

        .connect-description {
            color: #FFFFFF;
            font-size: clamp(16px, 2vw, 18px);
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 30px;
            opacity: 0;
            animation: slideInLeft 0.8s ease forwards 0.6s;
        }

        .CN {
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(145, 235, 175, 0.3);
            border-radius: 20px;
            padding: 40px 30px;
            opacity: 0;
            animation: slideInRight 0.8s ease forwards 0.8s;
        }

        .CN h2 {
            color: #FFFFFF;
            font-size: clamp(24px, 3vw, 28px);
            font-weight: 600;
            margin-bottom: 30px;
        }

        .CN .socials {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .CN .socials a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgba(212, 175, 55, 0.1);
            border: 2px solid #ff6600;
            border-radius: 50%;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .CN .socials a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            transform: scale(0);
            transition: all 0.4s ease;
            border-radius: 50%;
        }

        .CN .socials a:hover::before {
            transform: scale(1);
        }

        .CN .socials a:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
        }

        .CN .socials i {
            color: #FFFFFF !important;
            font-size: 24px !important;
            position: relative;
            z-index: 2;
            transition: color 0.3s ease;
        }

        .CN .socials a:hover i {
            color: #2B338C !important;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .nav {
                height: 70px;
                padding: 0 15px;
            }

            .menu ul {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: #148B40;
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.3);
            }

            .menu ul.active {
                display: flex;
            }

            .menu ul li {
                margin: 10px 0;
                text-align: center;
            }

            .GIT {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            #Introductions {
                padding-top: 90px;
                padding-left: 15px;
                padding-right: 15px;
            }

            .intro-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .intro-content {
                text-align: center;
                order: 2;
            }

            .intro-visual {
                order: 1;
            }

            .intro-card {
                transform: none;
                padding: 30px;
            }

            .profile-image {
                width: 250px;
                height: 250px;
                font-size: 60px;
            }

            .Resume {
                padding: 10px 20px;
                font-size: 14px;
                margin: 5px;
            }

            .introduction {
                flex-direction: column;
                text-align: center;
            }

            .intro {
                order: 2;
            }

            .photo {
                order: 1;
            }

            .qualification-content {
                flex-direction: column;
                text-align: center;
            }

            .qual-photo {
                order: 1;
            }

            .qual-text {
                order: 2;
            }

            .Exp {
                grid-template-columns: 1fr;
            }

            .indexp {
                padding: 20px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .connect {
                text-align: center;
            }

            .CN {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .maincomponent {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .component {
                padding: 20px 15px;
            }

            .indexp img {
                width: 80px;
                height: 50px;
            }

            .socials a {
                margin: 0 5px;
            }

            .CN .socials a {
                margin: 0 10px;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Hide mobile menu by default */
        .menu ul {
            transition: all 0.3s ease;
        }