/* --- Google Fonts import kiya hai --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- Root Variables: Pure project ke main colors yahan set kiye hain --- */
:root {
    --primary-color: #064e3b;      /* Gehra forest green color */
    --primary-hover: #043427;
    --accent-color: #10b981;       /* Light mint green color */
    --text-dark: #1f2937;          /* Headings ke liye dark gray/black */
    --text-muted: #4b5563;         /* Paragraphs ke liye soft gray */
    --bg-light: #f4fbf7;           /* Premium background green tint */
    --white: #ffffff;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s ease-in-out;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(6, 78, 59, 0.08);
}

/* --- Global Reset: Margin, padding set karne ke liye --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none!important;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}
/* ==========================================
   PURE CSS DROPDOWN FIX (100% WORKING)
   ========================================== */
.login-portal-dropdown {
    position: relative;
    display: inline-block;
}

.login-portal-btn::after {
    display: none; /* Hide default bootstrap arrow */
}

/* Base style for the menu box jaisa image_0e65c7.png me hai */
.custom-login-menu {
    background-color: var(--primary-color) !important; /* Premium light green */
    border: none !important;
    border-radius: 16px !important;
    padding: 10px 6px !important;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 0 !important;
    
    /* Pure CSS Hide Mechanism */
    display: block !important;
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 9999 !important; /* Taaki dusre elements ke upar tairta rahe */
}

/* --- THE MAGIC RENDER RULE --- 
   Mouse late hi bina kisi reload ya JS error ke menu turant show hoga */
.login-portal-dropdown:hover .custom-login-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(5px) !important;
}

/* Links and text architecture inside menu */
.custom-login-menu .dropdown-item {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    background: transparent !important;
}

/* Individual link item hover effect */
.custom-login-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateX(4px);
}

.custom-login-menu .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 6px 0;
}

/* Smooth arrow rotation on hover */
.login-portal-dropdown:hover .toggle-arrow {
    transform: rotate(180deg);
}
.toggle-arrow {
    transition: transform 0.3s ease;
}
/* --- Premium Buttons Style --- */
.btn-premium {
    background-color: var(--primary-color);
    color: var(--white) !important;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-premium:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 78, 59, 0.2);
}

.btn-outline-premium {
    background-color: transparent;
    color: var(--primary-color) !important;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline-premium:hover {
    border-color: var(--primary-color);
    background-color: rgba(6, 78, 59, 0.02);
    transform: translateY(-2px);
}

/* --- Scrollbar design --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* ==========================================
   NAVIGATION STYLE: Header ka main design
   ========================================== */
.main-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    z-index: 1000;
}

/* Desktop Only Bottom Border: Jo aapne abhi add karwaya */
@media (min-width: 992px) {
    .main-navbar {
        border-bottom: 1px solid rgba(6, 78, 59, 0.08) !important;
        box-shadow: 0 4px 20px rgba(6, 78, 59, 0.02);
    }
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    padding: 8px 16px !important;
    position: relative;
}
.logo-img{
  width: 90px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Dropdown Menu styling */
.custom-dropdown .dropdown-menu {
    border-radius: 12px;
    padding: 10px;
    top: 110%;
    min-width: 200px;
}

.custom-dropdown .dropdown-item {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--text-dark);
}

.custom-dropdown .dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Desktop par dropdown bina click ke sirf mouse over (hover) karne par khulega */
@media (min-width: 992px) {
    .custom-dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; 
    }
}
/* ==========================================
   STICKY HEADER ANIMATION: Scroll karne par header style
   ========================================== */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* Pehle se hi smooth transition set rakhenge */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}

/* Jab JS ke through body par 'scrolled' class lagegi tab ye active hoga */
body.scrolled .main-navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 10px 0; /* Header thoda patla (sleek) ho jayega scroll par */
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.08); /* Premium shadow effect */
    border-bottom: 1px solid rgba(6, 78, 59, 0.05);
    
    /* Smooth slide-down entry effect */
    animation: slideDown 0.4s ease forwards;
}

/* Slide Down Animation Rule */
@keyframes slideDown {
    from {
        transform: translateY(-100%); /* Pehle upar chhupa rahega */
    }
    to {
        transform: translateY(0); /* Fir smoothly niche aayega */
    }
}
/* ==========================================
   HERO BANNER SLIDER: Main banner section
   ========================================== */
.hero-slider-section {
    background: linear-gradient(135deg, #ffffff 0%, #edf9f3 100%);
    min-height: calc(100vh - 80px);
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide-bg {
    padding: 80px 0;
}

/* Chote Badges (Trusted & India's Fastest) ke liye */
.trust-badge, .growth-badge {
    font-size: 12px;
    font-weight: 600;
    background: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
}

.growth-badge {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
}

/* Badge ke andar jo green dot blink karta hai */
.dot-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

/* Typography styles */
.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hero-title .highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-dark);
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 520px;
}

