/* Custom Corporate Palette & Fluid Typography Setup */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --navy-blue: #0B132B;
    --navy-light: #1C2541;
    --gold: #FFD700;
    --charcoal: #333333;
    --emerald-green: #50C878;
    --whatsapp-green: #25D366;
    --light-bg: #f4f6f8;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 75px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 45px 0;
    }
}

.text-center {
    text-align: center;
    margin-bottom: 30px;
}

.text-gold {
    color: var(--gold);
}

.bg-light {
    background-color: #faf1ea;
}

.bg-white {
    background-color: var(--white);
}

.bg-navy {
    background-color: #2b0b0b;
}

.text-white {
    color: var(--white);
}

.w-100 {
    width: 100%;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}


/* Responsive Grid */
.responsive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 30px;
    align-items: start;
}



/* Typography */
h1, h2, h3, h4, h5, h6, .logo, .btn, .btn1, .dropbtn, th {
    font-family: 'Outfit', sans-serif;
}

h1 {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    line-height: 1.25;
    color: #c80000;
    margin-bottom: 16px;
    font-weight: 800;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    margin-bottom: 16px;
    color: #c80000;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 12px;
    color: var(--navy-light);
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}


/* ---------------------------------------------------
   BUTTONS & ICONS FIX (Strict alignments & no-wrap)
------------------------------------------------------ */
.btn {
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    /* Fixes messy breaking */
}

.btn i {
    margin-right: 8px;
    font-size: 18px;
    flex-shrink: 0;
}

/* Fixes icon sizes */
.btn-gold {
    background: var(--gold);
    color: var(--navy-blue);
}

.btn-gold:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

.btn-emerald {
    background: var(--emerald-green);
    color: var(--navy-blue);
}

.btn-emerald:hover {
    background: #3eb565;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy-blue);
}

.btn-navy {
    background: var(--navy-light);
    color: var(--white);
}

/* Existing Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #d90404;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: padding 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 20px;
    background: #d90404;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.logo {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    z-index: 1001;
    white-space: nowrap;
    text-decoration: none;
}

.logo span {
    color: var(--gold);
}

.menu-toggle {
    color: #ffffff !important;
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-links a:hover {
    color: var(--gold);
}

/* --- NEW DROPDOWN STYLES --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 0;
    position: relative;
    transition: var(--transition);
}

.dropbtn::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown:hover .dropbtn::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.dropdown:hover .dropbtn {
    color: var(--gold);
}

/* Base dropdown positioning and transition styles (Desktop default) */
.dropdown-content {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0px 8px 24px rgba(0,0,0,0.12);
    z-index: 1002;
    top: 100%;
    left: 0;
    border-radius: 6px;
    overflow: hidden;
    transform: translateY(12px) scale(0.98);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.nav-links .dropdown-content a {
    color: #000000;
}

.nav-links .dropdown-content a:hover {
    background-color: #f8fafc;
    color: #c80000;
}

/* Show dropdown on hover (Desktop) */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* --- DROPDOWN COLUMN AND ROW GRID FORMAT FOR DESKTOP --- */
@media screen and (min-width: 769px) {
    /* Blogs Dropdown - 3 Columns */
    .dropdown-content.blogs-grid {
        min-width: 800px;
        max-width: 95vw;
        right: -20px;
        left: auto;
        padding: 12px;
    }
    
    .dropdown:hover .dropdown-content.blogs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    /* Calculators Dropdown - 2 Columns */
    .dropdown-content.calculators-grid {
        min-width: 540px;
        max-width: 95vw;
        right: -10px;
        left: auto;
        padding: 12px;
    }
    
    .dropdown:hover .dropdown-content.calculators-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    /* Footer-specific alignments to prevent left screen clipping and make them dropup to avoid bottom overflow */
    .footer-col .dropdown-content {
        left: 0;
        right: auto;
        bottom: 100%;
        top: auto;
        margin-bottom: 10px;
    }
    
    /* Link styling for grid items */
    .dropdown-content.blogs-grid a, 
    .dropdown-content.calculators-grid a {
        border-bottom: none;
        border-radius: 4px;
        font-size: 13.5px;
        display: flex;
        align-items: center;
        padding: 10px 12px;
        transition: var(--transition);
        line-height: 1.3;
        background-color: #f8fafc;
        border: 1px solid #e2e8f0;
        color: #333333;
    }

    .dropdown-content.blogs-grid a:hover, 
    .dropdown-content.calculators-grid a:hover {
        background-color: #f1f5f9;
        color: #c80000 !important;
        border-color: #cbd5e1;
    }
}


/* --- MOBILE RESPONSIVENESS --- */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: #c80000;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        overflow-y: auto;
        transition: left 0.3s ease-in-out;
    }

    .nav-links.active {
        left: 0;
    }

    /* Mobile Dropdown Fixes */
    .dropdown {
        width: 100%;
        padding: 17px;
    }
    
    .dropdown-content {
        position: static; /* Removes absolute positioning so it pushes content down */
        box-shadow: none;
        background-color: transparent;
        display: none; /* Handled by JS on mobile */
        padding-left: 15px;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        transition: none !important;
    }

    .nav-links .dropdown-content a {
        color: var(--white);
        border-bottom: none;
        padding: 10px 0;
    }

    .nav-links .dropdown-content a:hover {
        background-color: transparent;
        color: var(--gold);
    }
    
    /* Utility class to open dropdown on mobile */
    .dropdown-content.show {
        display: block;
    }
}


