/* Import Clean Sans-Serif Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    /* Theme: Navy Blue & White (Texweave Inspired) */
    --primary-color: #11244C;
    /* Deep Navy */
    --primary-hover: #0d1b3a;
    --secondary-color: #FFFFFF;
    /* White */
    --text-main: #333333;
    /* Dark Gray */
    --text-muted: #666666;
    /* Medium Gray */
    --bg-light: #F9F9F9;
    /* Very Light Grey */
    --bg-white: #FFFFFF;
    --border-color: #E5E5E5;
    /* Accent Colors */
    --accent-cyan: #22D3EE;
    /* For highlights/spinners */
    --accent-orange: #FF6F61;
    /* For CTA buttons */

    /* Extended Text Colors */
    --text-light: #888888;
    /* Light gray text */
    --text-dark: #777777;
    /* Darker descriptive text */

    /* Extended Background Colors */
    --bg-gray-light: #F4F4F4;
    /* Card backgrounds */
    --bg-gray-lighter: #fcfcfc;
    /* Hover states */

    /* Legacy Mappings / Extra Palette */
    --deep-navy: var(--primary-color);
    --charcoal: var(--text-main);
    --light-grey: var(--bg-light);
    --pure-white: var(--bg-white);
    --denim-blue: #4A6FA5;
    --border-light: var(--border-color);

    /* Typography */
    --font-primary: 'Jost', 'Montserrat', -apple-system, sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Styling */
    --border-radius-sm: 0px;
    /* Sharp corners like Texweave */
    --border-radius-md: 2px;
    --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--pure-white);
    color: var(--charcoal);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: var(--deep-navy);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

a {
    color: var(--deep-navy);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--denim-blue);
}

/* Header & Navigation */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 80px;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-base);
}

.site-header.scrolled {
    height: 80px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-brand img {
    max-height: 80px;
    width: auto;
    transition: max-height 0.3s ease;
}

.site-header.scrolled .header-brand img {
    max-height: 80px;
}

.text-primary {
    color: var(--primary-color);
}

.header-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-main);
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--primary-color);
}

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

/* Intermediate Header Responsiveness */
@media (min-width: 992px) and (max-width: 1440px) {
    .header-nav {
        gap: 1rem;
    }

    .header-nav a {
        font-size: 0.85rem;
    }

    .header-brand img {
        max-height: 65px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header-nav {
        gap: 0.6rem;
    }

    .header-nav a {
        font-size: 0.8rem;
    }

    .header-brand img {
        max-height: 55px;
    }
}

/* Custom Dropdown Styling */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 10px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li {
    padding: 0;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 8px 20px !important;
    font-size: 0.85rem !important;
    color: var(--text-main) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
}

.dropdown-menu-custom li a:hover {
    color: var(--primary-color) !important;
    background: #f8f9fa;
}

.dropdown-menu-custom li a::after {
    display: none !important;
}

.header-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Mobile Sidebar Overlay */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1001;
    padding: 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
}

.mobile-nav a:hover {
    color: var(--primary-color);
}

/* Main Content Adjustment */
.main-content-full {
    padding-top: 80px;
    /* Offset for fixed header */
}

/* Hero Split Layout */
/* Hero Split Layout */
.hero-split {
    display: flex;
    height: 100vh;
    /* Full viewport height */
    overflow: hidden;
    position: relative;
    padding-top: 0;
    /* Clear header */
    gap: 15px;
    /* Add gap between images */
    background: #fff;
    /* Background for gap */
}

.hero-panel {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
    justify-content: center;
    transition: all 0.5s ease;
    /* border-right: 1px solid rgba(255, 255, 255, 0.1); -- Removed for gap style */
    min-width: 0;
    padding-bottom: 4rem;
    /* Space from bottom */
}

/* Gradient Overlay */
.hero-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-panel:hover {
    flex: 1;
    /* Zoom disabled */
}

.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Behind gradient */
}

.panel-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    width: 100%;
    /* Remove opacity/bg from previous steps */
}

/* Remove the previous hover bg effect */
.hero-panel:hover .panel-content {
    background: none;
    backdrop-filter: none;
}

