@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ==========================================================================
   CSS VARIABLES (Mapped to VEENA INOX Logo)
   ========================================================================== */
:root {
    --primary-color: #1d5b58; /* Deep Teal */
    --secondary-color: #756660; /* Warm Taupe/Grey */
    --accent-color: #f4f6f6;
    --text-dark: #212529;
    --text-light: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --transition-standard: all 0.3s ease-in-out;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background-color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
}
.topbar-link {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-standard);
}
.topbar-link:hover {
    color: #e0e0e0;
}

/* ==========================================================================
   MAIN NAVBAR
   ========================================================================== */
.brand-logo {
    height: 55px; /* Adjust based on exact dimensions of webp asset */
    width: auto;
    object-fit: contain;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: var(--transition-standard);
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hide Bootstrap's default caret to stop conflicts */
.dropdown-toggle::after {
    display: none !important; 
}

/* Dropdown Menu Item Styling */
.custom-dropdown .dropdown-item {
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--transition-standard);
}
.custom-dropdown .dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding-left: 25px;
}

/* Desktop Hover Effects */
@media (min-width: 992px) {
    /* Apply custom hover underline ONLY to normal links, excluding the dropdown */
    .navbar-nav .nav-link:not(.dropdown-toggle)::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }
    .navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
    .navbar-nav .nav-link:not(.dropdown-toggle).active::after {
        width: 100%;
    }

    /* Desktop Hover Dropdown Fix */
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; 
        /* Bridge any remaining gap invisibly so hover doesn't break */
        top: 100%; 
        animation: fadeIn 0.3s ease forwards;
    }
}

/* Button */
.btn-theme {
    background-color: var(--secondary-color);
    color: var(--text-light);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    transition: var(--transition-standard);
}
.btn-theme:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   ANIMATED HAMBURGER (Mobile)
   ========================================================================== */
.custom-toggler {
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    background: transparent;
}
.hamburger-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.hamburger-inner {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition-standard);
}
.hamburger-inner::before, .hamburger-inner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    left: 0;
    transition: var(--transition-standard);
}
.hamburger-inner::before { top: 0; }
.hamburger-inner::after { bottom: 0; }

/* Active State (When Offcanvas is open) */
.custom-toggler.is-active .hamburger-inner {
    background-color: transparent;
}
.custom-toggler.is-active .hamburger-inner::before {
    transform: translateY(10.5px) rotate(45deg);
}
.custom-toggler.is-active .hamburger-inner::after {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}




















/* ==========================================================================
   EXTRAORDINARY SVG HERO STYLES
   ========================================================================== */
.ultra-hero-section {
    background-color: #050505;
}

/* Background Images & Gradient Wipe */
.slide-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1); /* Pre-scaled for creative zoom out */
    transition: transform 1.5s ease-out;
}

.swiper-slide-active .slide-img {
    transform: scale(1); /* Settles into place */
}

/* Dark gradient from left to ensure text pops without boxes */
.slide-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.5) 50%, rgba(5,5,5,0.1) 100%);
    z-index: 2;
}

/* Typography & Layout */
.tracking-widest { letter-spacing: 4px; }
.text-theme-secondary { color: var(--secondary-color); }
.fw-black { font-weight: 900; }
.fw-light { font-weight: 300; }

.text-transparent { color: transparent; }
.stroke-text {
    -webkit-text-stroke: 2px #ffffff;
    opacity: 0.8;
}

@media (min-width: 992px) {
    .display-1 { font-size: 5.5rem; }
}

/* Staggered Text Reveal Animations */
.reveal-wrapper {
    overflow: hidden; /* Acts as a mask for the text sliding up */
    padding-bottom: 5px;
}

.reveal-wrapper > * {
    display: block;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s ease;
}

