/* 
===================================================
   Swayamayurindia Pvt. Ltd. - Premium Stylesheet
===================================================
*/

:root {
    /* Color Palette */
    --clr-emerald: #0D9488;
    --clr-emerald-dark: #0F766E;
    --clr-emerald-light: #CCFBF1;
    --clr-gold: #D4AF37;
    --clr-gold-light: #FDF6E3;
    --clr-navy: #0F172A;
    --clr-white: #FFFFFF;
    --clr-beige: #F8F9FA;
    --clr-text-main: #334155;
    --clr-text-muted: #64748B;

    /* Gradients */
    --gradient-emerald: linear-gradient(135deg, var(--clr-emerald), var(--clr-emerald-dark));
    --gradient-navy: linear-gradient(135deg, var(--clr-navy), #1E293B);
    --gradient-gold: linear-gradient(135deg, #FDE047, var(--clr-gold));

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --shadow-hover: 0 20px 40px rgba(13, 148, 136, 0.15);

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================== Base Styles ================== */
body {
    font-family: var(--font-main);
    color: var(--clr-text-main);
    background-color: var(--clr-beige);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-navy);
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* ================== Utility Classes ================== */
.text-emerald {
    color: var(--clr-emerald) !important;
}

.text-gold {
    color: var(--clr-gold) !important;
}

.bg-emerald {
    background-color: var(--clr-emerald) !important;
}

.bg-navy {
    background: var(--gradient-navy) !important;
}

.text-gradient {
    background: var(--gradient-emerald);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
}

/* ================== Scroll Progress ================== */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-emerald);
    width: 0%;
    transition: width 0.1s ease;
}

/* ================== Topbar & Navbar ================== */
.topbar {
    background: var(--gradient-navy);
}

.social-links a {
    color: var(--clr-white);
    margin-left: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.social-links a:hover {
    color: var(--clr-gold);
    opacity: 1;
}

.glass-navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    padding: 15px 0;
}

.glass-navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 500;
    color: var(--clr-navy) !important;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--clr-emerald);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ================== Buttons ================== */
.btn-emerald {
    background: var(--gradient-emerald);
    color: var(--clr-white);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
    transition: var(--transition-smooth);
}

.btn-emerald:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
    color: var(--clr-white);
}

.btn-outline-emerald {
    color: var(--clr-emerald);
    border: 2px solid var(--clr-emerald);
    background: transparent;
}

.btn-outline-emerald:hover {
    background: var(--clr-emerald);
    color: var(--clr-white);
}

/* ================== Hero Section ================== */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--clr-emerald-light) 0%, var(--clr-white) 100%);
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.hero-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--clr-emerald);
    top: -100px;
    right: -100px;
}

.hero-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--clr-gold);
    bottom: 20%;
    left: -50px;
    opacity: 0.3;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--clr-white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 500px;
}

.hero-image-composition {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-hero-card {
    width: 300px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.floating-badge {
    position: absolute;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    z-index: 3;
}

.badge-1 {
    top: 20%;
    right: 0;
    animation: float 5s ease-in-out infinite reverse;
}

.badge-2 {
    bottom: 20%;
    left: 10%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.wave-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* ================== About / Intro Section ================== */
.about-section-bg {
    background-color: #f4f3ed;
    position: relative;
    overflow: hidden;
}
.about-content-wrapper {
    position: relative;
    z-index: 1;
}
.about-image {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 100%;
    min-height: 450px;
    width: 100%;
}
.about-heading-dark {
    color: #1a3224;
    line-height: 1.2;
}
.about-divider-diamonds {
    color: #8c8466; 
    font-size: 12px;
    letter-spacing: 5px;
}
.about-divider-diamonds .middle-diamond {
    color: #b58d3d;
    font-size: 16px;
}
.about-text-lead {
    color: #4a4a4a;
    line-height: 1.7;
}
.about-icon-box {
    color: #b58d3d;
    min-width: 50px;
}
.about-feature-title {
    color: #1a3224;
}
.about-check-list li {
    color: #4a4a4a;
    margin-bottom: 10px;
}
.about-check-list li i {
    color: #2e593f;
    margin-right: 10px;
}
/* ================== Products Section ================== */
.product-card {
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover) !important;
}

.product-img-wrapper {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img-wrapper {
    background-color: var(--clr-emerald-light) !important;
}

/* ================== Business Opportunity ================== */
.bg-gold {
    background-color: var(--clr-gold) !important;
    color: var(--clr-navy);
}

.text-navy {
    color: var(--clr-navy) !important;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--clr-navy);
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline-navy {
    color: var(--clr-navy);
    border: 2px solid var(--clr-navy);
    background: transparent;
    transition: var(--transition-smooth);
}

.btn-outline-navy:hover {
    background: var(--gradient-navy);
    color: var(--clr-white);
}

.tree-structure .branches::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--clr-emerald);
}

.tree-structure .branches .node::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background: var(--clr-emerald);
}