.panel-subtitle {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #FDBB2D;
    /* Gold Color from reference */
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.panel-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.panel-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    /* Navy Blue */
    border: none;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 2px;
}

.panel-link:hover {
    background: #FFFFFF;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .hero-panel {
        min-height: 300px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .hero-panel:hover {
        flex: 1;
        /* Disable expansion on mobile */
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    /* Larger, more substantial padding */
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    border-radius: var(--border-radius-sm);
    /* Sharp corners */
    position: relative;
    overflow: hidden;
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-ghost:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}



.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon i {
    font-size: 1.1rem;
}

/* Sections */
#capabilities {
    background: var(--bg-light);
    /* Light Grey to separate from White */
}

#process {
    background: var(--pure-white);
    /* White to contrast with Capabilities */
}

.section {
    padding: 80px 0;
    overflow: hidden;
    /* Prevents margin collapse */
}

.section-alt {
    background: var(--light-grey);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--charcoal);
    line-height: 1.8;
    max-width: 800px;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-asymmetric {
    grid-template-columns: 60% 40%;
    gap: 3rem;
}

/* Cards - Minimal Style */
.card {
    background: var(--pure-white);
    padding: var(--spacing-md);
    transition: var(--transition-base);
}

.card-bordered {
    border: 1px solid var(--border-light);
}

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

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--charcoal);
    line-height: 1.7;
}

/* Service Cards */
.service-card {
    padding: var(--spacing-md);
    background: var(--pure-white);
    transition: var(--transition-base);
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--deep-navy);
    opacity: 0.1;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--deep-navy);
    font-weight: 700;
}

/* Product Cards */
.product-card {
    background: var(--pure-white);
    overflow: hidden;
    transition: var(--transition-base);
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition-base);
}

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

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--denim-blue);
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--charcoal);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-card {
    background: var(--pure-white);
    padding: var(--spacing-md);
    border-left: 3px solid var(--deep-navy);
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--deep-navy);
}

.testimonial-author-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-grey);
    margin-bottom: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-navy);
    color: var(--pure-white);
    font-size: 1.5rem;
}

.contact-details h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.25rem;
}

.contact-details p {
    margin: 0;
    color: var(--charcoal);
}

/* Forms */
.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--deep-navy);
    background: var(--off-white);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--deep-navy);
    color: var(--pure-white);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--deep-navy);
    color: var(--pure-white);
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--denim-blue);
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-image {
        display: none;
    }

    .grid-asymmetric {
        grid-template-columns: 1fr;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Product Carousel */
.product-carousel-3d {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1200px;
    margin: 3rem 0;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    position: absolute;
    width: 350px;
    height: 450px;
    left: 50%;
    top: 50%;
    transform-origin: center center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.carousel-item.active {
    transform: translate(-50%, -50%) translateZ(0px) scale(1);
    opacity: 1;
    z-index: 10;
}

.carousel-item.prev {
    transform: translate(-150%, -50%) translateZ(-200px) rotateY(25deg) scale(0.8);
    opacity: 0.6;
    z-index: 5;
}

.carousel-item.next {
    transform: translate(50%, -50%) translateZ(-200px) rotateY(-25deg) scale(0.8);
    opacity: 0.6;
    z-index: 5;
}

.carousel-item.hidden {
    transform: translate(-50%, -50%) translateZ(-400px) scale(0.5);
    opacity: 0;
    z-index: 1;
}

.carousel-product-card {
    width: 100%;
    height: 100%;
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
}

.carousel-item.active .carousel-product-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-product-card:hover {
    border-color: var(--deep-navy);
}

.carousel-product-image {
    width: 100%;
    height: 70%;
    object-fit: cover;
    background: var(--light-grey);
}

.carousel-product-info {
    padding: 1.5rem;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-product-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--denim-blue);
    margin-bottom: 0.5rem;
}

.carousel-product-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.carousel-product-description {
    font-size: 0.875rem;
    color: var(--charcoal);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    color: var(--deep-navy);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--deep-navy);
    color: var(--pure-white);
    border-color: var(--deep-navy);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-indicator.active {
    background: var(--deep-navy);
    width: 30px;
    border-radius: 5px;
}

.carousel-indicator:hover {
    background: var(--denim-blue);
}

/* Responsive Carousel */
@media (max-width: 991px) {
    .product-carousel-3d {
        height: 450px;
    }

    .carousel-item {
        width: 300px;
        height: 400px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .carousel-prev {
        left: 1rem;
    }

    .carousel-next {
        right: 1rem;
    }
}

@media (max-width: 767px) {
    .product-carousel-3d {
        height: 400px;
    }

    .carousel-item {
        width: 280px;
        height: 360px;
    }

    .carousel-item.prev,
    .carousel-item.next {
        transform: translate(-50%, -50%) translateZ(-150px) scale(0.7);
        opacity: 0.3;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: 0.5rem;
    }

    .carousel-next {
        right: 0.5rem;
    }
}

/* Print Styles */
@media print {

    .sidebar,
    .menu-toggle,
    .scroll-top-btn {
        display: none;
    }

    .main-content {
        margin-left: 0;
    }
}

/* Sustainability Section */
.supply-chain-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.chain-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.chain-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-muted);
}

