* {
            font-family: 'Quicksand', sans-serif;
            margin: 0;
            scroll-behavior: smooth;
            }
        body {
            font-family: 'Quicksand', sans-serif;
            background: #04153b;
            min-height:auto;
        }
        .nav-bar {
            background: #04153b;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .nav-link {
            transition: all 0.25s ease;
        }
        .nav-link:hover {
            color: #cb51ff;
            transform: translateY(-1px);
        }
        .nav-link.active {
            background: linear-gradient(45deg, #6366f1, #a855f7);
            color: white !important;
        }
        .section-card {
            background: rgba(20, 38, 81, 0.6);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 1rem;
            backdrop-filter: blur(8px);
        }
        .glow-button {
            background: linear-gradient(45deg, #6366f1, #a855f7);
            box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
        }
        .glow-button:hover {
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.7);
        }
        .Gallary-img {
            width: 100%; /* Ensure the image takes full width */
            height: 100%; /* Ensure the image takes full height */
            object-fit: cover; /* Cover the container without distortion */
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        overflow: hidden;
        border-radius: 0.75rem;
        }

        th, td {
        padding: 1rem 1.2rem;
        }

        th {
        background: rgba(28, 57, 102, 0.85);
        font-weight: 600;
        }

        td {
        background: #0a1839;
        border-top: 1px solid rgba(255,255,255,0.08);
        }
        tr {
        transition: background 0.25s ease;
        }

        tr:hover {
        background: rgba(95, 122, 255, 0.1);
        }

        @media (max-width: 640px) {
            .nav-links-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
        }
        /* Gallary Styles */

        .Gallary-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        }

        .Gallary-container img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
        cursor: pointer;
        transition: 0.4s ease;
        box-shadow: 0px 10px 25px rgba(0,0,0,0.3);
        }

        .Gallary-container img:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            border-radius: 10px;
            
        }

        .lightbox .close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 35px;
            color: #e2d5d5;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .lightbox .close:hover {
            color: #ff4d4d;
        }

        .nav {
            position: absolute;
            top: 50%;
            font-size: 40px;
            color: white;
            background: rgba(0,0,0,0.5);
            border: none;
            cursor: pointer;
            padding: 10px 16px;
            transform: translateY(-50%);
            border-radius: 50%;
        }

        .nav.left { left: 20px; }
        .nav.right { right: 20px; }

        .hidden {
            display: none;
        }
        /* Footer Base */
        .footer {
        background: #111a476f;
        color: #dfdfdf;
        padding: 4.5rem 1.5rem 2rem;
        font-family: "Inter", Arial, sans-serif;
        margin-bottom:auto ;
        }

        /* Layout */
        .footer-container {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 3rem;
        }
        .glass-card {
            backdrop-filter: blur(16px);
            background: var(--glass-bg, rgba(95, 122, 255, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
        }
        .timeline-line {
            position: absolute;
            left: 0;
            top: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, #bc9a04 0%, #88b403 100%);
        }

        .timeline-dot {
            position: absolute;
            left: -5px;
            top: 10px;
            width: 12px;
            height: 12px;
            background: #d6d6d7;
            border: 3px solid #00bd00;
            border-radius: 50%;
            z-index: 10;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }

        .skill-tag {
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.249);
            border: 1px solid #34373a;
        }

        .skill-tag:hover {
            background: #4e4e4e;
            box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
            border-color: #3b82f6;
            transform: scale(1.05);
        }

        .gradient-text {
            background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0% { transform: translate(0, 0px); }
            50% { transform: translate(0, 15px); }
            100% { transform: translate(0, -0px); }
        }
