@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --primary: #064e3b;
    /* Deep Emerald */
    --secondary: #d97706;
    /* Warm Amber */
    --accent: #f59e0b;
    /* Bright Amber */
    --bg-light: #fbfbfb;
    --text-main: #111827;
    --text-muted: #4b5563;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth Reveal Animations */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* Global Transition for Interactive Elements */
a,
button,
.btn,
.product-card,
.gallery-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Global Section Styling */
.section-padding {
    padding: 60px 0;
    /* Reduced as per previous request */
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    /* Standardized for all sections */
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: capitalize;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 0 auto;
}

/* Background Variations */
.bg-white {
    background-color: var(--white);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-green {
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bg-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/leaf.png');
    opacity: 0.05;
    pointer-events: none;
}

/* Navbar Dropdown Hover */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
}

.top-bar i {
    color: var(--secondary);
    margin-right: 8px;
}

/* Navbar Styling */
.navbar {
    padding: 12px 0;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    padding: 0 !important;
}

.brand-logo {
    height: 60px;
    /* Increased size */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@media (max-width: 991px) {
    .brand-logo {
        height: 80px;
        /* Responsive size for tablets */
    }
}

@media (max-width: 575px) {
    .brand-logo {
        height: 50px;
        /* Responsive size for mobile */
    }
}

.brand-logo:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 70px;
    /* Increased size */
    background: transparent;
    /* Removed white background */
    padding: 0;
    border-radius: 0;
}

@media (max-width: 575px) {
    .footer-logo {
        height: 60px;
    }
}

.brand-dr {
    color: var(--primary);
}

.brand-ayuri {
    color: var(--secondary);
}

.nav-link {
    font-weight: 600;
    color: var(--text-main) !important;
    padding: 10px 15px !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary) !important;
}

/* Dropdown Menu styling */
.navbar .dropdown-menu {
    border: 0 !important;
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    border-radius: 8px;
    margin-top: 5px !important;
}

.navbar .dropdown-item {
    font-weight: 500;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    padding: 0;
    margin: 0;
}

.social-icons a i {
    margin: 0 !important;
    padding: 0 !important;
}

.social-icons a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Top Bar Icons Adjustment */
.top-bar .social-icons {
    gap: 8px;
}

.top-bar .social-icons a {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    border-color: rgba(217, 119, 6, 0.5);
}

.top-bar .social-icons a:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Footer Icons Adjustment */
footer .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

footer .social-icons a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-consultation {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.btn-consultation:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section - Preserving Designing */
.hero-slider .carousel-item {
    height: 80vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
}

/* Product Card - Professional Refinement */
.product-card {
    background: var(--white);
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--secondary);
}