.chain-step span {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
}

.chain-arrow {
    width: 30px;
    height: 1px;
    background: var(--text-muted);
}

.sustain-content {
    background: #1A4D45;
    /* Dark Teal from Image */
    color: white;
    padding: 5rem 4rem;
    /* Increased vertical padding for better spacing */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Process Flow Chart */
.process-flow-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--border-color);
    opacity: 0.5;
    margin-bottom: -1.5rem;
    position: relative;
    z-index: 1;
}

.step-icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(17, 36, 76, 0.2);
}

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background: var(--border-color);
    margin-top: 3.5rem;
    /* Aligns with icon center approx */
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--border-color);
    border-radius: 50%;
}

@media (max-width: 991px) {
    .process-flow-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .process-step {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
        flex-grow: 0;
    }

    .step-connector::after {
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .step-number {
        margin-bottom: -1rem;
    }
}

.sustain-image {
    height: 100%;
    min-height: 400px;
    /* Ensure visible on mobile */
    position: relative;
}

.sustain-title {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cert-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.cert-icon {
    font-weight: 800;
    font-size: 1.5rem;
    min-width: 60px;
    color: rgba(255, 255, 255, 0.9);
}

.cert-text strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.cert-text small {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .supply-chain-track {
        gap: 0.5rem;
    }

    .chain-arrow {
        display: none;
    }

    .sustain-content {
        padding: 2rem;
    }
}

/* 3D Service Cards */
.service-card-3d {
    background: white;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.4s ease;
    z-index: -1;
}

.service-card-3d:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(17, 36, 76, 0.15);
    border-color: var(--primary-color);
}

.service-card-3d:hover::before {
    width: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.service-card-3d:hover .service-icon {
    color: white;
}

.service-card-3d h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.service-card-3d:hover h3 {
    color: white;
}

.service-card-3d p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.service-card-3d:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.service-card-3d:hover .service-link {
    color: white;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card-3d:hover .service-link i {
    transform: translateX(5px);
}

/* Perfected About Us Section */
.about-section {
    padding: 80px 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

/* Background Decorations */
.about-squiggle {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10C30 15 20 40 40 45C60 50 50 70 70 75' stroke='%2311244C' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    z-index: 1;
}

/* Image Container */
.about-img-container {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
    z-index: 2;
}

.about-img-collage {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    box-shadow: 20px 20px 0px rgba(17, 36, 76, 0.03);
}

/* Experience Card */
.about-experience-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--primary-color);
    z-index: 10;
    min-width: 280px;
}

.exp-icon-box {
    color: var(--primary-color);
    font-size: 2.5rem;
    transform: rotate(-15deg);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin: 0;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Area */
.about-content {
    padding-left: 50px;
}

.about-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.about-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.about-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 105%;
    height: 15px;
    background: var(--accent-cyan);
    z-index: -1;
    opacity: 0.8;
}

.about-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Values Grid */
.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.about-value-item h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.about-value-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Progress Bar */
.about-progress {
    margin-bottom: 40px;
    max-width: 400px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.progress-track {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    width: 77%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
}

/* CTA Button */
.btn-discover-more {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 2px;
}

.btn-discover-more:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(17, 36, 76, 0.3);
}

/* Decorations for floating megaphone (separate) */
.about-floating-megaphone {
    position: absolute;
    left: -150px;
    bottom: 10%;
    font-size: 6rem;
    color: rgba(17, 36, 76, 0.05);
    transform: rotate(15deg);
    z-index: -1;
}

.about-floating-megaphone::after {
    content: '>>';
    position: absolute;
    top: 20px;
    right: -40px;
    font-size: 2rem;
    letter-spacing: -5px;
    opacity: 0.5;
}

.about-deco-dots {
    position: absolute;
    bottom: 100px;
    left: 20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#FDBB2D 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 0;
}

.exp-arrows {
    position: absolute;
    top: -30px;
    left: -40px;
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 50L30 30L10 10' stroke='%2311244C' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M30 50L50 30L30 10' stroke='%23FDBB2D' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 60px;
    }

    .about-img-container {
        padding-right: 0;
    }

    .about-experience-card {
        right: 20px;
        bottom: -30px;
        min-width: unset;
        width: calc(100% - 40px);
    }

    .about-deco-wavy,
    .about-deco-dots,
    .about-floating-megaphone {
        display: none;
    }
}

/* Sustainability Parallax Redesign */
.sustain-full-parallax {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -1px;
    /* Ensure no pixel gap */
}

.parallax-overlay {
    background: rgba(17, 36, 76, 0.9);
    /* Navy overlay */
    width: 100%;
    padding: 80px 0;
}

.subtitle-line {
    height: 1px;
    background: #ccc;
    margin-left: 20px;
}

/* Sustainability Design Refinement (Match Image 2) */
.supply-chain-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 60px auto;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    /* Hide scrollbar for clean look */
}