.swiper-slide-active .reveal-wrapper > * {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger the inner elements */
.swiper-slide-active .reveal-wrapper:nth-child(1) > * { transition-delay: 0.1s; }
.swiper-slide-active .reveal-wrapper:nth-child(2) > * { transition-delay: 0.2s; }
.swiper-slide-active .reveal-wrapper:nth-child(3) > * { transition-delay: 0.3s; }
.swiper-slide-active .reveal-wrapper:nth-child(4) > * { transition-delay: 0.4s; }
.swiper-slide-active .reveal-wrapper:nth-child(5) > * { transition-delay: 0.5s; }

/* Background SVG Coil Animations */
.animated-coil {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawCoils 8s linear infinite alternate;
}
.coil-2 { animation-delay: -2s; animation-duration: 10s; }
.coil-3 { animation-delay: -4s; animation-duration: 12s; }

@keyframes drawCoils {
    0% { stroke-dashoffset: 300; }
    100% { stroke-dashoffset: 0; }
}

/* Extraordinary SVG Magnetic Button */
.svg-magnetic-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
}

.btn-circle {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    transition: var(--transition-standard);
    transform-origin: center;
}

.btn-arrow {
    position: absolute;
    right: 17px;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.svg-magnetic-btn:hover { color: var(--primary-color); }
.svg-magnetic-btn:hover .btn-circle {
    transform: scale(1.2);
    color: #ffffff;
    fill: var(--primary-color);
}
.svg-magnetic-btn:hover .btn-arrow {
    transform: translateX(10px);
    color: #ffffff;
}

/* Advanced Navigation & Progress Ring */
.ultra-slider-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.nav-arrow {
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    opacity: 0.6;
}
.nav-arrow:hover {
    color: var(--primary-color);
    opacity: 1;
}

.progress-ring {
    transform: rotate(-90deg); /* Starts progress from 12 o'clock */
}

/* Circumference of r=28 is 176 */
.ring-progress {
    stroke-dasharray: 176;
    stroke-dashoffset: 176; /* Handled by JS */
    transition: stroke-dashoffset 0.1s linear;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .display-1 { font-size: 3rem; }
    .lead { width: 100% !important; font-size: 1rem; }
    .stroke-text { -webkit-text-stroke: 1px #ffffff; }
}





















/* ==========================================================================
   ABOUT US SECTION STYLES
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: #fcfdfd; /* Crisp off-white */
}

/* Typography & Colors for Light Theme */
.text-theme-primary { color: var(--primary-color); }
.text-theme-secondary { color: var(--secondary-color); }

.accent-line-dark {
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    margin-right: 15px;
}

.stroke-text-dark {
    -webkit-text-stroke: 2px var(--text-dark);
    opacity: 0.9;
}

/* ==========================================================================
   GIANT BACKGROUND WATERMARK (PERFECTED)
   ========================================================================== */
.about-watermark {
    position: absolute;
    top: 50%;
    right: -2%; /* Anchors it to the far right, away from the text */
    transform: translateY(-50%); /* Perfectly centers it vertically */
    font-size: clamp(15rem, 25vw, 35rem); /* Responsive: scales smoothly on all screens */
    font-weight: 900;
    line-height: 1;
    color: transparent; /* Removes the heavy solid color */
    -webkit-text-stroke: 2px rgba(117, 102, 96, 0.15); /* Subtle, elegant outline using your secondary color */
    z-index: 0;
    user-select: none;
    pointer-events: none; /* Ensures it never interferes with mouse clicks */
    white-space: nowrap; 
}

/* Ensure the text content stays strictly above everything */
.about-section .row > div:first-child {
    position: relative;
    z-index: 5;
}

/* Industry Icon Grid */
.industry-icon-box {
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-standard);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.industry-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(29, 91, 88, 0.1); /* Subtle primary color shadow */
    border-color: rgba(29, 91, 88, 0.2);
}

/* Dark Modern Button */
.btn-modern-dark {
    display: inline-block;
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 14px 36px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--text-dark);
    text-decoration: none;
    transition: var(--transition-standard);
}

.btn-modern-dark:hover {
    background-color: transparent;
    color: var(--text-dark);
}

/* Right Side Image Composition */
.about-image-wrapper {
    padding-right: 30px;
    padding-bottom: 30px;
}

.main-img-mask {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.main-img-mask img {
    height: 550px;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 91, 88, 0.2) 0%, rgba(0,0,0,0) 100%);
    mix-blend-mode: multiply;
}

