
        :root {
            --navy: #0A1931;
            --orange: #FF6B35;
            --white: #FFFFFF;
            --black: #000000;
            --light-gray: #F8F9FA;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            color: var(--navy);
        }

        /* Navbar */
        .navbar {
            background: rgba(10, 25, 49, 0.95) !important;
            backdrop-filter: blur(10px);
            padding: 20px 0;
            transition: all 0.4s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .navbar-scrolled {
            padding: 10px 0;
            box-shadow: 0 5px 30px rgba(0,0,0,0.3);
            background: rgba(10, 25, 49, 1) !important;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white) !important;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .navbar-brand img {
            height: 40px;
            width: auto;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .navbar-scrolled .navbar-brand img {
            height: 35px;
        }

        .navbar-brand span {
            color: var(--orange);
        }

        .nav-link {
            color: var(--white) !important;
            font-weight: 500;
            margin: 0 15px;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 0 !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--orange);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--orange) !important;
        }

        /* Breadcrumb */
        .breadcrumb-section {
            background: var(--light-gray);
            padding: 30px 0;
            margin-top: 76px;
        }

        .breadcrumb {
            background: transparent;
            margin: 0;
            padding: 0;
        }

        .breadcrumb-item a {
            color: var(--navy);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcrumb-item a:hover {
            color: var(--orange);
        }

        .breadcrumb-item.active {
            color: var(--orange);
        }

        /* Profile Section */
        .profile-section {
            padding: 80px 0;
            background: var(--white);
        }

        .profile-image-wrapper {
            position: relative;
            margin-bottom: 30px;
        }

        .profile-image {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            transition: all 0.4s ease;
        }

        .profile-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(255, 107, 53, 0.3);
        }

        .profile-social {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--orange);
            color: var(--white);
            transform: translateY(-5px);
        }

        .profile-header {
            margin-bottom: 30px;
        }

        .profile-name {
            font-size: 3rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .profile-position {
            font-size: 1.5rem;
            color: var(--orange);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .profile-summary {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 30px;
        }

        /* Info Cards */
        .info-card {
            background: var(--light-gray);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .info-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateX(10px);
        }

        .info-card h4 {
            color: var(--navy);
            font-weight: 800;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-card h4 i {
            color: var(--orange);
            font-size: 1.5rem;
        }

        .info-card ul {
            list-style: none;
            padding: 0;
        }

        .info-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(10, 25, 49, 0.1);
            color: #555;
            font-size: 1rem;
        }

        .info-card ul li:last-child {
            border-bottom: none;
        }

        .info-card ul li i {
            color: var(--orange);
            margin-right: 10px;
            width: 20px;
        }

        .info-card p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 10px;
        }

        /* Skills Section */
        .skills-section {
            background: var(--light-gray);
            padding: 80px 0;
        }

        .skill-item {
            margin-bottom: 25px;
        }

        .skill-name {
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
        }

        .skill-bar {
            height: 15px;
            background: rgba(10, 25, 49, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--orange), #ff8c5a);
            border-radius: 10px;
            transition: width 1s ease;
        }

        /* Achievements Section */
        .achievements-section {
            padding: 80px 0;
            background: var(--white);
        }

        .achievement-card {
            background: var(--white);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .achievement-card:hover {
            border-color: var(--orange);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
        }

        .achievement-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--orange), #ff8c5a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .achievement-icon i {
            font-size: 1.8rem;
            color: var(--white);
        }

        .achievement-card h5 {
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .achievement-card p {
            color: #666;
            margin-bottom: 0;
        }

        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
            color: var(--white);
            padding: 60px 0;
            text-align: center;
        }

        .contact-cta h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .contact-cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-contact {
            background: var(--orange);
            color: var(--white);
            padding: 15px 40px;
            border-radius: 50px;
            border: 2px solid var(--orange);
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-contact:hover {
            background: transparent;
            color: var(--orange);
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            background: var(--navy);
            color: var(--white);
            padding: 70px 0 30px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--orange), var(--navy), var(--orange));
        }

        .footer-title {
            color: var(--orange);
            font-weight: 800;
            margin-bottom: 25px;
            font-size: 1.4rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin: 12px 0;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--orange);
            padding-left: 12px;
        }

        .footer-bottom {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        @media (max-width: 768px) {
            .profile-name {
                font-size: 2rem;
            }
            
            .profile-position {
                font-size: 1.2rem;
            }
        }