.supply-chain-track::-webkit-scrollbar {
    display: none;
}

.chain-step {
    text-align: center;
    width: 85px;
    flex-shrink: 0;
}

.chain-icon {
    width: 55px;
    height: 55px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.6rem;
    color: #11244C;
    transition: all 0.3s ease;
}

.chain-step:hover .chain-icon {
    background: #11244C;
    color: #fff;
    transform: translateY(-5px);
}

.chain-step span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    display: block;
    line-height: 1.3;
}

.chain-arrow {
    width: 25px;
    height: 1px;
    background: #ddd;
    margin-top: 28px;
    position: relative;
    flex-shrink: 0;
}

.chain-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid #ddd;
    border-top: 1px solid #ddd;
    transform: rotate(45deg);
}

/* Dark Card Styling */
.sustain-dark-card {
    background: var(--primary-color);
    /* Navy Base Color */
    padding: 60px;
    border-radius: 0;
    /* Boxy look as per image */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.sustain-dark-card .sustain-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #fff !important;
}

.cert-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-icon {
    min-width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-text strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.cert-text small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.4;
    display: block;
}

.sustain-feature-img img {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
    border: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .sustain-full-parallax {
        background-attachment: scroll;
        width: 100%;
        margin-left: 0;
    }

    .sustain-dark-card {
        padding: 40px 25px;
    }

    .chain-arrow {
        display: none;
    }
}

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

/* Products Page Styling */
.product-page-banner {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.product-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #11244C 0%, #1a3a7a 100%);
    opacity: 0.1;
    z-index: 0;
}

.product-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.results-count {
    font-size: 0.9rem;
    color: #888;
}