/* ---------------------------------------------------
   HOME BANNER FIX (High quality industrial background)
------------------------------------------------------ */
.hero {
    /* min-height: 100vh;
    background-color: var(--navy-blue); 
    background-image: url('images/banner.jpg');  */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    /* padding: 100px 20px 40px;  */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 20, 38, 0.75); /* Deep elegant dark blue overlay for text readability */
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    max-width: 850px;
    width: 90%;
    color: var(--white);
    text-align: center;
    padding-top: 45px; /* Pushes content down to account for the fixed header height */
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Features */
.feature-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 30px;
    color: var(--gold);
    margin-right: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 35px;
    text-align: center;
}

.feature-item h4 {
    margin-bottom: 5px;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    background: var(--white);
    border: 2px solid #2b0b0b;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: #2b0b0b;
    border-radius: 4px;
    flex-grow: 1;
    text-align: center;
    max-width: 200px;
}

.tab-btn.active,
.tab-btn:hover {
    background: #890000;
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.plant-text-content p {
    text-align: justify;
}

/* ---------------------------------------------------
   YOUTUBE VIDEO SIZE & POSTER FIXES
------------------------------------------------------ */
.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* This ensures the YouTube iframe poster stays perfectly sized */
.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #000;
}

.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Comparison Grid inside Tabs */
.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.comp-card {
    background: var(--white);
    padding: 25px;
    border-left: 4px solid var(--navy-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 0 8px 8px 0;
}

/* Responsive Table Wrapper */
/* .table-container { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-radius: 8px; background: var(--white); margin-bottom: 20px; }
table { width: 100%; min-width: 1000px; border-collapse: collapse; }
th { background: var(--navy-light); color: var(--white); padding: 12px 15px; text-align: left; white-space: nowrap; }
td { padding: 12px 15px; border-bottom: 1px solid #ddd; font-size: 14px; }
tr:nth-child(even) { background-color: #f9f9f9; } */

/* Uses & Gallery */
.uses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    text-align: center;
}