/* Integrated Search bar module */
.search-wrapper {
    background: var(--white);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
    max-width: 480px;
    border: 1px solid rgba(6, 78, 59, 0.05);
}

.search-icon {
    color: #9ca3af;
    margin-right: 12px;
}

.search-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
}

.search-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: var(--primary-hover);
}

/* ==========================================
   FLOATING CARDS: 100% Anti-Break Premium Fix
   ========================================== */
.image-grid-wrapper {
    height: 480px;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

/* Dono main product cards ka base style */
.img-card {
    background: var(--white);
    padding: 12px; 
    border-radius: 20px; 
    box-shadow: 0 15px 40px rgba(6, 78, 59, 0.08); 
    position: absolute;
    display: flex;
    flex-direction: column;
    overflow: visible; /* Purity badge ko bahar nikalne dene ke liye */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Image को बिना काटे पूरा दिखाने के लिए स्पेशल कंटेनर */
.img-card img {
    border-radius: 14px;
    width: 100%;
    height: 240px; /* Fixed display height */
    object-fit: contain; /* Isse bottle upar-niche se kabhi nahi kategi */
    background-color: #f3f7f5; /* Image ke piche ek smooth background card look */
    display: block;
}

/* --- Peeche wala card (Right Side Layout) --- */
.card-back {
    width: 260px;
    top: 5%;
    right: 5%;
    z-index: 1;
}

/* --- Aage wala card (Left Side Layout) --- */
.card-front {
    width: 260px;
    bottom: 5px;
    left: 5%;
    z-index: 2;
}

/* Hover karne par automatic z-index upar ho jayega */
.img-card:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 25px 50px rgba(6, 78, 59, 0.15);
    z-index: 5;
}

/* Purity Badge: 100% Herbal Formula (Image_1923b4.jpg ke mutabik top-left overlay) */
.purity-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    background: #043427;
    color: var(--white);
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(4, 52, 39, 0.25);
    text-align: center;
    z-index: 10;
}

.purity-badge strong {
    font-size: 14px;
    display: block;
    color: var(--accent-color);
}

.purity-badge span {
    font-size: 8px;
    font-weight: 700;
    display: block;
    letter-spacing: 0.5px;
}

/* Card ke andar jo text details hain */
.card-info {
    padding: 10px 4px 2px 4px;
}

.card-info .tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    color: var(--accent-color);
    margin-bottom: 2px;
}

.card-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    line-height: 1.3;
}

.card-info .rating {
    font-size: 12px;
    font-weight: 700;
    color: #fbbf24;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-info .rating span {
    color: #9ca3af;
    font-weight: 400;
}

/* --- Responsive View for Mobile/Tablets --- */
@media (max-width: 991px) {
    .image-grid-wrapper {
        height: 420px;
        max-width: 440px;
        margin: 30px auto 0 auto;
    }
    .card-back {
        width: 220px;
        right: 2%;
    }
    .card-front {
        width: 220px;
        left: 2%;
    }
    .img-card img {
        height: 190px;
    }
}

/* Card ke upar jo '99.8% purity' wala box latak raha hai */
.purity-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.purity-badge strong {
    font-size: 16px;
    display: block;
    color: var(--accent-color);
}

.purity-badge span {
    font-size: 8px;
    font-weight: 600;
    display: block;
    letter-spacing: 0.5px;
}

.card-info .tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 4px 0;
}

.card-info .rating {
    font-size: 12px;
    font-weight: 600;
}

.card-info .rating i {
    color: #fbbf24;
}

.card-info .rating span {
    color: #9ca3af;
    font-weight: 400;
}

/* --- Responsive Layout: Mobile aur Tablet ke liye settings --- */
@media (max-width: 991px) {
    .hero-title { font-size: 40px; }
    .image-grid-wrapper { height: 400px; margin-top: 30px; }
    .card-back { right: 5%; width: 220px; }
    .card-front { left: 5%; width: 210px; }
    .purity-badge { top: -10px; left: -10px; padding: 8px; }
}
/* ==========================================
   HERO TRUST FEATURES: Slider ke niche wale icons
   ========================================== */
.hero-trust-features {
    /* Upar ek halki si horizontal line jo image_7e13a1.png me dikh rahi hai */
    border-top: 1px solid rgba(6, 78, 59, 0.1); 
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px; /* Icon aur text ke beech ka space */
}

.feature-icon {
    font-size: 24px;
    color: var(--primary-color); /* Hmari theme ka gehra hara rang */
    line-height: 1;
    margin-top: 2px;
}

.feature-text h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 13px;
    color: #9ca3af; /* Soft gray color text jaisa image me hai */
    margin: 0;
    font-weight: 500;
}