.product-sort-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 0.9rem;
    outline: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card-v2 {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-v2:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.product-img-wrapper {
    position: relative;
    padding-top: 125%;
    /* 4:5 Aspect Ratio */
    overflow: hidden;
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info-v2 {
    padding: 20px;
    text-align: center;
}

.p-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 8px;
    display: block;
}

.p-title {
    font-size: 1rem;
    font-weight: 700;
    color: #11244C;
    margin-bottom: 10px;
    display: block;
}

.p-desc-short {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    gap: 10px;
}

.pagination .page-link {
    border: 1px solid #eee;
    color: #11244C !important;
    padding: 8px 16px;
    border-radius: 0;
}

.pagination .page-item.active .page-link {
    background-color: #11244C !important;
    border-color: #11244C !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .product-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Featured Category Section Styling */
.featured-block {
    min-height: 600px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    margin-bottom: 120px;
}

.featured-block:last-child {
    margin-bottom: 0;
}

.featured-banner img {
    transition: transform 0.6s ease;
}

.featured-banner:hover img {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    color: #fff;
    z-index: 1;
}

.banner-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--primary-color);
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.banner-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: fit-content;
}

.banner-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.banner-btn-alt {
    background: #FF6F61;
    /* Specific orange from image */
    color: #fff;
}

.banner-btn-alt:hover {
    background: #e65b50;
    color: #fff;
}

.featured-grid {
    padding: 30px !important;
    background: #F4F4F4 !important;
    /* Grey background from Image 2 */
}

.featured-product-item {
    transition: all 0.3s ease;
    background: #fff;
    padding: 0 !important;
    /* Remove padding to allow image to touch edges */
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none !important;
    overflow: hidden;
    /* Ensure image corner radius or overflow is clipped */
}

.featured-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.product-thumb {
    width: 100%;
    padding-top: 110%;
    /* Slightly taller aspect ratio */
    position: relative;
    overflow: hidden;
    background: #fff;
}

.product-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the entire area */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-product-item:hover .product-thumb img {
    transform: scale(1.1);
}

.product-cat-small {
    padding-top: 10px;
    font-size: 0.75rem;
    color: #888;
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
    text-align: center;
}

.product-name-small {
    font-size: 0.9rem;
    font-weight: 700;
    color: #11244C;
    margin-bottom: 10px;
}

/* Category Filters Styles */
.filter-btn {
    padding: 10px 25px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    background: transparent;
    color: #64748b;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: #22D3EE;
    color: #22D3EE;
}

.filter-btn.active {
    background: #22D3EE;
    border-color: #22D3EE;
    color: #0F1B33;
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}

/* Product Card Modern Styles */
.product-card-modern {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid #f1f5f9;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 27, 51, 0.1);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 27, 51, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.product-info-modern {
    padding: 20px;
    text-align: center;
}

.product-category {
    font-size: 0.75rem;
    color: #22D3EE;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F1B33;
    margin-bottom: 0;
}

/* ========================================
   CTA SECTION STYLES
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, #0F1B33 0%, #11244C 50%, #1a3666 100%);
    padding: 80px 0;
    position: relative;
}

.cta-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, #22D3EE 35px, #22D3EE 36px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, #22D3EE 35px, #22D3EE 36px);
    pointer-events: none;
}

.cta-card {
    position: relative;
    z-index: 2;
}

.cta-buttons {
    position: relative;
    z-index: 3;
}

.btn-cyan {
    background: var(--primary-color);
    color: #0F1B33;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cyan:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
    color: #0F1B33;
}

.btn-outline-light {
    border: 2px solid #fff !important;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #fff !important;
    color: #0F1B33 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-float-1,
.cta-float-2 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.cta-float-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
}

.cta-float-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -50px;
    animation-delay: 3s;
}

/* Modern Capabilities Card */
.capability-card-modern {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    text-align: left;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.capability-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(17, 36, 76, 0.08);
    border-color: rgba(17, 36, 76, 0.1);
}

.cap-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.capability-card-modern:hover .cap-title {
    color: #22D3EE;
}

.cap-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   MODERN FOOTER STYLES
   ======================================== */
.footer-modern {
    background-color: var(--primary-color);
    color: #ffffff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(34, 211, 238, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 111, 97, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.footer-brand-section .header-brand {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-cyan);
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--accent-cyan);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact-item .icon-box {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent-cyan);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.hours-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.hours-item .time {
    font-weight: 600;
}