/* Light Frosted Glass Badge */
.floating-glass-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 25px 35px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.badge-icon-wrap {
    background: rgba(29, 91, 88, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.about-decorative-dots {
    top: -20px;
    left: -20px;
    z-index: -1;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }
    .about-watermark {
        font-size: 50vw;
        top: 5%;
    }
    .main-img-mask img {
        height: 400px;
    }
    .floating-glass-badge {
        right: 10px;
        bottom: -20px;
        padding: 15px 20px;
    }
}



















/* ==========================================================================
   PRODUCTS CAROUSEL SECTION STYLES
   ========================================================================== */
.products-section {
    background-color: #f4f6f6; /* Very light accent background */
    overflow: hidden;
}

/* Subtle Industrial Background Grid */
.products-bg-grid {
    background-image: 
        linear-gradient(rgba(117, 102, 96, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(117, 102, 96, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

/* Custom Navigation Buttons */
.nav-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-standard);
}

.nav-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* Product Card Design */
.product-card {
    background: #ffffff;
    border-radius: 0; /* Square edges for industrial feel */
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 3px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(29, 91, 88, 0.12);
    border-bottom: 3px solid var(--primary-color);
}

/* Image Wrapping & Zoom Effect */
.product-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

/* Image Overlay & Icon */
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(29, 91, 88, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-btn {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-decoration: none;
}

.product-card:hover .view-btn {
    transform: translateY(0);
}

.view-btn:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

/* Product Information Area */
.product-info {
    padding: 30px 25px;
    background-color: #ffffff;
}

.product-category {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Footer Link with animated Arrow */
.product-footer {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.explore-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.explore-link i {
    transition: transform 0.3s ease;
}

.product-card:hover .explore-link {
    color: var(--primary-color);
}

.product-card:hover .explore-link i {
    transform: translateX(10px);
}

/* Customizing Swiper Pagination Dots */
.products-pagination .swiper-pagination-bullet {
    background-color: var(--text-dark);
    opacity: 0.2;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 6px !important;
}

.products-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.5);
}



















/* ==========================================================================
   WHY CHOOSE US SECTION STYLES
   ========================================================================== */
.why-us-section {
    background-color: #0a0e10; /* Very deep charcoal/slate, close to black */
}

/* Subtle background architectural lines */
.why-us-bg-lines {
    background: 
        linear-gradient(90deg, rgba(29, 91, 88, 0.03) 1px, transparent 1px) 0 0 / 100px 100px,
        linear-gradient(rgba(29, 91, 88, 0.03) 1px, transparent 1px) 0 0 / 100px 100px;
    z-index: 0;
}

/* Text Highlights */
.accent-line-light {
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    margin-right: 15px;
}

.stroke-text-light {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.8);
}

/* Sticky Wrapper for Desktop */
@media (min-width: 992px) {
    .sticky-wrapper {
        position: sticky;
        top: 120px; /* Distance from top of screen when sticky */
    }
}

.why-us-img-box {
    position: relative;
    height: 300px;
}

.img-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 14, 16, 0.9) 0%, rgba(10, 14, 16, 0.2) 100%);
    mix-blend-mode: overlay;
}

/* Feature Cards Grid */
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 4px; /* Industrial square-ish look */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* Accent line on hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
}

.feature-card:hover::before {
    width: 100%;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(29, 91, 88, 0.3);
}

/* Icon Styling */
.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(29, 91, 88, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .feature-card {
        padding: 30px 20px;
    }
}



























/* ==========================================================================
   TECHNICAL SPECS SECTION STYLES
   ========================================================================== */

/* Custom Segmented Toggle (Nav Pills) */
.custom-toggle-pill {
    background-color: #f0f2f2;
    border-radius: 50px;
    display: inline-flex;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.custom-toggle-pill .nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
}

.custom-toggle-pill .nav-link:hover {
    color: var(--primary-color);
}

.custom-toggle-pill .nav-link.active {
    background-color: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Tab Pane Transitions */
.tab-content > .tab-pane {
    display: block;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.4s ease-in-out;
}
.tab-content > .tab-pane.active {
    height: auto;
    opacity: 1;
    overflow: visible;
}

/* Grades Grid (Tags) */
.grades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.grade-tag {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-dark);
    padding: 12px 25px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px; /* Industrial aesthetic */
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    min-width: 120px;
    text-align: center;
}

.grade-tag:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(29, 91, 88, 0.15);
}