/* --- Responsive code: Mobile par spacing sahi dikhne ke liye --- */
@media (max-width: 767px) {
    .hero-trust-features {
        margin-top: 35px !important;
        padding-top: 20px !important;
    }
    .feature-text h6 {
        font-size: 14px;
    }
    .feature-text p {
        font-size: 12px;
    }
}
/* ==========================================
   STATS COUNTER SECTION: Premium Counter Design
   ========================================== */
.stats-counter-section {
    background-color: var(--white);
    border-bottom: 1px solid rgba(6, 78, 59, 0.05); /* Niche halki separator line */
}

/* Icon Box Design: Light mint green background jaisa image me hai */
.counter-icon-box {
    width: 60px;
    height: 60px;
    background-color: #edf9f3; /* Soft Mint green tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.counter-icon-box i {
    font-size: 22px;
    color: var(--primary-color); /* Main deep green color */
}

/* Counter block par hover karne par thoda upar uthega */
.counter-block {
    position: relative;
    padding: 20px 0;
}

.counter-block:hover .counter-icon-box {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

/* Vertical Separator Lines: Jo cards ke beech me lines hain (Desktop Only) */
@media (min-width: 992px) {
    .counter-block:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background-color: rgba(6, 78, 59, 0.1); /* Light vertical divider line */
    }
}

/* Typography for numbers and text */
.counter-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.counter-label {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af; /* Soft muted gray color text */
    letter-spacing: 1px;
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .counter-number { font-size: 34px; }
    .counter-block { border-bottom: 1px solid rgba(6, 78, 59, 0.05); }
    .counter-block:last-child { border-bottom: none; }
}






/* ==========================================
   PREMIUM FOOTER STYLES
   ========================================== */
.main-footer {
    background-color: #032b21; /* Theme ka sabse gehra forest green background */
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-about-text {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.5px;
}

/* Links List Styling */
.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}
.anchor a{
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);

}


.footer-links-list a:hover {
    color: var(--accent-color); /* Hover par mint green color ho jayega */
    padding-left: 5px; /* Chota sa shift effect */
}

/* Contact Info Icons Styling */
.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info i {
    color: var(--accent-color);
    margin-top: 4px;
}

/* Social Media Icons Box */
.footer-social-icons a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ==========================================
   MOBILE QUICK ACTION BAR (WhatsApp & Call)
   ========================================== */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--white);
    display: flex;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white) !important;
}

/* WhatsApp Green Color */
.btn-whatsapp {
    background-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
}

/* Call Button (Theme Primary Green Color) */
.btn-call {
    background-color: var(--primary-color);
}

.btn-call:hover {
    background-color: var(--primary-hover);
}

/* Mobile Action Bar jab active ho, tab footer ke niche thodi padding badha do taaki content chhup na jaye */
@media (max-width: 991px) {
    body {
        padding-bottom: 60px; /* Action bar ki height ke barabar space */
    }
}
/* ==========================================
   NEW FLOATING ACTIONS DESIGN (WhatsApp & Call)
   ========================================== */
.premium-floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column; /* Ek ke upar ek icons aayenge */
    gap: 15px;
    z-index: 9999; /* Sabse upar dikhne ke liye */
}

/* Base style dono gol buttons ke liye */
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

/* WhatsApp specific background */
.btn-floating-wa {
    background-color: #25d366;
}

/* Call specific background (Hmari theme ka main green) */
.btn-floating-call {
    background-color: var(--primary-color);
}

/* Hover effect: Buttons thode bade honge aur upar uthenge */
.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Soft wave animation jo icons ke piche chalegi (Premium look ke liye) */
.float-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    top: 0;
    left: 0;
    animation: wavePulse 2s infinite;
    opacity: 0.4;
}

@keyframes wavePulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* --- Responsive setup: Mobile screen par thode chhote ho jayenge --- */
@media (max-width: 767px) {
    .premium-floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
/* ==========================================
   PRODUCTS GRID SECTION: Premium Grid Layout
   ========================================== */
/* ==========================================
   FIXED PRODUCT GRID SYSTEM: Anti-Break CSS
   ========================================== */
.bg-light-tint {
    background-color: rgba(244, 251, 247, 0.4);
}

.section-badge {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1.5px;
}

.section-main-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.6;
}

/* --- Fixed Height Elastic Card Logic --- */
.product-premium-card {
    background: var(--white);
    border-radius: 20px;
    padding: 16px;
    position: relative;
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.02);
    border: 1px solid rgba(6, 78, 59, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    /* Ye teen lines layout ko ek size me lock rakhengi */
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.product-premium-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(16, 185, 129, 0.15);
}

/* Image container fixed control */
.product-img-holder {
    background-color: #f8faf8;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    text-align: center;
    height: 220px; /* Fixed height for image area */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-holder img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-premium-card:hover .product-img-holder img {
    transform: scale(1.04);
}

/* Badges & Wishlist Position Fix */
.card-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    z-index: 5;
}

