* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Metrophobic", sans-serif;

    
}


::-moz-selection { /* Code for Firefox */
    color: white;
    background: #f9471f;
  }
  
  ::selection {
    color: white;
    background: #f9471f;
  }




body {
    overflow-x: hidden;
}




















:root {
    --text-color: #333;
    --bg-color: #fff;
    --primary-color: #291f75;
    --hover-color: #1d4ed8;
    /* --nav-bg: linear-gradient(90deg, #ff0000 0%, #ffffff 100%); */
    --nav-bg: #f01318;
    --secondary-nav-bg: #f8fafc;
    --btn-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    --nav-link-color: #fff;
    --Sec-nav-link-color: #333;

    --nav-height: 80px;
    --secondary-nav-height: 50px;
    --dropdown-bg: #ffffff;
    --progress-color: #2563eb;
    --scrolled-nav-height: 80px;
}

.dark-mode {
    --text-color: #f3f4f6;
    --bg-color: #111827;
    --primary-color: #3b82f6;
    --hover-color: #60a5fa;
    /* --nav-bg: linear-gradient(90deg, #991b1b 0%, #1f2937 100%); */
    --nav-bg: #f01318;
    --secondary-nav-bg: var(--nav-link-color);
    --btn-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    --nav-link-color: #d1d5db;
    --dropdown-bg: #d1d5db;
    --progress-color: #3b82f6;
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
} */

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Primary Navbar */
.primary-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--nav-height);
    background: var(--nav-bg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-nav.scrolled {
    height: var(--scrolled-nav-height);
    /* background: rgba(255, 77, 77, 0.9); */
    background: #f01318;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dark-mode .primary-nav.scrolled {
    /* background: rgba(153, 27, 27, 0.9); */
    background: #f01318;
}

.primary-nav.hidden {
    transform: translateY(-100%);
}

.logo {
    display: flex;
    align-items: center;
    /* gap: 12px; */
    text-decoration: none;
}

.logo img {
    height: 79px;
    width: 250px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-nav.scrolled .logo img {
    transform: scale(0.9);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    white-space: nowrap;
    transition: font-size 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-nav.scrolled .logo-text {
    font-size: 1.3rem;
}

.nav-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--nav-link-color);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    width: calc(100% - 3rem);
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.3s ease;
}

.nav-links a:hover::after {
    height: 4px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

.account-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.account-btn:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: var(--btn-shadow);
}

.mobile-controls {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.dark-mode-toggle {
    position: relative;
    width: 48px;
    height: 24px;
    border-radius: 12px;
    background-color: #e2e8f0;
    border: none;
    cursor: pointer;
    padding: 0;
}

.dark-mode-toggle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.dark-mode .dark-mode-toggle {
    background-color: #4b5563;
}

.dark-mode .dark-mode-toggle::before {
    transform: translateX(24px);
    background-color: #f3f4f6;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.8rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: rotate(90deg);
}

/* Secondary Navbar */
.secondary-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--secondary-nav-height);
    background-color: var(--secondary-nav-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: var(--nav-height);
    z-index: 99;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dark-mode .secondary-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.primary-nav.scrolled + .secondary-nav {
    top: var(--scrolled-nav-height);
}

.primary-nav.hidden + .secondary-nav {
    top: 0;
}

.secondary-links {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 0;
}

.secondary-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.secondary-item > a {
    text-decoration: none;
    color: var(--Sec-nav-link-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated Progress Border Effect */
.secondary-item > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--progress-color);
    transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.secondary-item:hover > a {
    color: var(--primary-color);
}

.secondary-item:hover > a::before {
    width: 100%;
}

/* Dropdown Styling */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dropdown-bg);
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.secondary-item:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--Sec-nav-link-color);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.dark-mode .dropdown-content a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animated Progress Border for Dropdown Items */
.dropdown-content a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--progress-color);
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.dropdown-content a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.02);
}

.dark-mode .dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.dropdown-content a:hover::before {
    width: 100%;
}