/* Highlight special grades like Duplex */
.spec-duplex {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}
.spec-duplex:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #ffffff;
}

/* Finishes Cards */
.finish-card {
    background-color: #f9fafa;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 4px;
    padding: 25px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.finish-card:hover {
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: rgba(29, 91, 88, 0.2);
    transform: translateY(-5px);
}

.finish-title {
    display: block;
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.finish-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    /* Fix the Tabs to be a perfect 50/50 split segmented control */
    .custom-toggle-pill {
        flex-direction: row; /* Force horizontal alignment */
        width: 100%;
        padding: 4px !important; /* Keep the inner spacing tight */
        border-radius: 50px;
    }
    
    .custom-toggle-pill .nav-item {
        flex: 1; /* Ensures both tabs take exactly 50% width */
    }
    
    .custom-toggle-pill .nav-link {
        width: 100%;
        padding: 12px 5px;
        font-size: 0.75rem; /* Slightly smaller to fit side-by-side */
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap; /* Prevents text from breaking into two lines */
    }
    
    /* Adjust icon spacing for the tighter mobile fit */
    .custom-toggle-pill .nav-link i {
        margin-right: 6px !important;
    }

    /* Ensure the grade tags fit perfectly in a 2-column grid */
    .grade-tag {
        flex: 1 1 45%; 
        font-size: 0.95rem;
        padding: 12px 10px;
        min-width: 0; /* Prevents overflow */
    }
}



















/* ==========================================================================
   INDUSTRIES WE SERVE SECTION
   ========================================================================== */
.industries-section {
    background-color: #fdfdfd;
    overflow: hidden;
}

/* Square Navigation Buttons */
.nav-btn-square {
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-standard);
}

.nav-btn-square:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* Industry Cards */
.industry-card {
    position: relative;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    cursor: grab;
}

.industry-card:active {
    cursor: grabbing;
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Bottom gradient so text is readable */
.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 16, 0.9) 0%, rgba(10, 14, 16, 0.3) 50%, transparent 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* Hover effect */
.industry-card:hover .industry-img {
    transform: scale(1.08);
}

.industry-card:hover::before {
    background: linear-gradient(to top, rgba(29, 91, 88, 0.9) 0%, rgba(29, 91, 88, 0.4) 100%);
}

/* Industry Content */
.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.industry-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    transition: var(--transition-standard);
}

.industry-card:hover .industry-icon {
    background-color: #ffffff;
    color: var(--primary-color);
}

.industry-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0;
    transition: transform 0.4s ease;
}

.industry-card:hover .industry-title {
    transform: translateY(-5px);
}























/* ==========================================================================
   LANDSCAPE CONTACT BANNER STYLES
   ========================================================================== */
.contact-banner-section {
    background-color: var(--primary-color);
    position: relative;
    z-index: 5;
}

.contact-banner-icon {
    font-size: 2rem;
    color: #ffffff; /* Changed from secondary color to pure white */
    opacity: 1; /* Increased opacity for maximum crispness */
}

/* Add borders between columns only on large desktop screens */
@media (min-width: 992px) {
    .banner-divider-lg {
        border-left: 1px solid rgba(255, 255, 255, 0.15); /* Slightly brightened the border as well */
    }
}

.hover-primary {
    transition: color 0.3s ease;
}
.hover-primary:hover {
    color: #cccccc !important; /* A light grey hover effect instead of the brown */
}

/* ==========================================================================
   MAIN FOOTER STYLES (LIGHT THEME)
   ========================================================================== */
.main-footer {
    background-color: #ffffff;
    color: #4a5568; /* Dark gray for general text */
}

.footer-logo {
    max-height: 45px;
    width: auto;
}

/* Social Icons */
.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f4f6f6; /* Light gray background */
    color: #4a5568; /* Dark icon color */
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #6c757d; /* Standard muted gray for links */
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Network Boxes */
.footer-network-box {
    background: #f8f9fa; /* Very light gray background */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Subtle dark border */
    padding: 15px;
    border-radius: 4px;
}

