*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "myriad-pro", sans-serif;
    font-style: normal;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: rgb(0, 0, 0);
}
/* FULLSCREEN LOADER */
#loader{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:0.5s ease;
}
.dots{
    display: flex;
    justify-content: center;
    align-items: center;
}
.dots span{
    position: absolute;
    top: 50%;
    height: 8px;
    width: 8px;
    background: rgb(228, 0, 0);
    border-radius: 50%;
    transform: rotate(calc(var(--i) * (360deg / 15))) translateY(35px);
    animation: animate 1.5s linear infinite;
    animation-delay: calc(var(--i) * 0.1s);
    opacity: 0;
}
@keyframes animate{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
/* HIDE PAGE INITIALLY */
#page-content{
    opacity: 0;
    filter: blur(10px);
    transition: all 0.6s ease;
}
/* scroll button*/
#progress{
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 45px;
    color: white;
    height: 45px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0,0,10px rgb(225, 222, 216);
    cursor: pointer;
    z-index: 9999;
}
#progress-value{
    display: block;
    height: calc(98% - 3px);
    width: calc(98% - 3px);
    background-color: #000000;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    z-index: 9999;
}
/*styling top-footer */
#top-footer {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.1s ease; /* faster + smoother than AOS */
}
/* active state */
#top-footer.show {
  opacity: 1;
  transform: translateY(0);
}
.top-footer{
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    height: 40px;
    z-index: 9999;
    position: relative;
}
.top-footer .box{
    position: relative;
    padding: 10px 0;
    display: flex;
    
}
.top-footer .box .icon{
    min-width: 35px;
    height: 23px;
    color: #ff0000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}
.top-footer .box .text-1{
    display: flex;
    height: 10px;
    color: #000000;
    text-overflow: ellipsis;
}
.top-footer .box .text-1 a{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 300;
    font-size: 15px;
}
.top-footer .box .text-1 a:hover{
    color: #ffffff;
}
.social-link-list{
    display: flex;
    margin-left: 580px;
    align-items: center;
}
.social-link-list i{
    color: #ff0000;
}
.social-link-list p{
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 300;
    font-size: 15px;
    gap: 10px;
}
.social-link-list p:hover{
    color: #ffffff;
}
/* HEADER */
.main-header {
    width: 100%;
    height: 70px;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 0 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 9999;
}
.main-header.scrolled {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
/* LOGO */
.main-header .logo {
    width: 85px;
    display: block;
}
/* NAV */
header ul {
    display: flex;   /* 🔥 replaces float */
    align-items: center;
    gap: 10px;
}
/* REMOVE FLOAT */
header ul li {
    list-style: none;
}
/* LINKS */
header ul li a {
    color: #fff;
    font-size: 16px;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}
/* HOVER */
header ul li a:hover {
    color: #ff0000;
}
/* BUTTON (your <a>) */
.dropdown .dropbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: 0.3s ease;
}
/* HOVER EFFECT */
.dropdown .dropbtn:hover {
    color: #ff0000;
    border-radius: 4px;
}
/* ICON */
.dropdown .dropbtn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}
/* ROTATE ICON WHEN ACTIVE */
.dropdown.active .dropbtn i {
    transform: rotate(180deg);
}
/* DROPDOWN */
.dropdown {
    position: relative;
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(10px);
    min-width: 220px;
    border-radius: 5px;
    overflow: hidden;
}
/* DROPDOWN LINKS */
.dropdown-content li a {
    display: block;
    padding: 12px 15px;
    font-size: 16px;
}
/* SHOW DROPDOWN */
.dropdown:hover .dropdown-content {
    display: block;
}
/* DROPDOWN HOVER */
.dropdown-content li a:hover {
    color: #ff0000;
}
/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    text-decoration: none;
}
/* icon */
.whatsapp-float i {
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
    /* Pulse effect */
    animation: pulse 2s infinite;
}
/* Hover effect */
.whatsapp-float i:hover {
    transform: scale(1.1);
}
/* Pulse animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* TEXT */
.whatsapp-text {
    left: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    background: #25D366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
}
/* Small speech bubble arrow */
.whatsapp-text::after {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent #25D366 transparent transparent;
}
/* SHOW */
.whatsapp-float.show .whatsapp-text {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
/* Slides */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: -1;
}
.slide.active {
    opacity: 1;
}
/* Overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 13, 15, 0.763); /* dark overlay */
    z-index: 0;
}
/* Content */
.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.typing {
    color: #ffffff;
    border-right: 2px solid #ffffff;
    padding-right: 5px;
    animation: blink 0.7s infinite;
}
@keyframes blink {
    0% { border-color: transparent; }
    50% { border-color: #ffffff; }
    100% { border-color: transparent; }
}
/* CTA container */
.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    flex-wrap: wrap;
}

