        :root {
            --accent-color: #00EEFF;
            --text-color: #FFFFFF;
            --bg-color: #0A0A0A;
            --card-bg: #111111;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            transition: all 0.3s ease;
            background-color: rgba(10, 10, 10, 0.8);
        }
        
        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
             font-size: 24px;
             font-weight: bold;
             color: var(--accent-color);
             text-decoration: none;
             z-index: 10; /* Ensure logo stays on top */
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a:hover {
            color: var(--accent-color);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }

        /* --- Hamburger Icon (Hidden on Desktop) --- */
        .hamburger {
            display: none; /* Hide hamburger on large screens */
            cursor: pointer;
        }

        .hamburger .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: white;
            transition: all 0.3s ease-in-out;
        }

    /* === MOBILE RESPONSIVE STYLES === */
    /* This media query applies styles only when the screen is 768px wide or less */
    
        @media (max-width: 768px) {
            /* Show the hamburger icon */
            .hamburger {
                display: block;
            }
        
            /* Animate hamburger to an 'X' when active */
            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
        
            /* Style the mobile navigation menu */
            .nav-links {
                position: fixed; /* Take it out of the normal flow */
                top: 70px; /* Position it just below the nav bar */
                left: -100%; /* Start off-screen to the left */
                
                width: 100%;
                height: calc(100vh - 70px); /* Fill the rest of the screen */
        
                flex-direction: column; /* Stack links vertically */
                justify-content: center; /* Center links vertically */
                align-items: center; /* Center links horizontally */
                gap: 40px; /* Increase space for easier tapping */
        
                background-color: rgba(10, 10, 10, 0.98); /* Almost solid background */
                transition: left 0.3s ease-in-out; /* Smooth slide-in animation */
            }
        
            /* Slide the menu in when it's active */
            .nav-links.active {
                left: 0;
            }
        
            .nav-links a {
                font-size: 20px; /* Make text larger on mobile */
            }
        }
        
        /* Hero Section */
        .hero {
            text-align: left;
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 60px;
            font-weight: 800;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards;
            animation-delay: 0.5s;
        }
        
        .hero h3 {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards;
            animation-delay: 0.7s;
        }
        
        .accent-text {
            color: var(--accent-color);
        }
        
        .hero-btns {
         opacity: 0;
         transform: translateY(30px);
         animation: fadeInUp 0.8s forwards;
         animation-delay: 0.9s;
      }

        .btn {
         display: inline-block;
         padding: 12px 30px;
         background: transparent;
         border: 2px solid var(--accent-color);
         color: var(--accent-color);
         text-decoration: none;
         font-weight: 600;
         border-radius: 5px;
         margin-right: 15px;
         margin-bottom: 10px; /* For stacking on mobile */
         transition: all 0.3s ease;
         text-align: center;
      }
        
        .btn:hover {
            background-color: var(--accent-color);
            color: var(--bg-color);
        }
        
        .btn-filled {
            background-color: var(--accent-color);
            color: var(--bg-color);
        }
        
        .btn-filled:hover {
            background-color: transparent;
            color: var(--accent-color);
        }
        
        /* Floating Particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .particle {
            position: absolute;
            display: block;
            background-color: var(--accent-color);
            opacity: 0.15;
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        /* About Section */
        #about {
            padding: 100px 0;
            overflow: hidden;
        }
        
        .section-title {
            font-size: 36px;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-img {
            flex: 1;
            position: relative;
            opacity: 0;
            transform: translateX(-30px);
        }
        
        .about-img.in-view {
            animation: fadeInLeft 0.8s forwards;
        }
        
        .about-img img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        
        .about-text {
            flex: 1;
            opacity: 0;
            transform: translateX(30px);
        }
        
        .about-text.in-view {
            animation: fadeInRight 0.8s forwards;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        /* RESPONSIVE MEDIA QUERIES  */

        @media (max-width: 992px) {
     .about-content {
         flex-direction: column;
         text-align: center;
     }
     .about-text .btn {
         margin: 5px;
     }
     .contact-container {
         grid-template-columns: 1fr;
     }
    }

        /* Skills Section */
        #skills {
            padding: 100px 0;
            background-color: rgba(17, 17, 17, 0.5);
        }
        
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .skill-card {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .skill-card.in-view {
            animation: fadeInUp 0.6s forwards;
        }
        
        .skill-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .skill-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--accent-color);
        }
        
        .skill-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .skill-desc {
            font-size: 14px;
            color: #CCCCCC;
        }
        
        /* Projects Section */
        #projects {
            padding: 100px 0;
        }
        
        .projects-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .project-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .project-card.in-view {
            animation: fadeInUp 0.6s forwards;
        }
        
        .project-img {
            width: 100%;
            height: 250px;
            background-color: #222;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            font-size: 24px;
            position: relative;
            overflow: hidden;
        }
        
        .project-img::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .project-card:hover .project-img::before {
            opacity: 1;
        }
        
        .project-info {
            padding: 20px;
            background-color: var(--card-bg);
        }
        
        .project-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .project-desc {
            font-size: 14px;
            color: #CCCCCC;
            margin-bottom: 15px;
        }
        
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }
        
        .project-tag {
            font-size: 12px;
            padding: 5px 10px;
            background-color: rgba(0, 238, 255, 0.1);
            color: var(--accent-color);
            border-radius: 20px;
        }
        
        .project-links {
            display: flex;
            gap: 15px;
        }
        
        .project-link {
            color: var(--text-color);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .project-link:hover {
            color: var(--accent-color);
        }

        /* certifications Section */
        #certifications {
            padding: 100px 0;
        }
        
        .Certificate{
            text-decoration: none;
        }
        /* Contact Section */
        #contact {
            padding: 100px 0;
            background-color: rgba(17, 17, 17, 0.5);
        }
        
        .contact-container {            
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info {
            opacity: 0;
            transform: translateX(-30px);
        }
        
        .contact-info.in-view {
            animation: fadeInLeft 0.8s forwards;
        }
        
        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .contact-info p {
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            margin-right: 15px;
            color: var(--accent-color);
            font-size: 20px;
        }

        .map-container {
            width: 100%;
            height: 450px; /* You can adjust this height if you want */
            border-radius: 8px; /* Matches the style of your form fields */
            overflow: hidden;   /* Keeps the map inside the rounded corners */
            border: 1px solid #333; /* A subtle border */
        }

        #map {
            height: 100%;
            width: 100%;
        }
        /* Footer */
        footer {
            padding: 30px 0;
            text-align: center;
            background-color: #080808;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            gap: 20px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--card-bg);
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: var(--accent-color);
            color: var(--bg-color);
            transform: translateY(-5px);
        }

        .footer-text {
            color: #777;
            font-size: 14px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }
        
    /* Contact Form Responsiveness and Feedback */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        #formStatus {
            margin-top: 15px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        /* Form Validation Styles */
        .form-control:invalid:focus {
            box-shadow: 0 0 0 2px #ff3860;
        }
        
        /* Responsive Contact Form */
        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .contact-info, .contact-form {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .form-control {
                padding: 12px;
                font-size: 14px;
            }
            
            .contact-item {
                font-size: 14px;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 40px;
            }
            
            .hero h3 {
                font-size: 20px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .projects-container {
                grid-template-columns: 1fr;
            }
        }
    