/* Add spacing to experience slider on desktop and mobile */
.ex-slider {
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}
/* HERO SECTION LAYOUT FIX */
.hero {
    position: relative;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 700px;
    min-height: 600px;
    max-height: 90vh;
    gap: 10px;
    background: url(assets/hero_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0%;
    overflow: hidden;
}


.hero-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}



/* Ensure image is bottom-aligned and centered */
.hero picture {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: auto;
    pointer-events: auto;
}



.hero-image,
#heroHeading {
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image.fade,
#heroHeading.fade {
    opacity: 0;
}

.hero-image.show,
#heroHeading.show {
    opacity: 1;
}


/* --- Slider Dots Styling --- */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 18px;
    margin-bottom: 10px;
    /* min-height: 24px; */
}

.slider-dots .mob-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D9D9D9;
    transition: background 0.3s, width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.04); */
    cursor: pointer;
/* transform: scale(1); */
}

.slider-dots .mob-dot.active {
    background: #f05a28;
    /* box-shadow: 0 4px 12px #F94C1B; */
    /* transform: scale(1.75); */
    width: 12px;
    height: 12px;

}

.desktop-br {
    display: inline;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --para-size: 14px;
    --heading-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdf6f3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
}


.header-container {
    margin-top: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 18px;
}

.navbar {
    position: relative;
    max-width: 1220px;
    margin: 0 auto;
    height: 52px;
    border-radius: 999px;
    /* background: linear-gradient(90deg, #ecd4cb 0%, #f3eddc 100%); */
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 0 26px;
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.05); */
}

/* Equal Space Alignment for Desktop */
.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    flex: 1;
    /* Both sides take up equal space */
}

.nav-left {
    justify-content: flex-start;
    gap: 120px;
    /* Adjust this to change spacing between Home & Products */

}

.nav-right {
    justify-content: flex-end;
    gap: 120px;
    /* Adjust this to change spacing between Contact & Buy Now */
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 200px;
    /* Equal gap applied */
}

.nav-menu a {
    text-decoration: none;
    color: #4f4946;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 5%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.dropdown:hover>a {
    color: #ce0018;
}