.product-img-container {
    width: 100%;
    height: 300px;
    background: #f8f9fa;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.8s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Homepage Specific Card Adjustments */
.homepage-products .product-img-container {
    height: 240px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.homepage-products .product-img-container img {
    max-height: 240px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.product-info {
    padding: 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary) !important;
    margin-bottom: 0px;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

/* Professional Dual Buttons spacing */
.product-actions {
    display: flex;
    gap: 10px;
    /* Precise gap between buttons */
    padding-top: 10px;
}

.btn-view-more {
    flex: 1;
    background: #f8f9fa;
    color: var(--primary);
    border: 1px solid #eee;
    padding: 10px 5px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-view-more:hover {
    background: #fff;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-enquiry {
    flex: 1.2;
    /* Slightly wider enquiry button */
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 5px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 4px;
}

.btn-enquiry:hover {
    background: var(--secondary);
}

.btn-luxury-primary {
    background-color: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    border: none;
    transition: 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-luxury-primary:hover {
    background-color: #043a2c;
    color: white;
    transform: translateY(-2px);
}
.btn-luxury-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid #eee;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    transition: 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-luxury-outline:hover {
    background-color: #f8fbf9;
    border-color: var(--primary);
    color: var(--primary);
}

/* Benefits Section Icons */
.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon-wrapper i {
    color: var(--secondary);
    font-size: 2.5rem;
}

/* Service & Feature Grid Styles */
.service-card {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon-circle {
    width: 90px;
    height: 90px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2.2rem;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
}

.feature-box-v3 {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box-v3:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary);
}

.feature-box-v3 i {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
    display: block;
}

.feature-box-v3 h6 {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0;
}

.hospital-badge {
    background: var(--primary);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.hospital-badge i {
    margin-right: 10px;
}

/* Overlap & Benefit Section Refinements */
.vision-mission-overlap {
    position: relative;
    z-index: 10;
    margin-bottom: -100px;
}

.benefit-icon-v2 {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.benefit-icon-v2 i {
    color: var(--secondary);
    font-size: 2.2rem;
}

.benefit-icon-v2:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.why-choose-section {
    padding-top: 150px !important;
}

/* Footer Styling Refinement */
.footer-brand {
    margin-bottom: 20px;
}

.footer-brand .brand-dr {
    color: var(--white);
}

.footer-brand .brand-ayuri {
    color: var(--secondary);
}

footer h4.footer-heading {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--white) !important;
    font-size: 1.2rem;
}

footer h4.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

/* Testimonial Page Styles */
.testimonial-card-v2 {
    background: #fff;
    padding: 45px 35px;
    border-radius: 25px;
    position: relative;
    border: 1px solid #eee;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
}

.testimonial-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary);
    opacity: 0.05;
    transition: 0.4s;
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.testimonial-card-v2:hover::before {
    opacity: 1;
}

.testimonial-card-v2 .quote-icon {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 3rem;
    color: rgba(var(--primary-rgb), 0.05);
    transition: 0.3s;
}

.testimonial-card-v2:hover .quote-icon {
    color: rgba(var(--secondary-rgb), 0.15);
    transform: rotate(-10deg);
}

.testimonial-card-v2 .stars i {
    color: var(--secondary);
    font-size: 0.85rem;
    margin-right: 2px;
}

.testimonial-card-v2 .testimonial-text {
    font-style: italic;
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-card-v2 .client-name {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.testimonial-card-v2 .client-meta {
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.max-w-700 {
    max-width: 700px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

footer p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .hero-slider .carousel-item {
        height: 60vh;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .product-actions {
        flex-direction: column;
    }
}

/* Modal Styling */
/* #enquiryModal .modal-content {
    border-top: 5px solid var(--secondary);
    border-radius: 15px;
} */

/* WhatsApp pulse fix */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Premium Masonry Gallery */
.gallery-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 100%;
}

.gallery-item {
    display: block;
    width: calc(33.333% - 1rem);
    margin-bottom: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1 !important;
    transform: none !important;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 78, 59, 0.7);
    /* Primary Green with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

@media (max-width: 991px) {
    .gallery-item {
        width: calc(50% - 0.75rem);
    }
}

@media (max-width: 575px) {
    .gallery-item {
        width: 100%;
    }
}

/* Founder Section Enhancements */
.founder-img {
    transition: transform 0.5s ease;
    border: 10px solid #f8f9fa;
}

.founder-img:hover {
    transform: scale(1.02);
}

.founder-card .text-secondary {
    color: var(--secondary) !important;
}

.founder-desc p {
    color: var(--text-muted);
}

/* About Section Classes */
.founder-subtitle {
    text-transform: uppercase;
    color: var(--secondary) !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.founder-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

.founder-qualification {
    color: var(--secondary) !important;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.founder-paragraph {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.btn-outline-founder {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 3rem;
    border-radius: 50rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-founder:hover {
    background: var(--primary);
    color: var(--white);
}

/* Premium Light Diamond Background */
.bg-textured {
    background-color: var(--primary) !important;
    background-image:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%),
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.04) 35px, rgba(255, 255, 255, 0.04) 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.04) 35px, rgba(255, 255, 255, 0.04) 36px) !important;
    position: relative;
    overflow: hidden;
}

/* Hero Slides (Removing Inline Styles) */
.hero-slide-1 {
    background-image: url('../images/baner-image.png');
}

.hero-slide-2 {
    background-image: url('../images/baner-image2.png');
}

/* Footer Contact Icons (Removing Inline Styles) */
.footer-contact-icon {
    font-size: 1.1rem;
    width: 20px;
    color: var(--white) !important;
}

.footer-hr {
    margin-top: 3rem;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Page Banner Styling */
.page-banner {
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "•";
}

.breadcrumb-item.active {
    color: var(--secondary) !important;
    font-weight: 600;
}

/* Custom Promo Close Button */
.promo-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1060;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.promo-close-btn:hover {
    background-color: var(--secondary);
    transform: scale(1.1) rotate(90deg);
}

.promo-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.shadow-luxury {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.promo-overlay-actions {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

#promoModal .modal-dialog {
    max-width: 600px;
}

@media (max-width: 767px) {
    #promoModal .modal-dialog {
        margin: 20px;
        max-width: 100%;
    }

    .promo-overlay-actions .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Animation for the modal content */
.modal.fade .promo-image-wrapper {
    transform: scale(0.8) translateY(20px);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .promo-image-wrapper {
    transform: scale(1) translateY(0);
}

.btn-luxury {
    background: linear-gradient(135deg, var(--secondary), #b45309);
    color: var(--white);
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-luxury:hover {
    background: linear-gradient(135deg, #b45309, var(--secondary));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Product Detail Page Styles */
.product-detail-img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
    display: block;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
}

.product-mrp {
    color: #888;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.product-current-price {
    color: #e53e3e;
    font-weight: 800;
    font-size: 1.5rem;
}

@media (max-width: 991px) {
    .product-detail-img {
        max-height: 450px;
        margin-bottom: 30px;
        padding: 15px;
    }
}

.product-detail-img:hover {
    transform: scale(1.02);
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
}

.benefit-list i {
    color: var(--secondary);
    margin-right: 15px;
    margin-top: 5px;
}

.product-badge {
    display: inline-block;
    background: rgba(217, 119, 6, 0.1);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product-meta {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin: 25px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.meta-item i {
    color: var(--primary);
    margin-right: 10px;
}

.related-product-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(217, 119, 6, 0.2);
}

.related-product-card img {
    width: auto;
    height: 110px;
    object-fit: contain;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
}

.related-product-card:hover img {
    transform: scale(1.08);
}

.related-product-card h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.related-product-card:hover h5 {
    color: var(--secondary);
}

.btn-all-products {
    background: var(--primary);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-all-products:hover {
    background: #043a2c;
    border-color: #043a2c;
    color: white;
    transform: translateY(-2px);
}

.btn-contact-specialist {
    background: transparent;
    color: var(--primary);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-contact-specialist:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-pill {
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Compact Quality Assurance Section */
.product-extra-info {
    padding: 60px 0;
    background: #fdfaf5;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.qa-card-compact {
    background: #fff;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qa-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.1);
    border-color: var(--secondary);
}

.qa-icon-wrap {
    width: 60px;
    height: 60px;
    background: #fdfaf5;
    color: var(--secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    transition: 0.3s;
}

.qa-card-compact:hover .qa-icon-wrap {
    background: var(--secondary);
    color: white;
}

.qa-card-compact h6 {
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.qa-card-compact p {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.trust-banner-compact {
    background: var(--primary);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.trust-banner-compact p {
    color: #fff;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Contact Page Styles */
.contact-card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.contact-info-box {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    height: 100%;
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.form-control {
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 8px;
    background: #f8f9fa;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
    background: var(--white);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.contact-bg-pattern {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.1;
    width: 200px;
    pointer-events: none;
}

/* Gallery Lightbox Navigation */


.gallery-counter {
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.z-index-modal {
    z-index: 1070;
}

/* Product Lightbox Styles */


.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1060;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-nav:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

@media (max-width: 768px) {
    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

.product-lightbox-img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 0;
}

.product-image-card {
    max-width: 550px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-image-card img {
    max-height: 70vh;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
}

@media (max-width: 767px) {
    .product-image-card {
        max-width: 90%;
        padding: 15px;
    }
    .product-image-card img {
        max-height: 50vh;
    }
}

.product-modal-close {
    background: #f1f1f1;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: 0.3s;
    color: #555;
    z-index: 10;
}

.product-modal-close:hover {
    background: #e1e1e1;
    color: #000;
    transform: rotate(90deg);
}

@media (max-width: 575px) {
    .product-modal-close {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

/* Header Action Icons */
.header-icon {
    font-size: 1.25rem;
    color: var(--primary);
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    position: relative;
    overflow: visible !important;
}

.header-icon:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--secondary);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 17px; /* Adjusted for border and centering */
    text-align: center;
    border: 2px solid var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 99;
    pointer-events: none;
    display: block;
    padding: 0;
    margin: 0;
}

/* Login Page Specific Styles */
.login-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important;
}

.input-group-text {
    border-radius: 8px 0 0 8px !important;
}

#userLoginForm .form-control {
    border-radius: 0 8px 8px 0 !important;
}

.color-primary {
    color: var(--primary) !important;
}
/* Gallery Toggle Buttons */
.gallery-toggle {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-toggle .btn-toggle {
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    text-decoration: none;
}

.gallery-toggle .btn-toggle.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(6, 78, 59, 0.2);
}

.gallery-toggle .btn-toggle:hover:not(.active) {
    background: rgba(6, 78, 59, 0.05);
    color: var(--primary);
}

/* Portrait Video Card V2 */
.video-card-v2 {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card-v2:hover {
    transform: translateY(-5px);
}

.video-thumb-v2 {
    position: relative;
    aspect-ratio: 9/16; /* Portrait */
    background: #000;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
}

.video-thumb-v2 video, .video-thumb-v2 img {
    width: 101%; /* Slightly larger to hide any potential gaps */
    height: 101%;
    object-fit: cover;
    display: block;
    margin: -0.5%;
}

.video-overlay-v2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: 0.3s;
}

.video-card-v2:hover .video-overlay-v2 {
    opacity: 1;
    background: rgba(0,0,0,0.2);
}

.play-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: 0.4s;
}

.video-card-v2:hover .play-circle {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.1);
}

/* Swiper Pagination Customization */
.videoSwiper .swiper-pagination-bullet {
    background: var(--primary);
}

.videoSwiper .swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 10px;
}

/* Professional Video Modal V2 */
.portrait-modal {
    max-width: 450px !important;
}

.video-container-v2 {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.portrait-video {
    width: 100%;
    aspect-ratio: 9/16;
    display: block;
}

.video-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.video-close-btn:hover {
    background: var(--secondary);
    transform: rotate(90deg);
}

.video-share-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
}

.video-meta h4 {
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.share-actions {
    display: flex;
    gap: 12px;
    pointer-events: auto;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.share-btn:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

.share-btn.whatsapp:hover { background: #25D366; color: #fff; }
.share-btn.facebook:hover { background: #1877F2; color: #fff; }
.share-btn.copy-link:hover { background: var(--secondary); color: #fff; }

@media (max-width: 576px) {
    .portrait-modal {
        max-width: 90% !important;
        margin: 0 auto;
    }
}
