/*navbar starts*/
        :root {
            --divine-white: #ffffff;
            --divine-silver: #dce8f1;
            --divine-gold: #f7c842;
            --quantum-space: #0a0e1a;
            --quantum-void: #050811;
            --quantum-glow: #0ff;
        }

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            height: 100%;
        }

        body {
            font-family: 'Titillium Web', sans-serif;
            font-weight: 300;
            background: linear-gradient(135deg, #0a0e1a, #050811);
            color: var(--divine-silver);
            min-height: 100vh;
            position: relative;
        }

        /* 3D Background Canvas - FIXED */
        #tech-medical-network {
            position: fixed;
            top: 0;
            left: 0;
            width: 100% !important;
            height: 100% !important;
            z-index: -1;
            display: block;
        }
        /* Futuristic Quantum Navbar */
        .quantum-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background: rgba(10, 14, 26, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(220, 232, 241, 0.1);
            z-index: 1000;
            box-shadow: 0 5px 30px rgba(0, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .quantum-nav.scrolled {
            padding: 10px 5%;
            background: rgba(5, 8, 17, 0.95);
            border-bottom: 1px solid rgba(247, 200, 66, 0.2);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
        }

        /* Logo with quantum effect */
        .logo {
            position: relative;
            z-index: 10;
        }

        .logo a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            width: 50px;
            height: 50px;
            filter: drop-shadow(0 0 5px var(--divine-gold));
            transition: all 0.4s ease;
            border-radius: 50%;
            background: linear-gradient(145deg, #0a0e1a, #050811);
            padding: 5px;
            border: 1px solid rgba(247, 200, 66, 0.3);
            animation: quantum-pulse 3s infinite alternate;
        }

        @keyframes quantum-pulse {
            0% { transform: scale(1); box-shadow: 0 0 5px var(--divine-gold); }
            100% { transform: scale(1.05); box-shadow: 0 0 15px var(--divine-gold); }
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            margin-left: 15px;
            background: linear-gradient(90deg, var(--divine-silver), var(--divine-gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(247, 200, 66, 0.3);
            letter-spacing: 1px;
        }

        /* Navigation Links - Quantum Style */
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            position: relative;
            margin: 0 12px;
        }

        .nav-links li a {
            color: var(--divine-silver);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 300;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            display: block;
        }

        .nav-links li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            z-index: -1;
        }

        .nav-links li a:hover {
            color: var(--divine-white);
            text-shadow: 0 0 10px rgba(247, 200, 66, 0.7);
        }

        .nav-links li a:hover::before {
            transform: translateX(100%);
        }

        .nav-links li a.active {
            color: var(--divine-gold);
            text-shadow: 0 0 15px rgba(247, 200, 66, 0.9);
        }

        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: var(--divine-gold);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--divine-gold);
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(247, 200, 66, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(247, 200, 66, 0); }
            100% { box-shadow: 0 0 0 0 rgba(247, 200, 66, 0); }
        }

        /* Quantum Particle Hover Effect */
        .quantum-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--quantum-glow);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            box-shadow: 0 0 15px var(--quantum-glow);
            z-index: -1;
        }

        /* Burger Menu for Mobile - Futuristic */
        .quantum-burger {
            display: none;
            cursor: pointer;
            z-index: 1001;
            padding: 10px;
        }

        .quantum-burger div {
            width: 30px;
            height: 3px;
            background: var(--divine-silver);
            margin: 5px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .quantum-burger div::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--divine-gold);
            top: 0;
            left: 0;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }

        .quantum-burger:hover div::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Mobile Navigation */
        @media screen and (max-width: 1024px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 70%;
                max-width: 300px;
                background: rgba(5, 8, 17, 0.95);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transform: translateX(100%);
                transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
                border-left: 1px solid rgba(247, 200, 66, 0.1);
                z-index: 999;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .nav-links li {
                opacity: 0;
                margin: 20px 0;
                transform: translateX(30px);
                transition: all 0.4s ease;
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateX(0);
            }

            .nav-links li:nth-child(1) { transition-delay: 0.1s; }
            .nav-links li:nth-child(2) { transition-delay: 0.2s; }
            .nav-links li:nth-child(3) { transition-delay: 0.3s; }
            .nav-links li:nth-child(4) { transition-delay: 0.4s; }
            .nav-links li:nth-child(5) { transition-delay: 0.5s; }
            .nav-links li:nth-child(6) { transition-delay: 0.6s; }
            .nav-links li:nth-child(7) { transition-delay: 0.7s; }

            .quantum-burger {
                display: block;
            }

            .quantum-burger.toggle div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .quantum-burger.toggle div:nth-child(2) {
                opacity: 0;
            }

            .quantum-burger.toggle div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

        /* Quantum Login Button */
        .btn-logout {
            background: transparent;
            border: 1px solid rgba(220, 232, 241, 0.3);
            color: var(--divine-silver);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-logout::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            z-index: -1;
        }

        .btn-logout:hover {
            border-color: var(--divine-gold);
            color: var(--divine-white);
            box-shadow: 0 0 15px rgba(247, 200, 66, 0.3);
        }

        .btn-logout:hover::before {
            transform: translateX(100%);
        }

        /* Content for Demo */
        .content {
            padding-top: 150px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 150px 20px 50px;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 200;
            margin-bottom: 30px;
            background: linear-gradient(90deg, var(--divine-silver), var(--divine-gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(247, 200, 66, 0.2);
        }

        p {
            font-size: 1.2rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--divine-silver);
        }

        .year-tag {
            display: inline-block;
            background: rgba(247, 200, 66, 0.1);
            color: var(--divine-gold);
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 1.1rem;
            margin-bottom: 20px;
            border: 1px solid rgba(247, 200, 66, 0.3);
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 5px rgba(247, 200, 66, 0.3); }
            to { box-shadow: 0 0 20px rgba(247, 200, 66, 0.6); }
        }

        .sector-tags {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .sector-tag {
            background: rgba(10, 14, 26, 0.7);
            padding: 15px 30px;
            border-radius: 8px;
            border: 1px solid rgba(220, 232, 241, 0.1);
            transition: all 0.3s ease;
        }

        .sector-tag:hover {
            transform: translateY(-5px);
            border-color: rgba(247, 200, 66, 0.3);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .sector-tag h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--divine-gold);
        }

        .sector-tag p {
            font-size: 1rem;
            margin-bottom: 0;
            color: var(--divine-silver);
        }

        /* Original logo styling */
        .logo img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(145deg, #0a0e1a, #050811);
            padding: 5px;
            border: 1px solid rgba(247, 200, 66, 0.3);
        }
/*navbar ends*/
/*hero section for the slidersstarts*/
        :root {
            --divine-white: #ffffff;
            --divine-silver: #dce8f1;
            --divine-gold: #f7c842;
            --quantum-space: #0a0e1a;
            --quantum-void: #050811;
            --quantum-glow: #0ff;
            --quantum-blue: #4d5bce;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Titillium Web', sans-serif;
        }

        .structure {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 20px 50px;
        }

        /* Header Styling */
        header {
            text-align: center;
            margin: 40px 0;
            position: relative;
        }

        header h1 {
            font-size: 2.8rem;
            font-weight: 300;
            background: linear-gradient(90deg, var(--divine-silver), var(--divine-gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(247, 200, 66, 0.2);
            display: inline-block;
            margin-bottom: 10px;
        }

        .color {
            color: var(--divine-gold);
        }

        .under-line-color-oranger {
            position: relative;
            display: inline-block;
            padding-bottom: 5px;
        }

        .under-line-color-oranger::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--divine-gold);
            border-radius: 3px;
        }

        /* Card Styling */
        .card {
            background: rgba(10, 14, 26, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(220, 232, 241, 0.1);
            border-radius: 12px;
            padding: 30px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
            border-color: rgba(247, 200, 66, 0.3);
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(77, 91, 206, 0.1), transparent);
            z-index: -1;
        }

        .title_head {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--divine-gold);
        }

        .desc {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--divine-silver);
        }

        /* Grid Layouts */
        .four_columns_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .two-columns-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .three_columns_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
            padding: 0 1rem; /* optional horizontal padding for mobile spacing */
        }
        @media (max-width: 480px) {
            .three_columns_grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }


        /* Icon Styling */
        .icon_list {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(247, 200, 66, 0.1);
            border-radius: 50%;
            border: 1px solid rgba(247, 200, 66, 0.3);
            padding: 15px;
            transition: all 0.4s ease;
        }

        .icon_list img {
            max-width: 100%;
            filter: drop-shadow(0 0 5px var(--divine-gold));
        }

        .card:hover .icon_list {
            transform: scale(1.1);
            background: rgba(247, 200, 66, 0.2);
            box-shadow: 0 0 20px rgba(247, 200, 66, 0.3);
        }

        /* Call to Action */
        .call_to_action_btn {
            margin-bottom: 60px;
        }

        .callbtn {
            text-align: center;
            margin-top: 30px;
        }

        .read_more {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            border: 1px solid var(--divine-gold);
            color: var(--divine-white);
            text-decoration: none;
            font-size: 1.1rem;
            border-radius: 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .read_more::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(247, 200, 66, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            z-index: -1;
        }

        .read_more:hover {
            background: rgba(247, 200, 66, 0.1);
            box-shadow: 0 0 20px rgba(247, 200, 66, 0.3);
            transform: translateY(-3px);
        }

        .read_more:hover::before {
            transform: translateX(100%);
        }

        /* Sliders */
        .static-bckground {
            background: linear-gradient(135deg, rgba(5, 8, 17, 0.9), rgba(10, 14, 26, 0.9));
            padding: 50px 20px;
            border-radius: 15px;
            margin-bottom: 60px;
            border: 1px solid rgba(220, 232, 241, 0.1);
            position: relative;
            overflow: hidden;
        }

        .static-bckground::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('files/bgimages/image.jpg') center/cover no-repeat;
            opacity: 0.2;
            z-index: -1;
        }

        .bg-card {
            background: rgba(10, 14, 26, 0.7);
            border-radius: 15px;
            padding: 25px;
            margin: 15px;
            text-align: center;
            border: 1px solid rgba(220, 232, 241, 0.1);
            transition: all 0.4s ease;
            height: 100%;
        }

        .bg-card:hover {
            transform: translateY(-10px);
            border-color: var(--divine-gold);
            box-shadow: 0 10px 25px rgba(247, 200, 66, 0.2);
        }

        .bg-card img {
            max-width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 20px;
            border-radius: 10px;
        }

        .bg-card .title {
            font-size: 1rem;
            color: var(--divine-gold);
            margin-bottom: 15px;
        }

        /* 3D Slider */
        .slidershow {
            margin: 60px 0;
            perspective: 1000px;
        }

        .content-carousel {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .content-carousel figure {
            width: 280px;
            height: 350px;
            position: relative;
            transition: transform 0.5s ease;
            transform-style: preserve-3d;
        }

        .content-carousel figure:hover {
            transform: rotateY(10deg) rotateX(10deg) translateY(-20px);
        }

        .content-carousel figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .content-carousel .title {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 14, 26, 0.9);
            padding: 15px;
            text-align: center;
            color: var(--divine-gold);
            font-size: 1rem;
            border-radius: 0 0 15px 15px;
        }

        /* Client Slider */
        .slider {
            margin: 60px 0;
        }

        .icon_list_img {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 150px;
            background: rgba(10, 14, 26, 0.7);
            border-radius: 15px;
            padding: 20px;
            margin: 10px;
            border: 1px solid rgba(220, 232, 241, 0.1);
            transition: all 0.4s ease;
        }

        .icon_list_img:hover {
            transform: scale(1.05);
            border-color: var(--divine-gold);
            box-shadow: 0 10px 25px rgba(247, 200, 66, 0.2);
        }

        .icon_list_img img {
            max-width: 100%;
            max-height: 100px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.4s ease;
        }

        .icon_list_img:hover img {
            filter: grayscale(0%) drop-shadow(0 0 5px var(--divine-gold));
        }

        /* Space utility */
        .space {
            height: 60px;
        }

        /* Quantum Particle */
        .quantum-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--quantum-glow);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            box-shadow: 0 0 15px var(--quantum-glow);
            z-index: -1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .two-columns-grid {
                grid-template-columns: 1fr;
            }

            .structure {
                padding: 80px 15px 30px;
            }

            header h1 {
                font-size: 2rem;
            }

            .title_head {
                font-size: 1rem;
            }
        }