.use-card {
    background: var(--white);
    padding: 25px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.use-card:hover {
    transform: translateY(-5px);
}

.use-card i {
    font-size: 35px;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* Calculator */
.calc-container {
    max-width: 600px;
}

.calculator-box {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    color: var(--charcoal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.calc-input {
    margin-bottom: 15px;
}

.calc-input label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 14px;
}

.calc-input input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.calc-results {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed #ccc;
}

/* Reviews & FAQ */
.review-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-style: italic;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-btn {
    background: var(--navy-blue);
    color: var(--white);
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    border-radius: 4px;
}

.faq-btn:hover,
.faq-btn.active {
    background: var(--navy-light);
    color: var(--gold);
}

.faq-content {
    padding: 0 20px;
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-bottom: 10px;
    border-radius: 0 0 4px 4px;
}

/* Forms */
.contact-form {
    background: var(--white);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Footer */
.grid-4-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col .dropdown-content a {
    color: #000000;
}

.footer-col .dropdown-content a:hover {
    color: #c80000;
    background-color: #f1f1f1;
}

.contact-list li {
    display: flex;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
    align-items: flex-start;
}

/* ---------------------------------------------------
   SOCIAL LOGOS FIX (Perfect Circles, No Squishing)
------------------------------------------------------ */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
    /* Prevents logos from stretching out of shape */
}

.social-links a i {
    font-size: 18px;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 20px;
    color: #888;
    font-size: 0.85rem;
}



.btn-chat {
    background-color: var(--gold);
    color: var(--navy-blue);
}

/* Live Chat Box */
.chat-box-container {
    position: fixed;
    bottom: 85px;
    right: 20px;
    width: 300px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    overflow: hidden;
    display: none;
    flex-direction: column;
    animation: scaleUp 0.3s ease;
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: var(--navy-blue);
    color: var(--white);
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
}

.close-chat {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
}

.chat-body {
    padding: 15px;
    height: 220px;
    background: #f4f6f8;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-msg {
    max-width: 85%;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
}

.bot-msg {
    background: #e2e8f0;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.user-msg {
    background: var(--navy-light);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-footer {
    display: flex;
    padding: 10px;
    border-top: 1px solid #e2e8f0;
    background: var(--white);
}

.chat-footer input {
    flex: 1;
    border: none;
    padding: 8px;
    outline: none;
    font-size: 14px;
}

.chat-footer button {
    background: var(--gold);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    color: var(--navy-blue);
    cursor: pointer;
}

/* Animations */
.animate-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-fade {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: block;
    }

    

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .tabs {
        flex-direction: column;
        width: 100%;
    }

    .tab-btn {
        max-width: 100%;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .tab-btn:first-child {
        border-radius: 4px 4px 0 0;
    }

    .tab-btn:last-child {
        border-radius: 0 0 4px 4px;
    }

    .plant-text-content p {
        text-align: left;
    }

    .chat-box-container {
        width: calc(100% - 40px);
        bottom: 85px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px; /* Uniform height for all slides on desktop */
    overflow: hidden;
}

/* Wrapper that moves to slide the images */
.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.slide {
    min-width: 100%;
    height: 100%;
}

/* The Images - Stretched/cropped dynamically to fill container and keep heights identical */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Glassmorphic Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.nav-btn:hover {
    background: var(--gold);
    color: var(--navy-blue);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 25px;
}

.next {
    right: 25px;
}

/* Dot Indicators */
.dots-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

/* Responsive Heights for Smaller Devices */
@media (max-width: 768px) {
    .slider-container {
        height: 350px; /* Uniform height for all slides on tablet */
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev {
        left: 15px;
    }

    .next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 300px; /* Increased height for mobile view */
        margin-top: 75px; /* Pushes the slider below the fixed navbar */
    }
}


/* // ----------------
// Hover Keywords
// ---------------- */

/* Container */
.plant-container {
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* List Item Wrapper */
.plant-item {
    display: block;
    margin-bottom: 5px;
}

/* Anchor Tag Styling */
.plant-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333333;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 4px;
}

/* Red Starting Arrow */
.plant-item a::before {
    content: "➔";
    /* Unicode right arrow */
    color: #e74c3c;
    /* Red color */
    font-size: 1.2rem;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.plant-item a:hover {
    color: #e74c3c;
    /* Red text on hover */
    background-color: #fcf4f4;
    /* Light red background tint */
}

.plant-item a:hover::before {
    transform: translateX(5px);
    /* Arrow moves slightly to the right */
}

/* Horizontal Rule (hr) Styling */
.plant-item hr {
    border: none;
    border-bottom: 1px solid #dddddd;
    margin: 0 10px;
    transition: border-color 0.3s ease;
}

/* Change HR color when the link above it is hovered */
.plant-item:hover hr {
    border-color: #e74c3c;
    /* Red hr on hover */
}

/* Active/Clicked State from JavaScript */
.plant-item a.active {
    color: #e74c3c;
    font-weight: bold;
}

.plant-item a.active::before {
    transform: translateX(5px);
}

/* Responsive Adjustments for Mobile */
@media (max-width: 480px) {
    .plant-item a {
        font-size: 1rem;
        padding: 12px 8px;
    }

    .plant-item a::before {
        font-size: 1.1rem;
    }
}

/* ------------
Youtube Short video
-------------- */

/* Container limits the maximum size on desktop and centers it */
.youtube-short-container {
    max-width: 360px;
    /* Adjust this value to make the video larger/smaller on desktop */
    width: 100%;
    /* Ensures it shrinks on smaller mobile screens */
    margin: 0 auto;
    /* Centers the container horizontally */
    padding: 20px;
    /* Optional spacing around the video */
    box-sizing: border-box;
}

/* The iframe itself */
.youtube-short-container iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    /* Crucial: Maintains the vertical Short format */
    border-radius: 16px;
    /* Optional: Adds rounded corners to look like a mobile app */
    border: none;
    /* Removes the default iframe border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* Optional: Adds a subtle shadow */
}

/* Responsive Table Wrapper with Left & Right Margins */
.table-responsive {
    width: 90%;
    /* Ensures 10% total space is left for margins */
    margin: 0 5%;
    /* 5% margin on left and right sides */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    /* min-width: 800px; */
}

th,
td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
    line-height: 1.5;
}

th {
    background-color: #bb0000;
    color: white;
    font-size: 16px;
    position: sticky;
    top: 0;
}

/* Extra Smooth Red Hover Effect */
tbody tr {
    /* Smoother transition using ease-in-out and a slightly longer duration */
    transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}

tbody tr:hover {
    background-color: #f15d5d;
    /* Solid red background */
    color: white;
    /* White text on hover */
}

.benefit-highlight {
    font-weight: bold;
}

ul {
    margin: 0;
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

/* Button Styles */
.btn1 {
    display: inline-block;
    background: #c80000;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
    /* margin-left: 40%; */
    margin-top: 2%;
}

/* Hover effect on button */
.btn1:hover {
    background: rgb(255, 196, 70);
    color: black;
}

/* Arrow animation */
.btn1 span {
    display: inline-block;
    transition: 0.3s;
    margin-left: 5px;
}

.btn1:hover span {
    transform: translateX(5px);
}

/* -------
  Blog
  -------- */
/* Slider Layout */
/* -------
  Blog Section (Premium Editorial System)
  -------- */
.blog-section {
    background: #f8fafc; /* Sleek, very light neutral background */
    padding: 90px 0;
}

.blog-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 40px; /* Leave space for next/prev buttons to sit outside the container edges */
}

.blog-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0 35px 0; /* Space for elegant card shadows */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.blog-slider::-webkit-scrollbar {
    display: none;
}

/* Premium Blog Card Styles */
.blog-card {
    flex: 0 0 calc(33.333% - 20px); /* 3 cards visible on desktop */
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(11, 19, 43, 0.03) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease !important;
    display: flex;
    flex-direction: column;
    padding: 0 !important; /* Ensure image is flush at edges */
}

.blog-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 50px -15px rgba(11, 19, 43, 0.12) !important;
    border-color: rgba(200, 0, 0, 0.2);
}

/* Image/Media Container with Hover Zoom */
.card-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #f1f5f9;
    position: relative;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .card-media img {
    transform: scale(1.06);
}

/* Dynamic category tag overlaid on image */
.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(11, 19, 43, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

/* Card Content padding & layout */
.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

/* Read time & date strip */
.card-meta-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
}

.card-meta-strip i {
    color: #c80000;
    font-size: 11px;
}

.blog-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.25s ease;
}

.blog-card:hover .blog-title {
    color: #c80000;
}

.blog-excerpt {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Premium Text CTA Link */
.blog-card .btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent !important;
    color: #c80000 !important;
    padding: 0 !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border: none !important;
    box-shadow: none !important;
    transition: color 0.25s ease, transform 0.25s ease !important;
    cursor: pointer;
    margin-top: auto; /* Pushes to bottom */
    width: fit-content;
}

.blog-card .btn1 span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 6px;
    font-size: 1.05rem;
}

.blog-card:hover .btn1 span {
    transform: translateX(6px);
}

.blog-card .btn1:hover {
    color: var(--navy-blue) !important;
    transform: none !important;
}

/* Premium Arrow Buttons sitting outside the slider */
.slider-btn {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(11, 19, 43, 0.05);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: var(--navy-blue);
    font-size: 18px;
    transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.slider-btn:hover {
    background: #c80000;
    color: var(--white);
    border-color: #c80000;
    box-shadow: 0 8px 20px rgba(200, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: -24px;
}

.next-btn {
    right: -24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-card {
        flex: 0 0 calc(50% - 15px); /* 2 cards visible on tablets */
    }
}

@media (max-width: 768px) {
    .blog-slider-wrapper {
        padding: 0 15px; /* Less margin on mobile */
    }
    
    .prev-btn, .next-btn {
        display: none; /* Swipe natively on mobile */
    }
    
    .blog-card {
        flex: 0 0 85%; /* Let user see a peek of the next card */
    }
}

@media (max-width: 600px) {
    .blog-card {
        flex: 0 0 100%;
        /* 1 card visible on mobile */
    }

    .prev-btn,
    .next-btn {
        display: none;
        /* Hide buttons on mobile, rely on swipe */
    }

    .blog-slider {
        padding-bottom: 20px;
        /* Extra space for mobile shadow */
    }
}

/* --- OPTIMIZED CSS --- */
/* Overlay to blur the screen and darken background */
.form-overlay {
    position: fixed;
    inset: 0;
    /* Shorthand for top: 0, right: 0, bottom: 0, left: 0 */
    background-color: rgba(0, 0, 0, 0.4);
    /* Semi-transparent dark background */
    backdrop-filter: blur(8px);
    /* Blurs the background */
    -webkit-backdrop-filter: blur(8px);
    /* Safari support */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    /* Hidden by default with smooth fade-in */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* When the 'active' class is added via JS */
.form-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* The actual popup box */
.form-modal {
    background: #fff;
    padding: 30px 20px 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    /* Will-change optimizes animations by hinting the browser */
    will-change: transform, opacity;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 28px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

/* Basic styling for your form elements so they fit nicely */
.contact-form input:not([type="submit"]),
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
}

 .floating-icons {
    position: fixed;
    right: 15px;
    bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; /* Space between icons */
    z-index: 1000;
  }

  /* Common style for icons */
  .floating-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
  }

  /* WhatsApp Icon */
  .whatsapp {
    background-color: #25D366;
  }
  .whatsapp:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
  }

  /* Call Icon */
  .call {
    background-color: #007bff;
  }
  .call:hover {
    background-color: #0056b3;
    transform: scale(1.1);
  }

  /* ---------
  About Us Page 
  -------------- */

/* ==========================================================================
   MODERN UX & INTERACTION ENHANCEMENTS (Color Palette Intact)
   ========================================================================== */

/* 1. BUTTON HOVERS & ACTIVE STATES */
.btn, .btn1, .btn-gold, .btn-emerald, .btn-outline {
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), 
                background-color 0.25s ease, 
                color 0.25s ease, 
                box-shadow 0.25s ease !important;
}

.btn:hover, .btn1:hover {
    transform: translateY(-4px) scale(1.02);
}

.btn-gold:hover {
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3) !important;
}

