
        :root {
            --primary-color: #26384b;
            --secondary-color: #6c757d;
            --accent-color: #ffc107;
            --dark-bg: #121212;
            --light-bg: #f4f4f4;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: var(--dark-bg);
            color: #fff;
            overflow-x: hidden;
        }

        /* Navigation Styles */
        .navbar {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            background: linear-gradient(to right, #192925, #022327);
            
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .navbar-logo img {
            height: 50px;
            margin-right: 10px;
        }

        .navbar-links {
            display: flex;
            list-style: none;
        }

        .navbar-links li {
            margin-left: 20px;
        }

        .navbar-links a {
            text-decoration: none;
            color: #fff;
            position: relative;
            transition: color 0.3s ease;
        }

        .navbar-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .navbar-links a:hover {
            color: var(--primary-color);
        }

        .navbar-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            font-style:oblique;
            background-size: cover;
            height: 150vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background:url('https://th.bing.com/th/id/R.24a3622f5268feda2e2a764d856c984b?rik=EkFpcw7ilub0pQ&riu=http%3a%2f%2fgetwallpapers.com%2fwallpaper%2ffull%2fe%2f6%2f4%2f676771.jpg&ehk=tzEEOWjcYkFaTus5GqiUxlZD59vi94uP5oUFyavbwFc%3d&risl=&pid=ImgRaw&r=0');
            
            background-position: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: rgba(255,255,255,0.9);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(240, 239, 239, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0,0,0,0.25);
        }

        /* Sections Common Styles */
        .section {
            padding: 100px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-content {
            max-width: 1200px;
            width: 100%;
            padding: 0 20px;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(240, 239, 239, 0.3);
        }

        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .about-image:hover img {
            transform: scale(1.1);
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            box-shadow: 0 10px 30px rgba(240, 239, 239, 0.3);
        }

        .project-card {
            background-color: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(240, 239, 239, 0.3);
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        /* Contact Section */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(240, 239, 239, 0.3);
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            background-color: rgba(231, 210, 210, 0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .social-link {
            color: #fff;
            font-size: 2rem;
            transition: color 0.3s ease;
        }

        .social-link:hover {
            color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(240, 239, 239, 0.3);
        }

        @media (max-width: 768px) {
            .about-grid,
            .navbar-links {
                grid-template-columns: 1fr;
                flex-direction: column;
                align-items: center;
                box-shadow: 0 10px 30px rgba(240, 239, 239, 0.3);
            }

            .hero-content h1 {
                font-size: 2.5rem;
                box-shadow: 0 10px 30px rgba(240, 239, 239, 0.3);
            }

            .hero-content p {
                font-size: 1.2rem;
                box-shadow: 0 10px 30px rgba(240, 239, 239, 0.3);
            }
        }
        .social-media {
    display: flex;
    justify-content: center; /* Centers the icons horizontally */
    align-items: center; /* Aligns icons vertically */
    gap: 20px; /* Adds consistent spacing between the icons */
    margin-top: 30px; /* Adds space above the icons */
}

.social {
    width: 50px; /* Ensures uniform size for all icons */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Makes icons circular */
    background-color: rgba(255, 255, 255, 0.1); /* Adds a subtle background */
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(240, 239, 239, 0.3);
}

.social img {
    width: 70%; /* Makes the logo proportionate to the container */
    height: auto;
}

.social:hover {
    transform: scale(1.2); /* Enlarges icons slightly on hover */
    background-color: var(--primary-color); /* Highlights with primary color on hover */
}


        /* Page Transitions */
        .page-transition {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transform-origin: right;
            z-index: 1001;
            transition: transform 0.5s ease;
        }

        .page-transition.active {
            transform: scaleX(1);
            transform-origin: left;
        }
        footer {
            text-align: center;
            padding: 20px;
            background: linear-gradient(to right, #192925, #022327);
            color: white;
        
        }