/* Border for Copyright Area */
.main-footer .border-top {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* Agency Link Hover Effect */
.footer-agency-link {
    position: relative;
    transition: color 0.3s ease;
}

.footer-agency-link:hover {
    color: var(--primary-color) !important;
}

.footer-agency-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-agency-link:hover::after {
    width: 100%;
}

















/* ==========================================================================
   PAGE BANNER & BREADCRUMB STYLES
   ========================================================================== */
.page-banner-section {
    height: 40vh; 
    min-height: 350px;
    background-color: #0a0e10;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    background-attachment: fixed; /* Creates a smooth parallax effect */
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 16, 0.6) 0%, rgba(10, 14, 16, 0.95) 100%);
    z-index: 1;
}

/* Glassmorphism Breadcrumb Pill */
.custom-breadcrumb {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
}

.custom-breadcrumb .breadcrumb-item {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-standard);
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

/* Custom separator using FontAwesome instead of default slash */
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105"; /* FontAwesome Angle Right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    vertical-align: middle;
    padding: 0 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .page-banner-section {
        height: 35vh;
        min-height: 300px;
    }
}




















/* ==========================================================================
   ABOUT PAGE: CORPORATE IDENTITY STYLES
   ========================================================================== */

/* Custom Checkmark List */
.custom-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.custom-check-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    background: rgba(29, 91, 88, 0.1);
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.6rem;
}

/* Image Composition */
.corporate-img-wrapper {
    padding-bottom: 40px;
    padding-left: 20px;
}

.corporate-img-mask {
    border-radius: 4px;
    overflow: hidden;
}

.corporate-img-mask img {
    height: 500px; /* Gives it a tall, elegant portrait look */
}

