 /* Navigation Menu */
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 1rem;
        align-items: center;
    }

    .nav-menu li {
        position: relative;
    }

    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }

    .nav-menu a:hover {
        color: #667eea;
    }

    /* User Info Display */
    .user-info .user-greeting {
        color: #667eea;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        background-color: #f5f5f5;
        border-radius: 20px;
    }

    .user-greeting i {
        font-size: 1.2rem;
    }

    /* Login Button */
    .pay-btn {
        background-color: #4CAF50 !important;
        color: white !important;
        padding: 0.75rem 1.5rem !important;
        border-radius: 5px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        transition: all 0.3s !important;
        border: none !important;
        cursor: pointer !important;
    }

    .pay-btn:hover {
        background-color: #45a049 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3) !important;
    }

    .pay-btn i {
        font-size: 1rem;
    }

    /* Logout Button Styling */
    .pay-btn[href*="logout"] {
        background-color: #f44336 !important;
    }

    .pay-btn[href*="logout"]:hover {
        background-color: #da190b !important;
        box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3) !important;
    }

    /* My Orders Button Styling */
    .pay-btn[href*="my-orders"] {
        background-color: #FF9800 !important;
    }

    .pay-btn[href*="my-orders"]:hover {
        background-color: #e68900 !important;
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3) !important;
    }

    /* Register Button Styling */
    .pay-btn[href*="register"] {
        background-color: #2196F3 !important;
    }

    .pay-btn[href*="register"]:hover {
        background-color: #0b7dda !important;
        box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3) !important;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .nav-menu {
            flex-direction: column;
            gap: 0.5rem;
            width: 100%;
        }

        .pay-btn {
            width: 100% !important;
            justify-content: center !important;
        }

        .user-greeting {
            width: 100% !important;
            justify-content: center !important;
        }
    }

    
        /* ========== FOOTER STYLES ========== */
.footer {
  background: #004aad;
  color: #ddd;
  font-size: 0.95rem;
  padding: 40px 30px 0;
}

.footer-top {
  padding: 30px 0;
}

.footer .heading {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
}

.footer p {
  line-height: 1.7;
  color: #e4e3e3;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer ul li a:hover {
  color: #ffcc00;
  padding-left: 5px;
}

/* Responsive Grid */
.footer .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer .col-lg-6,
.footer .col-lg-3 {
  padding: 15px;
  flex: 1 1 250px;
}