.badge-best { background-color: #e6f7f0; color: #10b981; }
.badge-relief { background-color: #fef3c7; color: #d97706; }
.badge-care { background-color: #fce7f3; color: #db2777; }
.badge-digest { background-color: #e0f2fe; color: #0284c7; }

.wishlist-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    background: var(--white);
    border: 1px solid #edf2f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 14px;
    z-index: 5;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-btn:hover {
    background-color: #fff5f5;
    color: #e53e3e;
}

/* Text Block Flex Control */
.product-details-box {
    flex-grow: 1; /* Taki text chhota ho ya bada, box equal size le */
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.card-rating-row {
    font-size: 13px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 6px;
}

.card-rating-row span { color: var(--text-dark); }
.card-rating-row mark { background: none; padding: 0; color: #9ca3af; font-weight: 400; }

.product-title-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.product-desc-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 8px;
}

.formula-badge {
    font-size: 12px;
    color: #0d9488;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto; /* Isse Formula text humesha description ke niche fix rahega */
}

/* Bottom Price + Cart Button Sticky Box */
.card-footer-action-block {
    margin-top: auto; /* Ye pure pricing aur button ko card me sabse bottom me chipka dega */
}

.card-inside-divider {
    border-top: 1px solid rgba(6, 78, 59, 0.06);
    margin: 0;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.mrp-price {
    font-size: 12px;
    text-decoration: line-through;
    color: #9ca3af;
    font-weight: 500;
}

.selling-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.btn-add-to-cart {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-add-to-cart:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}
/* ==========================================
   CONSULTATION BOX & INFINITE TICKER STYLE
   ========================================== */

/* Consultation Card Layout */
.consultation-box {
    background-color: #f3f7f5; /* Light soft green/gray tint background */
    border-radius: 24px; /* Image_1849bb.png ki tarah rounded corners */
    border: 1px solid rgba(6, 78, 59, 0.04);
}

.consult-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.consult-desc {
    font-size: 14px;
    font-weight: 500;
}

/* --- Infinite Marquee Animation Logic --- */
.infinite-ticker-wrapper {
    background-color: #042e23; /* Dark green ribbon background */
    overflow: hidden; /* Jo text screen se bahar jaye wo chhup jaye */
    width: 100%;
    display: flex;
    white-space: nowrap;
    position: relative;
}

.ticker-content-track {
    display: flex;
    width: max-content;
    animation: marqueeLoop 25s linear infinite; /* Infinite loop bina jhatke ke chalta rahega */
}

/* Ticker item text and icon style */
.ticker-item {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    padding: 0 40px; /* Do labels ke beech me space */
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-item i {
    color: var(--accent-color); /* Icons mint green color me chamkenge */
    font-size: 14px;
}

/* Loop Animation Keyframe: Right se left smoothly content khiskega */
@keyframes marqueeLoop {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0); /* Aadhe track par aate hi seamlessly reset ho jayega */
    }
}

/* Mobile par layout auto adjustment */
@media (max-width: 767px) {
    .consultation-box {
        text-align: center;
        padding: 30px 20px !important;
    }
    .consult-title { font-size: 18px; }
    .ticker-item { font-size: 12px; padding: 0 25px; }
}
/* ==========================================
   ABOUT FOUNDER SECTION: Premium Styling
   ========================================== */
.about-founder-section {
    background-color: var(--white);
}

.sub-title-badge {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.founder-name {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.founder-degree {
    font-size: 14px;
    font-weight: 600;
    color: #9ca3af; /* Light gray code text */
    letter-spacing: 0.5px;
}

.founder-bio p {
    font-size: 15px;
    line-height: 1.6;
}

/* Mini Badge Cards Style (25+ Years, BEMS etc) */
.mini-badge-card {
    background-color: #edf9f3; /* Soft mint green background jaisa image me hai */
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    height: 100%;
}

.mini-badge-card .badge-icon {
    font-size: 20px;
    color: var(--primary-color);
}

.mini-badge-card strong {
    font-size: 13px;
    display: block;
    color: var(--primary-color);
}

.mini-badge-card span {
    font-size: 11px;
    color: var(--text-muted);
    display: block;
}

/* Bottom Quote Box: Left side dark green thick border */
.founder-quote-box {
    background-color: #fcfdfe;
    border-left: 4px solid var(--primary-color); /* Thick left green line */
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.6;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.02);
}

/* Right Side Image Setup */
.founder-img-wrapper {
    border-radius: 24px;
    overflow: hidden; /* Taki image ke kone round cut ho jayein */
}

.main-founder-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.founder-img-wrapper:hover .main-founder-img {
    transform: scale(1.02); /* Subtle hover zoom effect */
}

/* Image Ke Upar Details Banner Overlay */
.img-overlay-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(3, 43, 33, 0.9) 0%, rgba(3, 43, 33, 0) 100%);
}

.img-overlay-details h5 {
    font-size: 18px;
    font-weight: 700;
}

.img-overlay-details p {
    font-size: 12px;
}

/* --- Responsive Code --- */
@media (max-width: 991px) {
    .founder-name { font-size: 32px; }
    .about-founder-section .g-5 { --bs-gutter-y: 2.5rem; }
}
/* ==========================================
   DIFFERENT & PREMIUM OPPORTUNITY SECTION STYLE
   ========================================== */
.premium-opportunity-section {
    background-color: #021a14; /* Super deep rich dark forest shade */
    overflow: hidden;
}

/* Background Glowing Blurs (Luxury feel add karne ke liye) */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    z-index: 1;
}
.orb-1 {
    width: 400px;
    height: 400px;
    background-color: var(--accent-color);
    top: -10%;
    left: -10%;
}
.orb-2 {
    width: 500px;
    height: 500px;
    background-color: #0d9488;
    bottom: -10%;
    right: -10%;
}

/* Glassmorphism Header Badge */
.custom-badge-glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--accent-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.opp-main-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.opp-subtitle {
    font-size: 15px;
    max-width: 650px;
    line-height: 1.6;
}

/* --- Completely Re-designed Luxury Cards --- */
.opp-luxury-card {
    background: rgba(255, 255, 255, 0.02); /* Sleek translucent dark layer */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

/* Large Tech Step Numbers background me */
.card-step-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03); /* Chhupa hua background number */
    line-height: 1;
    transition: var(--transition);
}

/* Glowing Dynamic Icons Setup */
.opp-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: var(--accent-color);
    font-size: 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.opp-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.opp-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Bottom hidden colored accent strip */
.card-bottom-line {
    width: 40px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: auto;
    padding-top: 0;
    margin-top: 25px;
    transition: var(--transition);
}

/* --- Interactive Hover Magical Effects --- */
.opp-luxury-card:hover, .opp-luxury-card.active-glow {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(16, 185, 129, 0.05);
}

.opp-luxury-card:hover .opp-icon-wrapper, .opp-luxury-card.active-glow .opp-icon-wrapper {
    background: var(--accent-color);
    color: #021a14;
    transform: rotateY(30deg) scale(1.05); /* Unique 3D twist animation */
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.opp-luxury-card:hover .card-step-number, .opp-luxury-card.active-glow .card-step-number {
    color: rgba(16, 185, 129, 0.1); /* Hover par step number chamkega */
}

.opp-luxury-card:hover .card-bottom-line, .opp-luxury-card.active-glow .card-bottom-line {
    width: 100%; /* Line poori expand ho jayegi */
    background-color: var(--accent-color);
}

/* --- High Glossy Neon Glow Button --- */
.btn-premium-glow {
    background-color: var(--accent-color); /* Bright vibrant mint green */
    color: #021a14 !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-premium-glow:hover {
    background-color: #14d496;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
}

/* --- Mobile Fixes --- */
@media (max-width: 767px) {
    .opp-main-title { font-size: 30px; }
    .opp-luxury-card { padding: 30px 20px; }
}
/* ==========================================
   CLIENT TESTIMONIALS CAROUSEL STYLE
   ========================================== */
.testimonial-section {
    background-color: rgba(244, 251, 247, 0.3); /* Halka premium green tint background */
}

/* Card Box Architecture */
.testimonial-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.03);
    border: 1px solid rgba(6, 78, 59, 0.04);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(16, 185, 129, 0.15);
}

/* Background Large Floating Quote Icon */
.quote-icon-bg {
    position: absolute;
    right: 25px;
    bottom: 20px;
    font-size: 80px;
    color: rgba(16, 185, 129, 0.04); /* Ekdum light background shadow quotation */
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

/* Star Ratings */
.rating-stars i {
    color: #fbbf24; /* Golden Yellow stars */
    font-size: 14px;
    margin-right: 2px;
}

.review-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* User Profile Row */
.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #edf9f3;
}

.user-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Verified Buyer Green Tick */
.verified-tick {
    color: var(--accent-color);
    font-size: 14px;
}

.user-location {
    font-size: 12px;
    color: #9ca3af;
    display: block;
}

/* Slider Pagination Dots Customization */
.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    width: 24px; /* Active dot thodi lambi (capsule shape) ho jayegi */
    border-radius: 10px;
}