.tree-structure .top-node {
    position: relative;
    z-index: 2;
}

.tree-structure .top-node::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background: var(--clr-emerald);
}

/* ================== Testimonials ================== */
.bg-beige {
    background-color: var(--clr-beige);
}

.testimonialSwiper {
    padding-bottom: 50px;
}

.swiper-pagination-bullet-active {
    background: var(--clr-emerald) !important;
}

/* ================== Footer ================== */
footer {
    position: relative;
    z-index: 10;
}

/* Custom Footer Styles */
.footer-custom {
    color: #fff;
}

.footer-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.88);
    /* Dark navy overlay */
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-top-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.btn-footer-shop {
    background: linear-gradient(135deg, #0f4c54, #1b6c73);
    border: 1px solid #1b6c73;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-footer-shop:hover {
    background: linear-gradient(135deg, #1b6c73, #0f4c54);
    color: #fff;
}

.btn-footer-distributor {
    background: linear-gradient(135deg, #b8860b, #daa520);
    border: 1px solid #daa520;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-footer-distributor:hover {
    background: linear-gradient(135deg, #daa520, #b8860b);
    color: #fff;
}

.footer-logo-box {
    background: #fff;
    padding: 15px 25px;
    display: inline-block;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-stars {
    color: #f39c12;
    font-size: 14px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.footer-social-btn:hover {
    background: var(--clr-gold);
    color: var(--clr-navy);
}

.footer-link-list li {
    margin-bottom: 14px;
}

.footer-link-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.footer-link-list a:hover {
    color: var(--clr-gold);
    padding-left: 5px;
}

.footer-link-list i {
    font-size: 12px;
    margin-right: 12px;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: var(--clr-emerald);
    margin-top: 4px;
    margin-right: 15px;
    font-size: 16px;
}

.footer-certifications {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 10px;
}

.footer-certifications .badge {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-bottom-bar {
    background: rgba(0, 0, 0, 0.5);
    padding: 18px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

.footer-bottom-bar a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
}

.footer-bottom-bar a:hover {
    color: var(--clr-gold);
}

/* ================== Floating Items ================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ================== Media Queries ================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-section {
        min-height: auto;
        padding: 100px 0 150px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .main-hero-card {
        width: 250px;
        height: 350px;
    }

    .floating-badge {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* ================== Trusted By Section ================== */
.trusted-section {
    background: url('../img/about-us3.jpg') center/cover fixed;
}
.trusted-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(240, 245, 240, 0.9);
}
.trusted-heading {
    font-family: var(--font-heading);
}
.trusted-text-gold {
    color: #a87b00;
}
.trusted-divider-container {
    width: 250px;
}
.trusted-divider-line {
    height: 1px;
    flex: 1;
    background-color: #a87b00;
    opacity: 0.5;
}
.trusted-divider-diamond {
    width: 6px;
    height: 6px;
    background-color: #a87b00;
    transform: rotate(45deg);
}
.trust-badge-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.trust-badge-circle:hover {
    transform: translateY(-5px);
}
.trust-badge-inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(168, 123, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.trust-badge-title {
    font-weight: 600;
    color: #333;
    margin-top: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.3;
}
.trust-icon-green {
    color: #4a7c59;
}
.trust-icon-gold {
    color: #a87b00;
}
.trust-icon-orange {
    color: #ff9933;
}
.trust-icon-lg {
    font-size: 3rem;
}
.trust-icon-md {
    font-size: 2.5rem;
}
.trust-icon-sm {
    font-size: 2.2rem;
}
.trust-icon-xs {
    font-size: 1rem;
}
.trust-badge-droplet {
    top: -10px;
    right: -10px;
}
.trust-badge-gmp {
    font-size: 0.8rem;
    margin-top: -2px;
}
.trust-badge-iso {
    font-size: 1rem;
}
.trust-badge-india-line {
    width: 25px;
    height: 3px;
    background: #138808;
    margin: 0 auto;
}
    .trust-badge-15 {
        font-size: 1.1rem;
        margin-top: -5px;
    }
    .trust-badge-star {
        font-size: 0.6rem;
        margin: 0 1px;
    }
}

/* ================== Custom Header Styles ================== */
.topbar-custom {
    background: #254433 !important;
}
.social-links-custom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.social-links-custom a {
    color: #d4af37 !important;
    font-size: 15px;
    transition: 0.3s;
}
.social-links-custom a.text-light {
    color: #ffffff !important;
}
.social-links-custom a:hover {
    opacity: 0.8;
}
.btn-outline-custom {
    color: #1a7a5f;
    border: 1px solid #1a7a5f;
    background: transparent;
    transition: 0.3s;
}
.btn-outline-custom:hover {
    background: #1a7a5f;
    color: #ffffff;
}
.btn-solid-custom {
    background: #1a7a5f;
    color: #ffffff;
    border: 1px solid #1a7a5f;
    transition: 0.3s;
}
.btn-solid-custom:hover {
    background: #135d48;
    color: #ffffff;
}
.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
}