:root {
            --primary-color: #0066cc;
            --secondary-color: #00d4ff;
            --dark-bg: #0a0a0a;
            --card-bg: #1a1a1a;
            --text-light: #f8f9fa;
            --accent: #ff6b35;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
        }

        .hero-section {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a2e 100%);
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
             padding: 150px 0px; 
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            /* height: 100vh; */
            /* background: radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%); */
            background: url("gpu-5.jpg") no-repeat center center/cover;
            pointer-events: none;
        }

        .navbar {
            background: rgba(0, 0, 0, 0.1) !important;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color) !important;
        }

        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--secondary-color) !important;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            /* font-size: clamp(2.5rem, 5vw, 4rem); */
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            animation: slideUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(248, 249, 250, 0.8);
            margin-bottom: 2rem;
            animation: slideUp 1s ease-out 0.2s both;
        }

        .cta-button {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            animation: slideUp 1s ease-out 0.4s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 102, 204, 0.4);
            color: white;
        }

        .floating-cards {
            position: absolute;
            top: 50%;
            right: 10%;
            transform: translateY(-50%);
            display: none;
        }

        .floating-card {
            background: rgba(26, 26, 26, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.2);
            border-radius: 15px;
            padding: 20px;
            margin: 10px;
            animation: float 3s ease-in-out infinite;
        }

        .floating-card:nth-child(2) {
            animation-delay: 1s;
        }

        .floating-card:nth-child(3) {
            animation-delay: 2s;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gpu-card {
            background: var(--card-bg);
            border: 1px solid rgba(0, 212, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .gpu-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        }

        .gpu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
            border-color: var(--secondary-color);
        }
        .gpu-card-table {
            width: 100%;
            margin-bottom: 30px;
            background: var(--card-bg);
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .gpu-card-table:hover {
            /* transform: translateY(-10px); */
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
            border-color: var(--secondary-color);
        }
        
        /* Enhanced Table Styles */
        .gpu-table-container {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .gpu-table-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        }

        .gpu-table-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
            border-color: var(--secondary-color);
        }

        .gpu-comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: transparent;
            border-radius: 15px;
            overflow: hidden;
        }

        .gpu-comparison-table thead {
                background: linear-gradient(135deg, var(--primary-color), #1a5b69);
        }

        .gpu-comparison-table thead th {
            padding: 20px 15px;
            font-weight: 700;
            font-size: 1.1rem;
            color: white;
            text-align: center;
            border: none;
            position: relative;
        }

        .gpu-comparison-table thead th:first-child {
            text-align: left;
            background: linear-gradient(135deg, #1a1a2e, var(--card-bg));
            color: var(--secondary-color);
        }

        .gpu-comparison-table tbody tr {
            transition: all 0.3s ease;
        }

        .gpu-comparison-table tbody tr:nth-child(even) {
            background: rgba(26, 26, 26, 0.3);
        }

        .gpu-comparison-table tbody tr:hover {
            background: var(--hover-bg);
            transform: scale(1.02);
        }

        .gpu-comparison-table tbody td {
            padding: 18px 15px;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .gpu-comparison-table tbody th {
            padding: 18px 15px;
            font-weight: 600;
            color: var(--text-light);
            text-align: left;
            background: rgba(26, 26, 26, 0.5);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .gpu-comparison-table .price-cell {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent);
            position: relative;
        }

        .gpu-comparison-table .price-cell::before {
            content: '₹';
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .gpu-comparison-table .spec-value {
            font-weight: 600;
            color: var(--secondary-color);
        }

        .gpu-model-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .gpu-model-header i {
            font-size: 1.2rem;
            color: var(--secondary-color);
        }

        .deploy-button {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 8px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 25px;
            color: white;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .deploy-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
        }

        .table-responsive {
            border-radius: 20px;
            /* overflow: hidden; */
        }


        .gpu-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .gpu-specs {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .gpu-specs li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(248, 249, 250, 0.1);
        }

        .gpu-specs li:last-child {
            border-bottom: none;
        }

        .price-tag {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            /* text-align: center; */
            margin: 20px 0;
        }

        .features-section {
            background: linear-gradient(135deg, var(--card-bg) 0%, #2a2a2a 100%);
            padding: 80px 0;
        }

        .feature-card {
            background: var(--dark-bg);
            border: 1px solid rgba(0, 212, 255, 0.1);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--secondary-color);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .footer {
            background: var(--card-bg);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(0, 212, 255, 0.1);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @media (min-width: 992px) {
            .floating-cards {
                display: block;
            }
        }

        .testimonial-section {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--card-bg) 100%);
            padding: 80px 0;
        }

        .testimonial-card {
            background: var(--card-bg);
            border: 1px solid rgba(0, 212, 255, 0.1);
            border-radius: 15px;
            padding: 40px 30px;
            margin-bottom: 30px;
            position: relative;
            transition: all 0.3s ease;
            height: 100%;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: var(--secondary-color);
        }

        .testimonial-card::before {
            content: '"';
            font-size: 4rem;
            color: var(--secondary-color);
            position: absolute;
            top: 10px;
            left: 20px;
            opacity: 0.3;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .author-info h6 {
            margin: 0;
            color: var(--secondary-color);
        }

        .author-info small {
            color: rgba(248, 249, 250, 0.7);
        }

        .faq-section {
            background: var(--card-bg);
            padding: 80px 0;
        }

        .faq-item {
            background: var(--dark-bg);
            border: 1px solid rgba(0, 212, 255, 0.1);
            border-radius: 10px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--secondary-color);
        }

        .faq-question {
            background: transparent;
            border: none;
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 600;
            padding: 25px 30px;
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--secondary-color);
        }

        .faq-answer {
            padding: 0 30px 25px;
            color: rgba(248, 249, 250, 0.8);
            line-height: 1.6;
            display: none;
        }

        .faq-answer.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-icon.rotate {
            transform: rotate(180deg);
        }

        .login-btn{
            border: 2px solid var(--secondary-color);
            padding: 6px 20px;
            border-radius: 5px;
            color: var(--secondary-color);
            transition: all 0.3s ease;
            cursor: pointer;    
            margin: 0px 10px;
            max-width:140px;
        }

        @media  screen and (max-width:992px) {
            .login-btn{
                margin: 10px 0px;
            }
        }

        .modal-title{
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 2rem;
        }

        .form-label{
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-primary-login{
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            display: inline-block;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-width: initial;
            border-style: none;
            border-color: initial;
            border-image: initial;
            padding: 8px 20px;
            border-radius: 50px;
            text-decoration: none;
        }

        .btn-primary-login:hover {
                box-shadow: rgba(0, 102, 204, 0.4) 0px 15px 30px;
                color: white;
        }

        .btn-secondary-login{
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            display: inline-block;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border-width: initial;
            border-style: none;
            border-color: initial;
            border-image: initial;
            padding: 8px 20px;
            border-radius: 50px;
            text-decoration: none;
        }

        .btn-secondary-login:hover {
            box-shadow: rgba(0, 102, 204, 0.4) 0px 15px 30px;
            color: white;
        }

        .active-user{
            position: relative;
        }

        .active-user-admin{
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border:2px solid #00d4ff;
            overflow: hidden;
            cursor: pointer;
        }

        .active-user-deatile{
            background: rgba(0, 0, 0, 0.7) !important;
            backdrop-filter: blur(10px);
            transition: all 1s ease;
            position: absolute;
            top: 59px;
            right: -300px;
            min-width: 200px;
            padding: 10px;
            border-radius: 0px 0px 0px 5px;
        }

    .registeration-card {
    width: 30rem;
    background-color: #1a1a1a;
    }
    .registeration-from {
    min-height: 100vh;
    }
    
.error-form{
    color: salmon;
    margin:10px 0px;
    font-size: 12px;
    display: none;
}

.password-eye{
    position: absolute;
    top: 33px;
    right: 1px;
    background: rgba(0, 0, 0, 0.1);
    border-radius:0px  2px 2px 0px;
    padding: 6px 10px;
    cursor: pointer;
    z-index: 10;
}