/* Arrows */
.arrow {
    border: solid currentColor;
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 2.5px;
    margin-left: 7px;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

.arrow.down {
    transform: rotate(45deg);
}

.arrow-light {
    border-color: #fff;
}

.dropdown:hover .arrow.down {
    transform: rotate(-135deg) translateY(-2px);
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: -20px;
    background-color: #fdf6f3;
    list-style: none;
    padding: 10px;
    border-radius: 10px;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.dropdown-menu.align-right {
    left: auto;
    right: 0;
    min-width: 220px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin-bottom: 5px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 11px;
    color: #4f4946;
    display: block;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active-item {
    background-color: #f05a28;
    color: #ffffff;
}

/* Center Logo */
.nav-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -40%);
    z-index: 12;
}

.logo {
    height: 112px;
    /* Desktop pop-up size */
    width: auto;
    display: block;
}

/* Buy Now Button */
.buy-now-btn {
    border: none;
    border-radius: 999px;
    background: #D70F14;
    text-decoration: none;

    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    padding: 12px 17px;
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.buy-dropdown:hover .buy-now-btn {
    background: #aa0014;
    text-decoration: none;
}

/* White Button with Hover Animation */
.btn-white {
    background: white;
    color: #333;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    margin: 0 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-white:hover {
    transform: translateY(-3px);
    background-image: url(assets/everygi.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    background-color: #D70F14;
    color: #fff;
    transition: 0.3s;
}

/* --- Mobile Menu & Responsive Styling --- */
.hamburger {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #D70F14;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fdf6f3;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding-top: 80px;
    transition: left 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0 25px;
}

.mobile-nav-list>li {
    border-bottom: 1px solid #ebd8d0;
}

.mobile-nav-list>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    text-decoration: none;
    color: #4f4946;
    font-size: 14px;
    font-weight: 700;
}

.mobile-dropdown-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-trigger.active .mobile-dropdown-menu {
    max-height: 250px;
    margin-bottom: 15px;
}

.mobile-dropdown-trigger.active>a .arrow.down {
    transform: rotate(-135deg);
}
.mobile-dropdown-menu li{
    font-weight: 600 !important;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #4f4946;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600 !important;
    border-radius: 6px;
}

.mobile-dropdown-menu a.active-item,
.mobile-dropdown-menu a:hover {
    background-color: #f05a28;
    color: white;
}


/* ______________hero____________ */


.hero {
    padding-top: 100px;
    /* margin-top: 150px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* max-height: 400px; */
    /* justify-content: center; */

    height: 500px;
    gap: 10px;
    background: url(assets/hero_bg.png);
    background-repeat: no-repeat;
    /* background-position: center 20%; */
    background-size: cover;
    background-position: 50% 0%;
}

.hero h1 {
    font-size: 28px;
    color: #fff;
    font-size: 55px;
    font-weight: 500;
    text-align: center;
    letter-spacing: -5%;
    text-transform: uppercase;
}

/* .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;    } */


.hero picture {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero .mobile-break {
    display: none;
}

.hero-image img {
    width: 100%;
    /* max-width: 600px; */
    height: auto;
}



/* ____________our_portfolio____________ */

.our-portfolio {
    /* padding: 40px 0; */
    text-align: center;
}

.our-portfolio .portfolio-heading {
    font-size: 28px;
    color: #493E34;
    font-size: 45px;
    font-weight: 500;
    text-align: center;
    /* letter-spacing: -2px; */
    text-transform: uppercase;
}

.our-portfolio .portfolio-heading span {
    color: #F94C1B;
}

.our-portfolio .portfolio-slider {
    width: 100%;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
}

.portfolio-slider .portfolio-card {
    width: 685px;
    height: 494px;
    flex-shrink: 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.portfolio-slider .portfolio-card .card-bg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.portfolio-slider .portfolio-card .card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.know-more-btn {
    margin-top: 18px;
    /* padding: 10px 28px; */
    width: 134px;
    background: #fff;
    color: #493E34;
    border: none;
    border-radius: 999px;
    font-weight: 500;
    height: 47px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    align-self: flex-start;
}

.know-more-btn:hover {
    background: #f05a28;
    color: #fff;
}
.ex-slider {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.portfolio-card .card-content {
    position: absolute;
    left: 0;
    bottom: 10%;
    z-index: 3;
    padding: 22px 0 0 32px;
    background: none;
    color: #fff;
    font-size: 13px;
    list-style: none;
    box-sizing: border-box;
    /* width: 300px; */
    max-width: 80%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.portfolio-card .card-content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #fff;
    align-items: start;
    line-height: 1.4;
    max-width: 100%;
    font-weight: 500;
    text-align: left;
    word-break: break-word;
}

.card-content .powder-sub-item {
    padding-left: 22px;
    margin-bottom: 4px;
    gap: 8px;
}

.card-content .dot-circle {
    display: inline-block;
    width: 4px;
    height: 4px;
    min-width: 4px;
    border-radius: 50%;
    background: #fff;
    margin-top: 6px;
    flex-shrink: 0;
}

.card-content .powder-ul {
    list-style-type: disc !important
}

.portfolio-card .card-logo {
    position: absolute;
    top: 35px;
    left: 5%;
    /* transform: translateX(-50%); */
    width: 146px;
    height: auto;
}

.portfolio-card .product-img {
    position: absolute;
    bottom: 20px;
    right: 5%;
    /* transform: translateX(-50%); */
    width: auto;
    height: auto;
}

/* Individual product image widths — desktop (nth-child order: recharge, powder, activon, immunovolt) */
.portfolio-slider .portfolio-card:nth-child(1) .product-img {
    width: 221px;
}

.portfolio-slider .portfolio-card:nth-child(2) .product-img {
    width: 179px;
}

.portfolio-slider .portfolio-card:nth-child(3) .product-img {
    width: 147px;
}

.portfolio-slider .portfolio-card:nth-child(4) .product-img {
    width: 110px;
}

/* Nested list inside Glucose Powder card */
.portfolio-card .card-content li ul {
    list-style: disc;
    padding-left: 16px;
    margin-top: 4px;
    display: block;
}

.portfolio-card .card-content li ul li {
    display: list-item;
    font-size: 13px;
    color: #fff;
    margin-bottom: 2px;
    gap: 0;
}

.discover-btn {
    background-color: #D70F14;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    font-family: poppins, sans-serif !important;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    width: 145px;
    height: 48px;
    letter-spacing: 6%;

    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    margin: 30px auto 0;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-decoration: none;
}
.portfolio-slider {
  scrollbar-width: none;        
  -ms-overflow-style: none;     
  
  -webkit-overflow-scrolling: touch;

  overflow-x: auto;
}
.portfolio-slider::-webkit-scrollbar {
  display: none;               
}

.experience {
    /* height: 100vh; */
    padding: 40px 0;
    text-align: center;
    background: #fdf6f3;
}

.experience .ex-slider {
    /* height: 100vh; */
}

.experience-heading {
    font-size: 45px;
    font-weight: 500;
    color: #493E34;
    text-align: center;
    letter-spacing: 2%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.experience-heading span {
    color: #F94C1B;
}

.ex-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
      display: flex;
    align-items: flex-start;
    gap: 20px;
    /* padding: 20px 40px; */
    padding: 20px 20px;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE and Edge */
}

.ex-slider::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
}

.ex-image {
    min-width: 250px;
    flex-shrink: 0;
    position: relative;
    width: 338px;
    border-radius: 20px;
    overflow: hidden;
    height: 537px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ex-image:hover {
    transform: scale(1.02);
}

.ex-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ex-image:hover .play-btn {
    /* background: rgba(249, 76, 27, 0.8); */
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn img {
    width: 64px !important;
    height: auto !important;
    display: block;
}



.ex-slider  :nth-child(even) {
    /* transform: translateY(35px); */
    margin-top: 35px;
}

.dots{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    /* margin-top: 18px; */
}
.dots-container {
    margin: 20px auto;

  display: flex;
  align-items: center; /* Keeps the dots vertically centered with each other */
  gap: 32px; /* Adjust this value to increase or decrease spacing between dots */
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #E0E0E0; /* Light gray for inactive dots */
}

.dot.active {
  width: 12px;
  height: 12px;
  background-color: #F14921; /* Orange/Red for the active dot */
}


/* ========== FOOTER ========== */
footer {
    background-color: transparent;
    padding: 40px 20px 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 40px;
    gap: 30px;
}
.footer-col.left {
    flex: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.footer-col.left img {
    margin-top: 5px;
}
.footer-col.left p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.footer-col.center {
    flex: 1;
    display: flex;
    justify-content: center;
}
.footer-col.center img {
    width: 180px;
    max-width: 100%;
}
.footer-col.right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}
.footer-links {
    display: flex;
    gap: 25px;
}
.footer-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.footer-ai-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #555;
}
.ai-star {
    background: #F25424;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}
.footer-bottom {
    background: #F25424;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}
.socials {
    display: flex;
    gap: 20px;
}
.socials a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.socials a:hover {
    opacity: 0.8;
}
.foot-right,
.foot-left {
    display: flex;
    align-items: center;
}
.foot-left span,
.foot-right a,
.foot-right span {
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.foot-right a {
    margin-right: 30px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #00c853;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.2); */
    z-index: 100;
}