.dark-mode .customer-care {
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.customer-care:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.customer-care::before {
    content: '🛎️';
    font-size: 1rem;
}

/* Mobile Navigation */
.mobile-nav-container {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 98;
    overflow: hidden;
    pointer-events: none;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background-color: var(--bg-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 5% 2rem;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    pointer-events: auto;
}

.primary-nav.scrolled ~ .mobile-nav-container .mobile-nav {
    height: calc(100vh - var(--scrolled-nav-height));
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav a {
    padding: 1rem 0;
    text-decoration: none;
    color: var(--nav-link-color);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.dark-mode .mobile-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Progress Border */
.mobile-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--progress-color);
    transition: width 0.4s ease;
}

.mobile-nav a:hover::before {
    width: 100%;
}

.mobile-nav a:hover {
    color: var(--primary-color);
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    position: sticky;
    bottom: 0;
    background-color: var(--bg-color);
    margin-top: auto;
}

.mobile-account-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    flex-grow: 1;
    text-align: center;
}

.mobile-customer-care {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    flex-grow: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-customer-care::before {
    content: '🛎️';
    font-size: 1rem;
}

/* Custom Scrollbar for Mobile Menu */
.mobile-nav::-webkit-scrollbar {
    width: 6px;
}

.mobile-nav::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-nav::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 3px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-links a, .secondary-item > a {
        padding: 0 1rem;
    }
    
    .nav-links a::after {
        left: 1rem;
        width: calc(100% - 2rem);
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions, .secondary-nav {
        display: none;
    }

    .mobile-controls {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: flex;
    }

    .primary-nav {
        position: fixed;
    }

    .primary-nav.scrolled {
        height: var(--nav-height);
    }
}






















        /* Hide navbar on desktop */
        .mobile-navbar {
            display: none;
            border-radius: 25px 25px 0 0;
        }

        /* Show and style navbar on mobile */
        @media (max-width: 768px) {
            body {
                /* font-family: 'Roboto', sans-serif; */
                margin: 0;
                padding: 0;
            }
            
            .mobile-navbar {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: white;
                box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                padding: 7px 0;
                justify-content: space-around;
            }

            .nav-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-decoration: none;
                color: #555;
                font-size: 12px;
                font-weight: 700; /* Bold text */
                padding: 5px 7px;
                transition: all 0.3s ease;
                transform: translateY(0);
                opacity: 0.7;
                width: 20%;
                text-align: center;
            }

            .nav-item.active,
            .nav-item:hover {
                color: #f01318;
                opacity: 1;
            }

            .nav-item.active .nav-icon,
            .nav-item:hover .nav-icon {
                transform: translateY(-5px) scale(1.1);
            }

            .nav-icon {
                font-size: 24px;
                margin-bottom: 4px;
                transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            }

            /* Animation for navbar appearance */
            @keyframes slideUp {
                from {
                    transform: translateY(100%);
                    opacity: 0;
                }
                to {
                    transform: translateY(0);
                    opacity: 1;
                }
            }

            .mobile-navbar {
                animation: slideUp 0.5s ease-out forwards;
            }

            /* Animation for individual items */
            .nav-item:nth-child(1) { animation-delay: 0.1s; }
            .nav-item:nth-child(2) { animation-delay: 0.2s; }
            .nav-item:nth-child(3) { animation-delay: 0.3s; }
            .nav-item:nth-child(4) { animation-delay: 0.4s; }
            .nav-item:nth-child(5) { animation-delay: 0.5s; }
        }
























.container-fluid {
    display : flex;
    align-items: center;
    justify-content: center;

    height : 100px;
    background: #f01318;
    color: white;
}

#slogan {
    opacity : 50%; 
}


#FdRates {
    height : 80px;
    width : 65px;
    background-color: #c38c20;
    border-top-left-radius: 9px;
    border-bottom-left-radius: 9px;
    position: fixed;
    top : 200px;
    right : 0px;
    /* opacity: 65%; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding : 11px;
    cursor: pointer;
    color : white;
    font-weight: bold;

  }
  
  #chooseProduct {
    height : 80px;
    width : 65px;
    background-color: #c38c20;
    border-top-right-radius: 9px;
    border-bottom-right-radius: 9px;
    position: fixed;
    top : 200px;
    left : 0px;
    /* opacity: 65%; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding : 11px;
    cursor: pointer;
    color : white;
    font-weight: bold;
  }


  #whatsapp {
    position: fixed;
    bottom : 45px;
    left : 25px;
  }


  .Btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: #00d757;
  }
  
  .sign {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sign svg {
    width: 25px;
  }
  
  .sign svg path {
    fill: white;
  }
  .text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1em;
    font-weight: 600;
    transition-duration: 0.3s;
  }
  
  .Btn:hover {
    width: 150px;
    border-radius: 40px;
    transition-duration: 0.3s;
  }
  
  .Btn:hover .sign {
    width: 30%;
    transition-duration: 0.3s;
    padding-left: 10px;
  }
  
  .Btn:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: 0.3s;
    padding-right: 10px;
  }
  .Btn:active {
    transform: translate(2px, 2px);
  }
  




  #QrCodeGif {
    height : 50px;
    width: 50px;
    background-color: #f9471f;
    position: fixed;
    bottom : 115px;
    right : 25px;
    scroll-behavior: smooth;
    scroll-padding : 50px; 

  }



  


































.button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: #003366;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 1.5px solid white;
    outline: none;
    overflow: hidden;
    font-size: 15px;
  }
  
  .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
  }
  
  .button:hover {
    transform: scale(1.05);
    border-color: #fff9;
  }
  
  .button:hover .icon {
    transform: translate(4px);
  }
  
  .button:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }









  .CustButton {
    width: fit-content;
    display: flex;
    padding: 0.4em 1.1em;
    gap: 0.4rem;
    border: none;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    text-shadow: 2px 2px 3px rgb(136 0 136 / 50%);
    background: linear-gradient(
        15deg,
        #880088,
        #aa2068,
        #cc3f47,
        #de6f3d,
        #f09f33,
        #de6f3d,
        #cc3f47,
        #aa2068,
        #880088
      )
      no-repeat;
    background-size: 300%;
    background-position: left center;
    transition: background 0.3s ease;
    color: #fff;
  }
  
  .CustButton:hover {
    background-size: 320%;
    background-position: right center;
  }
  
  .CustButton:hover svg {
    fill: #fff;
  }
  
  .CustButton svg {
    width: 23px;
    fill: #f09f33;
    transition: 0.3s ease;
  }
  
  
  

























.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
  }

  





  .metrophobic-regular {
    font-family: "Metrophobic", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  