.btn-emerald:hover {
    box-shadow: 0 8px 20px rgba(80, 200, 120, 0.3) !important;
}

.btn1:hover {
    box-shadow: 0 8px 20px rgba(255, 196, 70, 0.3) !important;
}

.btn:active, .btn1:active {
    transform: translateY(-1px) scale(0.98);
}

/* 2. CARDS ELEVATION & TILT ON HOVER */
.use-card, .comp-card, .review-card, .calculator-box, .form-modal {
    border-radius: 14px !important;
    box-shadow: 0 10px 30px -10px rgba(11, 19, 43, 0.08) !important;
    padding: 25px 20px !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease,
                background-color 0.3s ease !important;
    will-change: transform, box-shadow;
}

.calculator-box {
    padding: 30px !important;
}

.form-modal {
    padding: 30px 20px 20px !important;
}

.comp-card {
    border-radius: 0 14px 14px 0 !important; /* Keep left flat since it has a navy-blue border bar */
    padding: 25px !important;
}

.use-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(11, 19, 43, 0.15) !important;
    border-bottom: 3px solid var(--gold);
}



.comp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(11, 19, 43, 0.12) !important;
}

.review-card:hover {
    transform: translateX(5px);
    box-shadow: 4px 12px 30px rgba(0, 0, 0, 0.08) !important;
}