/* Subtle light overlay to make the image look premium */
.img-overlay-light {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

/* Decorative dotted pattern behind the image */
.corporate-bg-pattern {
    position: absolute;
    top: -20px;
    left: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--secondary-color) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

/* Glassmorphism Floating Card */
.corporate-glass-card {
    position: absolute;
    bottom: 0;
    left: -30px; /* Pulls it outside the image bound to overlap the text column */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.icon-box-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .corporate-img-wrapper {
        padding-left: 0;
        padding-bottom: 60px;
    }
    .corporate-img-mask img {
        height: 400px;
    }
    .corporate-glass-card {
        left: 20px;
        right: 20px;
        bottom: -20px;
        padding: 20px;
        text-align: center;
    }
    .corporate-glass-card .d-flex {
        justify-content: center;
    }
}

















/* ==========================================================================
   ABOUT PAGE: OUR COMPANIES STYLES
   ========================================================================== */
.group-companies-section {
    background-color: #f4f6f6; /* Very light accent background */
    overflow: hidden;
}

/* Diagonal Background Accent */
.companies-bg-accent {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 100%;
    background: #ffffff;
    transform: rotate(-3deg);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

/* Standard Company Card */
.company-card {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 40px 30px;
    border-radius: 4px; /* Industrial aesthetic */
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    z-index: 2;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(29, 91, 88, 0.1);
}

/* Icon Wrap */
.card-icon-wrap {
    width: 65px;
    height: 65px;
    background: rgba(29, 91, 88, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 8px;
    margin-bottom: 25px;
    transition: var(--transition-standard);
}

.company-card:hover .card-icon-wrap {
    background: var(--primary-color);
    color: #ffffff;
}

/* Typography Inside Cards */
.company-title {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.company-role {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.company-divider {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
    transition: width 0.4s ease;
}

.company-card:hover .company-divider {
    width: 100px;
}

.company-desc {
    color: #6c757d; /* Standard muted text */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Highlighted Card (Veena Inox) */
.card-highlight {
    background-color: var(--text-dark); /* Using the deep dark color for contrast */
    border-color: transparent;
}

.card-highlight .card-icon-wrap {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.card-highlight:hover .card-icon-wrap {
    background: var(--primary-color);
}

.card-highlight .company-title {
    color: #ffffff;
}

.card-highlight .company-divider {
    background-color: var(--primary-color);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .company-card {
        padding: 30px 20px;
    }
}

















/* ==========================================================================
   ABOUT PAGE: SUPPLY CHAIN & INFRASTRUCTURE STYLES
   ========================================================================== */
.supply-chain-section {
    background-color: #0a0e10;
    overflow: hidden;
}

/* Background Pattern (Subtle Map/Grid feel) */
.supply-bg-map {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 1;
}

.supply-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, #0a0e10 80%);
    z-index: 2;
}

/* Glassmorphism Panels */
.supply-glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 40px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.supply-glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 91, 88, 0.5); /* Primary color highlight */
}

/* Panel Header & Icons */
.panel-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(29, 91, 88, 0.2);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 6px;
}

/* Lists and Tags */
.custom-list-light li {
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 500;
}

.custom-list-light li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.8rem;
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Warehouse Tags */
.supply-tag {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* City Grid Layout */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
}

.city-grid span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    position: relative;
    padding-left: 15px;
}

.city-grid span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .supply-glass-panel {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   SUPPLIER LOGO GRID STYLES
   ========================================================================== */
.supplier-logo-box {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 15px 10px;
    height: 70px; /* Fixed height keeps all boxes uniform */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.supplier-logo-box img {
    max-height: 40px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s ease;
}

.supplier-logo-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}


/* Mobile Adjustments for Logos */
@media (max-width: 576px) {
    .supplier-logo-box {
        height: 60px;
        padding: 10px;
    }
    .supplier-logo-box img {
        max-height: 30px;
    }
}

















/* ==========================================================================
   ABOUT PAGE: CORE VALUES & CTA STYLES
   ========================================================================== */

/* Value Cards */
.value-card {
    padding: 35px 25px;
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.value-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transform: translateY(-5px);
    border-color: rgba(29, 91, 88, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: #f4f6f6;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1);
}

/* Call to Action Box */
.about-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #134240 100%);
    box-shadow: 0 20px 40px rgba(29, 91, 88, 0.2);
    position: relative;
    overflow: hidden;
}

/* Subtle background accent for CTA */
.about-cta-box::after {
    content: '';
    position: absolute;
    right: -5%;
    top: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-cta-box .btn-light {
    color: var(--primary-color);
    border-radius: 4px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.about-cta-box .btn-light:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .value-card {
        padding: 25px 15px;
    }
}


















/* ==========================================================================
   PRODUCT PAGES: GENERAL STYLES
   ========================================================================== */

/* Landscape Image Container */
.product-landscape-img-wrap {
    height: 50vh; /* Dynamic height based on screen size */
    min-height: 400px;
    max-height: 600px;
    background-color: #f4f6f6;
}

.product-landscape-img-wrap img {
    height: 100%;
}

/* Application Tags */
.app-tag {
    background-color: #f4f6f6;
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.app-tag:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(29, 91, 88, 0.2);
}

/* Technical Specifications Dark Panel */
.product-specs-panel {
    background-color: #0a0e10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-specs-panel .border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.product-specs-panel .btn-theme {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
}

.product-specs-panel .btn-theme:hover {
    background-color: var(--secondary-color);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .product-landscape-img-wrap {
        height: 40vh;
        min-height: 300px;
    }
}

















/* ==========================================================================
   QUALITY POLICY PAGE STYLES
   ========================================================================== */

/* Certification Cards */
/* ==========================================================================
   UPDATED CERTIFICATIONS SECTION
   ========================================================================== */

.certificate-card {
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-color);
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(29, 91, 88, 0.1);
}

/* Image Thumbnail Wrap */
.cert-image-wrap {
    width: 140px;
    min-width: 140px;
    height: 180px; /* Gives it a document aspect ratio */
    overflow: hidden;
    transition: all 0.4s ease;
}

.certificate-card:hover .cert-image-wrap {
    border-color: var(--primary-color) !important;
}

/* Button Styles */
.certificate-card .btn-outline-dark {
    border-color: rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.certificate-card .btn-outline-dark:hover {
    background-color: #212529; /* Standard dark color */
    border-color: #212529;
    color: #ffffff;
}

.certificate-card .btn-theme-primary {
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.certificate-card .btn-theme-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .cert-image-wrap {
        width: 100%;
        max-width: 250px;
        height: auto;
        aspect-ratio: 3/4;
    }
}

/* Quality Assurance Protocol Grid */
.qa-protocol-box {
    background-color: #ffffff;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.qa-protocol-box:hover {
    border-color: rgba(29, 91, 88, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.qa-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(29, 91, 88, 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.qa-protocol-box:hover .qa-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .certificate-card {
        flex-direction: column;
        text-align: center;
    }
    .cert-icon-wrap {
        margin-right: 0 !important;
        margin-bottom: 20px;
    }
    .certificate-card .text-start {
        text-align: center !important;
    }
}



















/* ==========================================================================
   TECHNICAL INFO PAGE STYLES
   ========================================================================== */

/* Custom Tabs */
.custom-tech-tabs .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 6px;
    padding: 12px 25px;
    background-color: #f4f6f6;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.custom-tech-tabs .nav-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.custom-tech-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(29, 91, 88, 0.2);
}

/* Table Wrapper */
.tech-table-wrapper {
    background-color: #ffffff;
    overflow: hidden;
}

/* ==========================================================================
   TECHNICAL INFO PAGE STYLES (UPDATED)
   ========================================================================== */

/* The Table */
.tech-table {
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Force the dark background on all Header Cells */
.tech-table thead th {
    background-color: #0a0e10 !important;
    color: #ffffff !important;
    padding: 15px 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--primary-color) !important;
}

.tech-table td {
    padding: 12px 20px;
    color: #4a5568;
    border-bottom: 1px solid #edf2f7;
    font-family: 'Courier New', Courier, monospace; 
}

/* Category Headers inside table */
.table-category td {
    background-color: #f8f9fa !important; /* Forced solid background */
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-family: inherit; 
}

/* Sticky First Column */
.sticky-col {
    position: sticky;
    left: 0;
    z-index: 1;
    font-family: inherit !important; 
}

/* Ensure the header sticky column matches the rest of the header */
.tech-table thead .sticky-col {
    background-color: #0a0e10 !important;
    z-index: 2;
}

/* Ensure the body sticky column has a solid white background on scroll */
.tech-table tbody .sticky-col {
    background-color: #ffffff !important;
}

/* Apply a subtle shadow to the sticky column to separate it from scrolling content */
.tech-table tbody .sticky-col::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to right, rgba(0,0,0,0.05), transparent);
}

/* Custom Scrollbar for the table container */
.custom-scrollbar::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 4px;
}
 
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e0; 
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color); 
}
