/* ==========================================
   HEALTH CONCERNS / BUBBLE CATEGORIES STYLE
   ========================================== */
.health-concerns-section {
    background-color: var(--white);
    border-top: 1px solid rgba(6, 78, 59, 0.03);
}

/* Main Card Item Link Wrapper */
.concern-bubble-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    height: 100%;
}

/* Rounded Circle Box for Icons */
.bubble-img-box {
    width: 100px;
    height: 100px;
    background-color: #f4fbf7; /* Premium very light green backdrop tint */
    border: 1px solid rgba(16, 185, 129, 0.08);
    border-radius: 50%; /* Isse box bilkul gol katori jaisa banega */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smooth pop-out push bounce */
}

.bubble-img-box i {
    font-size: 32px;
    color: var(--primary-color); /* Hmari main deep green theme */
    transition: var(--transition);
}

.concern-bubble-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    transition: var(--transition);
}

.concern-count {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
}

/* --- Premium Interactive Hover Effects --- */
.concern-bubble-card:hover .bubble-img-box {
    background-color: var(--primary-color); /* Pure dark green background ho jayega hover par */
    border-color: var(--primary-color);
    transform: scale(1.08) translateY(-4px); /* Box thoda bada aur upar pop hoga */
    box-shadow: 0 10px 25px rgba(6, 78, 59, 0.15);
}

