body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #698ae2; /* ✅ fallback color */
      color: #003366;
      margin: 0;
      padding: 0;
    }
    /* New CSS for Slide-Down Effect */
        .product-section, .service-section-delivery, .about-us-section {
            display: block !important; /* Force sections to be visible immediately */
        }
        
        /* Additional specific rule for product section */
        section.product-section#product-section {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        /* Main section should be visible by default to show background */
        .main-section {
            display: flex !important; /* Ensure main section is visible */
        }

        /* Styling for the Back to Top button */
        #back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000; /* Ensure it's above other content */
            display: none; /* Hide it by default, jQuery will show/hide on scroll */
        }



    /* ------------------------------
       NAVBAR STYLES
    ------------------------------ */
    .navbar {
      background-color: rgba(53, 90, 209, 0.95); /* ✅ blue with transparency */
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }

    .navbar-brand img {
      width: 150px;
      height: auto;
    }

    .nav-link {
      font-weight: 600;
      color: rgb(255, 255, 255) !important;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: #f1f3f5 !important;
    }

    .dropdown-menu {
      background-color: #0052cc;
    }

    .dropdown-menu .dropdown-item {
      color: rgb(203, 208, 223);
    }

    .dropdown-menu .dropdown-item:hover {
      background-color: #68a6e5;
      color: #003366;
    }

    /* Login Button */
    .btn-login {
      background-color: #0a7894;
      border: none;
      color: rgb(223, 223, 223);
      font-weight: 600;
      border-radius: 25px;
      padding: 6px 18px;
      transition: background-color 0.3s ease;
      text-decoration: none;
    }

    .btn-login:hover {
      background-color: #2268d8;
      color: rgb(103, 162, 214);
    }

    /* ------------------------------
       MAIN SECTION
    ------------------------------ */
    .main-section {
      background-image: url("../image/dcb968b98a48de8a808cbf158aa5a4a7.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 100vh;
      width: 100%;
      position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 50px;
      color: #003366;
    }

    /* Overlay for better text readability */
    .main-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.1); /* Reduced overlay to make background image clearer */
      z-index: 1;
    }

    /* Ensure content is above overlay */
    .main-section > * {
      position: relative;
      z-index: 2;
    }

    .image-container img {
      width: 100%;
      max-width: 400px;
      height: auto;
      display: block;
    }

    .text-content {
      flex: 1 1 400px;
      max-width: 600px;
      color: #003366;
    }

    .tagline {
      background: #e6f3ff;
      color: #003366;
      padding: 6px 15px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 15px;
      width: fit-content;
      box-shadow: 0 0 5px #8fcfff33;
    }

    .text-content h1 {
      font-size: 2.4rem;
      font-weight: 900;
      margin-bottom: 20px;
      line-height: 1.2;
      text-transform: uppercase;
      color: #002544;
    }

    .text-content p {
      font-size: 1rem;
      line-height: 1.5;
      letter-spacing: 0.03em;
      color: #003366cc;
    }

    /* ------------------------------
       RESPONSIVE ADJUSTMENTS
    ------------------------------ */
    @media (max-width: 991px) {
      .text-content {
        text-align: center;
      }

      .tagline {
        margin: 0 auto 15px;
      }

      .navbar-nav {
        text-align: center;
      }
    }

    /* Reset some default styles */
    * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #86d8f1;
      color: #0a0a23;
    }
    a {
      text-decoration: none;
    }

    /* Container for the whole section */
    .product-section {
      background: linear-gradient(to bottom, #58b6ff 0%, #a3d5ff 100%);
      padding: 20px 40px 60px;
      text-align: center;
      min-height: 100vh;
      display: block !important;
      flex-direction: column;
      justify-content: flex-start;
    }

    /* Back button */
    .back-btn {
      font-weight: 700;
      color: white;
      font-size: 18px;
      text-align: left;
      cursor: pointer;
      -webkit-user-select: none;
      user-select: none;
      margin-bottom: 10px;
    }

    /* Heading */
    .product-section h1 {
      font-weight: 900;
      font-size: 32px;
      margin: 0;
      color: #06467a;
    }
    .product-section h1 .offered {
      color: #7ba8f7;
    }
    /* Subheading */
    .subheading {
      font-weight: 400;
      font-size: 16px;
      margin: 8px 0 40px;
      color: #0a0a23;
    }

    /* Product cards container */
    .product-cards {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    /* Single product card */
    .product-card {
      background: white;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(100, 114, 139, 0.15);
      padding: 20px;
      width: 260px;
      position: relative;
      text-align: left;
      -webkit-user-select: none;
      user-select: none;
    }

    /* "SALE" badge */
    .sale-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background-color: #3c53c1;
      color: white;
      font-weight: 700;
      font-size: 14px;
      padding: 4px 10px;
      border-radius: 50% / 20%;
      box-shadow: 0 0 5px #2a36a1;
    }

    /* Product image styling */
    .product-card img {
      max-width: 100%;
      display: block;
      margin: 0 auto 20px;
      position: relative;
      z-index: 2;
    }

    /* Splash effect (behind image) */
    .splash {
      position: absolute;
      top: 40px;
      left: 50%;
      width: 150px;
      height: 120px;
      background: url('data:image/svg+xml;utf8,<svg fill="%237ba8f7" height="100" width="120" xmlns="http://www.w3.org/2000/svg"><circle cx="60" cy="60" r="40" fill-opacity="0.2"/><circle cx="60" cy="80" r="40" fill-opacity="0.15"/></svg>') no-repeat center;
      background-size: contain;
      opacity: 0.4;
      transform: translateX(-50%);
      z-index: 1;
      pointer-events: none;
      -webkit-user-select: none;
      user-select: none;
    }

    /* Product Title */
    .product-title {
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 8px;
      color: #2468cf;
    }

    /* Product description */
    .product-desc {
      font-weight: 400;
      font-size: 14px;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    /* Price section */
    .price {
      font-weight: 600;
      font-size: 16px;
      color: #1a175e;
      margin-bottom: 8px;
    }
    .price .old-price {
      text-decoration: line-through;
      color: #7ba8f7;
      margin-right: 8px;
    }

    /* Rating stars */
    .rating {
      color: #0832b9;
      font-size: 18px;
      margin-bottom: 20px;
    }

    /* Order button */
    .order-btn {
      background-color: #097df1;
      color: rgb(120, 193, 226);
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 25px;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      transition: background-color 0.3s ease;
      -webkit-user-select: none;
      user-select: none;
      box-shadow: 0 4px 6px rgba(12, 12, 228, 0.4);
      width: 100%;
      justify-content: center;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-sizing: border-box;
    }

    .order-btn a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

    .order-btn:hover {
      background-color: #0a3fb1;
      box-shadow: 0 6px 10px rgba(3, 3, 102, 0.5);
    }

    /* Shopping cart icon using SVG in button */
    .order-btn svg {
      fill: white;
      width: 18px;
      height: 18px;
    }

    /* Responsive adjustments */
    @media (max-width: 880px) {
      .product-cards {
        flex-direction: column;
        align-items: center;
      }
      .product-card {
        width: 90%;
        max-width: 350px;
        margin-bottom: 30px;
      }
    }
     /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background: linear-gradient(to bottom, #5ba9f9, #d7e9fc);
      color: #222;
    }

    .container {
      max-width: 500px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Header */
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      font-size: 18px;
      margin-bottom: 30px;
    }

    /* Progress bar */
    .progress {
      background: #e6e6e6;
      border-radius: 20px;
      height: 14px;
      position: relative;
      margin-bottom: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 8px;
    }

    .progress-line {
      position: absolute;
      top: 50%;
      left: 0;
      height: 6px;
      width: 100%;
      background: #ccc;
      border-radius: 10px;
      transform: translateY(-50%);
      z-index: 1;
    }

    .progress-fill {
      position: absolute;
      top: 50%;
      left: 0;
      height: 6px;
      width: 100%;
      background: #27ae60;
      border-radius: 10px;
      transform: translateY(-50%);
      z-index: 2;
    }

    .progress-step {
      width: 14px;
      height: 14px;
      background: #222;
      border-radius: 50%;
      z-index: 3;
    }

    .progress-step.done {
      background: #27ae60;
    }

    .progress-labels {
      display: flex;
      justify-content: space-between;
      margin-top: 10px;
      font-size: 14px;
      color: #444;
    }

    /* Section title */
    h2 {
      font-size: 22px;
      margin-bottom: 15px;
      font-weight: bold;
      color: #fff;
    }

    /* Items list */
    .item {
      display: flex;
      align-items: center;
      background: #fff;
      padding: 12px;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .item img {
      width: 60px;
      height: 60px;
      object-fit: contain;
      margin-right: 15px;
    }

    .item-info {
      flex: 1;
      font-size: 16px;
      font-weight: 600;
      color: #1e2a60;
    }

    .item-controls {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .qty-btn {
      width: 28px;
      height: 28px;
      border: none;
      border-radius: 50%;
      background: #1e2a60;
      color: #fff;
      font-size: 18px;
      cursor: pointer;
    }

    .item-qty {
      min-width: 30px;
      text-align: center;
      font-size: 16px;
      font-weight: bold;
      color: #333;
    }

    /* Button */
    .btn {
      display: block;
      width: 140px;
      margin: 20px auto 0;
      padding: 12px;
      background: #1e2a60;
      color: #fff;
      text-align: center;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn:hover {
      background: #163d99;
    }
     @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

    :root {
      --blue-light: #c7e6ff;
      --blue-medium: #7da6ff;
      --blue-dark: #142b7c;
      --blue-darker: #0f2374;
      --white: #fff;
      --dark-blue: #0c1d66;
      --shadow-color: rgba(0, 0, 0, 0.15);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: var(--blue-light);
      color: var(--blue-dark);
      line-height: 1.6;
    }

    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 2rem 1rem 4rem;
    }

    /* Title */
    h2.section-title {
      text-align: center;
      font-weight: 700;
      font-size: 2.25rem;
      margin-bottom: 1rem;
      color: var(--blue-dark);
    }
    h2.section-title span {
      color: var(--blue-medium);
    }

    /* Paragraph */
    .intro-text {
      text-align: center;
      font-weight: 500;
      font-size: 1rem;
      max-width: 900px;
      margin: 0 auto 3rem;
      color: var(--blue-darker);
      letter-spacing: 0.02em;
    }

    /* Card container */
    .cards {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    /* Single card */
    .card {
      background: var(--blue-medium);
      border-radius: 10px;
      padding: 2rem 1.5rem 1.5rem;
      width: 260px;
      position: relative;
      color: var(--white);
      box-shadow: 0 4px 8px var(--shadow-color);
      text-align: center;
    }

    /* Icon wrapper - circle white background */
    .icon-circle {
      background: var(--white);
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    /* Icons (simple SVG style) */
    .icon {
      fill: var(--blue-medium);
      width: 32px;
      height: 32px;
    }

    /* Card titles */
    .card h3 {
      margin: 0 0 0.5rem;
      font-weight: 700;
      font-size: 1.2rem;
    }

    /* Card descriptions */
    .card p {
      font-weight: 400;
      font-size: 0.9rem;
      line-height: 1.4;
      margin: 0;
    }

    /* Highlight text for some spans inside cards */
    .highlight {
      font-weight: 600;
    }

    /* Section below cards */
    .subheading {
      text-align: center;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--blue-medium);
    }
    .subheading strong {
      font-weight: 900;
      color: #000;
    }

    .powered {
      text-align: center;
      font-size: 1.1rem;
      font-weight: 600;
      margin-top: 0.8rem;
      color: var(--blue-dark);
    }

    .powered-desc {
      max-width: 700px;
      margin: 0.5rem auto 4rem;
      font-weight: 400;
      font-size: 1rem;
      color: var(--blue-darker);
      line-height: 1.5;
      text-align: center;
    }

    /* Footer */
    footer {
      background: var(--blue-dark);
      color: var(--white);
      padding: 3rem 1rem;
      font-size: 0.875rem;
    }

    footer .footer-container {
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: space-between;
    }

    footer .footer-left,
    footer .footer-middle,
    footer .footer-right {
      flex: 1 1 250px;
    }

    footer .logo {
      font-weight: 700;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      letter-spacing: 2px;
    }

    footer .tagline {
      font-weight: 600;
      margin-bottom: 0.7rem;
    }

    footer .desc {
      font-weight: 300;
      line-height: 1.4;
      max-width: 320px;
    }

    footer h4 {
      color: var(--blue-medium);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    footer ul li {
      margin-bottom: 0.5rem;
    }

    footer ul li a {
      color: var(--white);
      text-decoration: none;
      font-weight: 400;
    }

    footer ul li a:hover {
      text-decoration: underline;
    }

    footer .address {
      font-weight: 400;
      line-height: 1.5;
      max-width: 300px;
    }

    @media (max-width: 700px) {
      .cards {
        flex-direction: column;
        align-items: center;
      }

      footer .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
      }

      footer .footer-left,
      footer .footer-middle,
      footer .footer-right {
        flex: 1 1 100%;
        text-align: center;
        max-width: 400px;
      }

      .intro-text {
        padding: 0 1rem;
      }
    }

    /* --- Essential CSS for Consistent Navigation --- */

/* 1. Fixes the header to the top of the viewport */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030; /* Ensures it stays above all other content */
    /* Add your existing background styles here if not in .navbar */
    background-color: rgba(53, 90, 209, 0.95); /* Example background for the header container */
}

/* 2. Adds padding to the top of the body/main content to push it down 
   (Adjust 85px based on the exact height of your navbar) */
body {
    padding-top: 85px; 
}

/* 3. Ensures the navbar background is consistent */
.navbar {
    background-color: transparent !important; /* Let the header background show through */
}

/* 4. Small adjustment for the logo size you provided in the code snippet */
.navbar-brand img {
    width: 150px; /* Use a reasonable size for the logo */
    height: auto;
}
 /* Custom Styles - Incorporated from original CSS, adapted for responsiveness */
        :root {
            --primary-blue: #007bff;
            --dark-blue: #1976d2;
            --light-bg: #dfeaec;
            --feature-bg: #ccdce7;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #c1d8e7;
            /* Using Bootstrap utilities for centering: d-flex justify-content-center align-items-center */
            min-height: 100vh;
        }

        .card-responsive {
            background: var(--light-bg);
            border-radius: 20px;
            box-shadow: 0px 10px 30px rgba(0,0,0,0.15);
            max-width: 950px; /* Instead of fixed 900px */
            width: 95%; /* Responsive width */
            padding: 20px;
        }

        /* Left image section */
        .image-section {
            position: relative;
            text-align: center;
            overflow: hidden;
            /* Set a controlled height for mobile to prevent huge images */
            min-height: 250px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        /* Main image is fully fluid within its container */
        .image-section img.main {
            width: 100%; /* Make it fluid */
            height: auto;
            max-width: 450px; /* Control max size on desktop */
            z-index: 2;
            padding: 1rem;
        }

        /* Floating Bottles Animation */
        .bottle {
            position: absolute;
            width: 50px;
            height: 100px; /* Set height for consistent sizing */
            opacity: 0.8;
            animation: float 5s infinite ease-in-out;
        }
        /* Adjusted positioning for bottles to work with relative container */
        .b1 { top: 10%; left: 5%; animation-delay: 0s; }
        .b2 { top: 5%; right: 10%; animation-delay: 1s; }
        .b3 { bottom: 15%; left: 8%; animation-delay: 2s; }
        .b4 { bottom: 10%; right: 5%; animation-delay: 3s; }

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); } /* Less dramatic rotation for screens */
            100% { transform: translateY(0px) rotate(0deg); }
        }

        /* Text Section */
        .text-section h2 {
            font-size: 2.2rem;
            color: #222;
            margin-bottom: 1.5rem;
            padding-top: 1rem;
        }

        .text-section h2 span {
            color: var(--primary-blue);
        }

        .features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1rem;
            color: #323d79;
        }

        .feature-icon-wrapper {
            background: var(--feature-bg);
            color: var(--dark-blue);
            border-radius: 50%;
            width: 40px; /* Slightly larger touch target */
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .btn-custom {
            margin-top: 20px;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
            color: #75c3f0;
            font-weight: bold;
            font-size: 1.1rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none; /* For the link-as-button */
            display: inline-block;
        }

        .btn-custom:hover {
            opacity: 0.9;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }

        /* Responsive adjustments for the text size */
        @media (max-width: 576px) {
            .text-section h2 {
                font-size: 1.8rem;
            }
            .feature {
                font-size: 0.9rem;
            }
        }
        
        /* --- General Navbar Style --- */
.navbar {
  transition: all 0.4s ease-in-out;
  background: linear-gradient(90deg, #007bff 0%, #00bcd4 100%);
}

.navbar-brand {
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: #ffeb3b !important;
}

/* --- Nav Links Hover --- */
.nav-link {
  position: relative;
  color: #f8f9fa !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #ffeb3b !important;
}

/* --- Dropdown Fade Animation --- */
.fade-dropdown {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-item.dropdown:hover .fade-dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  display: block;
}

/* --- Login Button --- */
.btn-login {
  background-color: #fff;
  color: #007bff;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background-color: #ffeb3b;
  color: #000;
  transform: translateY(-2px);
}

/* --- Icon Hover Animation --- */
.nav-icon {
  transition: transform 0.2s ease, color 0.3s ease;
}

.nav-icon:hover {
  transform: scale(1.2);
  color: #ffeb3b !important;
}

  :root {
            --primary-blue: #007bff;
            --dark-blue: #1f4287;
            --light-blue: #a3c1ff;
        }

        body {
            background-color: #f8f9fa;
            min-height: 100vh;
            padding-top: 80px;
        }

        /* Nav Bar */
        .navbar {
            background-color: var(--dark-blue);
        }

        .navbar-brand img {
            height: 40px;
        }

        .btn-login {
            color: white;
            border: 2px solid white;
            padding: 5px 15px;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .btn-login:hover {
            background-color: white;
            color: var(--dark-blue);
        }

        /* Main Card Layout */
        .card-responsive {
            max-width: 1000px;
            margin: 30px auto;
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Image Section */
        .image-section {
            position: relative;
            background-color: var(--light-blue);
            min-height: 350px;
            overflow: hidden;
            border-radius: 1rem 0 0 1rem;
        }
        .image-section .main {
            display: block;
            margin: auto;
            max-width: 90%;
            height: auto;
            padding: 20px;
        }
        .image-section .bottle {
            position: absolute;
            height: 60px;
            opacity: 0.8;
        }
        .b1 { top: 15%; left: 5%; transform: rotate(-10deg); }
        .b2 { top: 75%; left: 25%; }
        .b3 { bottom: 15%; left: 8%; transform: rotate(15deg); }
        .b4 { bottom: 10%; right: 5%; }
        
        @media (max-width: 991.98px) {
            .image-section {
                border-radius: 1rem 1rem 0 0;
            }
        }

        /* Text Section */
        .text-section h2 {
            font-weight: 700;
            color: #333;
        }
        .text-section h2 span {
            color: var(--primary-blue);
        }

        /* Features List */
        .features {
            list-style: none;
            padding: 0;
        }
        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .feature-icon-wrapper {
            background-color: var(--primary-blue);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        /* Custom Button */
        .btn-custom {
            background-color: var(--primary-blue);
            color: white !important;
            padding: 10px 20px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .btn-custom:hover {
            background-color: var(--dark-blue);
        }       

         html {
            scroll-behavior: smooth;
        }

        
        .navbar {
            background-color: #003366 !important; 
        }

        
        .navbar-brand img {
            max-width: 150px; 
            height: auto;
        }

        
        .navbar-dark .navbar-nav .nav-link,
        .navbar-dark .d-flex a {
            color: #ffffff;
        }

        
        .navbar-dark .navbar-nav .nav-link:hover,
        .navbar-dark .d-flex a:hover {
            color: #ffc107; 
        }

        
        .product-section, .service-section-delivery, .about-us-section {
            padding-top: 70px;
            padding-bottom: 70px;
        }
        
        
        .container {
            padding-top: 70px; 
        }

        
        .btn-login, .btn-custom {
            color: #ebf3fc; 
            background-color: #ffc107;
            border: 1px solid #ffc107;
            padding: 0.375rem 0.75rem;
            border-radius: 0.25rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-login:hover, .btn-custom:hover {
            background-color: #e0a800;
            border-color: #e0a800;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .navbar-brand img {
                max-width: 120px; 
            }
        }
        
    
        #back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000; 
            display: none; 
        }