/* 3. HERO CAROUSEL: SMOOTH PILL DOTS & PROGRESS BAR */
.dot {
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.35s ease, 
                border-radius 0.35s ease !important;
}

.dot.active {
    width: 32px !important;
    height: 10px !important;
    border-radius: 5px !important;
    background-color: var(--white) !important;
}

.slider-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--gold);
    z-index: 15;
    pointer-events: none;
}

.slider-progress-bar.running {
    width: 100%;
    transition: width 5000ms linear;
}

/* 4. TABLE HOVERS & ACCENTS */
tbody tr {
    transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                color 0.3s ease, 
                transform 0.2s ease, 
                box-shadow 0.2s ease !important;
}

tbody tr:hover {
    background-color: #f15d5d !important;
    color: white !important;
    box-shadow: 0 8px 24px rgba(241, 93, 93, 0.25);
    transform: scale(1.008);
    z-index: 2;
}

/* 5. FAQ ACCORDION COMPONENT ACCENT & ROTATING ARROWS */
.faq-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-radius 0.3s ease !important;
}

.faq-btn::after {
    content: "\f078"; /* FontAwesome Angle Down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.faq-btn.active::after {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-content {
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                padding 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* 6. FLOATING ACTION ICONS PULSING SHADOWS */
.floating-icons a {
    position: relative;
    will-change: transform;
}

.floating-icons a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.floating-icons .whatsapp::after {
    border: 2px solid #25D366;
    animation: ripplePulse 2s infinite ease-out;
}

.floating-icons .call::after {
    border: 2px solid #007bff;
    animation: ripplePulse 2s infinite ease-out;
    animation-delay: 1s;
}

@keyframes ripplePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* 7. CHATBOT ENTRANCE & TYPING INDICATOR */
.chat-box-container {
    animation: springySlide 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    will-change: transform, opacity;
}

@keyframes springySlide {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Typing indicator simulator style */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    width: fit-content;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background-color: var(--charcoal);
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce 1.4s infinite ease-in-out both;
    opacity: 0.6;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.chat-msg {
    opacity: 0;
    transform: scale(0.85) translateY(10px);
}

.bot-msg.animate-bubble {
    animation: chatBubbleEntrance 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform-origin: bottom left;
}

.user-msg.animate-bubble {
    animation: chatBubbleEntrance 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform-origin: bottom right;
}

@keyframes chatBubbleEntrance {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* 8. GLASSMORPHIC FORM POPUPS */
.form-overlay {
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.form-overlay.active .form-modal {
    animation: popupSpring 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popupSpring {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* 9. PREMIUM INPUT FIELDS & FOCUS GLOWS */
input[type="number"],
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    background-color: #f8fafc !important;
    color: var(--charcoal) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    outline: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: none !important;
}

input[type="number"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    background-color: var(--white) !important;
    border-color: #c80000 !important; /* Glowing Red border on focus */
    box-shadow: 0 0 0 4px rgba(200, 0, 0, 0.15) !important; /* Soft red shadow ring */
}

/* 10. CLEAN BORDERLESS COMPARISON TABLES */
.table-responsive {
    width: 95% !important;
    margin: 30px auto !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px -10px rgba(11, 19, 43, 0.08) !important;
    overflow: hidden !important;
    border: 1px solid #e2e8f0 !important;
}

table {
    border-collapse: collapse !important;
}

th, td {
    padding: 14px 18px !important;
    border: none !important;
    border-bottom: 1px solid #e2e8f0 !important;
    text-align: left !important;
    font-size: 15px !important;
}

th {
    background-color: var(--navy-blue) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    border-bottom: 3px solid var(--gold) !important;
}

tbody tr:last-child td {
    border-bottom: none !important;
}

tbody tr {
    transition: background-color 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

tbody tr:hover {
    background-color: rgba(200, 0, 0, 0.04) !important;
    color: #c80000 !important;
    box-shadow: inset 4px 0 0 0 #c80000 !important; /* Left red highlight line */
    transform: none !important; /* Avoid row jumpiness when scaling */
}

/* ==========================================================================
   ULTRA-MODERN REDESIGN ADDITIONS
   ========================================================================== */

/* 11. COMPANY STATISTICS STRIP */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(11, 19, 43, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 19, 43, 0.08);
}

.stat-icon {
    font-size: 24px;
    color: #c80000;
    margin-bottom: 8px;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-blue);
    line-height: 1.2;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
}

/* 12. CAPABILITIES & ABOUT CARDS */
.capability-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.cap-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cap-item i {
    color: #c80000;
    font-size: 20px;
    margin-top: 3px;
}

.cap-item strong {
    color: var(--navy-light);
    font-size: 1.05rem;
    display: block;
    margin-bottom: 4px;
}

.cap-item p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0;
}

.about-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
}

.bullets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.bullets-grid li {
    font-size: 0.9rem;
    color: var(--charcoal);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
}

.bullets-grid li i {
    color: #c80000;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.bullets-grid li div {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.bullets-grid li strong {
    color: var(--navy-light);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2px;
    display: block;
}

.bullets-grid li p {
    color: #555;
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.45;
}

.factory-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.image-overlay-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(11, 19, 43, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.image-overlay-badge strong {
    color: var(--gold);
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.image-overlay-badge span {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* 13. SPECIFICATION CHIPS */
.spec-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.spec-chip {
    background: rgba(11, 19, 43, 0.05);
    color: var(--navy-light);
    border: 1px solid rgba(11, 19, 43, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.spec-chip i {
    color: #c80000;
}

/* 14. MODERN RANGE SLIDERS */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.slider-header label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--charcoal);
}

.slider-val {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #c80000;
    font-size: 1.05rem;
}

.modern-slider {
    -webkit-appearance: none;
    width: 100% !important;
    height: 6px !important;
    background: #e2e8f0 !important;
    border-radius: 3px !important;
    outline: none !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
    border: none !important;
}

.modern-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #c80000;
    border: 3px solid var(--white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.1s ease;
}

.modern-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* 15. PROPORTION BAR GRAPH & RESULT TILES */
.margin-proportion-container {
    margin: 20px 0 25px 0;
}

.proportion-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.label-cost {
    color: #c80000;
}

.label-profit {
    color: #25D366;
}

.proportion-bar-wrapper {
    display: flex;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    background: #e2e8f0;
}

.proportion-cost {
    height: 100%;
    background: #c80000;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.proportion-profit {
    height: 100%;
    background: #25D366;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-results-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

.result-tile {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 10px;
    text-align: center;
}

.res-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.res-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy-blue);
}

/* Mobile Responsive Optimizations */
@media (max-width: 576px) {
    /* 2x2 Stats Strip Layout */
    .stats-strip {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-bottom: 25px !important;
    }
    
    .stat-card {
        padding: 12px 8px !important;
        border-radius: 8px !important;
    }
    
    .stat-icon {
        font-size: 18px !important;
        margin-bottom: 4px !important;
    }
    
    .stat-num {
        font-size: 1.35rem !important;
        margin-bottom: 2px !important;
    }
    
    .stat-label {
        font-size: 0.72rem !important;
        line-height: 1.25 !important;
    }

    /* Compact about content spacing */
    .responsive-grid {
        margin-top: 20px !important;
        gap: 20px !important;
    }

    .bullets-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .about-card {
        padding: 15px !important;
    }
}

/* 16. RESPONSIVE TABLE WRAPPER & SCROLL HINT */
.scroll-hint {
    display: none;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    background: #f8fafc;
    border: 1px dashed #e2e8f0;
    padding: 8px 12px;
    border-radius: 8px;
}

.scroll-hint i {
    color: #c80000;
    margin-right: 6px;
}

.scroll-hint span {
    animation: swipeAnim 1.5s infinite ease-in-out;
    display: inline-block;
}

@keyframes swipeAnim {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

@media (max-width: 768px) {
    .scroll-hint {
        display: block !important;
    }

    .table-responsive {
        width: 100% !important;
        margin: 15px 0 !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .table-responsive table {
        min-width: 750px !important; /* Prevent column squishing */
    }

    .table-responsive th, 
    .table-responsive td {
        padding: 12px 10px !important;
        font-size: 14px !important;
        white-space: normal !important; /* Allow wrapping within minimum columns */
    }

    .section-heading-compact {
        font-size: 1.3rem !important;
        line-height: 1.4 !important;
        padding: 0 10px !important;
        margin-bottom: 8px !important;
    }
}

/* 17. COMPACT SECTION HEADER STYLING */
.section-title-wrapper {
    margin-bottom: 30px;
    text-align: center;
}

.section-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    color: #c80000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
    background: rgba(200, 0, 0, 0.05);
    padding: 4px 12px;
    border-radius: 4px;
}

.section-heading-compact {
    font-family: 'Outfit', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--navy-blue);
    line-height: 1.35;
    max-width: 780px;
    margin: 0 auto 12px auto;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* 18. PREMIUM CONTACT SECTION & LAYOUT */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: stretch;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 30px -10px rgba(11, 19, 43, 0.06);
}

.form-intro {
    font-size: 0.92rem;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.5;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group-modern label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    background-color: #f8fafc !important;
    color: var(--charcoal) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    background-color: var(--white) !important;
    border-color: #c80000 !important;
    box-shadow: 0 0 0 4px rgba(200, 0, 0, 0.12) !important;
}

.btn-red {
    background-color: #c80000 !important;
    color: var(--white) !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    border: none !important;
    transition: background-color 0.25s ease, transform 0.2s ease !important;
    cursor: pointer;
}

.btn-red:hover {
    background-color: #a00000 !important;
    transform: translateY(-2px);
}

/* Contact detail panels */
.contact-details-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.info-card-deck {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-info-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 18px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 4px 15px rgba(11, 19, 43, 0.02);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.mini-info-card:hover {
    border-color: #c80000;
    transform: translateX(4px);
}

.card-icon-frame {
    width: 40px;
    height: 40px;
    background: rgba(200, 0, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c80000;
    font-size: 16px;
    flex-shrink: 0;
}

.card-text-block {
    text-align: left;
}

.card-text-block h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 2px;
}

.card-text-block p {
    font-size: 0.82rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.35;
}

.card-text-block a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-text-block a:hover {
    color: #c80000;
}

.map-iframe-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -10px rgba(11, 19, 43, 0.06);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .contact-form-card {
        padding: 20px 15px;
    }
}