/* Quantum particle enhancements */
        .quantum-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--quantum-glow);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            box-shadow: 0 0 15px var(--quantum-glow);
            z-index: -1;
            animation: pulse 2s infinite alternate;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.7; }
            100% { transform: scale(1.5); opacity: 0.3; }
        }

        /* Image enhancements */
        .bg-card img, .content-carousel figure img {
            transition: transform 0.5s ease, filter 0.5s ease;
        }

        .bg-card:hover img, .content-carousel figure:hover img {
            transform: scale(1.05);
            filter: brightness(110%) saturate(120%);
        }

        /* Service card enhancements */
        .service-card {
            perspective: 1000px;
        }

        .service-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.8s;
        }

        .service-card:hover .service-card-inner {
            transform: rotateY(180deg);
        }

        .service-card-front, .service-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 12px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-card-back {
            background: linear-gradient(135deg, var(--quantum-space), var(--quantum-void));
            transform: rotateY(180deg);
            text-align: center;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .content-carousel figure {
                width: 200px;
                height: 280px;
            }
            h1{
                font-size: 1rem;
            }

            .title_head {
                font-size: 1.6rem;
            }

            header h1 {
                font-size: 1.8rem;
            }
        }

        /* Quantum wave effect */
        .quantum-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%230ff" opacity="0.1"/></svg>');
            background-size: 1200px 100px;
            animation: wave 12s linear infinite;
            z-index: -1;
        }

        @keyframes wave {
            0% { background-position-x: 0; }
            100% { background-position-x: 1200px; }
        }

        /* Loading spinner */
        .loading-spinner {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 200px;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(247, 200, 66, 0.3);
            border-top: 5px solid var(--divine-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Error message styling */
        .error {
            background: rgba(173, 40, 40, 0.2);
            border: 1px solid rgba(220, 53, 69, 0.5);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin: 20px 0;
        }

        .error p {
            color: #f8d7da;
            font-size: 1.2rem;
        }
/*hero section for the sliders end*/
/*Footer codes starts here*/

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .quantum-container {
            max-width: 1800px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        header {
            text-align: center;
            padding: 60px 0;
        }

        h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            background: linear-gradient(90deg, var(--divine-silver), var(--divine-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
            letter-spacing: 3px;
        }

        .subtitle {
            font-size: 1.5rem;
            color: var(--divine-silver);
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .tech-card {
            background: rgba(15, 22, 40, 0.6);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(10px);
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .tech-card:hover {
            transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
            box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
        }

        .tech-card h2 {

              background: linear-gradient(90deg, var(--divine-silver), var(--divine-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; /* for Firefox */
            color: transparent;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }

        .tech-card p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .tech-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--divine-gold);
        }

        /* Quantum Grid Background */
        .quantum-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                linear-gradient(rgba(10, 15, 30, 0.9), rgba(5, 8, 17, 0.95)),
                repeating-linear-gradient(0deg, transparent, transparent var(--grid-size), rgba(0, 100, 255, 0.05) var(--grid-size), rgba(0, 100, 255, 0.05) calc(var(--grid-size) * 2)),
                repeating-linear-gradient(90deg, transparent, transparent var(--grid-size), rgba(0, 100, 255, 0.05) var(--grid-size), rgba(0, 100, 255, 0.05) calc(var(--grid-size) * 2));
            z-index: -1;
        }

        /* Quantum Particles */
        #quantum-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        /* FUTURISTIC FOOTER */
        .quantum-footer {
            background: rgba(5, 8, 17, 0.95);
            border-top: 1px solid rgba(0, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            padding: 80px 0 40px;
            margin-top: 100px;
            backdrop-filter: blur(10px);
        }

        .quantum-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--quantum-glow), transparent);
            animation: scanline 4s linear infinite;
        }

        @keyframes scanline {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .hologram-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1800px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .holo-column {
            position: relative;
            padding: 30px;
            background: rgba(15, 22, 40, 0.3);
            border-radius: 15px;
            backdrop-filter: blur(5px);
            transform: translateZ(0);
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .holo-column:hover {
            background: rgba(25, 35, 60, 0.5);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 255, 0.3);
        }

        .holo-column h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            background: linear-gradient(90deg, var(--divine-silver), var(--divine-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; /* for Firefox */
            color: transparent;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .holo-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--divine-gold);
            border-radius: 2px;
        }

        .holo-column ul {
            list-style: none;
        }

        .holo-column li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
            transition: all 0.3s ease;
        }

        .holo-column li::before {
            content: '➤';
            position: absolute;
            left: 0;
            background: linear-gradient(90deg, var(--divine-silver), var(--divine-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; /* for Firefox */
            color: transparent;
            font-size: 0.8rem;
        }

        .holo-column li:hover {
            transform: translateX(10px);
            color: var(--divine-white);
        }

        .holo-column a {
            color: var(--divine-silver);
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            position: relative;
            text-align: left;
        }

        .holo-column a:hover {
            color: var(--quantum-glow);
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
        }

        .holo-column a:hover::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, var(--quantum-glow), transparent);
        }

        /* Subscribe Form */
        .quantum-form {
            margin-top: 20px;
            width: 100%;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .quantum-input {
            width: 100%;
            padding: 15px 20px;
            background: rgba(10, 15, 30, 0.7);
            border: 1px solid rgba(0, 255, 255, 0.3);
            border-radius: 8px;
            color: var(--divine-white);
            font-size: 1rem;
            transition: all 0.3s ease;
            outline: none;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
        }

        .quantum-input:focus {
            border-color: var(--divine-gold);
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
            background: rgba(20, 30, 50, 0.8);
        }

        .quantum-input::placeholder {
            color: rgba(220, 232, 241, 0.6);
        }

        .quantum-btn {
            background: linear-gradient(135deg, var(--divine-silver), var(--divine-gold));
            color: var(--quantum-void);
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-family: 'Orbitron', sans-serif;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .quantum-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 255, 255, 0.6);
        }

        .quantum-btn::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(30deg);
            transition: all 0.6s ease;
        }

        .quantum-btn:hover::before {
            transform: rotate(30deg) translate(20%, 20%);
        }

        /* Quantum Neural Connections */
        .neural-connections {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        /* Hologram Effect */
        .hologram-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at center, rgba(0, 255, 255, 0.05), transparent 70%),
                radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.05), transparent 70%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.05), transparent 70%);
            opacity: 0.7;
            z-index: -1;
        }

        /* Floating Particles */
        .particle {
            position: absolute;
            border-radius: 50%;
            background: var(--quantum-glow);
            box-shadow: 0 0 10px var(--quantum-glow), 0 0 20px var(--quantum-glow);
            opacity: 0.7;
            z-index: 1;
        }

        /* Footer Bottom */
        .footer-bottom {
            max-width: 1800px;
            margin: 60px auto 0;
            padding: 30px 40px 0;
            border-top: 1px solid rgba(0, 255, 255, 0.1);
            text-align: center;
            font-size: 1.1rem;
            color: rgba(220, 232, 241, 0.7);
            position: relative;
            z-index: 2;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 20px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(15, 22, 40, 0.5);
            border-radius: 50%;
            color: var(--divine-silver);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 255, 255, 0.2);
        }

        .social-icon:hover {
            background: var(--divine-gold);
            color: var(--quantum-void);
            transform: translateY(-5px);
            box-shadow: 0 0 20px var(--hologram-pink);
        }

        /* Quantum Animations */
        @keyframes pulse {
            0% { opacity: 0.3; }
            50% { opacity: 0.8; }
            100% { opacity: 0.3; }
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }

        .pulse {
            animation: pulse 3s infinite ease-in-out;
        }

        .float {
            animation: float 6s infinite ease-in-out;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3.5rem;
            }

            .hologram-grid {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.8rem;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .hologram-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
            }

            .holo-column {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 2.2rem;
            }

            .tech-card {
                padding: 20px;
            }
        }