.concern-bubble-card:hover .bubble-img-box i {
    color: var(--white); /* Icon ka rang badalkar white ho jayega */
    transform: scale(1.1);
}

.concern-bubble-card:hover h5 {
    color: var(--accent-color); /* Text ka color mint green chamkega */
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
    .bubble-img-box {
        width: 85px;
        height: 85px;
    }
    .bubble-img-box i {
        font-size: 26px;
    }
    .concern-bubble-card h5 {
        font-size: 13px;
    }
}

/* ==========================================
   PREMIUM DUAL-LAYOUT CONTACT US STYLE
   ========================================== */

/* --- Left Card: Dark Forest Green Info Card --- */
.contact-info-luxury-card {
    background-color: #032b21; /* Hmari theme ka gehra green background */
    border-radius: 24px;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.info-card-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.contact-info-list-items li h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--accent-color); /* Mint Green titles */
}

.contact-info-list-items li p {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Icons rounded circle inside dark card */
.info-icon-circle {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* --- Right Card: Clean White Message Form Card --- */
.contact-form-premium-card {
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(6, 78, 59, 0.03);
    border: 1px solid rgba(6, 78, 59, 0.04);
}

.form-card-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Custom Input Fields Formatting */
.form-group-premium {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-premium label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
}

.form-control-premium {
    background-color: #fcfdfe;
    border: 1px solid #edf2f7;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

/* Glowing Border effect jab user field par click karega */
.form-control-premium:focus {
    border-color: var(--accent-color);
    background-color: var(--white);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.12);
}

/* Placeholder text color reset */
.form-control-premium::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

/* Send message button animation config */
.btn-premium i {
    transition: transform 0.3s ease;
}
.btn-premium:hover i {
    transform: translate(3px, -3px); /* Hover par plane icon real udta hua dikhega */
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .contact-us-section .g-5 { --bs-gutter-y: 2rem; }
    .info-card-title, .form-card-title { font-size: 20px; }
}
/* ==========================================
   BREADCRUMB BANNER
========================================== */
.premium-bg-banner {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background: url('../img/banner.webp') center center/cover no-repeat;
}

/* Overlay */
.premium-bg-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 26, 20, 0.45),
        rgba(5, 59, 46, 0.35)
    );
    z-index: 1;
}

/* Content Above Overlay */
.premium-bg-banner .container,
.premium-bg-banner .row,
.premium-bg-banner .banner-content {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.premium-bg-banner .custom-breadcrumb-list {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
}

.premium-bg-banner .custom-breadcrumb-list a{
    color: rgba(255,255,255,.8);
}



.premium-bg-banner .breadcrumb-item.active{
    color:#fff;
}

/* Heading */
.premium-bg-banner h1{
    color:#fff;
    font-weight:700;
    text-shadow:0 3px 15px rgba(0,0,0,.35);
}

.premium-bg-banner p{
    color:rgba(255,255,255,.9);
}
/* ==========================================
   ADDITIONAL ABOUT CONTENT ARCHITECTURE
   ========================================== */

/* Light tint background variable definition fallback */
.bg-light-tint {
    background-color: #f4fbf7 !important;
}

/* Bullet list hover tweak */
.bg-light-tint.border-start:hover {
    transform: translateX(5px);
    background-color: #eaf7f0 !important;
    transition: all 0.3s ease;
}

/* Rounded design helpers */
.rounded-4 {
    border-radius: 16px !important;
}
.rounded-5 {
    border-radius: 28px !important;
}

/* Subtle typography fix for quote snippet */
.italic {
    font-style: italic;
}
/* ==========================================
   INTERACTIVE MICROMOVEMENTS & HOVER CSS
   ========================================== */

/* 1. Intro Box Box Shadow & Glow */
.luxury-intro-box {
    background: #f8faf9;
    border: 1px solid rgba(6,78,59,0.05);
    transition: all 0.4s ease;
}
.luxury-intro-box:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.06);
    border-color: rgba(132, 204, 22, 0.3);
}