/* ========== FOOTER BOTTOM ========== */
.footer-bottom {
  background: #004aad;
  padding: 12px 20px;
  color: #ccc;
  font-size: 0.9rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom .copyright {
  margin: 5px 0;
}

.payment-icons {
  display: flex;
  gap: 15px;
  padding-right: 20px;
}

.payment-icons img {
  height: 28px;
  width: auto;
  filter: grayscale(20%);
  transition: 0.3s ease;
}

.payment-icons img:hover {
  filter: none;
}

/* Small Phones / Mobile Landscape (320px - 480px) */
@media (max-width: 480px) {
  .footer {
    padding: 20px 15px 0;
    font-size: 0.8rem;
  }

  .footer-top {
    padding: 15px 0;
  }

  .footer .heading {
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
  }

  .footer p {
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: center;
    color: #d4d3d3;
  }

  .footer ul {
    text-align: center;
    margin: 10px 0;
  }

  .footer ul li {
    margin-bottom: 6px;
  }

  .footer ul li a {
    font-size: 0.8rem;
    color: #aaa;
  }

  .footer ul li a:hover {
    padding-left: 0;
    color: #ffcc00;
  }

  .footer .row {
    flex-direction: column;
    gap: 10px;
  }

  .footer .col-lg-6,
  .footer .col-lg-3 {
    flex: 1 1 100%;
    padding: 8px 0;
  }

  .footer-bottom {
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .payment-icons {
    justify-content: center;
    padding-right: 0;
    gap: 8px;
    margin-top: 10px;
  }

  .payment-icons img {
    height: 20px;
    width: auto;
  }
}

/* Very Small Phones (max 360px) */
@media (max-width: 360px) {
  .footer {
    padding: 15px 12px 0;
    font-size: 0.75rem;
  }

  .footer .heading {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .footer p {
    font-size: 0.75rem;
  }

  .footer ul li {
    margin-bottom: 5px;
  }

  .footer-bottom {
    padding: 6px 8px;
    font-size: 0.7rem;
  }

  .payment-icons {
    gap: 6px;
  }

  .payment-icons img {
    height: 18px;
  }
}
/* Tablets / iPads (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .footer {
    padding: 30px 20px 0;
    font-size: 0.88rem;
  }

  .footer-top {
    padding: 20px 0;
  }

  .footer .heading {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .footer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ddd;
  }

  .footer ul li {
    margin-bottom: 8px;
  }

  .footer ul li a {
    font-size: 0.88rem;
    color: #bbb;
  }

  .footer ul li a:hover {
    color: #ffcc00;
    padding-left: 3px;
  }

  .footer .row {
    flex-direction: column;
    gap: 15px;
  }

  .footer .col-lg-6,
  .footer .col-lg-3 {
    flex: 1 1 100%;
    padding: 10px 0;
  }

  .footer-bottom {
    padding: 10px 15px;
    font-size: 0.85rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .payment-icons {
    justify-content: center;
    padding-right: 0;
    gap: 12px;
    margin-top: 15px;
  }

  .payment-icons img {
    height: 24px;
    width: auto;
  }
}

/* Tablets / Larger Screens (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer {
    padding: 35px 25px 0;
    font-size: 0.9rem;
  }

  .footer .heading {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: bold;
  }

  .footer p {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .footer ul li {
    margin-bottom: 9px;
  }

  .footer ul li a {
    font-size: 0.9rem;
  }

  .footer ul li a:hover {
    color: #ffcc00;
    padding-left: 3px;
  }

  .footer .col-lg-6,
  .footer .col-lg-3 {
    flex: 1 1 45%;
    padding: 12px;
  }

  .footer .row {
    gap: 15px;
  }

  .footer-bottom {
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .payment-icons {
    justify-content: flex-end;
    padding-right: 15px;
    gap: 15px;
  }

  .payment-icons img {
    height: 25px;
  }
}
/* Large Screens (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
  .footer {
    padding: 40px 35px 0;
    font-size: 0.95rem;
  }

  .footer .heading {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .footer p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #ddd;
  }

  .footer ul li {
    margin-bottom: 10px;
  }

  .footer ul li a {
    font-size: 0.95rem;
    color: #bbb;
  }

  .footer ul li a:hover {
    color: #ffcc00;
    padding-left: 5px;
    transition: 0.3s ease;
  }

  .footer .col-lg-6,
  .footer .col-lg-3 {
    flex: 1 1 auto;
    padding: 15px;
  }

  .footer .row {
    gap: 20px;
  }

  .footer-bottom {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .payment-icons {
    justify-content: flex-end;
    padding-right: 30px;
    gap: 15px;
  }

  .payment-icons img {
    height: 28px;
    width: auto;
    filter: grayscale(20%);
    transition: 0.3s ease;
  }

  .payment-icons img:hover {
    filter: none;
  }
}
/* Extra Large Screens (1200px and up) */
@media (min-width: 1200px) {
  .footer {
    padding: 50px 40px 0;
    font-size: 0.95rem;
  }

  .footer-top {
    padding: 30px 0;
  }

  .footer .heading {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: bold;
  }

  .footer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e4e3e3;
  }

  .footer ul li {
    margin-bottom: 10px;
  }

  .footer ul li a {
    font-size: 0.95rem;
    color: #bbb;
  }

  .footer ul li a:hover {
    color: #ffcc00;
    padding-left: 5px;
    transition: 0.3s ease;
  }

  .footer .col-lg-6,
  .footer .col-lg-3 {
    flex: 1 1 auto;
    padding: 15px;
  }

  .footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-bottom {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .payment-icons {
    display: flex;
    gap: 15px;
    padding-right: 40px;
  }

  .payment-icons img {
    height: 28px;
    width: auto;
    filter: grayscale(20%);
    transition: 0.3s ease;
  }

  .payment-icons img:hover {
    filter: none;
    transform: scale(1.05);
  }
}

        * {
            margin: 0;
            /* padding: 0; */
            box-sizing: border-box;
        }

        :root {
            --primary-color: #007bff;
            --success-color: #28a745;
            --danger-color: #dc3545;
            --warning-color: #ffc107;
            --info-color: #17a2b8;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --border-color: #dee2e6;
            --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f7fa;
}
        /* ============================================
           HEADER - RESPONSIVE
           ============================================ */

        .header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
           }

        .header-container {
            min-height: 8px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo {
            flex: 0 0 auto;
        }

        .logo-img {
            height: 40px;
            width: auto!important;
            display: block!important;
        }

        .navbar {
            flex: 1;
            min-width: 200px;
            display: flex;
            justify-content: center;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            justify-content: center;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            padding: 5px 10px;
            border-bottom: 2px solid transparent;
            display: block;
            
        }

        .nav-menu a:hover,
        .nav-menu li.active a {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }

        .header-actions {
            flex: 0 0 auto;
            display: flex;
            gap: 15px;
            align-items: center;
        }

        /* ============================================
           HAMBURGER MENU TOGGLE
           ============================================ */

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            padding: 8px;
            background: none;
            border: none;
            z-index: 101;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: #333;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .cart-toggle {
            position: relative;
            background: none;
            border: none;
            font-size: 24px;
            color: #333;
            cursor: pointer;
            transition: color 0.3s ease;
            padding: 0;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cart-toggle:hover {
            color: var(--primary-color);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--danger-color);
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        /* ============================================
           HERO SECTION - RESPONSIVE
           ============================================ */

        .hero {
            background: #004aad;
            color: rgb(228, 228, 228);
            padding: 120px 20px;
            text-align: center;
            margin-top: 0;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 17px;
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero button {
            background: white;
            border: none;
            padding: 14px 40px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .hero button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .hero button a {
            text-decoration: none;
            color: #667eea;
        }

        /* ============================================
           INFO SECTION - RESPONSIVE
           ============================================ */

        .info-section {
            width: 100%;
            padding: 60px 20px;
            background: #ffffff;
            display: flex;
            justify-content: center;
        }

        .info-container {
            max-width: 1100px;
            text-align: center;
        }

        .info-content h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
        }

        .info-content p {
            font-size: 18px;
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 18px;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            margin-top: 10px;
            padding: 12px 30px;
            background: #2563eb;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: 0.3s ease;
        }

        .cta-button:hover {
            background: #1e4fc7;
        }

        /* ============================================
           HORIZONTAL FEATURES - RESPONSIVE
           ============================================ */

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 50px;
            text-align: center;
        }

        .horizontal-features {
            width: 100%;
            padding: 60px 20px;
            background: #f8faff;
        }

        .hf-container {
            max-width: 1300px;
            margin: auto;
            display: flex;
            gap: 25px;
            justify-content: space-between;
            align-items: stretch;
            flex-wrap: wrap;
        }

        .hf-box {
            flex: 1;
            min-width: 250px;
            background: #ffffff;
            padding: 25px;
            border-radius: 14px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            text-align: center;
            transition: 0.3s ease;
        }

        .hf-box:hover {
            transform: translateY(-6px);
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.10);
        }

        .hf-icon {
            font-size: 40px;
            margin-bottom: 12px;
        }

        .hf-box h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1f2937;
        }

        .hf-box p {
            font-size: 15px;
            color: #4b5563;
            line-height: 1.5;
            margin: 0;
        }

        /* ============================================
           PROCEED SECTION - RESPONSIVE
           ============================================ */

        .proceed-section {
            width: 100%;
            padding: 80px 20px;
            background: #ffffff;
            display: flex;
            justify-content: center;
        }

        .proceed-container {
            max-width: 1200px;
            width: 100%;
        }

        .proceed-section h2 {
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
            text-align: center;
        }

        .proceed-desc {
            max-width: 850px;
            margin: 0 auto 40px auto;
            font-size: 18px;
            line-height: 1.7;
            color: #4b5563;
            text-align: center;
        }

        .proceed-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .proceed-box {
            background: #f8faff;
            padding: 25px;
            border-radius: 14px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
            transition: 0.3s ease;
            text-align: left;
        }

        .proceed-box:hover {
            transform: translateY(-6px);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
        }

        .proceed-box h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #111827;
        }

        .proceed-box p {
            font-size: 14px;
            line-height: 1.6;
            color: #4b5563;
            margin: 0;
        }

 
        /* ============================================
           RESPONSIVE - Small Mobile (320px - 480px)    
           ============================================ */

        @media (max-width: 480px) {
            .header-container {
                padding: 12px 15px;
                gap: 15px;
            }

            .logo-img {
                height: 30px;
            }

            .navbar {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                z-index: 100;
            }

            .navbar.active {
                max-height: 500px;
                box-shadow: var(--shadow-lg);
            }

            .nav-menu {
                flex-direction: column;
                gap: 0;
                padding: 20px;
            }

            .nav-menu a {
                padding: 12px 0;
                border-bottom: 1px solid var(--border-color);
            }

            .hamburger {
                display: flex;
                order: 3;
            }

            .header-actions {
                gap: 10px;
            }

            .cart-toggle {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .hero {
                padding: 60px 15px;
            }

            .hero h1 {
                font-size: 28px;
                margin-bottom: 15px;
            }

            .hero p {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .hero button {
                padding: 12px 30px;
                font-size: 14px;
            }

            .info-section {
                padding: 40px 15px;
            }

            .info-content h2 {
                font-size: 24px;
                margin-bottom: 15px;
            }

            .info-content p {
                font-size: 16px;
            }

            .section-title {
                font-size: 22px;
                margin-bottom: 30px;
            }

            .horizontal-features {
                padding: 40px 15px;
            }

            .hf-container {
                gap: 15px;
            }

            .hf-box {
                min-width: 100%;
                padding: 20px;
            }

            .hf-icon {
                font-size: 32px;
            }

            .hf-box h3 {
                font-size: 16px;
            }

            .hf-box p {
                font-size: 14px;
            }

            .proceed-section {
                padding: 40px 15px;
            }

            .proceed-section h2 {
                font-size: 24px;
                margin-bottom: 15px;
            }

            .proceed-desc {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .proceed-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .proceed-box {
                padding: 20px;
            }

            .proceed-box h3 {
                font-size: 16px;
            }

            .proceed-box p {
                font-size: 13px;
            }

 
        }

        /* ============================================
           RESPONSIVE - Mobile & Small Tablet (480px - 768px)
           ============================================ */

        @media (min-width: 480px) and (max-width: 768px) {
            .header-container {
                padding: 14px 18px;
            }

            .logo-img {
                height: 35px;
            }

            .navbar {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                z-index: 100;
            }

            .navbar.active {
                max-height: 500px;
                box-shadow: var(--shadow-lg);
            }

            .nav-menu {
                flex-direction: column;
                gap: 0;
                padding: 20px;
            }

            .nav-menu a {
                padding: 12px 0;
                border-bottom: 1px solid var(--border-color);
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding: 80px 20px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .info-section {
                padding: 50px 20px;
            }

            .info-content h2 {
                font-size: 28px;
            }

            .info-content p {
                font-size: 17px;
            }

            .section-title {
                font-size: 26px;
            }

            .horizontal-features {
                padding: 50px 20px;
            }

            .hf-container {
                gap: 18px;
            }

            .hf-box {
                min-width: calc(50% - 9px);
            }

            .proceed-section {
                padding: 60px 20px;
            }

            .proceed-grid {
                grid-template-columns: repeat(2, 1fr);
            }

         
        }

        /* ============================================
           RESPONSIVE - Tablet (768px - 1024px)
           ============================================ */

        @media (min-width: 768px) and (max-width: 1024px) {
            .header-container {
                padding: 15px 20px;
            }

            .nav-menu {
                gap: 20px;
            }

            .hero {
                padding: 100px 20px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero p {
                font-size: 19px;
            }

            .info-section {
                padding: 60px 20px;
            }

            .info-content h2 {
                font-size: 30px;
            }

            .section-title {
                font-size: 28px;
            }

            .horizontal-features {
                padding: 60px 20px;
            }

            .hf-container {
                gap: 20px;
            }

            .hf-box {
                min-width: calc(50% - 10px);
            }

            .proceed-section {
                padding: 70px 20px;
            }

            .proceed-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* ============================================
           RESPONSIVE - Laptop (1024px - 1440px)
           ============================================ */

        @media (min-width: 1024px) and (max-width: 1440px) {
            .header-container {
                padding: 15px 25px;
            }

            .hamburger {
                display: none;
            }
 .logo-img {
        height: 40px;
         padding-left:30px!important;
        /* left: 0; */
    }
            .navbar {
                display: flex !important;
                max-height: none !important;
                position: static;
            }

            .hero {
                padding: 110px 25px;
            }

            .hero h1 {
                font-size: 46px;
            }

            .info-section {
                padding: 70px 25px;
            }

            .horizontal-features {
                padding: 70px 25px;
            }

            .proceed-section {
                padding: 80px 25px;
            }

            .proceed-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* ============================================
           RESPONSIVE - Large Desktop (1440px+)
           ============================================ */

        @media (min-width: 1440px) {
            .header-container {
                padding: 15px 40px;
            }

            .hamburger {
                display: none;
            }

            .navbar {
                display: flex !important;
                max-height: none !important;
                position: static;
            }

            .hero {
                padding: 120px 40px;
            }

            .hero h1 {
                font-size: 48px;
            }

            .info-section {
                padding: 80px 40px;
            }

            .horizontal-features {
                padding: 80px 40px;
            }

            .proceed-section {
                padding: 100px 40px;
            }

            .proceed-grid {
                grid-template-columns: repeat(4, 1fr);
            }

          
        }

        /* ============================================
           TOUCH DEVICE OPTIMIZATIONS
           ============================================ */

        @media (hover: none) and (pointer: coarse) {
            .cart-toggle {
                min-height: 48px;
                min-width: 48px;
            }

            .hf-box,
            .proceed-box {
                transition: none;
            }

            .hf-box:active {
                transform: scale(0.98);
            }

            .proceed-box:active {
                transform: scale(0.98);
            }
        }

        /* ============================================
           UTILITIES
           ============================================ */

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .pt-5 {
            padding-top: 40px;
        }

        a {
            color: inherit;
        }

      
          .pay-btn {
      background: #004aad;
      color: white!important;
      padding: 8px 16px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
       text-align:center;
      /* transition: 0.3s; */
       transition: background 0.3s ease, color 0.3s ease;
    }

    .pay-btn:hover {
      background: #0056b3;
      color: white;
    }


