 :root {
            --gt-dark-blue: #0b1528;
            --gt-blue: #152340;
            --gt-gold: #c39a54;
            --gt-light-bg: #f5f6f8;
            --gt-text: #333333;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--gt-light-bg);
            color: var(--gt-text);
            overflow-x: hidden;
        }

        /* Top Bar & Ticker */
        .top-bar {
            background-color: var(--gt-dark-blue);
            color: #ffffff;
            /* font-size: 0.8rem; */
            font-size: 1.8rem;
            /* padding: 5px 0; */
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .ticker-wrap {
            overflow: hidden;
            white-space: nowrap;
            width: 100%;
        }
        .ticker {
            display: inline-block;
            animation: ticker 20s linear infinite;
        }
        @keyframes ticker {
            0% { transform: translate3d(100%, 0, 0); }
            100% { transform: translate3d(-100%, 0, 0); }
        }
        .top-social i {
            margin-left: 10px;
            cursor: pointer;
            transition: color 0.3s;
        }
        .top-social i:hover { color: var(--gt-gold); }
        .login-btn {
            background: none;
            border: none;
            color: white;
            margin-left: 15px;
            font-size: 0.8rem;
        }

        /* Navbar */
        .navbar-custom {
            background-color: var(--gt-blue);
            padding: 10px 0;
            border-bottom: 2px solid var(--gt-gold);
        }
        .navbar-brand img { height: 60px; }
        .nav-link {
            color: #ffffff !important;
            font-weight: 600;
            font-size: 0.85rem;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .nav-link:hover { color: var(--gt-gold) !important; }
        .nav-icons i {
            color: white;
            font-size: 1.2rem;
            margin-left: 15px;
            cursor: pointer;
        }
        .nav-icons i:hover { color: var(--gt-gold); }

        /* Hero Section */
        /* .hero {
            position: relative;
            background: linear-gradient(to right, #b48e4b, #dfbe7d);
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        /* Mocking the player background */
        /* .hero::before {
            content: "";
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            /* background-image: url('starsco.png'); Stadium placeholder */
            /* background-size: cover;
            background-position: center;
            opacity: 0.2;
            mix-blend-mode: multiply; */
        /* } */ */ */
        .hero h1 {
            font-size: 6rem;
            font-weight: 900;
            color: #ffffff;
            letter-spacing: 4px;
            z-index: 1;
            text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
            text-transform: uppercase;
        }
        .hero h2 {
            position: absolute;
            top: 20%;
            font-size: 2rem;
            color: #ffffff;
            letter-spacing: 10px;
            z-index: 1;
        }

        /* Banners */
        /* .promo-banner {
            /* background-color: var(--gt-blue);
            color: white;
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 50px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
            /* height: 225px;
            border-radius: 15px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

        }  */

        .promo-banner {
        width: 100%;
        height: 200px;        /* same height sabka */
        border-radius: 15px;
        overflow: hidden;
        }

        .promo-banner .promo-img {
        width: 100%;
        height: 100%;
        object-fit: cover;    /* image perfect fit hogi */
        display: block;
        }

        .promo-banner h3 { font-weight: 800; margin: 0; font-size: 1.8rem; text-transform: uppercase; }
        .promo-banner .btn-gold {
            background-color: var(--gt-gold);
            color: var(--gt-dark-blue);
            font-weight: 800;
            padding: 10px 30px;
            border-radius: 4px;
            border: none;
            text-transform: uppercase;
        }
        .promo-banner .btn-gold:hover {
            background-color: #ffffff;
            color: var(--gt-blue);
        }

        /* Category Section Headers */
        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid #ddd;
            padding-bottom: 10px;
        }
        .category-header h4 {
            font-weight: 600;
            color: var(--gt-text);
            margin: 0;
            text-transform: uppercase;
        }
        .btn-more {
            background-color: #e0e0e0;
            color: #333;
            font-weight: 600;
            font-size: 0.8rem;
            padding: 5px 15px;
            border-radius: 4px;
            text-decoration: none;
        }
        .btn-more:hover { background-color: var(--gt-gold); color: white; }

        /* Product Cards */
        .product-card {
            background: #fff;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border: 1px solid #f0f0f0;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }
        .product-img-wrap {
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f9f9f9;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        .product-img-wrap img {
            max-height: 90%;
            max-width: 90%;
            object-fit: contain;
        }
        .product-title {
            font-size: 0.85rem;
            font-weight: 600;
            height: 40px;
            overflow: hidden;
            margin-bottom: 10px;
            color: var(--gt-text);
        }
        .product-price {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--gt-blue);
            margin-bottom: 15px;
        }
        .btn-buy {
            background-color: #f0f0f0;
            color: var(--gt-text);
            border: 1px solid #ddd;
            font-weight: 600;
            width: 100px;
            transition: all 0.3s;
        }
        .btn-buy:hover {
            background-color: var(--gt-gold);
            color: white;
            border-color: var(--gt-gold);
        }

        /* Footer */
        .footer-custom {
            background-color: var(--gt-blue);
            color: #aaa;
            padding: 20px 0;
            font-size: 0.85rem;
            border-top: 4px solid var(--gt-gold);
            margin-top: 50px;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: white; }

        /* Responsiveness */
        @media (max-width: 768px) {
            .hero h1 { font-size: 3.5rem; }
            .hero h2 { font-size: 1.2rem; }
            .promo-banner { flex-direction: column; text-align: center; padding: 20px; }
            .promo-banner h3 { font-size: 1.2rem; margin-bottom: 15px; }
            .product-img-wrap { height: 180px; }
        }

    
/* ===== UNIQUE PRODUCT PAGE CSS (NO CONFLICT) ===== */

.pd-page {
    font-family: 'Montserrat', sans-serif;
}

/* BOX */
.pd-box {
    background:#fff;
    padding:30px;
    border-radius:10px;
}

/* IMAGE */
.pd-img {
    width:100%;
    border-radius:10px;
}

.pd-thumb {
    width:70px;
    cursor:pointer;
    border:2px solid transparent;
}
.pd-thumb:hover {
    border-color:#c39a54;
}

/* PRICE */
.pd-price {
    font-size:28px;
    font-weight:800;
    color:#152340;
}

/* SIZE */
.pd-size {
    border:1px solid #ccc;
    padding:6px 15px;
    margin-right:10px;
    cursor:pointer;
}
.pd-size:hover {
    background:#c39a54;
    color:#fff;
}

/* COLOR */
.pd-color {
    width:25px;
    height:25px;
    border-radius:50%;
    display:inline-block;
    margin-right:10px;
    cursor:pointer;
    border:2px solid #ddd;
}
.pd-color:hover {
    border-color:#c39a54;
}

/* BUTTON */
.pd-cart {
    background:#c39a54;
    color:#000;
    font-weight:700;
}

/* BANNER */
.pd-banner {
    background:#152340;
    color:#fff;
    padding:20px;
    display:flex;
    justify-content:space-between;
    border-radius:8px;
}

/* RELATED */
.pd-card {
    background:#fff;
    padding:10px;
    text-align:center;
    border-radius:8px;
}

/* 2details page code */


        

        /* Product Section Styles */
        .product-container { margin-top: 50px; margin-bottom: 50px; }
        
        /* Image Gallery */
        .main-img-container {
            background-color: #f9f9f9;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            border: 1px solid #eee;
        }
        .main-img-container img { max-width: 100%; height: auto; transition: transform 0.3s; }
        .thumb-img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border: 1px solid #ddd;
            border-radius: 8px;
            margin-right: 10px;
            cursor: pointer;
            padding: 5px;
        }
        .thumb-img:hover, .thumb-img.active { border-color: var(--gt-gold); border-width: 2px; }

        /* Product Info */
        .product-category { color: var(--gt-gold); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
        .product-title-big { font-weight: 800; color: var(--gt-dark-blue); font-size: 2.2rem; margin-top: 10px; }
        .price-tag { font-size: 1.8rem; font-weight: 800; color: var(--gt-blue); margin: 20px 0; }
        
        /* Buttons & Inputs */
        .size-btn {
            border: 1px solid #ddd;
            background: white;
            padding: 10px 20px;
            margin-right: 10px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .size-btn:hover, .size-btn.active { background-color: var(--gt-dark-blue); color: white; border-color: var(--gt-dark-blue); }
        
        .qty-input { width: 60px; text-align: center; border: 1px solid #ddd; font-weight: 600; }
        
        .btn-add-cart {
            background-color: var(--gt-gold);
            color: var(--gt-dark-blue);
            font-weight: 800;
            padding: 15px 40px;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            transition: 0.3s;
        }
        .btn-add-cart:hover { background-color: var(--gt-dark-blue); color: white; }

        /* Tabs Section */
        .nav-tabs .nav-link { color: var(--gt-text) !important; font-weight: 600; border: none; }
        .nav-tabs .nav-link.active { color: var(--gt-gold) !important; border-bottom: 3px solid var(--gt-gold); background: none; }
        .tab-content { padding: 30px 0; line-height: 1.8; color: #666; }

        /* Sidebar Filters */
        .filter-sidebar {
            background: white;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #eee;
            position: sticky;
            top: 100px;
        }
        .filter-title {
            font-weight: 800;
            font-size: 0.9rem;
            text-transform: uppercase;
            margin-bottom: 15px;
            color: var(--gt-dark-blue);
            border-bottom: 2px solid var(--gt-gold);
            display: inline-block;
        }
        .filter-group { margin-bottom: 25px; }
        .form-check-input:checked { background-color: var(--gt-gold); border-color: var(--gt-gold); }
        
        /* Sorting & Header */
        .listing-header {
            background: white;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid #eee;
        }

        /* Product Cards (Same as Home) */
        .product-card {
            background: #fff;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            transition: 0.3s;
            height: 100%;
            border: 1px solid #f0f0f0;
        }
        .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
        .product-img-wrap {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f9f9f9;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        .product-img-wrap img { max-height: 90%; max-width: 90%; object-fit: contain; }
        .product-price { font-weight: 800; color: var(--gt-blue); font-size: 1.1rem; }
        
        .btn-buy {
            background-color: #f0f0f0;
            font-weight: 600;
            border: 1px solid #ddd;
            width: 100%;
            transition: 0.3s;
        }
        .btn-buy:hover { background-color: var(--gt-gold); color: white; }

        /* Pagination */
        .pagination .page-link { color: var(--gt-blue); border: none; margin: 0 5px; border-radius: 4px; font-weight: 600; }
        .pagination .active .page-link { background-color: var(--gt-gold); color: white; }

        /* HERO SECTION */
.about-hero {
    background: linear-gradient(rgba(11,21,40,0.85), rgba(11,21,40,0.85)),
                url("images/starsco store.jpg (4).jpeg");
    background-size: cover;
    background-position: center;
    padding: 110px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 900;
    color: #d4af37;
    letter-spacing: 2px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.85;
}

/* ABOUT SECTION */
.about-section {
    padding: 70px 0;
}

.about-img {
    border-radius: 12px;
    transition: 0.4s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

.about-section h2 {
    color: #d4af37;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* FEATURES SECTION */
.about-features {
    padding: 70px 0;
    background-color: #111c35;
}

.feature-box {
    padding: 20px;
    transition: 0.3s ease;
    border-radius: 10px;
}

.feature-box:hover {
    background-color: rgba(255,255,255,0.05);
    transform: translateY(-8px);
}

.feature-box i {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    opacity: 0.8;
}

/* CTA SECTION */
.about-cta {
    padding: 70px 0;
}

.about-cta h2 {
    font-weight: 900;
    color: #d4af37;
}

.about-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-gold {
    background-color: #d4af37;
    color: #0b1528;
    font-weight: 700;
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.btn-gold:hover {
    background-color: #c29b2f;
    transform: scale(1.05);
}

 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      background: #f8fafc;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* dummy page content to show footer sticking at bottom naturally */
    .demo-content {
      flex: 1;
      max-width: 1280px;
      margin: 0 auto;
      padding: 3rem 2rem;
      text-align: center;
    /* margin-bottom: 30px; */
    margin: 40px auto 40px;
    border-radius: 26px 26px 26px 26px;
    background-color: #152340;
    }

    .demo-content h1 {
      font-size: 2rem;
      font-weight: 600;
      color: rgb(255 255 255);
      margin-bottom: 1rem;
    }

    .demo-content p {
      color: rgb(255 255 255);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* ---------- FOOTER STYLES (main component) ---------- */
    .footer {
      background-color: #0a0c10;   /* deep dark modern */
      color: #e2e8f0;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      width: 100%;
      margin-top: auto;
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 3rem 2rem 2rem;
    }

    /* main grid layout */
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 2.5rem;
      margin-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 2rem;
    }

    /* brand column (wider) */
    .footer-brand {
      grid-column: span 1;
    }

    @media (min-width: 768px) {
      .footer-brand {
        grid-column: span 2;
      }
    }

    .footer-logo {
      display: inline-block;
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #ffffff, #94a3b8);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
      text-decoration: none;
    }

    .footer-logo span {
      background: none;
      color: #facc15;
      background-clip: unset;
      -webkit-background-clip: unset;
    }

    .brand-description {
      color: #9ca3af;
      line-height: 1.6;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      max-width: 280px;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      background-color: rgba(255, 255, 255, 0.05);
      border-radius: 50%;
      color: #cbd5e1;
      transition: all 0.2s ease;
      text-decoration: none;
      font-size: 1.1rem;
    }

    .social-links a:hover {
      background-color: #facc15;
      color: #0a0c10;
      transform: translateY(-3px);
    }

    /* footer link headings */
    .footer-col h3 {
      font-size: 1.1rem;
      font-weight: 600;
      color: #f1f5f9;
      margin-bottom: 1.2rem;
      letter-spacing: 0.3px;
      position: relative;
      display: inline-block;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col li {
      margin-bottom: 0.7rem;
    }

    .footer-col a {
      color: #cbd5e1;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s, padding-left 0.2s;
      display: inline-block;
    }

    .footer-col a:hover {
      color: #facc15;
      padding-left: 4px;
    }

    /* newsletter section */
    .newsletter-col {
      grid-column: span 1;
    }

    @media (min-width: 768px) {
      .newsletter-col {
        grid-column: span 2;
      }
    }

    .newsletter-text {
      font-size: 0.85rem;
      color: #9ca3af;
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .newsletter-form {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .newsletter-form input {
      flex: 1;
      min-width: 150px;
      padding: 0.75rem 1rem;
      border-radius: 48px;
      border: none;
      background-color: #1e293b;
      color: #f1f5f9;
      font-size: 0.9rem;
      outline: none;
      transition: 0.2s;
      font-family: inherit;
    }

    .newsletter-form input:focus {
      background-color: #2d3a4e;
      box-shadow: 0 0 0 2px #facc15;
    }

    .newsletter-form input::placeholder {
      color: #7e8aa2;
    }

    .newsletter-form button {
      background-color: #facc15;
      border: none;
      padding: 0 1.4rem;
      border-radius: 48px;
      font-weight: 600;
      font-size: 0.85rem;
      color: #0a0c10;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: inherit;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .newsletter-form button:hover {
      background-color: #ffdf4f;
      transform: scale(0.97);
    }

    /* bottom bar */
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-size: 0.8rem;
      color: #7e8aa2;
      padding-top: 1rem;
    }

    .payment-methods {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      align-items: center;
    }

    .payment-methods i {
      font-size: 1.6rem;
      color: #b9c2d4;
      transition: color 0.2s;
    }

    .payment-methods i:hover {
      color: #facc15;
    }

    .copyright {
      letter-spacing: 0.2px;
    }

    .legal-links {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
    }

    .legal-links a {
      color: #7e8aa2;
      text-decoration: none;
      transition: color 0.2s;
    }

    .legal-links a:hover {
      color: #facc15;
    }

    hr {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin: 0.5rem 0 1rem;
    }

    /* mobile adjustments */
    @media (max-width: 640px) {
      .footer-container {
        padding: 2rem 1.25rem;
      }
      .footer-grid {
        gap: 2rem;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
      .legal-links {
        justify-content: center;
      }
      .payment-methods {
        justify-content: center;
      }
      .newsletter-form button {
        padding: 0.7rem 1.2rem;
      }
    }

    /* simple demo toast for newsletter */
    .toast-message {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      background: #0f172a;
      color: #facc15;
      padding: 10px 20px;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      z-index: 999;
      opacity: 0;
      transition: opacity 0.2s;
      pointer-events: none;
      font-family: monospace;
    }

    /* Hero Section for About Page */
        .about-header {
            /* background: linear-gradient(rgba(11, 21, 40, 0.9), rgba(11, 21, 40, 0.9)), url('About\ us.jpg\ \(1\).jpeg'); */
            background: url('images/About\ us.jpg\ \(1\).jpeg');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
            border-bottom: 4px solid var(--gt-gold);
        }

        .about-header h1 {
            font-weight: 900;
            font-size: 3.5rem;
            color: var(--gt-gold);
            letter-spacing: 3px;
        }

        /* Custom Section Styling */
        .brand-story { padding: 80px 0; background: #fff; }
        .section-tag { color: var(--gt-gold); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 10px; }
        .main-heading { font-weight: 900; color: var(--gt-blue); font-size: 2.5rem; margin-bottom: 25px; }
        
        /* Values Cards - Glassmorphism touch */
        .value-card {
            background: var(--gt-blue);
            color: white;
            padding: 40px;
            border-radius: 0; /* Keeping it sharp like your UI */
            border-top: 5px solid var(--gt-gold);
            height: 100%;
            transition: 0.3s;
        }
        .value-card:hover { transform: translateY(-10px); }
        .value-card i { font-size: 3rem; color: var(--gt-gold); margin-bottom: 20px; }

        /* Performance Section */
        .perf-section {
            background: var(--gt-light-blue);
            color: white;
            padding: 80px 0;
        }

        .highlight-box {
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 30px;
            background: rgba(255,255,255,0.05);
        }


        /* ////contact us page code  start here  */
        /* ========== CONTACT PAGE CSS ONLY ========== */

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, var(--gt-blue) 0%, #1a2a4a 100%);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-hero-title span {
    color: var(--gt-gold);
}

.contact-hero-subtitle {
    color: var(--gt-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact-info-grid {
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid var(--gt-gold);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 45px rgba(0,0,0,0.15);
}

.contact-icon-circle {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--gt-blue), var(--gt-gray));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon-circle i {
    font-size: 32px;
    color: var(--gt-gold);
}

.contact-info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gt-blue);
}

.contact-info-card p {
    color: #5a6e8a;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-info-card a {
    color: #5a6e8a;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--gt-gold);
}

/* Contact Form Section */
.contact-form-section {
    padding: 70px 0 80px;
    background: #f1f5f9;
}

.contact-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-section-badge {
    background: var(--gt-gold);
    color: var(--gt-blue);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gt-blue);
}

.contact-section-header p {
    color: #5a6e8a;
    max-width: 550px;
    margin: 15px auto 0;
}

/* Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form-group {
    margin-bottom: 24px;
}

.contact-form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gt-blue);
    font-size: 0.9rem;
}

.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    outline: none;
    border-color: var(--gt-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.contact-textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-submit-btn {
    background: var(--gt-blue);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit-btn:hover {
    background: var(--gt-gold);
    color: var(--gt-blue);
    transform: translateY(-2px);
}

/* Map */
.contact-map-section {
    background: var(--gt-blue);
    padding: 60px 0;
}

.contact-map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,0.3);
    border: 2px solid var(--gt-gold);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 350px;
    display: block;
}

/* FAQ */
.contact-faq-section {
    padding: 70px 0;
    background: white;
}

.contact-faq-item {
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.contact-faq-question {
    padding: 20px 25px;
    font-weight: 700;
    color: var(--gt-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.contact-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-faq-item.active .contact-faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 200px;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* ===== SECTION BACKGROUND ===== */
.zkpro-features-section {
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #0b1a35, #0f2a5a); */
  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
.zkpro-features-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  /* background: rgba(0, 140, 255, 0.15); */
  filter: blur(120px);
  top: -100px;
  left: -100px;
}

/* ===== CONTAINER ===== */
.zkpro-container {
  max-width: 1114px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* ===== HEADING ===== */
.zkpro-heading {
  text-align: center;
  margin-bottom: 60px;
}

.zkpro-heading h2 {
  font-size: 36px;
  /* color: #fff; */
  color: black;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.zkpro-heading p {
  /* color: #a0b3d1; */
  color: black;
  font-size: 15px;
}

/* underline accent */
.zkpro-heading h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #3aa0ff;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===== GRID ===== */
.zkpro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ===== CARD ===== */
.zkpro-card {
  /* background: rgba(255,255,255,0.05); */
  background: linear-gradient(135deg, #0b1a35, #0f2a5a);
  padding: 25px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s;
}

/* hover glow */
.zkpro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  border-color: rgba(58,160,255,0.5);
}

/* ===== ICON ===== */
.zkpro-icon {
  font-size: 30px;
  margin-bottom: 10px;
  color: #3aa0ff;
}

/* ===== TEXT ===== */
.zkpro-card h3 {
  color: #fff;
  margin-bottom: 8px;
}

.zkpro-card p {
  color: #b8c7e0;
  font-size: 14px;
  line-height: 1.5;
}
/* cart page code  */
/* ===== BASE ===== */
.procart {
  background: #f5f7fb;
  padding: 60px 20px;
}

.procart-container {
  max-width: 1200px;
  margin: auto;
}

/* TOP */
.procart-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.procart-top h2 {
  font-size: 30px;
  font-weight: 600;
}

.procart-top a {
  color: #0d3b8e;
  text-decoration: none;
}

/* LAYOUT */
.procart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* ITEM CARD */
.procart-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  margin-bottom: 20px;
}

.procart-item img {
  width: 110px;
  border-radius: 10px;
}

/* INFO */
.procart-info h3 {
  font-size: 17px;
  margin-bottom: 5px;
}

.procart-meta {
  font-size: 13px;
  color: #666;
}

/* BOTTOM */
.procart-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

/* QTY */
.procart-qty {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.procart-qty button {
  border: none;
  background: none;
  padding: 6px 10px;
  cursor: pointer;
}

.procart-qty span {
  padding: 0 10px;
}

/* PRICE */
.procart-price {
  font-weight: 600;
  color: #0d3b8e;
}

/* SUMMARY */
.procart-summary {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  height: fit-content;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  position: sticky;
  top: 100px;
}

.procart-summary h3 {
  margin-bottom: 20px;
}

/* ROW */
.procart-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #555;
}

/* TOTAL */
.procart-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin: 20px 0;
  font-size: 18px;
}

/* BUTTON */
.procart-btn {
  width: 100%;
  padding: 14px;
  background: #0d3b8e;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.procart-btn:hover {
  background: #092c6b;
}

/* NOTE */
.procart-note {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

@media(max-width: 768px){

  .procart-layout {
    grid-template-columns: 1fr;
  }

  .procart-summary {
    position: static;
  }

}

/* ===== PAGE BACKGROUND ===== */
.proauth {
  min-height: 100vh;
  background: #f4f6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ===== BOX ===== */
.proauth-box {
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  text-align: center;
}

/* LOGO */
.proauth-logo img {
  margin-bottom: 20px;
}

/* HEADING */
.proauth-box h2 {
  font-size: 26px;
  margin-bottom: 5px;
}

.proauth-sub {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

/* SHOP BUTTON */
.proauth-shop {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #6a5cff, #4b2cff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
}

/* DIVIDER */
.proauth-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.proauth-divider::before,
.proauth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
}

.proauth-divider span {
  margin: 0 10px;
  color: #888;
}

/* INPUT */
.proauth-box input[type="email"] {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}
.proauth-box input[type="password"] {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

/* BUTTON */
.proauth-btn {
  width: 100%;
  padding: 14px;
  background: #0d3b8e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.proauth-btn:hover {
  background: #092c6b;
}

/* CHECKBOX */
.proauth-check {
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 8px;
  margin-top: 12px;
  color: #555;
}

/* TERMS */
.proauth-terms {
  font-size: 12px;
  color: #888;
  margin-top: 15px;
}

.proauth-terms a {
  color: #0d3b8e;
}

/* ===== BASE ===== */
.auth-clean {
  background: #f6f7fb;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-container {
  width: 100%;
  max-width: 420px;
}

/* CARD */
.auth-card {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}

/* TITLE */
.auth-card h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.auth-sub {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

/* FORM GROUP */
.auth-group {
  margin-bottom: 18px;
}

.auth-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #333;
}

.auth-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

/* PASSWORD */
.auth-pass {
  position: relative;
}

.auth-pass span {
  position: absolute;
  right: 10px;
  top: 35px;
  cursor: pointer;
  font-size: 14px;
}

/* CHECKBOX */
.auth-check {
  font-size: 13px;
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  color: #555;
}

/* BUTTON */
.auth-btn {
  width: 100%;
  padding: 13px;
  background: #0d3b8e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.auth-btn:hover {
  background: #092c6b;
}

/* FOOTER */
.auth-footer {
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
}

.auth-footer a {
  color: #0d3b8e;
}

.terms-box {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin: 10px 0 15px;
}

#openTerms {
  color: #4f46e5;
  cursor: pointer;
  text-decoration: underline;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  max-height: 80vh;
  overflow-y: auto;
}

.close-btn {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