/* 2. Philosophy 3D Cards */
.philo-card {
    background: #f4fbf7;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.philo-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: #ffffff;
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 25px 50px rgba(6, 78, 59, 0.08);
}
.philo-icon-wrapper {
    font-size: 32px;
    color: var(--primary-color);
    transition: transform 0.5s ease;
}
.philo-card:hover .philo-icon-wrapper {
    transform: scale(1.15) rotate(10deg);
    color: #E6C55A;
}

/* 3. Difference & Vision-Mission Lists Hover */
.difference-item-card, .vision-mission-card {
    transition: all 0.4s ease;
    background: #ffffff;
}
.difference-item-card:hover, .vision-mission-card:hover {
    transform: translateX(6px) translateY(-2px);
    border-color: #E6C55A !important;
    box-shadow: 0 15px 30px rgba(6, 78, 59, 0.04);
}
.diff-icon-box, .vm-icon-holder {
    font-size: 26px;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}
.difference-item-card:hover .diff-icon-box, .vision-mission-card:hover .vm-icon-holder {
    transform: scale(1.2);
    color: #E6C55A;
}
.card-inner-title {
    transition: color 0.3s ease;
}
.difference-item-card:hover .card-inner-title, .vision-mission-card:hover .card-inner-title {
    color: #E6C55A;
}

/* 4. Core Values 360 Degree Flip Circle Icons */
.value-interactive-icon {
    width: 70px;
    height: 70px;
    background: #f4fbf7;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(6, 78, 59, 0.05);
}
.core-value-wrapper:hover .value-interactive-icon {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotateY(360deg) scale(1.1); /* 3D horizontal rotation */
    box-shadow: 0 10px 20px rgba(6, 78, 59, 0.15);
}
.value-title {
    transition: color 0.3s ease;
}
.core-value-wrapper:hover .value-title {
    color: #E6C55A;
}

/* 5. Pure CSS Pulse Keyframe for Footer */
.animate-pulse-slow {
    animation: softPulse 3s infinite ease-in-out;
}
@keyframes softPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.9; }
}

/* Dynamic visual box styling */
.dynamic-gradient-box {
    background: linear-gradient(135deg, #021a14 0%, #053b2e 100%);
    box-shadow: 0 20px 45px rgba(2, 26, 20, 0.2);
    transition: box-shadow 0.3s ease;
}
.dynamic-gradient-box:hover {
    box-shadow: 0 25px 55px rgba(132, 204, 22, 0.15);
}
/* ==========================================
   EXCLUSIVE OPPORTUNITY PAGE CSS
   ========================================== */

/* Highlight Box Hover */
.opportunity-highlight-box {
    background: #f8faf9;
    border: 1px solid rgba(6, 78, 59, 0.05);
    transition: all 0.4s ease;
}
.opportunity-highlight-box:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.08);
    border-color: rgba(132, 204, 22, 0.4);
}
.opp-glow-icon {
    font-size: 38px;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}
.opportunity-highlight-box:hover .opp-glow-icon {
    transform: scale(1.2) rotate(10deg);
    color: #84cc16;
}

/* 4-Grid Cards Hover */
.opp-card {
    background: #ffffff;
    border: 1px solid rgba(6, 78, 59, 0.05);
    transition: all 0.4s ease;
}
.opp-card:hover {
    transform: translateY(-8px);
    border-color: #84cc16 !important;
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.08);
}
.opp-card-icon {
    font-size: 32px;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}
.opp-card:hover .opp-card-icon {
    transform: scale(1.2);
    color: #84cc16;
}

/* Step Badge Indicator */
.step-card {
    transition: all 0.3s ease;
    background: #ffffff;
}
.step-card:hover {
    transform: translateY(-5px);
    border-color: #84cc16 !important;
    box-shadow: 0 15px 30px rgba(6, 78, 59, 0.06);
}
.step-number-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 14px;
    font-weight: 800;
    color: #84cc16;
    background: #f4fbf7;
    padding: 2px 10px;
    border-radius: 20px;
}
/* ==========================================
   WHITE BG WITH DARK GREEN CARD CTA STYLES
   ========================================== */

.cta-redesign-section {
    background-color: #ffffff !important; /* Pure White Outer Background */
}

/* Central Dark Forest Green Card Architecture */
.cta-dark-card {
    background: linear-gradient(135deg, #021a14 0%, #053b2e 100%) !important; /* Dark Forest Green */
    border: 1px solid rgba(132, 204, 22, 0.2);
    border-radius: 32px;
    max-width: 920px;
    box-shadow: 0 20px 50px rgba(2, 26, 20, 0.15) !important;
    position: relative;
    overflow: hidden;
}

/* Subtle inner glow for card depth */
.cta-dark-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Badge & Typography */
.cta-badge {
    background: rgba(132, 204, 22, 0.15);
    border: 1px solid rgba(132, 204, 22, 0.3);
    color: #84cc16 !important;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.text-accent-glow {
    color: #84cc16;
    text-shadow: 0 0 20px rgba(132, 204, 22, 0.3);
}

.cta-sub-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    max-width: 680px;
}