/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* Contact Cards */
.contact-info-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06) !important;
    border-color: rgba(29, 91, 88, 0.2) !important;
}

.contact-icon-wrapper {
    width: 75px;
    height: 75px;
    background-color: rgba(29, 91, 88, 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: scale(1.1);
}

/* Link Hovers */
.hover-text-primary {
    transition: color 0.3s ease;
}

.hover-text-primary:hover {
    color: var(--primary-color) !important;
}

/* Map Section */
.map-section {
    line-height: 0; /* Removes any phantom space under the iframe */
    display: block;
    background-color: #eee;
}

/* Optional: Gives the map a slightly stylized, cooler tone to match the corporate theme */
.map-section iframe {
    filter: grayscale(10%) contrast(105%);
}



















/* ==========================================================================
   PRODUCT GALLERY PAGE STYLES
   ========================================================================== */

/* Gallery Cards */
.gallery-item {
    transition: all 0.4s ease;
}

.gallery-card {
    cursor: zoom-in;
    aspect-ratio: 4/3; /* Forces a uniform shape for all images */
    background-color: #eee;
}

.gallery-card img {
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 16, 0.8);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover Effects */
.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon-wrap {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-card:hover .zoom-icon-wrap {
    transform: translateY(0);
}

.gallery-overlay h5 {
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease;
    transition-delay: 0.1s;
}

.gallery-card:hover .gallery-overlay h5 {
    transform: translateY(0);
    opacity: 1;
}

/* Lightbox Adjustments */
#galleryLightbox .modal-backdrop.show {
    opacity: 0.9;
    background-color: #0a0e10;
}









/* ==========================================================================
   FOOTER AGENCY LINK STYLES
   ========================================================================== */

.footer-agency-link {
    position: relative;
    transition: color 0.3s ease;
}

.footer-agency-link:hover {
    color: var(--primary-color) !important; /* Changes text to your primary brand color on hover */
}

/* Animated underline effect */
.footer-agency-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-agency-link:hover::after {
    width: 100%;
}

/* ==========================================================================
   COPYRIGHT BAR STYLES
   ========================================================================== */
.footer-bottom {
    background-color: var(--primary-color);
}