 .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--primary) !important;
            font-weight: 700;
        }
        
        .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--secondary) !important;
        }
        
      .hero img {
    width: 100%;
}
        
        .heroBanner {
    background: #388c51;
    padding-top: 30px;
    padding-bottom: 100px;
}
        
        .heroBannerImg {
    width: 100%;
    border: 4px solid #fff;
    border-radius: 20px;
}

.heroBannerLink a {
    color: #fff;
    font-size: 20px;
    border: 4px solid #fff;
    display: inline-block;
    padding: 10px;
    border-radius: 30px;
    background: #31b231;
    margin-top: 30px;
    transition: 0.5s all;
}

.heroBannerLink {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logoBrand a img {
    max-width: 420px;
    width: 100%;
    display: block;
    margin: 10px auto;
    border-radius: 5px;
}
.headerHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed lightgray;
}

.headerHead p {margin: 0;}

.headerHead {}
.logoBrand {
    display: flex;
    align-items: center;
    justify-content: center;
     width: 100%;
}
.mapDivFooter {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .btn-custom {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
            animation: fadeInUp 1s ease 0.4s backwards;
        }
        
        .btn-primary-custom {
            background: white;
            color: var(--primary);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .btn-outline-custom {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-outline-custom:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-3px);
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        
        .product-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
            .product-image img {
                width: 100%;
            }
        
        
        
        .buynowLink {
            background: #000;
            color: #fff;
            width: 100%;
            display: block;
            padding: 10px;
            border-radius: 40px;
            margin-top: 10px;
        }
      
        
        .product-card .card-body {
            padding: 25px;
        }
        
        .product-card h5 {
                font-weight: 600;
            color: #353583;
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .product-card .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-top: 15px;
        }
        
        .features {
            background: var(--light);
            padding: 100px 0;
        }
        
        .feature-box {
            text-align: center;
            padding: 40px 20px;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .social-icons a:hover {
            color: var(--secondary);
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }
        
        
        
        
        
        
        
        
        
        
          /* Card container */
    .combo-card {
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 12px;
      overflow: hidden;
      transition: transform .18s ease, box-shadow .18s ease;
      background: #fff;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .combo-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }

    .combo-header {
      background: linear-gradient(90deg, #f6f8ff 0%, #eef6ff 100%);
      padding: 14px 16px;
      display:flex;
      align-items:center;
      gap:12px;
    }

    .item-count {
      font-weight: 600;
      color: #0b4b8a;
      display:flex;
      align-items:center;
      gap:8px;
    }

    .item-count i {
      font-size: 18px;
    }

    .combo-body {
      padding: 16px;
      flex-grow: 1;
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .items-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .items-list li {
      display:flex;
      align-items:center;
      gap:10px;
      padding:6px 0;
      color:#333;
      font-size: 0.95rem;
    }

    .items-list li i {
      color: #2d9b5f;
      width:20px;
      text-align:center;
    }

    .combo-footer {
      padding: 14px 16px;
      border-top: 1px dashed rgba(0,0,0,0.05);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }

    .price {
      font-size:1.15rem;
      font-weight:700;
      color:#111827;
    }

    .badge-pack {
      background:#fde68a;
      color:#92400e;
      font-weight:600;
      padding:6px 10px;
      border-radius:999px;
      font-size:0.85rem;
    }
    
    
    .orderFromBody {
    padding: 20px;
    background-color: #f4f9ff;
        border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
    
    .orderLayout {
    background-color: #EFFFEF;
    padding: 50px 0;
}

.orderFromContainer {
    border: 2px solid green;
    border-radius: 20px;
}

.orderFromContainer h1 {
    background: #388c51;
    padding: 20px 0;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    margin: 0;
}
    
    
    .fa {
    margin-right: 10px;
}
    .productItms img {
    width: 65px;
    margin-right: 10px;
    display: block;
        border: 1px solid #388c51;
    border-radius: 5px;
}

.productItms {
    display: flex;
    align-items: center;
}
    
.orderPro img {
    width: 50px;
    border: 1px solid #388c51;
    border-radius: 5px;
}
    
    .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-bottom: 20px;
        }
        .card-header {
            border-radius: 15px 15px 0 0 !important;
            font-size: 1.5rem;
            font-weight: bold;
        }
        .product-item {
            background: #00BE0E12;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        .quantity-control {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .quantity-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: 2px solid #667eea;
            background: white;
            color: #667eea;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .quantity-btn:hover {
            background: #667eea;
            color: white;
        }
        .quantity-input {
            width: 60px;
            text-align: center;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            padding: 5px;
        }
        .form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }
        .form-control, .form-select {
            border-radius: 8px;
            border: 2px solid #dee2e6;
            padding: 12px;
            transition: all 0.3s;
        }
        .form-control:focus, .form-select:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }
        .order-summary {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
        }
        .order-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #dee2e6;
        }
        .order-row:last-child {
            border-bottom: none;
        }
        .total-row {
            font-size: 1.3rem;
            font-weight: bold;
            color: #667eea;
            margin-top: 10px;
            padding-top: 15px;
            border-top: 2px solid #667eea;
        }
        .btn-confirm {
            background: #388c51;
            border: none;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 50px;
            color: white;
            width: 100%;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        .btn-confirm:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
        }
        .free-delivery {
            background: #28a745;
            color: white;
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            margin: 15px 0;
            font-weight: 600;
        }
        .payment-method {
            background: #fff3cd;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #ffc107;
            margin: 15px 0;
        }
        .price-tag {
            font-size: 1.5rem;
            font-weight: bold;
            color: #28a745;
        }
    
    
    
    
    
    
.offerDiv {
    background: #388c51;
    padding: 20px 0;
}
    
    
    
        .offer-section {
          max-width: 640px;
    margin: 50px auto;
    }
    .offer-section h2 {
         color: #fff;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    border: 5px solid #fff;
    padding: 20px;
    border-radius: 50px;
    }
    .offer-section p {
         font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    }
    .offer-section .btn-order {
      background-color: #d84315;
      color: #fff;
      font-weight: bold;
      border-radius: 8px;
      padding: 10px 20px;
      transition: 0.3s;
    }
    .offer-section .btn-order:hover {
      background-color: #bf360c;
      color: #fff;
    }
    .contact-info a {
      color: #d84315;
      font-weight: bold;
      text-decoration: none;
      margin: 0 5px;
    }
    .contact-info a:hover {
      text-decoration: underline;
    }
    
    
    .reviewBox img {
    width: 100%;
    border: 2px solid #388c51;
    border-radius: 10px;
}
    
    .btn-confirm:hover {
    background-color: #26c254;
    color: #fff;
}
    .cousterReveiw {
    padding: 50px 0;
}

.slick-arrow {
    display: none !important;
}

.reviewBox {
    padding: 10px;
}

.coustomerReviewHead {
    text-align: center;
}

.coustomerReviewHead h2 {
    background: #388c51;
    color: #fff;
    padding: 11px;
    font-size: 28px;
    display: inline-block;
    border-radius: 12px;
}
    
    
.footerBox {
    background: green;
    padding: 20px 0;
}

.footerBox {}

.footerBoxContent a img {
    width: 280px;
        display: block;
    margin: 0 auto;
    margin-bottom: 14px;
}

.footerBoxContent {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}    
    .footerBoxContent ul li {
    display: inline;
}

.footerBoxContent ul li a i {
    background: green;
    width: 25px;
    height: 25px;
    color: #fff;
    border-radius: 50%;
    margin: 0;
    display: inline-block;
    padding-top: 5px;
}

.footerBoxContent ul li a {
    color: #000;
    margin-bottom: 15px;
    display: inline-block;
}

    /* small adjustments for very small screens */
    @media (max-width: 420px) {
      .items-list li { font-size:0.9rem; }
    }
        .contact-page {
    margin-top: 150px;
}
        .combo-footer a {
    margin-left: 5px;
}


















        
        
        
        
        
        
        
        