/* Action Buttons */
.btn-cta-gold {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    color: #021a14 !important;
    font-weight: 800;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(132, 204, 22, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
}
.btn-cta-gold:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(132, 204, 22, 0.5);
    color: #021a14 !important;
}

.btn-cta-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.btn-cta-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* Slogan Pill Badge inside card */
.cta-slogan-pill {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.slogan-item {
    color: rgba(255, 255, 255, 0.9);
}
.dot-separator {
    color: #84cc16;
}
/* ==========================================
   EXCLUSIVE ACHIEVEMENTS PAGE STYLES
   ========================================== */

/* Highlight Box */
.achievement-highlight-box {
    background: #f8faf9;
    border: 1px solid rgba(6, 78, 59, 0.05);
    transition: all 0.4s ease;
}
.achievement-highlight-box:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.08);
    border-color: rgba(132, 204, 22, 0.4);
}
.achieve-glow-icon {
    font-size: 38px;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}
.achievement-highlight-box:hover .achieve-glow-icon {
    transform: scale(1.2) rotate(10deg);
    color: #84cc16;
}

/* 6 Key Achievements Cards */
.achieve-card {
    background: #ffffff;
    border: 1px solid rgba(6, 78, 59, 0.05);
    box-shadow: 0 5px 15px rgba(6, 78, 59, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.achieve-card:hover {
    transform: translateY(-8px);
    border-color: #84cc16 !important;
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.08);
}
.achieve-card-icon {
    font-size: 30px;
    color: var(--primary-color);
    transition: transform 0.4s ease, color 0.3s ease;
}
.achieve-card:hover .achieve-card-icon {
    transform: scale(1.2);
    color: #84cc16;
}

/* Milestones List Items */
.milestone-check-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 78, 59, 0.04);
}
.milestone-check-item:hover {
    transform: translateX(8px);
    background: #f4fbf7 !important;
    border-color: #84cc16;
}
/* ==========================================
   EXCLUSIVE CONTACT PAGE STYLES
   ========================================== */

/* Info Cards Hover Lift */
.contact-info-card {
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.02);
}
.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: #84cc16 !important;
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.08);
}
.contact-icon-bubble {
    width: 65px;
    height: 65px;
    background: #f4fbf7;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto;
    transition: all 0.4s ease;
}
.contact-info-card:hover .contact-icon-bubble {
    background: var(--primary-color);
    color: #84cc16;
    transform: scale(1.1) rotate(10deg);
}

/* Contact Form Input Glow Controls */
.custom-contact-form .form-control,
.custom-contact-form .form-select,
.custom-contact-form .input-group-text {
    border-color: rgba(6, 78, 59, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}
.custom-contact-form .form-control:focus,
.custom-contact-form .form-select:focus {
    border-color: #84cc16 !important;
    box-shadow: 0 0 10px rgba(132, 204, 22, 0.2) !important;
    background-color: #ffffff !important;
}
/* ==========================================
   ULTRA-LUXURY LEGAL CARDS DESIGN
   ========================================== */

.legal-luxury-card {
    background: #ffffff;
    border: 1px solid rgba(6, 78, 59, 0.08);
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.legal-luxury-card:hover {
    transform: translateY(-10px);
    border-color: #84cc16 !important;
    box-shadow: 0 20px 45px rgba(6, 78, 59, 0.1);
}

/* Badge Styling */
.legal-badge-pill {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-color);
    background: #f4fbf7;
    border: 1px solid rgba(132, 204, 22, 0.3);
    padding: 3px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* Icon Bubble Setup */
.legal-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4fbf7 0%, #e6f7ef 100%);
    color: var(--primary-color);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    transition: all 0.4s ease;
    border: 1px solid rgba(6, 78, 59, 0.05);
}

.legal-luxury-card:hover .legal-icon-box {
    background: linear-gradient(135deg, #021a14 0%, #053b2e 100%);
    color: #84cc16;
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 10px 20px rgba(2, 26, 20, 0.2);
}

/* Card Title */
.legal-card-title {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.legal-luxury-card:hover .legal-card-title {
    color: #84cc16;
}

/* Buttons Styling */
.fs-7 {
    font-size: 13px !important;
}

.btn-preview-light {
    background: #f8faf9;
    border: 1px solid rgba(6, 78, 59, 0.15);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-preview-light:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-download-gold {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    color: #021a14 !important;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(132, 204, 22, 0.3);
}

.btn-download-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(132, 204, 22, 0.5);
    color: #021a14 !important;
}