/* ========================================================================== 
   EnerBless Detail Page Styles
   Maintaining consistency with existing design language
   ========================================================================== */

/* Detail Page Specific Variables */
:root {
    --primary-pink: #D3137E;
    --secondary-orange: #f48620;
    --dark-bg: #0f1419;
    --dark-secondary: #1a2332;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
}

/* Clean Simple Hero Section */
.detail-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #243447 50%, #2e4057 75%, #1a2332 100%);
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(211, 19, 126, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 134, 32, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    
    padding-right: 2rem;
}

/* Brand Section */
.brand-section {
    margin-bottom: 0.5rem;
    width: 100%;
    float: left;
    text-align: left;
}

.hero-content .brand-logo {
    height: 59px;
    filter: drop-shadow(0 10px 20px rgba(211, 19, 126, 0.3));
}

/* Hero Title */
.hero-title {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-align: left;
    float: left;
    width: 100%;
}

.title-primary {
    display: block;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.title-secondary {
    display: block;
    font-size: 43px;
    font-weight: bold;
    color: #ffffff;
    /* background: linear-gradient(135deg, #D3137E, #f48620);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    line-height: normal;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
    max-width: 500px;
    text-align: left;
    float: left;
    width: 100%;
}

/* Hero CTA - Simple Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #D3137E, #f48620);
    color: white;
    box-shadow: 0 12px 40px rgba(211, 19, 126, 0.3);
    border: 2px solid transparent;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(211, 19, 126, 0.5);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Hero Visual - Clean Product Display */
.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Simple Product Showcase */
.product-showcase {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-container {
    position: relative;
    margin-bottom: 2rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.product-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.product-image {
    /* max-height: 450px; */
    width: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    transform-style: preserve-3d;
  transition: transform 0.15s ease;
  pointer-events: none;
}

/* .product-image:hover {
    transform: scale(1.05);
} */

/* Floating Background Glow */
.product-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(211, 19, 126, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Simple Stats */
.stats-simple {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    float: left;
    align-items: stretch;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(211, 19, 126, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #D3137E, #f48620);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Animation Classes for WOW.js */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInLeft {
    animation-name: fadeInLeft;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__fadeInRight {
    animation-name: fadeInRight;
}


.about .hero-section.hero-bg-image
{
        background: url(../images/about-banner.png) no-repeat !important;
        background-position: center center !important;
        background-size: cover !important;
        padding: 150px 0px 0px;
        /* overflow: hidden; */
        width: calc(100% - 0px);
        margin-left: 0px;
        margin-right: 0px;
        height: 670px;
}

.about .hero-section.hero-bg-image .hero-content
{
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    transform:unset;
    padding-top: 100px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


sup a{
    color: #fff;
    text-decoration: none;
}

sup a:hover, sup a:focus{
    color: #fff;
    text-decoration: underline;
}


.section-title sup{left: 2px;}
.section-title sup a{
    font-size:40%;
    vertical-align: super;
    /* text-decoration: underline; */
}

.selenm-ico{
          width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: absolute;
    top: -30px;
    left: 55px;
    transform: translateX(-50%);
    border: 4px solid #1a2332;
}


.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(147, 51, 234, 0.02) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    
    padding-right: 0rem;
    display: block;
}

/* Professional Header */
.professional-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.brand-logo-section .professional-logo {
    height: 90px;
    filter: none;
}

.certification-badges {
    display: flex;
    gap: 1rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cert-badge i {
    color: #059669;
    font-size: 1rem;
}

/* Professional Typography */
.professional-title {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.title-sub {
    display: block;
    font-size: 2.8rem;
    font-weight: 600;
    color: #3b82f6;
    font-family: 'Inter', sans-serif;
}

.professional-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.professional-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2.5rem;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    text-align: justify;
}

/* Key Benefits Grid */
.key-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #f1f5f9;
    border-left-color: #2563eb;
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: #3b82f6;
    font-size: 1.3rem;
}

.benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.benefit-text p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Professional CTA */
.professional-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-professional-primary,
.btn-professional-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.btn-professional-primary {
    background: #3b82f6;
    color: white;
    border: 2px solid #3b82f6;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.25);
}

.btn-professional-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-professional-secondary {
    background: transparent;
    color: #475569;
    border: 2px solid #cbd5e1;
}

.btn-professional-secondary:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    transform: translateY(-2px);
    color: #334155;
}

/* Professional Visual */
.professional-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 2rem 0;
}

.product-display-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image-wrapper {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.professional-product-image {
    max-height: 400px;
    width: auto;
    display: block;
}

/* Clinical Data Cards */
.clinical-data-cards {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.data-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 160px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.data-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.data-icon {
    width: 45px;
    height: 45px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.data-icon i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.data-content {
    display: flex;
    flex-direction: column;
}

.data-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.data-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Medical Certification */
.medical-certification {
    margin-top: 2rem;
}

.cert-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon i {
    color: #059669;
    font-size: 1.5rem;
}

.cert-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
}

.cert-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Ingredients Section */
.ingredients-section {
    padding: 6rem 0rem 3rem;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #243447 50%, #1a2332 100%);
    position: relative;
    color: #ffffff;
    width: 100%;
    float: left;
    background-image: url(../images/ingrd-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ingredients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(211, 19, 126, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 134, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.ingredient-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d3137e, #f48620);
}

.ingredient-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 80px rgba(211, 19, 126, 0.2);
}

.ingredient-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.ingredient-name {
    font-size: 23px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.ingredient-dose {
    color: #f48620;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.ingredient-benefit {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 17px;
}

.ingredient-research {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ingredient-research small {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Benefits Timeline Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a2332 0%, #243447 25%, #2e4057 50%, #243447 75%, #1a2332 100%);
    position: relative;
    color: #ffffff;    
    width: 100%;
    float: left;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(211, 19, 126, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(244, 134, 32, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-timeline {
    margin-top: 1rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    
    width: 100%;
    float: left;
}

.benefits-timeline::before {
    content: '';
    position: absolute;
    left: 0%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #d3137e, #f48620);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    min-height: 120px;
    width: 100%;
    float: left;
    border-bottom: 0px !important;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: absolute;
    left: 0%;
    transform: translateX(-50%);
    border: 4px solid #1a2332;
    top: 10px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    width: 42%;
    margin: 0 4%;
    position: relative;
    float: left;
}
/* 
.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 4%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 4%;
    margin-right: auto;
} */

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.timeline-content p {
    color: #eaeaea;
    line-height: 1.5;
    margin-bottom: 0px;
    font-size: 17px;
}

.timeline-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-stats .stat {
    background: rgba(244, 134, 32, 0.2);
    color: #f48620;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Research Section */
.research-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #243447 50%, #1a2332 100%);
    position: relative;
    color: #ffffff;
    width: 100%;
    float: left;
    background-image: url(../images/bg-mode.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
}

.research-section#Selenium{
    
    background-image: none;
    background-repeat: no-repeat;
}

.research-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(211, 19, 126, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(244, 134, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}
#benefits .research-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

/* First row: 3 cards */
#benefits .research-card:nth-child(1),
#benefits .research-card:nth-child(2),
#benefits .research-card:nth-child(3) {
  grid-column: span 2;
}

/* Second row: centered 2 cards */
#benefits .research-card:nth-child(4) {
  grid-column: 2 / span 2;
}

#benefits .research-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.research-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 25px;
}

.research-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}


#research .research-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

/* First 6 cards → normal 3 per row */
#research .research-card {
  grid-column: span 2;
}

/* Last card → perfectly centered */
#research .research-card:nth-child(7) {
  grid-column: 3 / span 2;
}

#benefits .research-card{
        padding: 50px 20px 15px 20px;
        flex-direction: column;
        justify-content: flex-start;
}

#benefits .research-card .selenm-ico{
       left: 50%;
}

#benefits .research-card h3, #benefits .research-card p{text-align: center;}

.ref-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #243447 50%, #1a2332 100%);
    position: relative;
    color: #ffffff;
    width: 100%;
    float: left;
}

.ref-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(211, 19, 126, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(244, 134, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.ref-section h5{
    font-size: 18px;
    text-align: left;
    color: #ddd;
    margin-top: 20px;
}


.ref-section p{
    font-size: 13px;
    text-align: left;
    color: #ddd;
    margin-bottom: 3px;
}


#Selenium .research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 0fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

#Selenium .research-card {
       background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 50px 25px 30px;
    transition: all 0.3s ease;
    position: relative;
    /* overflow: hidden; */
}

#Selenium .research-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}
/* 
#Selenium .research-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d3137e, #f48620);
} */


.research-type {
    margin-bottom: 0rem;
}

.badge-research {
    background: linear-gradient(135deg, #d3137e, #f48620);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.research-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.research-card p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 5px;
    font-size: 16px;
}

.research-card ul {
    padding-left: 1rem;
    font-size: 16px;
}

.research-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.detail-item i {
    color: #f48620;
}

/* Research Summary */
.research-summary {
    margin-top: 4rem;
}

.summary-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.summary-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.findings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.finding-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    color: #ffffff;
}

.finding-item i {
    color: #f48620;
    font-size: 1.2rem;
    min-width: 20px;
}

/* Dosage Section */
.dosage-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #243447 0%, #2e4057 25%, #1a2332 50%, #0f1419 75%, #1a2332 100%);
    position: relative;
    color: #ffffff;
    width: 100%;
    float: left;
}

.dosage-section.lcarnitine{
        background-image: url(../images/bg-sperm.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;}

    .dosage-section#Zinc{       
         background-image: url(../images/bg-zinc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top bottom;}

        .dosage-section#larginine{       
         background-image: url(../images/bg-arginine.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top bottom;}

.dosage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 40%, rgba(211, 19, 126, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(244, 134, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.dosage-content {
    position: relative;
    
}

.dosage-info {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.dosage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: all 0.3s ease;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
}

.dosage-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.dosage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.dosage-text h4 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

.dosage-text p {
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

/* Timeline Visual */
.dosage-visual {
    position: relative;
}

.dosage-image-container {
    margin-bottom: 2rem;
    text-align: center;
}

.dosage-timeline-image {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.timeline-visual {
    /* background: rgba(255, 255, 255, 0.08); */
    /* backdrop-filter: blur(20px); */
    /* border: 1px solid rgba(255, 255, 255, 0.12); */
    /* border-radius: 20px; */
    /* padding: 20px 30px; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
    gap: 1rem;
}
    
    
/* ========================================================================== 
   EnerBless Detail Page Styles
   Maintaining consistency with existing design language
   ========================================================================== */

/* Detail Page Specific Variables */
:root {
    --primary-pink: #D3137E;
    --secondary-orange: #f48620;
    --dark-bg: #0f1419;
    --dark-secondary: #1a2332;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
}

/* Clean Simple Hero Section */
.detail-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #243447 50%, #2e4057 75%, #1a2332 100%);
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(211, 19, 126, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 134, 32, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    padding-right: 2rem;
}

/* Brand Section */
.brand-section {
    margin-bottom: 0.5rem;
    width: 100%;
    float: left;
    text-align: left;
}

.hero-content .brand-logo {
    height: 59px;
    filter: drop-shadow(0 10px 20px rgba(211, 19, 126, 0.3));
}

/* Hero Title */
.hero-title {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-align: left;
    float: left;
    width: 100%;
}

.title-primary {
    display: block;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.title-secondary {
    display: block;
    font-size: 43px;
    font-weight: bold;
    color: #ffffff;
    /* background: linear-gradient(135deg, #D3137E, #f48620);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    line-height: normal;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
    max-width: 500px;
    text-align: left;
    float: left;
    width: 100%;
}

/* Hero CTA - Simple Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #D3137E, #f48620);
    color: white;
    box-shadow: 0 12px 40px rgba(211, 19, 126, 0.3);
    border: 2px solid transparent;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(211, 19, 126, 0.5);
    color: white;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Hero Visual - Clean Product Display */
.hero-visual {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Simple Product Showcase */
.product-showcase {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-container {
    position: relative;
    margin-bottom: 2rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.product-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.product-image {
    /* max-height: 450px; */
    width: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    transition: transform 0.15s ease;
    pointer-events: none;
}

/* .product-image:hover {
    transform: scale(1.05);
} */

/* Floating Background Glow */
.product-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(211, 19, 126, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: glow 4s ease-in-out infinite alternate;
}
    @keyframes glow {
    from {
        opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
    }
    to {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Simple Stats */
.stats-simple {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    float: left;
    align-items: stretch;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(211, 19, 126, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #D3137E, #f48620);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Animation Classes for WOW.js */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInLeft {
    animation-name: fadeInLeft;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__fadeInRight {
    animation-name: fadeInRight;
}


.about .hero-section.hero-bg-image
{
    background: url(../images/about-banner.png) no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    padding: 150px 0px 0px;
    /* overflow: hidden; */
    width: calc(100% - 0px);
    margin-left: 0px;
    margin-right: 0px;
    height: 670px;
}

.about .hero-section.hero-bg-image .hero-content
{
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    transform:unset;
    padding-top: 100px;
}
    @keyframes fadeInLeft {
    from {
        opacity: 0;
    transform: translate3d(-100%, 0, 0);
    }
    to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    }
}
    @keyframes fadeInUp {
    from {
        opacity: 0;
    transform: translate3d(0, 100%, 0);
    }
    to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    }
}
    @keyframes fadeInRight {
    from {
        opacity: 0;
    transform: translate3d(100%, 0, 0);
    }
    to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    }
}
    sup a{
    color: #fff;
    text-decoration: none;
}
    sup a:hover, sup a:focus{
    color: #fff;
    text-decoration: underline;
}


.section-title
    sup{left: 2px;}
.section-title
    sup a{
    font-size: 30%;
    vertical-align: super;
    /* text-decoration: underline; */
}

.selenm-ico{
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: absolute;
    top: -30px;
    left: 55px;
    transform: translateX(-50%);
    border: 4px solid #1a2332;
}


.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(147, 51, 234, 0.02) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    padding-right: 0rem;
    display: block;
}

/* Professional Header */
.professional-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.brand-logo-section .professional-logo {
    height: 90px;
    filter: none;
}

.certification-badges {
    display: flex;
    gap: 1rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cert-badge
    i {
    color: #059669;
    font-size: 1rem;
}

/* Professional Typography */
.professional-title {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.title-sub {
    display: block;
    font-size: 2.8rem;
    font-weight: 600;
    color: #3b82f6;
    font-family: 'Inter', sans-serif;
}

.professional-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.professional-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2.5rem;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    text-align: justify;
}

/* Key Benefits Grid */
.key-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #f1f5f9;
    border-left-color: #2563eb;
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon
    i {
    color: #3b82f6;
    font-size: 1.3rem;
}

.benefit-text
    h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.benefit-text
    p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Professional CTA */
.professional-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-professional-primary,
.btn-professional-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.btn-professional-primary {
    background: #3b82f6;
    color: white;
    border: 2px solid #3b82f6;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.25);
}

.btn-professional-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-professional-secondary {
    background: transparent;
    color: #475569;
    border: 2px solid #cbd5e1;
}

.btn-professional-secondary:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    transform: translateY(-2px);
    color: #334155;
}

/* Professional Visual */
.professional-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 2rem 0;
}

.product-display-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image-wrapper {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.professional-product-image {
    max-height: 400px;
    width: auto;
    display: block;
}

/* Clinical Data Cards */
.clinical-data-cards {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.data-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 160px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.data-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.data-icon {
    width: 45px;
    height: 45px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.data-icon i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.data-content {
    display: flex;
    flex-direction: column;
}

.data-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.data-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Medical Certification */
.medical-certification {
    margin-top: 2rem;
}

.cert-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon i {
    color: #059669;
    font-size: 1.5rem;
}

.cert-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
}

.cert-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Ingredients Section */
.ingredients-section {
    padding: 6rem 0rem 3rem;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #243447 50%, #1a2332 100%);
    position: relative;
    color: #ffffff;
    width: 100%;
    float: left;
    background-image: url(../images/ingrd-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ingredients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(211, 19, 126, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 134, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.ingredient-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d3137e, #f48620);
}

.ingredient-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 80px rgba(211, 19, 126, 0.2);
}

.ingredient-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.ingredient-name {
    font-size: 23px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.ingredient-dose {
    color: #f48620;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.ingredient-benefit {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 17px;
}

.ingredient-research {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ingredient-research
    small {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Benefits Timeline Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a2332 0%, #243447 25%, #2e4057 50%, #243447 75%, #1a2332 100%);
    position: relative;
    color: #ffffff;
    width: 100%;
    float: left;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(211, 19, 126, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(244, 134, 32, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-timeline {
    margin-top: 1rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    float: left;
}

.benefits-timeline::before {
    content: '';
    position: absolute;
    left: 0%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #d3137e, #f48620);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    min-height: 120px;
    width: 100%;
    float: left;
    border-bottom: 0px !important;
}

.timeline-item:nth-child(
    even) {
    flex-direction: row-reverse;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: absolute;
    left: 0%;
    transform: translateX(-50%);
    border: 4px solid #1a2332;
    top: 10px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    width: 42%;
    margin: 0 4%;
    position: relative;
    float: left;
}
/* 
.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 4%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 4%;
    margin-right: auto;
} */

.timeline-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.timeline-content p {
    color: #eaeaea;
    line-height: 1.5;
    margin-bottom: 0px;
    font-size: 17px;
}

.timeline-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-stats .stat {
    background: rgba(244, 134, 32, 0.2);
    color: #f48620;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Research Section */
.research-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #243447 50%, #1a2332 100%);
    position: relative;
    color: #ffffff;
    width: 100%;
    float: left;
    background-image: url(../images/bg-mode.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
}

.research-section#Selenium{
    background-image: none;
    background-repeat: no-repeat;
}

.research-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(211, 19, 126, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(244, 134, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.research-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 25px;
}

.research-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

#benefits .research-card{
    padding: 50px 20px 15px 20px;
    flex-direction: column;
    justify-content: flex-start;
}

#benefits .research-card .selenm-ico{
    left: 50%;
}

#benefits .research-card
    h3, #benefits .research-card p{text-align: center;}

.ref-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #243447 50%, #1a2332 100%);
    position: relative;
    color: #ffffff;
    width: 100%;
    float: left;
}

.ref-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(211, 19, 126, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(244, 134, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.ref-section h5{
    font-size: 18px;
    text-align: left;
    color: #ddd;
    margin-top: 20px;
}


.ref-section p{
    font-size: 13px;
    text-align: left;
    color: #ddd;
    margin-bottom: 3px;
}


#Selenium .research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23.5%, 0fr));
    gap: 1rem;
    margin-top: 4rem;
    position: relative;
}

#Selenium .research-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 50px 25px 30px;
    transition: all 0.3s ease;
    position: relative;
    /* overflow: hidden; */
}

#Selenium .research-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}
/* 
#Selenium .research-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d3137e, #f48620);
} */


.research-type {
    margin-bottom: 0rem;
}

.badge-research {
    background: linear-gradient(135deg, #d3137e, #f48620);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.research-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.research-card p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 5px;
    font-size: 16px;
}

.research-card ul {
    padding-left: 1rem;
    font-size: 16px;
}

.research-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.detail-item i {
    color: #f48620;
}

/* Research Summary */
.research-summary {
    margin-top: 4rem;
}

.summary-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.summary-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.findings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.finding-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    color: #ffffff;
}

.finding-item i {
    color: #f48620;
    font-size: 1.2rem;
    min-width: 20px;
}

/* Dosage Section */
.dosage-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #243447 0%, #2e4057 25%, #1a2332 50%, #0f1419 75%, #1a2332 100%);
    position: relative;
    color: #ffffff;
    width: 100%;
    float: left;
}

.dosage-section.lcarnitine{
    background-image: url(../images/bg-sperm.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left;
    }

    .dosage-section#Zinc{
    background-image: url(../images/bg-zinc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    }

        .dosage-section#larginine{
    background-image: url(../images/bg-arginine.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top bottom;}

.dosage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 40%, rgba(211, 19, 126, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(244, 134, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.dosage-content {
    position: relative;
    
}

.dosage-info {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(31%, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    grid-template-columns: repeat(3, 1fr);
}

.dosage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: all 0.3s ease;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
}

.dosage-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.dosage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.dosage-text h4 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

.dosage-text p {
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

/* Timeline Visual */
.dosage-visual {
    position: relative;
}

.dosage-image-container {
    margin-bottom: 2rem;
    text-align: center;
}

.dosage-timeline-image {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.timeline-visual {
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255 / 0%);
    border-radius: 20px;
    padding: 20px;
}

.timeline-visual h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-point {
    display: flex;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: flex-start;
    background: rgb(255 255 255 / 17%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 15px 15px;
    flex-direction: column;
}

.timeline-point:last-child {
    border-bottom: none;
}

.timeline-point .time {
    color: #f48620;
    font-weight: 600;
    min-width: 30px;
    font-size: 22px;
    padding-top: 5px;
}

.timeline-point .effect {
    color: #ffffff;
    flex: 1;
    margin-left: 0rem;
    font-size: 17px;
    line-height: 1.4;
    margin-top: 10px;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(211, 19, 126, 0.03) 50%,
        rgba(244, 134, 32, 0.02) 100%
    );
    width: 100%;
    float: left;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f48620;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-title .highlight {
    background: linear-gradient(135deg, #d3137e, #f48620);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
}

.cta-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #d3137e, #f48620);
    border: none;
    color: white;
    box-shadow: 0 12px 40px rgba(211, 19, 126, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(211, 19, 126, 0.5);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    
}

.section-subtitle {
    color: #f48620;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}



.solutions-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #243447 50%, #1a2332 100%);
    position: relative;
    color: #ffffff;
    width: 100%;
    float: left;
}
    .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(44%, 1fr));
    gap: 2rem;
    margin-top: 0rem;
    }

    .solution-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    margin-bottom: 15px;
    }

    .solution-card:hover {
      transform: translateY(-8px);
    border-color: rgba(211, 19, 126, 0.3);
    box-shadow: 0 25px 60px rgba(211, 19, 126, 0.2);
    }

    .solution-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(244, 134, 32, 0.15);
    font-family: 'Poppins', sans-serif;
    }

    .solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(211, 19, 126, 0.2), rgba(244, 134, 32, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #f48620;
    }

    .solution-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    }

    .solution-description {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 0px;
    }


/* Animations */
    @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% {
    transform: scale(1.05); }
}


.product-imagexs
{
    display: none;}


/* Our Benefit Section */

.our-benefit {
    position: relative;
    padding: 0px 0;
    width: 100%;
    float: left;
}

.our-benefit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50px;
    background: url('../images/section-bg-leaf-1.png');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    width: 194px;
    height: 224px;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}


.our-benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.our-benefit-item:last-child {
    margin-bottom: 0;
}

.our-benefit-item .icon-box {
    background: #ffffff;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.our-benefit-item .icon-box
    img {
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .icon-box img {
    transform: rotateY(180deg);
}

.our-benefit-item-content {
    width: 100%;
}

.our-benefit-item-content
    h3 {
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

.our-benefit-item-content
    h3::before {
   content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D3137E, #f48620);
    border-radius: 1px;
    top: 125%;
    left: 0%;
    transform: translate(0%, -50%);
}

.our-benefit-item-content.myoinositol
    h3::before {
   content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D3137E, #f48620);
    border-radius: 1px;
    top: 125%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.our-benefit-item-content h3.lfthdng::before {
display: none;
}


.our-benefit-item-content
    h3::after {
    display: none;
}

.our-benefit-item-content h3.lfthdng::after {
   content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D3137E, #f48620);
    border-radius: 1px;
    top: 125%;
    right: 0%;
    transform: translate(0%, -50%);
    display: inline-block;
}


.our-benefit-item-content.myoinositol
{
    margin-bottom: 0px;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 15px;
    width: 90%;
    margin: 0px 5%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: 20px;
    box-shadow: 0px 0px 4px #060606;
    margin-bottom: 30px;
}

.our-benefit-item-content.myoinositol h3, .our-benefit-item-content.myoinositol p {
    text-align: center;
}

.our-benefit-item-content p {
      color: #e5e5e5;
    margin: 0;
    font-family: "Roboto", sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.our-benefit-image {
    margin: 0px;
}

.our-benefit-image figure {
    display: block;
}

.our-benefit-image img {
    width: 100%;
}

.our-benefit-box-1 .our-benefit-item {
    flex-direction: row-reverse;
}

.our-benefit-box-1 .our-benefit-item .icon-box {
    margin: 0 0 0 20px;
}

.our-benefit-box-1 .our-benefit-item-content {
    text-align: right;
}







/* Responsive Design */
    @media (max-width: 1199px) and (min-width: 992px) {

.about .hero-section.hero-bg-image .hero-content {left: 30px;
    top:300px;}
 .hero-description
    {
    margin-bottom: 1rem;
    }
      #Selenium .research-grid {
    grid-template-columns: repeat(auto-fit, minmax(47%, 0fr)) !important;
}
}
    @media (max-width: 991px) and (min-width: 769px) 
    {
.section-title sup a {
    font-size: 60%;
}
     .timeline-visual{grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));}
        #Selenium .research-grid {
   grid-template-columns: repeat(auto-fit, minmax(47%, 0fr)) !important;
}
        .hero-visual{
    height: auto;}
        .about .hero-section.hero-bg-image{
    height: 65vh;}
        .about .hero-section.hero-bg-image .hero-content
        {
    left: 30px;
    top: 0px;
    padding-top: 50px;}
        .product-image{
    margin-top: 70px;
    margin-bottom: 40px;}
        .hero-description{
    margin: 0 auto 1rem;
    font-size: 16px;
    line-height: 1.5;}
    }


 @media (max-width:767px) and (min-width: 150px) 
{    
  #benefits .research-grid, #research .research-grid
 {display: block;margin-top: 20px;}
 #benefits .research-card, #research .research-card {margin-bottom: 40px;}

.product-imagexs
{display: block;}
    .prodimgxs{
    display: none;}


#Selenium .research-grid{
    display: block;
    margin-bottom: 0px;
    float: left;
    width: 100%;
    margin-top: 10px;}

    #Selenium .research-card
    {
    width: 100%;
    float: left;
    margin-bottom: 60px;}

#Selenium .research-card:last-child{
    margin-bottom: 0px;
}

}
    @media (max-width: 991px) {
    .detail-hero {
        padding: 60px 0;
    }
    
    .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
    }
    
    .title-primary {
    font-size: 2.8rem;
    }
    
    .title-secondary {
    font-size: 2.3rem;
    }
    
    .hero-description {
    margin: 0 auto 1rem;
    word-break: normal;
    }
    .stat-badge{
    padding: 1rem 1.5rem;
    }
    
    .hero-cta {
    justify-content: center;
    }
    
    .product-container {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    }
    
    .product-image {
    max-height: 350px;
    }
    
    .stats-simple {
    gap: 1.5rem;
    }
}
    @media (max-width: 768px) {
    .brand-section {
        text-align: center;
    margin-bottom: 0.5rem;
    }
    
    .title-primary {
    font-size: 2.2rem;
    }
    
    .title-secondary {
    font-size: 33px;
    text-align: left;
    line-height: normal;
    }

    .hero-content .brand-logo {
    height: 35px;
    filter: drop-shadow(0 10px 20px rgba(211, 19, 126, 0.3));
    float: left;
}
.about .hero-section.hero-bg-image{
    padding: 0px 0px 0px;
    background-position: center top !important;
    margin-bottom: 0px;}

.about .hero-section.hero-bg-image .hero-content{
    padding-top: 0px;
    width: 97%;
    float: left;
    top: 0;
    max-width: unset;}
    
    .hero-description {
    font-size: 1rem;
    line-height: normal;
    margin-bottom: 1rem;
    }
    
    .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    }
    
    .product-container {
    padding: 1.5rem 1rem;
    }
    
    .product-image {
    max-height: 420px;
    margin: 30px 3% 60px 2%;
    height: 245px;
    margin: 0px 3% -10px 2%;
    width: auto;
    float: left;
    }
    
    .stats-simple {
    /* flex-direction: column; */
    align-items: center;
    gap: 1rem;
    /* display: block; */
    width: 97%;
    margin-bottom: 10px;
    }
    
    .stat-badge {
    float: left;
    width: 50%;
    max-width: unset;
    padding: 7px 5px;
    min-width: unset;
    }
    
    .stat-number {
    font-size: 2rem;
    }
}

    @media (max-width: 576px) {
 
    .title-primary {
        font-size: 2rem;
    }
    
    .title-secondary {
    font-size: 27px;
    margin-bottom: 15px;
    margin-top: 80px;
    }
    
    .hero-description {
    font-size: 0.95rem;
    }
    
    .product-container {
    padding: 1rem;
    }
    
    .product-image {
    height: 150px;
    margin: 0px 3% -10px 2%;
    width: auto;
    float: left;
    }
    
    .stat-number {
    font-size: 1.8rem !important;
    }
    
    .stat-label {
    font-size: 0.7rem !important;
    }
}


/* Responsive Design */
    @media (max-width: 992px) {
    .benefits-timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
    flex-direction: row;
    }
    
    .timeline-icon {
    left: 30px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    }
    
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 80px);
    margin-left: 70px !important;
    margin-right: 0 !important;
    }
    
    .timeline-content {
    padding: 1.5rem;
    }
    
    .timeline-content h3 {
    font-size: 20px;
    }
    
    .timeline-content p {
    font-size: 17px;
    }
}
    @media (max-width: 768px) {
    .detail-hero {
        padding: 100px 0 60px;
    text-align: center;
    min-height: auto;
    }
    
    .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
    }
    
    .hero-badge-group {
    justify-content: center;
    margin-bottom: 1.5rem;
    }
    
    .hero-badge,
    .hero-badge-secondary {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    }
    
    .product-logo-main {
    height: 60px;
    }
    
    .hero-title-new {
    font-size: 2.5rem;
    text-align: center;
    }
    
    .hero-features {
    align-items: center;
    margin-bottom: 1.5rem;
    }
    
    .hero-description-new {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
    }
    
    .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    }
    
    .hero-visual-new {
    height: auto;
    min-height: 60vh;
    margin-top: 2rem;
    }
    
    .floating-element {
    font-size: 0.8rem;
    padding: 0.8rem;
    border-radius: 12px;
    }
    
    .element-1 {
    top: 5%;
    left: 5%;
    }
    
    .element-2 {
    top: 10%;
    right: 5%;
    }
    
    .element-3 {
    bottom: 25%;
    left: 5%;
    }
    
    .element-4 {
    bottom: 5%;
    right: 5%;
    }
    
    .product-image-main {
    max-height: 300px;
    }
    
    .clinical-badge {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
    }
    
    .badge-text strong {
    font-size: 0.9rem;
    }
    
    .stats-floating {
    position: static;
    margin-top: 2rem;
    gap: 1rem;
    }
    
    .stat-card {
    min-width: 100px;
    padding: 1rem;
    }
    
    .stat-content .stat-number {
    font-size: 1.5rem;
    }
    
    .stat-content .stat-label {
    font-size: 0.75rem;
    }
    
    .scroll-indicator {
    position: static;
    margin-top: 2rem;
    transform: none;
    }
    
    .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    }
    
    .ingredients-grid,
    .research-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }
    
    .cta-buttons {
    flex-direction: column;
    align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    }
    
    .dosage-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    }
    
    .timeline-visual .timeline-point {
    /* flex-direction: column; */
    text-align: center;
    gap: 0.5rem;
    padding: 0.8rem 0;
    align-items: flex-start;
    }
    
    .timeline-point .effect {
    margin-left: 15px;
    text-align: left;
    font-size: 17px;
    }
    
    .findings-grid {
    grid-template-columns: 1fr;
    }
    
    .product-logo {
    height: 50px;
    }
    
    .hero-title {
    font-size: 2rem;
    }
    
    .hero-description {
    font-size: 13px;
    }
    
    .section-title {
    font-size: 2rem;
    }
    
    .dosage-image-container {
    margin-bottom: 1.5rem;
    }
    
    .ingredient-card,
    .research-card {
    padding: 2rem;
    }
    
    .ingredient-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    }
    
    .ingredient-name {
    font-size: 21px;
    margin-bottom: 0.5rem;
    }
    
    .research-card h3 {
    font-size: 20px;
    }
}

/* Hero Landing Section */
.landing-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #243447 50%, #2e4057 75%, #1a2332 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
    float: left;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(211, 19, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 134, 32, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.landing-content {
    position: relative;
    
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f48620;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.landing-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.landing-title .highlight {
    background: linear-gradient(135deg, #d3137e, #f48620);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.landing-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary-landing {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 12px 40px rgba(211, 19, 126, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-landing:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(211, 19, 126, 0.5);
    color: white;
}

.btn-secondary-landing {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-landing:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.landing-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f48620;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 11px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Showcase Section */
.product-showcase {
    padding: 6rem 0;
    width: 100%;
    float: left;
    /* background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(211, 19, 126, 0.03) 50%,
        rgba(244, 134, 32, 0.02) 100%
    ); */
    /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
    display: inline-block;
    transform-style: preserve-3d;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.product-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(211, 19, 126, 0.2);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.product-description {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.product-features li i {
    color: #f48620;
    width: 16px;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    width: 100%;
    float: left;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d3137e, #f48620);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #ffffff;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-subtitle {
    color: #f48620;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-description {
    font-size: 17px;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Animations */
    @keyframes fadeInUp {
    from {
        opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* Responsive Design */
    @media (max-width: 768px) {
    .landing-hero {
        padding: 100px 0 60px;
    text-align: center;
    }
    
    .landing-cta-group {
    flex-direction: column;
    align-items: center;
    }
    
    .btn-primary-landing,
    .btn-secondary-landing {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    }
    
    .landing-stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    }
    
    .product-showcase,
    .benefits-section {
    padding: 4rem 0;
    }
    
    .product-card {
    padding: 2rem;
    }
    
    .benefit-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    }
}
    @media (max-width: 480px) {
    .landing-badge {
        font-size: 0.75rem;
    }
    
    .stat-item {
    padding: 1rem;
    }
    
    .stat-number {
    font-size: 25px;
    }
}
    @media (width: 768px) {
   .about .hero-section.hero-bg-image .hero-content{    top: 300px;}
   .product-image {
    max-height: 443px;
    margin: 30px 3% 60px 2%;
    height: 337px;
    margin: 0px 3% -10px 2%;
    width: auto;
    float: left;
    }
}
    @media (width: 412px) {
  .about .hero-section.hero-bg-image .hero-content{
    transform: scale(1.2);
    margin-left: 25px;
    width: 85%;
    }
}
    @media (width: 344px) {
       .hero-section.hero-bg-image {
        height: 65vh;
    }
        .title-secondary {
    font-size: 27px;
    margin-bottom: 5px;
    margin-top: 141px;
    }
    
}
    @media (width: 1024px) and (height: 600px) {
      .hero-section.hero-bg-image {
        height: 97vh;
    }
    .product-image{
    height: 350px;}
    .product-showcase{
    padding-top: 10px;}
        .about .hero-section.hero-bg-image .hero-content {
    left: 30px;
    top: -15px;
    }
.title-secondary{
    font-size: 40px;}
    .hero-description, .stats-simple {
    visibility: visible !important;
    }.hero-description {
    font-size: 16px;
    }
.stat-badge{
    padding: 0.5rem 2rem;}


    };


.timeline-visual h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-point {
    display: flex;
    justify-content: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
}

.timeline-point:last-child {
    border-bottom: none;
}

.timeline-point .time {
    color: #f48620;
    font-weight: 600;
    min-width: 30px;
    font-size: 22px;
    padding-top: 5px;
}

.timeline-point .effect {
    color: #ffffff;
    flex: 1;
    margin-left: 0rem;
    font-size: 17px;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(211, 19, 126, 0.03) 50%,
        rgba(244, 134, 32, 0.02) 100%
    );
    width: 100%;
    float: left;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f48620;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-title .highlight {
    background: linear-gradient(135deg, #d3137e, #f48620);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Poppins', sans-serif;
}

.cta-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #d3137e, #f48620);
    border: none;
    color: white;
    box-shadow: 0 12px 40px rgba(211, 19, 126, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(211, 19, 126, 0.5);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    
}

.section-subtitle {
    color: #f48620;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}



.solutions-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #243447 50%, #1a2332 100%);
    position: relative;
    color: #ffffff;
    width: 100%;
    float: left;
}
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(44%, 1fr));
      gap: 2rem;
      margin-top: 0rem;
    }

    .solution-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
      backdrop-filter: blur(25px);
      border: 1.5px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 1rem 1.5rem;
      text-align: center;
      position: relative;
      transition: all 0.4s ease;
      margin-bottom: 15px;
    }

    .solution-card:hover {
      transform: translateY(-8px);
      border-color: rgba(211, 19, 126, 0.3);
      box-shadow: 0 25px 60px rgba(211, 19, 126, 0.2);
    }

    .solution-number {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 3rem;
      font-weight: 800;
      color: rgba(244, 134, 32, 0.15);
      font-family: 'Poppins', sans-serif;
    }

    .solution-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(211, 19, 126, 0.2), rgba(244, 134, 32, 0.2));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 2rem;
      color: #f48620;
    }

    .solution-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1rem;
    }

    .solution-description {
      font-size: 1rem;
      color: #ffffff;
      line-height: 1.7;
      margin-bottom: 0px;
    }


/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}


.product-imagexs
{display: none;}


/* Our Benefit Section */

.our-benefit {
    position: relative;
    padding: 0px 0;
    width: 100%;
    float: left;
}

.our-benefit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50px;
    background: url('../images/section-bg-leaf-1.png');
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    width: 194px;
    height: 224px;
    transition: all 0.5s ease-in-out;
    z-index: 0;
}


.our-benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.our-benefit-item:last-child {
    margin-bottom: 0;
}

.our-benefit-item .icon-box {
    background: #ffffff;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.our-benefit-item .icon-box img {
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .icon-box img {
    transform: rotateY(180deg);
}

.our-benefit-item-content {
    width: 100%;
}

.our-benefit-item-content h3 {
    text-transform: capitalize;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

.our-benefit-item-content h3::before {
   content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D3137E, #f48620);
    border-radius: 1px;
    top: 125%;
    left: 0%;
    transform: translate(0%, -50%);
}

.our-benefit-item-content.myoinositol h3::before {
   content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D3137E, #f48620);
    border-radius: 1px;
    top: 125%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.our-benefit-item-content h3.lfthdng::before {
display: none;
}


.our-benefit-item-content h3::after {
    display: none;
}

.our-benefit-item-content h3.lfthdng::after {
   content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #D3137E, #f48620);
    border-radius: 1px;
    top: 125%;
    right: 0%;
    transform: translate(0%, -50%);
    display: inline-block;
}


.our-benefit-item-content.myoinositol
{
    margin-bottom: 0px;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 15px;
    width: 90%;
    margin: 0px 5%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: 20px;
    box-shadow: 0px 0px 4px #060606;
    margin-bottom: 30px;
}

.our-benefit-item-content.myoinositol h3, .our-benefit-item-content.myoinositol p {
    text-align: center;
}

.our-benefit-item-content p {
    color: #ffffff;
    margin: 0;
    font-family: "Roboto", sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.our-benefit-image {
    margin: 0px;
}

.our-benefit-image figure {
    display: block;
}

.our-benefit-image img {
    width: 100%;
}

.our-benefit-box-1 .our-benefit-item {
    flex-direction: row-reverse;
}

.our-benefit-box-1 .our-benefit-item .icon-box {
    margin: 0 0 0 20px;
}

.our-benefit-box-1 .our-benefit-item-content {
    text-align: right;
}







/* Responsive Design */

@media (max-width: 1199px) and (min-width: 992px) {
    .timeline-visual{grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));}
.about .hero-section.hero-bg-image .hero-content {left: 30px;top: 140px;padding-top: 0px;}
 .hero-description
    {
            margin-bottom: 1rem;
    }
      #Selenium .research-grid {
   grid-template-columns: repeat(auto-fit, minmax(48%, 0fr)) !important;
}
}

@media (max-width: 991px) and (min-width: 769px) 
    {
           .our-benefit-item-content h3{    font-size: 22px;}

.our-benefit-item-content p {
    font-size: 15px;
    line-height: 1.25;
}
        #Selenium .research-grid {
   grid-template-columns: repeat(auto-fit, minmax(47%, 0fr)) !important;
}
        .hero-visual{height: auto;}
        .about .hero-section.hero-bg-image{height: 65vh;}
        .about .hero-section.hero-bg-image .hero-content
        {left: 30px;top: 0px;padding-top: 50px;}
        .product-image{        margin-top: 70px;
        margin-bottom: 40px;}
        .hero-description{margin: 0 auto 1rem;    font-size: 16px;
    line-height: 1.5;}
    }

@media (max-width:767px) and (min-width: 150px) 
{    
    .section-title sup a {
    font-size: 61%;}
    .research-card ul{text-align: center; list-style-position: inside;}
    .research-card h3{    text-align: center;}
    .timeline-visual{    display: block;        padding: 10px 10px;}
    .timeline-point .time{margin: 0px auto;}
    .timeline-point .effect{
        text-align: center !important;
        margin-left: 0px !important;
        font-size: 15px !important;
        margin-top: 0px;
        width: 100%;
        float: left;
        }
    .timeline-visual .timeline-point{margin-bottom: 15px;flex-direction: column;        padding: 10px !important;}
    .research-card{margin-bottom: 0px;        padding: 1rem;}
    .research-grid{margin-top: 15px;}
    .selenm-ico{left: 50%;}
    .research-card p{text-align: center;}
    #Selenium .research-card{padding: 50px 25px 10px;}
    .solutions-grid{display: block;}
    .timeline-visual p{    font-size: 15px;
    line-height: 1.5;
    padding: 10px;}
    .solution-description {
    font-size: 15px;
    line-height: 1.5;
    }
    .solution-title{margin-bottom: 10px;}
    .dosage-item{margin-bottom: 10px !important;padding: 1rem;}
    .dosage-info{gap: 1rem;grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));}
    .research-grid{gap: 2.5rem !important;}
    .our-benefit-image img
 {
    width: 80%;
    margin: 0px 10%;
}
    .our-benefit-item-content h3.lfthdng::after, .our-benefit-item-content h3::before{
            right: unset;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    .section-description {
    font-size: 16px;
    line-height: 1.3;
}

    .our-benefit-item-content h3{text-align: center;    font-size: 21px;}
   .our-benefit-item-content p{text-align: center;font-size: 15px;
    font-weight: 400;
    line-height: 1.25;}
.product-imagexs
{display: block;}
    .prodimgxs{    display: none;}


#Selenium .research-grid{    display: block;
    margin-bottom: 0px;
    float: left;
    width: 100%;
    margin-top: 10px;}

    #Selenium .research-card
    {    width: 100%;
    float: left;
margin-bottom: 60px;}

#Selenium .research-card:last-child{
    margin-bottom: 0px;
}

}


@media (max-width: 991px) {
    .detail-hero {
        padding: 60px 0;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .title-primary {
        font-size: 2.8rem;
    }
    
    .title-secondary {
       font-size: 2.3rem;
    }
    
    .hero-description {
        margin: 0 auto 1rem;
        word-break: normal;
    }
    .stat-badge{
            padding: 1rem 1.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .product-container {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .product-image {
        max-height: 430px;
    }
    
    .stats-simple {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .brand-section {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .title-primary {
        font-size: 2.2rem;
    }
    
    .title-secondary {
    font-size: 33px;
    text-align: center;
    line-height: normal;
    }

    .hero-content .brand-logo {
    height: 35px;
    filter: drop-shadow(0 10px 20px rgba(211, 19, 126, 0.3));
    float: none;
}
.about .hero-section.hero-bg-image{padding: 60px 0px 0px;background-position: center top !important;margin-bottom: 0px;height: 520px;}
.about .hero-section.hero-bg-image .hero-content{padding-top: 0px;width: 97%;float: left;top: 10px;max-width: unset;}
    
    .hero-description {
        font-size: 1rem;
        line-height: normal;
        margin-bottom: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .product-container {
        padding: 1.5rem 1rem;
    }
    
    .product-image {
        max-height: 420px;
        margin: 30px 3% 60px 2%;
        height: 245px;
        margin: 0px 3% -10px 2%;
        width: auto;
        float: none;
    }
    
    .stats-simple {
        /* flex-direction: column; */
        align-items: center;
        gap: 1rem;
        /* display: block; */
        width: 97%;
        margin-bottom: 10px;
    }
    
    .stat-badge {
        float: left;
        width: 50%;
        max-width: unset;
        padding: 7px 5px;
        min-width: unset;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
 
    .title-primary {
        font-size: 2rem;
    }
    
    .title-secondary {
        font-size: 27px;
        margin-bottom: 15px;
        margin-top: -25px;
        line-height: 30px;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .product-container {
        padding: 1rem;
    }
    
    .product-image {
        height: 235px;
        margin: 0px auto;
        width: auto;
        float: none;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.7rem !important;
    }
}


/* Responsive Design */
@media (max-width: 992px) {
    .benefits-timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-icon {
        left: 30px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 70px !important;
        margin-right: 0 !important;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 20px;
    }
    
    .timeline-content p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .detail-hero {
        padding: 100px 0 60px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-badge-group {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge,
    .hero-badge-secondary {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .product-logo-main {
        height: 60px;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-features {
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-description-new {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-visual-new {
        height: auto;
        min-height: 60vh;
        margin-top: 2rem;
    }
    
    .floating-element {
        font-size: 0.8rem;
        padding: 0.8rem;
        border-radius: 12px;
    }
    
    .element-1 {
        top: 5%;
        left: 5%;
    }
    
    .element-2 {
        top: 10%;
        right: 5%;
    }
    
    .element-3 {
        bottom: 25%;
        left: 5%;
    }
    
    .element-4 {
        bottom: 5%;
        right: 5%;
    }
    
    .product-image-main {
        max-height: 300px;
    }
    
    .clinical-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .badge-text strong {
        font-size: 0.9rem;
    }
    
    .stats-floating {
        position: static;
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 1rem;
    }
    
    .stat-content .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-content .stat-label {
        font-size: 0.75rem;
    }
    
    .scroll-indicator {
        position: static;
        margin-top: 2rem;
        transform: none;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .ingredients-grid,
    .research-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .dosage-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-visual .timeline-point {
        /* flex-direction: column; */
        text-align: center;
        gap: 0.5rem;
        padding: 0.8rem 0;
        align-items: flex-start;
    }
    
    .timeline-point .effect {
        margin-left: 15px;
        text-align: left;
        font-size: 17px;
    }
    
    .findings-grid {
        grid-template-columns: 1fr;
    }
    
    .product-logo {
        height: 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 14px;
        text-align: center;
        width: 100%;
        float: left;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .dosage-image-container {
        margin-bottom: 1.5rem;
    }
    
    .ingredient-card,
    .research-card {
        padding: 20px 10px;
    }
    
    .ingredient-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .ingredient-name {
        font-size: 21px;
        margin-bottom: 0.5rem;
    }
    .research-card{margin-bottom: 5px;}
    .research-card h3 {
        font-size: 20px;
        text-align: center;
    }
    .research-card p {
        font-size: 15px;
        text-align: center;
    }

    .research-card ul {
        text-align: center;
        list-style-position: inside;
    }
    .timeline-visual{grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));}
    #Selenium .research-grid{        grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));}
    .selenm-ico{left: 50%;}
}

/* Hero Landing Section */
.landing-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 25%, #243447 50%, #2e4057 75%, #1a2332 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
    float: left;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(211, 19, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 134, 32, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.landing-content {
    position: relative;
    
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f48620;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.landing-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.landing-title .highlight {
    background: linear-gradient(135deg, #d3137e, #f48620);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.landing-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary-landing {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 12px 40px rgba(211, 19, 126, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-landing:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(211, 19, 126, 0.5);
    color: white;
}

.btn-secondary-landing {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-landing:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.landing-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f48620;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 11px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Showcase Section */
.product-showcase {
    padding: 1rem 0;
    width: 100%;
    float: left;
    /* background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(211, 19, 126, 0.03) 50%,
        rgba(244, 134, 32, 0.02) 100%
    ); */
    /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
    display: inline-block;
    transform-style: preserve-3d;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.product-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(211, 19, 126, 0.2);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.product-description {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.product-features li i {
    color: #f48620;
    width: 16px;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #47122d 0%, #000637 100%);
    width: 100%;
    float: left;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d3137e, #f48620);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d3137e, #f48620);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #ffffff;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-subtitle {
    color: #f48620;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-description {
    font-size: 17px;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .landing-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-landing,
    .btn-secondary-landing {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .landing-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .product-showcase,
    .benefits-section {
        padding: 1rem 0;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .landing-badge {
        font-size: 0.75rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 25px;
    }
}


@media (width: 768px) {
   .about .hero-section.hero-bg-image .hero-content{top: 0px;}
   .product-image {
        max-height: 443px;
        margin: 30px 3% 60px 2%;
        height: 337px;
        margin: 0px 3% -10px 2%;
        width: auto;
        float: left;
    }
}
@media (width: 412px) {
  .about .hero-section.hero-bg-image .hero-content{
    transform: scale(1);
    margin-left: 25px;
    width: 85%;
    }
}

@media (width: 344px) {
       .hero-section.hero-bg-image {
        height: 65vh;
    }
        .title-secondary {
        font-size: 27px;
        margin-bottom: 5px;
        margin-top: 0px;
    }
    
}


@media (width: 1024px) and (height: 600px) {
      .hero-section.hero-bg-image {
        height: 97vh;
    }
    .product-image{height: 350px;}
    .product-showcase{padding-top: 10px;}
        .about .hero-section.hero-bg-image .hero-content {
        left: 30px;
        top: -15px;
    }
.title-secondary{font-size: 40px;}
    .hero-description, .stats-simple {
        visibility: visible !important;
    }.hero-description {
    font-size: 16px;
    }
.stat-badge{padding: 0.5rem 2rem;}


    }