/* Base Button */
.btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
/* Primary CTA (main action) */
.btn.primary {
    background: #ff0000;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 46, 46, 0.3);
}
.btn.primary:hover {
    background: #f15149;
    transform: translateY(-3px);
}
/* Secondary CTA (WhatsApp) */
.btn.secondary {
    background: #00b029;
    color: #fff;
}
.btn.secondary:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}
/*featured products*/
.featured-products {
    padding: 60px 20px;
    text-align: center;
}
.featured-products h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}
.section-subtext {
    color: #ffffff;
    margin-bottom: 40px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
/* IMPORTANT: make badge position correctly */
.product-card {
    position: relative;
    border-radius: 1px;
    border: 1px solid rgb(0, 0, 0);
    padding: 20px;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden; /* keeps badge clean inside */
}
.product-card:hover {
    transform: translateY(-5px);
}
/* BADGE STYLING */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff3b3b, #ff7a18);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 2; animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}
/* OPTIONAL VARIANTS */
.badge.new {
    background: #007bff;
}
.badge.sale {
    background: #28a745;
}
/* IMAGE */
.product-card img {
    width: 85%;
    object-fit: cover;
    border-radius: 1px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.product-card:hover img {
    transform: scale(1.05);
}
.product-card h3 {
    margin-bottom: 10px;
    color: white;
}
.product-card p {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 10px;
}
.qty-control {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.qty {
    width: 40px;
    text-align: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}

.qty-btn {
    background: #ddd;
    border: none;
    padding: 5px 12px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: 0.2s;
}

.qty-btn:hover {
    background: #ff0000;
    color: #fff;
}
/* BUTTONS */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff0000;
    color: #fff;
    font-weight: 400;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}
.btn:hover {
    background: #444;
}
.product-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.whatsapp-btn {
    background: #25D366;
    color: #fff;
    font-weight: 400;
}
.whatsapp-btn:hover {
    background: #1ebe5d;
}
/*certified*/
/* CERTIFIED SECTION */
.edge {
    padding: 60px;
    position: relative;
}
/* Container */
.edge .box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* 🔥 allows wrapping on small screens */
}
/* Individual item */
.edge .box .item {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Icon */
.edge .box .icon {
    font-size: 22px;
    color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Text */
.edge .box .text-1 {
    font-size: 16px;
    color: #ffffff;
    white-space: nowrap;
}
/* Tablet */
@media (max-width: 768px) {
    .edge .box {
        gap: 20px;
    }

    .edge .box .text-1 {
        font-size: 15px;
    }
}
/* Mobile */
@media (max-width: 480px) {
    .edge .box {
        flex-direction: column; /* 🔥 stack vertically */
        align-items: center;
    }

    .edge .box .item {
        width: 100%;
    }

    .edge .box .text-1 {
        font-size: 14px;
        white-space: normal; /* 🔥 allows wrapping */
    }
}
/*passionate*/
.sticky-bg {
  position: relative;
  padding: 70px 3%;
  background: url("Images/cf8bd3abf7ffd89326226f62a1fd30a91.jpg") center/cover no-repeat;
  background-attachment: fixed; /* 🔥 magic */
}
.bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.content {
  position: relative;
  z-index: 2;
  height: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.content h2{
  font-size: 45px;
  text-shadow: 1px 2px 1px rgba(20, 20, 20, 0.8);
  font-weight: 400;
  margin-bottom: 30px;
}
.content p{
  font-size: 25px;
  text-shadow: 1px 2px 1px rgba(20, 20, 20, 0.8);
  margin-bottom: 50px;
}
.box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.box-content{
    box-shadow: 0px 1px 2px rgb(10, 10, 10);
    background: rgb(255, 255, 255);
    text-align: center;
    padding: 30px 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}
.box-content:hover{
    transform: translateY(-10px);
}
.box-content h3{
    color: rgb(0, 0, 0);
    font-size: 19px;
    padding: 10px 0;
    font-weight: 430;
}
.box-content p{
    font-size: 16px;
    line-height: 20px;
    color: black;
}
.box-content img{
    width: 50px;
    color: white;
}
/*footer*/
.footer{
    background:#262626;
    padding:60px 8% 25px;
    color:#dfdfdf;
}
/* CONTAINER */
.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
    margin-bottom:40px;
}
/* LOGO */
.logo h3{
    font-size:25px;
    font-weight:700;
    margin-bottom:15px;
}
.logo img{
    width: 80px;
    color:#ffffff;
    margin-right:6px;
}
/* TEXT */
.footer-col p{
    font-size:15px;
    line-height:1.6;
    margin-bottom:8px;
    color:#dfdfdf;
}
/* HEADINGS */
.footer-col h4{
    margin-bottom:15px;
    font-size:16px;
    font-weight:600;
}
/* LINKS */
.footer-col ul{
    list-style:none;
    padding:0;
}
.footer-col ul li{
    margin-bottom:8px;
}
.footer-col ul li a{
    text-decoration:none;
    color:#dfdfdf;
    font-size:16px;
    transition:0.3s;
}
.footer-col ul li a:hover{
    color:#ff0000;
}
/* BOTTOM FOOTER */
.footer-bottom{
    border-top:1px solid #ddd;
    padding-top:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
}
.footer-bottom p{
    font-size:16px;
    color:#dfdfdf;
}
.footer-bottom a{
    text-decoration: none;
    color: orangered;
}
/* FOOTER LINKS */
.footer-links a{
    margin:0 10px;
    font-size:16px;
    color:#dfdfdf;
    text-decoration:none;
}
.footer-links a:hover{
    color:#ff0000;
}
/* SOCIAL ICONS */
.social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration: none;
    width:32px;
    height:32px;
    border:1px solid #ccc;
    border-radius:50%;
    margin-left:10px;
    color:#ffffff;
    font-size:14px;
    transition:0.3s;
}
.social-icons a:hover{
    background:#de3202;
    color:white;
    border-color:#b8964c;
}
/* responsiveness */
@media (max-width: 1115px){
    .social-link-list{
        margin-left: 320px;
    }
    .main-header .logo{
        width: 85px;
        
    }
    nav ul li a {
        text-decoration: none;
        color: #ffffff;
        font-size: 17px;
        transition: color 0.3s;
    }
    .dropdown-content li a {
        display: block;
        padding: 12px 15px;
        font-size: 17px;
    }
}
@media (max-width: 1050px){
    .social-link-list{
        margin-left: 330px;
    }
}
@media (max-width: 1000px){
    .social-link-list{
        margin-left: 250px;
    }
}
@media (max-width: 950px){
    .social-link-list{
        margin-left: 190px;
    }
    .main-header .logo{
        width: 75px;
    }
    header ul li a {
        font-size: 15px;
    }
    .dropdown .dropbtn i {
        font-size: 15px;
    }
    .dropdown-content li a {
        font-size: 15px;
    }
}
@media (max-width: 900px){
    /* Hide top footer */
    .top-footer {
        display: none;
    }

    /* Header */
    .main-header {
        padding: 10px 20px;
        position: sticky; /* important for nav positioning */
    }

    .main-header .logo {
        width: 90px;
    }

    /* ===== MOBILE NAV CONTAINER ===== */
    header nav {
        position: absolute;
        top: 70px; /* fixed under header */
        left: 0;
        right: 0; /* ensures full width */
        width: 100%;
        background: rgba(17, 17, 17, 0.85);
        backdrop-filter: blur(10px);
        display: none;
        z-index: 1000;
        text-align: center;
        padding: 20px 0;
    }

    /* Show menu when active */
    header.active nav {
        display: block;
    }

    header.active {
    background: rgba(17, 17, 17, 0.85) !important;
    backdrop-filter: blur(10px); 
    }

    /* ===== NAV LIST ===== */
    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    header nav ul li {
        list-style: none;
        width: 100%;
    }

    header nav ul li a,
    .dropdown .dropbtn {
        display: block;
        width: 100%;
        color: #fff;
        font-size: 16px;
        padding: 15px 0;
        text-decoration: none;
        cursor: pointer;
    }

    header nav ul li a:hover {
        color: rgb(255, 0, 0);
        background-color: transparent;
    }

    /* ===== DROPDOWN ===== */
    .dropdown {
        position: static;
        width: 100%;
    }

    .dropdown-content {
        display: none;
        position: static;
        color: #fff;
        text-align: center;
        width: 100%;
    }

    /* Disable hover on mobile */
    .dropdown:hover .dropdown-content {
        display: none !important;
    }

    /* Show dropdown when active (JS controlled) */
    .dropdown.active .dropdown-content {
        display: block !important;
    }

    .dropdown-content li a {
        padding: 12px 16px;
        color: #fff;
        font-size: 15px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    /* Dropdown button */
    .dropdown .dropbtn {
        font-size: 16px;
        gap: 50px;
        background: none;
        border: none;
        color: #fff;
    }

    .dropdown .dropbtn i {
        font-size: 16px;
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    /* Remove tap highlight */
    .dropdown .dropbtn,
    .dropdown .dropbtn:focus,
    .dropdown .dropbtn:active {
        outline: none;
        box-shadow: none;
        -webkit-tap-highlight-color: transparent;
    }
    .dropdown-content li a:hover {
        color: #ff0000;
    }
    /* ===== HAMBURGER ===== */
    .menuToggle {
        position: relative;
        width: 40px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menuToggle::before,
    .menuToggle::after {
        content: '';
        position: absolute;
        width: 70%;
        height: 2px;
        background: #fff;
        transition: 0.3s ease;
    }
    .menuToggle::before {
        transform: translateY(-10px);
        box-shadow: 0 10px #fff;
    }
    .menuToggle::after {
        transform: translateY(10px);
    }
    /* Transform to X */
    header.active .menuToggle::before {
        transform: rotate(45deg);
        box-shadow: none;
    }
    header.active .menuToggle::after {
        transform: rotate(-45deg);
    }
    .footer-container{
        grid-template-columns:1fr;
        gap:40px;
    }
    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}