/*Footer codes ends here*/
/*About starts here*/
  :root {
            --divine-white: #ffffff;
            --divine-silver: #dce8f1;
            --divine-gold: #f7c842;
            --quantum-space: #0a0e1a;
            --quantum-void: #050811;
            --quantum-glow: #0ff;
            --hologram-purple: #9d4edd;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        /* Particle Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        /* Quantum wave effect */
        .quantum-wave {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, rgba(0, 255, 255, 0.1), transparent);
            z-index: -1;
            opacity: 0.5;
        }

        /* Structure */
        .structure {
            max-width: 1400px;
            margin: 0 auto;
            margin-top: -100;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        /* Banner */
        .background-banner {
            position: relative;
            height: 00px;
            overflow: hidden;
            margin-bottom: 4rem;
        }

        .background-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7) saturate(1.5);
        }

        .background-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
            padding: 0 2rem;
        }

        .background-title h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 5rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--divine-gold), var(--quantum-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(0, 128, 55, 0.4);
            letter-spacing: 2px;
            line-height: 1.2;
        }

        /* Card Styles */
        .card {
            background: rgba(10, 14, 26, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }


        .title_head .color {
            background: linear-gradient(to right, var(--divine-gold), var(--quantum-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .title_head::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 120px;
            height: 4px;
            background: linear-gradient(to right, var(--divine-gold), var(--quantum-glow));
            border-radius: 2px;
        }

        .desc {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--divine-silver);
        }

        .desc strong {
            color: var(--divine-gold);
        }

        /* Grid Layouts */
        .one_column_grid {
            margin-bottom: 4rem;
        }

        /*.three_columns_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }*/

        .three_column_card {
            height: 100%;
        }

        .space {
            height: 4rem;
        }

        /* Value Icons */
        .value-icons {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .value-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 150px;
        }

        .icon-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(10, 14, 26, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 2rem;
            color: var(--divine-gold);
            position: relative;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .icon-circle::before {
            content: '';
            position: absolute;
            width: 110%;
            height: 110%;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--quantum-glow), var(--divine-gold), var(--hologram-purple));
            z-index: -1;
            animation: rotateHalo 3s linear infinite;
        }

        .value-icon:hover .icon-circle {
            transform: translateY(-10px);
            box-shadow: 0 0 30px var(--divine-gold);
        }

        .value-title {
            font-weight: 600;
            color: var(--divine-white);
        }

        /* Timeline */
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background: linear-gradient(to bottom, var(--divine-gold), var(--quantum-glow));
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            width: 50%;
            padding: 20px 40px;
            box-sizing: border-box;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-content {
            background: rgba(10, 14, 26, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .timeline-year {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: var(--divine-gold);
            margin-bottom: 0.5rem;
        }

        .timeline-desc {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin: 4rem 0;
        }

        .team-member {
            text-align: center;
        }

        .member-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            border: 3px solid var(--divine-gold);
            overflow: hidden;
            position: relative;
            box-shadow: 0 0 20px rgba(247, 200, 66, 0.3);
        }

        .member-photo::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--divine-gold), var(--quantum-glow));
            z-index: -1;
        }

        .member-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .member-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--divine-white);
            margin-bottom: 0.5rem;
        }

        .member-position {
            color: var(--divine-gold);
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        /* Animations */
        @keyframes gradientRotate {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }

        @keyframes rotateHalo {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .background-title h1 {
                font-size: 3.5rem;
            }

            .title_head {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .background-banner {
                height: 300px;
            }

            .background-title h1 {
                font-size: 2.5rem;
            }

            .timeline::after {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }
        }

        @media (max-width: 576px) {
            .background-title h1 {
                font-size: 2rem;
            }

            .title_head {
                font-size: 1.8rem;
            }

            .desc {
                font-size: 1rem;
            }

            .card {
                padding: 1.5rem;
            }
        }
/*About Ends here*/
/*Login page begins*/
  :root {
            --divine-white: #ffffff;
            --divine-silver: #dce8f1;
            --divine-gold: #f7c842;
            --quantum-space: #0a0e1a;
            --quantum-void: #050811;
            --quantum-glow: #0ff;
            --hologram-purple: #9d4edd;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        /* Banner */
        .background-banner {
            position: relative;
            height: 150px;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .background-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7) saturate(1.5);
        }

        .background-title {
            position: absolute;
            top: 30%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
            padding: 0 2rem;
        }

        .background-title h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--divine-gold), var(--quantum-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(0, 128, 55, 0.4);
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .form-structure {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        .form-main {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 50vh;
            margin-top: -130px;
        }

        .login_container {
            width: 100%;
            max-width: 500px;
            padding: 2rem;
            background: rgba(10, 14, 26, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 255, 0.1);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .login_container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg,
                var(--quantum-glow),
                var(--divine-gold),
                var(--hologram-purple));
            z-index: -1;
            border-radius: 22px;
            opacity: 0.5;
            animation: gradientRotate 8s linear infinite;
            background-size: 400% 400%;
        }

        header {
            text-align: center;
            margin-bottom: 2rem;
        }

        header h1 {
            font-size: 2rem;
            color: var(--divine-white);
            margin-bottom: 1rem;
        }

        .message {
            padding: 1rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            margin-bottom: 1.5rem;
            text-align: center;
            border: 1px solid rgba(0, 255, 255, 0.2);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--divine-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .form-group input {
            width: 100%;
            padding: 14px 20px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 10px;
            color: var(--divine-white);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--quantum-glow);
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.5);
        }

        .form-group input::placeholder {
            color: rgba(220, 232, 241, 0.5);
        }

        .btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(to right, var(--quantum-space), var(--quantum-void));
            color: var(--divine-gold);
            border: 1px solid var(--divine-gold);
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Orbitron', sans-serif;
        }

        .btn:hover {
            background: linear-gradient(to right, var(--divine-gold), var(--quantum-glow));
            color: var(--quantum-space);
            box-shadow: 0 0 20px var(--divine-gold);
        }

        .login-footer {
            margin-top: 2rem;
            text-align: center;
            color: var(--divine-silver);
        }

        .login-footer a {
            color: var(--quantum-glow);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .login-footer a:hover {
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        }

        .biometrics {
            margin-top: 1.5rem;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 255, 255, 0.1);
        }

        .biometrics p {
            margin-bottom: 1rem;
            color: var(--divine-gold);
        }

        .bio-options {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .bio-option {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .bio-option:hover {
            background: rgba(0, 0, 0, 0.5);
            border-color: var(--quantum-glow);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
        }

        .bio-option i {
            font-size: 1.5rem;
            color: var(--divine-gold);
        }

        /* Animations */
        @keyframes gradientRotate {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .background-banner {
                height: 250px;
            }



            .background-title h1 {
                font-size: 2.5rem;
            }

            .login_container {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .background-title h1 {
                font-size: 2rem;
            }

            .login_container {
                padding: 1.2rem;
            }
        }
/*Login page ends*/
/*Admin dashboard starts here*/
        :root {
            --divine-white: #ffffff;
            --divine-silver: #dce8f1;
            --divine-gold: #f7c842;
            --quantum-space: #0a0e1a;
            --quantum-void: #050811;
            --quantum-glow: #0ff;
            --hologram-purple: #9d4edd;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        /* Banner */
        .admin-background-title {
            position: absolute;
            top: 65%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
            padding: 0 2rem;
        }

        .admin-background-title h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--divine-white), var(--quantum-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(0, 128, 55, 0.4);
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .admin-background-title .color {
            color: var(--divine-gold);
        }

        .admin_structure {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
            display: flex;
            gap: 2rem;
        }

        @media (max-width: 1200px) {
            .admin_structure {
                flex-direction: column;
            }
        }

        .admin-side-bar {
            margin-top: -100px;
            width: 280px;
            min-width: 280px;
            background: rgba(10, 14, 26, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 255, 0.1);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            height: fit-content;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .admin-side-bar h1 {
            font-size: 1.5rem;
            color: var(--divine-gold);
            margin-bottom: 1.5rem;
            padding: 0.8rem 1rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            text-align: center;
            border-left: 4px solid var(--divine-gold);
        }

        .admin_active {
            background: rgba(247, 200, 66, 0.1) !important;
            border-left: 4px solid var(--quantum-glow) !important;
        }

        main {
            flex: 1;
        }

        .dashboard_container {
            margin-top: -100px;
            background: rgba(10, 14, 26, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
            perspective: 1000px;
            margin-bottom: 3rem;
        }

        .dashboard_container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg,
                var(--quantum-glow),
                var(--divine-gold),
                var(--hologram-purple));
            z-index: -1;
            border-radius: 22px;
            opacity: 0.5;
            animation: gradientRotate 8s linear infinite;
            background-size: 400% 400%;
        }

        /* Stats Grid */
        .four_columns_grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (max-width: 1400px) {
            .four_columns_grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .four_columns_grid {
                grid-template-columns: 1fr;
            }
        }

        .admin_card {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 255, 255, 0.1);
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .admin_card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
            border: 1px solid var(--quantum-glow);
        }

        .title_head_admin {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--divine-white);
            margin-bottom: 1rem;
            position: relative;
            padding-left: 35px;
        }

        .title_head_admin a {
            color: var(--divine-white);
            text-decoration: none;
        }

        .title_head_admin::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 25px;
            height: 25px;
            background: var(--divine-gold);
            border-radius: 50%;
        }

        .stat_value {
            font-size: 2.5rem;
            font-weight: 800;
            font-family: 'Orbitron', sans-serif;
            color: var(--quantum-glow);
            margin: 0.5rem 0;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }

        .desc {
            margin-top: 1rem;
        }

        .desc a {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(247, 200, 66, 0.1);
            color: var(--divine-gold);
            text-decoration: none;
            border-radius: 50px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid var(--divine-gold);
        }

        .desc a:hover {
            background: rgba(247, 200, 66, 0.3);
            box-shadow: 0 0 15px rgba(247, 200, 66, 0.3);
        }

        /* Charts Section */
        .charts_container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (max-width: 1200px) {
            .charts_container {
                grid-template-columns: 1fr;
            }
        }

        .chart_box {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(0, 255, 255, 0.1);
            min-height: 400px;
        }

        .chart_box h2 {
            font-size: 1.5rem;
            color: var(--divine-gold);
            margin-bottom: 1.5rem;
            text-align: center;
            font-family: 'Orbitron', sans-serif;
        }

        canvas {
            width: 100% !important;
            height: 350px !important;
        }

        /* Recent Activity */
        .activity_container {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            border: 1px solid rgba(0, 255, 255, 0.1);
            margin-top: 3rem;
        }

        .activity_container h2 {
            font-size: 1.5rem;
            color: var(--divine-gold);
            margin-bottom: 1.5rem;
            font-family: 'Orbitron', sans-serif;
        }

        .activity_list {
            list-style: none;
        }

        .activity_item {
            padding: 1.2rem;
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
            display: flex;
            align-items: center;
        }

        .activity_item:last-child {
            border-bottom: none;
        }

        .activity_icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(247, 200, 66, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.2rem;
            flex-shrink: 0;
        }

        .activity_icon i {
            font-size: 1.2rem;
            color: var(--divine-gold);
        }

        .activity_content {
            flex: 1;
        }

        .activity_title {
            font-weight: 600;
            color: var(--divine-white);
            margin-bottom: 0.3rem;
        }

        .activity_time {
            font-size: 0.9rem;
            color: var(--divine-silver);
        }

        /* Animations */
        @keyframes gradientRotate {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }

        @keyframes countUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .stat_value {
            animation: countUp 1s ease-out forwards;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .background-banner {
                height: 250px;
            }

            .admin-background-title h1 {
                font-size: 2.5rem;
            }

            .admin_structure {
                padding: 0 1rem;
            }

            .admin-side-bar {
                width: 100%;
            }

            .dashboard_container {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .admin-background-title h1 {
                font-size: 2rem;
            }
        }
/*Admin Dashboard ends*/
/*Contact us begins*/
        :root {
            --divine-white: #ffffff;
            --divine-silver: #dce8f1;
            --divine-gold: #f7c842;
            --quantum-space: #0a0e1a;
            --quantum-void: #050811;
            --quantum-glow: #0ff;
            --hologram-purple: #9d4edd;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       /* Banner */
        .background-banner {
            position: relative;
            height: 300px;
            overflow: hidden;
            margin-bottom: 4rem;
        }

        .background-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7) saturate(1.5);
        }

        .background-title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
            padding: 0 2rem;
        }

        .background-title h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--divine-gold), var(--quantum-glow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(0, 128, 55, 0.4);
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .form-structure {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }


        .contact_container {
            width: 100%;
            max-width: 1200px;
            padding: 2rem;
            background: rgba(10, 14, 26, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 255, 0.1);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            perspective: 1000px;
            margin-bottom: 1rem;
        }

        .contact_container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg,
                var(--quantum-glow),
                var(--divine-gold),
                var(--hologram-purple));
            z-index: -1;
            border-radius: 22px;
            opacity: 0.5;
            animation: gradientRotate 8s linear infinite;
            background-size: 400% 400%;
        }

        .two-columns-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        @media (max-width: 900px) {
            .two-columns-grid {
                grid-template-columns: 1fr;
            }
        }

        .contact_info {
            padding: 2rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 255, 0.1);
        }

        .contact_info h2 {
            font-size: 2rem;
            color: var(--divine-gold);
            margin-bottom: 2rem;
            text-align: center;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            padding-bottom: 15px;
        }

        .contact_info h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--divine-gold), var(--quantum-glow));
            border-radius: 2px;
        }

        .contact_icons {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            transition: all 0.3s ease;
            border-left: 3px solid var(--divine-gold);
        }

        .contact_icons:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
            border-left: 3px solid var(--quantum-glow);
        }

        .contact_icons img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin-right: 1.5rem;
            filter: drop-shadow(0 0 5px var(--divine-gold));
        }

        .icon_head {
            flex: 1;
        }

        .icon_title_head {
            font-size: 1.1rem;
            color: var(--divine-white);
            line-height: 1.6;
        }

        form {
            padding: 2rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 255, 0.1);
        }

        form h2 {
            font-size: 2rem;
            color: var(--divine-gold);
            margin-bottom: 2rem;
            text-align: center;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            padding-bottom: 15px;
        }

        form h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--divine-gold), var(--quantum-glow));
            border-radius: 2px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--divine-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 20px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 10px;
            color: var(--divine-white);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--quantum-glow);
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.5);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(220, 232, 241, 0.5);
        }

        .btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(to right, var(--quantum-space), var(--quantum-void));
            color: var(--divine-gold);
            border: 1px solid var(--divine-gold);
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Orbitron', sans-serif;
        }

        .btn:hover {
            background: linear-gradient(to right, var(--divine-gold), var(--quantum-glow));
            color: var(--quantum-space);
            box-shadow: 0 0 20px var(--divine-gold);
        }

        .map-container {
            margin-top: 3rem;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(0, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
            filter: grayscale(100%) invert(1) contrast(0.8) saturate(1.5);
        }

        /* Animations */
        @keyframes gradientRotate {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .background-banner {
                height: 250px;
            }

            .background-title h1 {
                font-size: 2.5rem;
            }

            .contact_container {
                padding: 1.5rem;
            }

            .contact_info, form {
                padding: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .background-title h1 {
                font-size: 2rem;
            }
        }
/*Contact us ends*/
/*tables beging*/
    :root {
            --divine-white: #ffffff;
            --divine-silver: #dce8f1;
            --divine-gold: #f7c842;
            --quantum-space: #0a0e1a;
            --quantum-void: #050811;
            --quantum-glow: #0ff;
            --hologram-purple: #9d4edd;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .space {
            height: 30px;
        }

        .admin-side-bar {
        width: 270px; /* Fixed width */
        flex-shrink: 0;
        }

        .admin-form-container {
        flex: 1;
        }
        .admin_structure {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            align-items: flex-start;
            z-index: 10;
            display: flex;
            gap: 2rem;
        }


        @media (max-width: 1200px) {
            .admin_structure {
                flex-direction: column;
            }
        }

        .admin-side-bar {
            width: 280px;
            min-width: 280px;
            background: rgba(10, 14, 26, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 255, 0.1);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            height: fit-content;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        main {
            flex: 1;
        }

        .admin-form-container {
            margin-top: -100px;
            width: 100%;
            background: rgba(10, 14, 26, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
            perspective: 1000px;
            margin-bottom: 3rem;
            overflow: hidden;
        }

        .admin-form-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg,
                var(--quantum-glow),
                var(--divine-gold),
                var(--hologram-purple));
            z-index: -1;
            border-radius: 22px;
            opacity: 0.5;
            animation: gradientRotate 8s linear infinite;
            background-size: 400% 400%;
        }

        header {
            margin-bottom: 2rem;
            text-align: center;
        }

        header h1 {
            font-size: 1.8rem;
            font-family: 'Orbitron', sans-serif;
            color: var(--divine-gold);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        header h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--divine-gold), var(--quantum-glow));
            border-radius: 2px;
        }

        /* Table Styles */
        .table-container {
            overflow-x: auto;
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 255, 0.1);
            background: rgba(0, 0, 0, 0.3);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 1000px;
        }

        th, td {
            padding: 1.2rem 1.5rem;
            text-align: left;
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        }

        th {
            background: rgba(247, 200, 66, 0.15);
            color: var(--divine-gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.95rem;
            position: sticky;
            top: 0;
        }

        tr:nth-child(even) {
            background: rgba(10, 14, 26, 0.4);
        }

        tr:hover {
            background: rgba(247, 200, 66, 0.1);
        }

        td {
            color: var(--divine-silver);
            font-size: 0.95rem;
            vertical-align: middle;
        }

        .avatar-cell img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--divine-gold);
            box-shadow: 0 0 10px rgba(247, 200, 66, 0.3);
        }

        .action-cell {
            display: flex;
            gap: 10px;
        }

        .edit-btn, .delete-btn {
            padding: 8px 15px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .edit-btn {
            background: rgba(0, 255, 255, 0.1);
            color: var(--quantum-glow);
            border: 1px solid var(--quantum-glow);
        }

        .edit-btn:hover {
            background: rgba(0, 255, 255, 0.3);
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
        }

        .delete-btn {
            background: rgba(255, 50, 50, 0.1);
            color: #ff6666;
            border: 1px solid rgba(255, 50, 50, 0.3);
        }

        .delete-btn:hover {
            background: rgba(255, 50, 50, 0.2);
            box-shadow: 0 0 15px rgba(255, 50, 50, 0.2);
        }

        .role-tag {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .role-admin {
            background: rgba(157, 78, 221, 0.2);
            color: var(--hologram-purple);
            border: 1px solid var(--hologram-purple);
        }

        .role-user {
            background: rgba(0, 255, 255, 0.2);
            color: var(--quantum-glow);
            border: 1px solid var(--quantum-glow);
        }

        .role-editor {
            background: rgba(247, 200, 66, 0.2);
            color: var(--divine-gold);
            border: 1px solid var(--divine-gold);
        }

        .table-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 15px;
        }

        .search-box {
            position: relative;
            max-width: 300px;
            width: 100%;
        }

        .search-box input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 50px;
            color: var(--divine-white);
            font-size: 1rem;
        }

        .search-box i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--divine-gold);
        }

        .add-user-btn {
            padding: 12px 25px;
            background: linear-gradient(to right, var(--quantum-space), var(--quantum-void));
            color: var(--divine-gold);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 1px solid var(--divine-gold);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .add-user-btn:hover {
            background: linear-gradient(to right, var(--divine-gold), var(--quantum-glow));
            color: var(--quantum-space);
            box-shadow: 0 0 20px var(--divine-gold);
        }

        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 10px;
        }

        .pagination a, .pagination span {
            padding: 8px 16px;
            background: rgba(0, 0, 0, 0.3);
            color: var(--divine-silver);
            border-radius: 8px;
            border: 1px solid rgba(0, 255, 255, 0.1);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .pagination a:hover {
            background: rgba(247, 200, 66, 0.1);
            border-color: var(--divine-gold);
            color: var(--divine-gold);
        }

        .pagination .current {
            background: rgba(247, 200, 66, 0.2);
            border-color: var(--divine-gold);
            color: var(--divine-gold);
        }

        /* Animations */
        @keyframes gradientRotate {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .admin-side-bar {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .admin_structure {
                padding: 0 1rem;
            }

            .admin-form-container {
                padding: 1.5rem;
            }

            .table-controls {
                flex-direction: column;
                align-items: stretch;
            }

            .search-box {
                max-width: 100%;
            }
        }
/*tables ends*/
/*Table products starts*/
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --divine-white: #ffffff;
            --divine-silver: #dce8f1;
            --divine-gold: #f7c842;
            --quantum-space: #0a0e1a;
            --quantum-void: #050811;
            --quantum-glow: #0ff;
            --hologram-purple: #9d4edd;
            --card-bg: rgba(10, 14, 26, 0.7);
            --card-border: rgba(0, 255, 255, 0.1);
        }


        .admin-background-title {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .admin-background-title h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            color: var(--divine-gold);
            text-shadow: 0 0 15px rgba(247, 200, 66, 0.5);
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .admin-background-title p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: var(--divine-silver);
        }


        .admin-side-bar {
            width: 280px;
            min-width: 280px;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            height: fit-content;
        }

        .admin-side-bar h1 {
            font-family: 'Orbitron', sans-serif;
            color: var(--divine-gold);
            font-size: 1.5rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--divine-gold);
        }

        .admin-menu {
            list-style: none;
        }

        .admin-menu li {
            margin-bottom: 12px;
        }

        .admin-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            color: var(--divine-silver);
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .admin-menu a:hover, .admin-menu a.active {
            background: rgba(247, 200, 66, 0.15);
            color: var(--divine-gold);
            box-shadow: 0 0 15px rgba(247, 200, 66, 0.1);
        }

        .admin-menu i {
            width: 24px;
            text-align: center;
            font-size: 1.1rem;
        }

        .admin-form-container {
            flex: 1;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
        }

        .admin-form-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg,
                var(--quantum-glow),
                var(--divine-gold),
                var(--hologram-purple));
            z-index: -1;
            border-radius: 22px;
            opacity: 0.5;
            animation: gradientRotate 8s linear infinite;
            background-size: 400% 400%;
        }

        .table-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .table-header h2 {
            font-family: 'Orbitron', sans-serif;
            color: var(--divine-gold);
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 10px;
        }

        .table-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--divine-gold), var(--quantum-glow));
            border-radius: 2px;
        }

        .search-box {
            position: relative;
            max-width: 300px;
            width: 100%;
        }

        .search-box input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 255, 255, 0.2);
            border-radius: 50px;
            color: var(--divine-white);
            font-size: 1rem;
        }

        .search-box i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--divine-gold);
        }

        .add-product-btn {
            padding: 12px 25px;
            background: linear-gradient(to right, var(--quantum-space), var(--quantum-void));
            color: var(--divine-gold);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 1px solid var(--divine-gold);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .add-product-btn:hover {
            background: linear-gradient(to right, var(--divine-gold), var(--quantum-glow));
            color: var(--quantum-space);
            box-shadow: 0 0 20px var(--divine-gold);
        }

        .table-container {
            overflow-x: auto;
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 255, 0.1);
            background: rgba(0, 0, 0, 0.3);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 1000px;
        }

        th, td {
            padding: 0.6rem 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        }

        th {
            background: rgba(247, 200, 66, 0.15);
            color: var(--divine-gold);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.95rem;
            position: sticky;
            top: 0;
        }

        tr:nth-child(even) {
            background: rgba(10, 14, 26, 0.4);
        }

        tr:hover {
            background: rgba(247, 200, 66, 0.1);
        }

        td {
            color: var(--divine-silver);
            font-size: 0.95rem;
            vertical-align: middle;
        }

        .product-image img {
            width: 70px;
            height: 70px;
            border-radius: 10px;
            object-fit: cover;
            border: 2px solid var(--divine-gold);
            box-shadow: 0 0 10px rgba(247, 200, 66, 0.3);
        }

        .action-cell {
            display: flex;
            gap: 10px;
        }

        .edit-btn, .delete-btn {
            padding: 8px 15px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            text-decoration: none;
        }

        .edit-btn {
            background: rgba(0, 255, 255, 0.1);
            color: var(--quantum-glow);
            border: 1px solid var(--quantum-glow);
        }

        .edit-btn:hover {
            background: rgba(0, 255, 255, 0.3);
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
        }

        .delete-btn {
            background: rgba(255, 50, 50, 0.1);
            color: #ff6666;
            border: 1px solid rgba(255, 50, 50, 0.3);
            padding: 8px 12px;
            font-family: 'Roboto', sans-serif;
            cursor: pointer;
        }

        .delete-btn:hover {
            background: rgba(255, 50, 50, 0.2);
            box-shadow: 0 0 15px rgba(255, 50, 50, 0.2);
        }

        .product-description {
            max-width: 400px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .notification {
            padding: 15px;
            margin-bottom: 25px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(157, 78, 221, 0.15);
            border: 1px solid var(--hologram-purple);
        }

        .notification.success {
            background: rgba(0, 255, 255, 0.15);
            border: 1px solid var(--quantum-glow);
        }

        .notification i {
            font-size: 1.5rem;
            color: var(--hologram-purple);
        }

        .notification.success i {
            color: var(--quantum-glow);
        }

        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 10px;
        }

        .pagination a, .pagination span {
            padding: 8px 16px;
            background: rgba(0, 0, 0, 0.3);
            color: var(--divine-silver);
            border-radius: 8px;
            border: 1px solid rgba(0, 255, 255, 0.1);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .pagination a:hover {
            background: rgba(247, 200, 66, 0.1);
            border-color: var(--divine-gold);
            color: var(--divine-gold);
        }

        .pagination .current {
            background: rgba(247, 200, 66, 0.2);
            border-color: var(--divine-gold);
            color: var(--divine-gold);
        }

        footer {
            text-align: center;
            padding: 30px 20px;
            background: rgba(5, 8, 17, 0.8);
            margin-top: 40px;
            font-size: 0.9rem;
            color: var(--divine-silver);
            border-top: 1px solid rgba(0, 255, 255, 0.1);
        }

        @keyframes gradientRotate {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }

        @media (max-width: 1200px) {
            .admin_structure {
                flex-direction: column;
            }

            .admin-side-bar {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .admin_structure {
                padding: 0 1rem;
            }

            .admin-form-container {
                padding: 1.5rem;
            }

            .table-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .search-box {
                max-width: 100%;
            }

            .background-banner {
                padding: 100px 20px 60px;
            }

            .admin-background-title h1 {
                font-size: 2.2rem;
            }
        }
/*Table Products end*/
/*Drop down start*/
/*--------  Variables (already in your root)  --------*/
:root{
  --divine-white: #ffffff;
  --divine-silver: #dce8f1;
  --divine-gold:  #f7c842;
  --quantum-space:#0a0e1a;
  --quantum-void: #050811;
  --quantum-glow: #0ff;
  --hologram-purple:#9d4edd;
}

/*--------  Form group wrapper  --------*/
.form-group{
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.5rem;
}

/* Label */
.form-group label{
  color: var(--divine-gold);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .03em;
}

/* Select (glass / neon style) */
.form-group select{
  width: 100%;
  padding: .75rem 1rem;
  background: rgba(10,14,26,.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,255,255,.12);
  border-radius: 12px;
  color: var(--divine-white);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  appearance: none;            /* hide native arrow */
  transition: all .3s ease;
  /* custom down‑arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23dce8f1' d='M310.6 246.6L177.3 379.9c-9.4 9.4-24.6 9.4-33.9 0L9.4 246.6C3.4 240.6 0 232.4 0 224c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32 0 8.4-3.4 16.6-9.4 22.6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: .65rem;
}

.form-group select:focus{
  border-color: var(--quantum-glow);
  box-shadow: 0 0 15px rgba(0,255,255,.35);
  outline: none;
  /* brighten arrow on focus */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%2300ffff' d='M310.6 246.6L177.3 379.9c-9.4 9.4-24.6 9.4-33.9 0L9.4 246.6C3.4 240.6 0 232.4 0 224c0-17.7 14.3-32 32-32h256c17.7 0 32 14.3 32 32 0 8.4-3.4 16.6-9.4 22.6z'/%3E%3C/svg%3E");
}

/* Option colors inside dropdown */
.form-group select option{
  background: var(--quantum-void);
  color: var(--divine-silver);
}
.form-group select option:checked,
.form-group select option:hover{
  background: var(--quantum-space);
  color: var(--divine-white);
}

/* Small‑screen tweaks */
@media(max-width:480px){
  .form-group label,
  .form-group select{ font-size: .95rem; }
}

/*drop down form ends*/

/* Sidebar fixes */
.sidebar {
    background: rgba(10, 14, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.sidebar h1 {
    font-size: 1.5rem;
    color: var(--divine-gold);
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(247, 200, 66, 0.3);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    display: block;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--divine-silver);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--divine-gold);
    position: relative;
    overflow: hidden;
}

.category-list a:hover {
    background: rgba(0, 0, 0, 0.5);
    color: var(--divine-gold);
    transform: translateX(5px);
}