.text-highlight {
    color: var(--accent-orange);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-cyan);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .footer-modern {
        padding-top: 60px;
    }

    .footer-title {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* ========================================
   EXPERT CONNECT SECTION
   ======================================== */
.expert-connect-section {
    background-color: #f8fbff;
    padding: 100px 0;
}

.expert-info-col h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.expert-info-col h2 .text-cyan {
    color: var(--accent-cyan) !important;
}

.expert-desc {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 500px;
}

.expert-contact-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.expert-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
}

.expert-contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.expert-social-links {
    padding-top: 1rem;
}

.expert-social-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.expert-social-icon:hover {
    background: var(--accent-cyan);
    color: var(--deep-navy);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.2);
}

.join-team-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 450px;
}

.join-team-content h4 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.join-team-link {
    color: var(--accent-cyan);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.expert-form-card {
    background-color: #0c1a32;
    border-radius: 24px;
    padding: 50px;
    color: #fff;
}

.expert-form .form-label {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: block;
}

.expert-form .form-label .required {
    color: #ff4d4d;
}

.expert-form .form-control,
.expert-form .form-select {
    background-color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.expert-form textarea.form-control {
    min-height: 150px;
}

.btn-submit-expert {
    background-color: var(--accent-cyan);
    color: var(--deep-navy);
    border: none;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-expert:hover {
    background-color: #1ed7ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.3);
}

@media (max-width: 991px) {
    .expert-info-col h2 {
        font-size: 2.5rem;
    }

    .join-team-card {
        flex-direction: column;
        padding: 30px;
    }

    .expert-form-card {
        padding: 30px;
    }
}

/* Featured Carousel Controls */
.featured-grid .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.custom-carousel-btn {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-grid:hover .custom-carousel-btn {
    opacity: 1;
}

.custom-carousel-btn:hover {
    background: var(--primary-color);
}

.custom-carousel-btn .carousel-control-prev-icon,
.custom-carousel-btn .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
    width: 1.5rem;
    height: 1.5rem;
}

.custom-carousel-btn:hover .carousel-control-prev-icon,
.custom-carousel-btn:hover .carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

.carousel-control-prev.custom-carousel-btn {
    left: -20px;
}

.carousel-control-next.custom-carousel-btn {
    right: -20px;
}


/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    cursor: pointer;
}

.featured-product-item:hover .product-overlay {
    opacity: 1;
}

.view-product-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Inquiry Basket Styles */
.inquiry-basket-float {
    position: fixed;
    right: 20px;
    bottom: 90px;
    background: #11244C;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(17, 36, 76, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
}

.inquiry-basket-float:hover {
    transform: scale(1.1);
    background: #22D3EE;
    color: #11244C;
}

.inquiry-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FF6B35;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.inquiry-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.inquiry-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.inquiry-item-info {
    flex-grow: 1;
}

.inquiry-item-info h6 {
    margin: 0;
    font-size: 0.9rem;
    color: #11244C;
}

.inquiry-item-info span {
    font-size: 0.75rem;
    color: #666;
}

.remove-inquiry-item {
    color: #ff4d4d;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    background: none;
    border: none;
}

.remove-inquiry-item:hover {
    color: #cc0000;
}

.empty-inquiry-msg {
    text-align: center;
    padding: 20px;
    color: #888;
}

.inquiry-qty-input {
    width: 60px;
    height: 32px;
    padding: 2px 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
    text-align: center;
    color: #11244C;
}

.inquiry-qty-input:focus {
    border-color: #22D3EE;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.1);
}


/* Product Modal Zoom Styles */
.modal-zoom-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 8px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

#modalProductImage {
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
    display: block;
}

.modal-zoom-container.zoomed {
    cursor: zoom-out;
}

.modal-zoom-container.zoomed #modalProductImage {
    transform: scale(2.5);
}

.zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(17, 36, 76, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    pointer-events: none;
    backdrop-filter: blur(4px);
    z-index: 5;
    transition: opacity 0.3s;
}

.modal-zoom-container.zoomed .zoom-hint {
    opacity: 0;
}