/*
  Global reset and base typography
  - Keep Inter across the site, but we’ll emphasize lighter weights (300/400)
  - Section-specific responsive rules remain directly after each section block
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
/* Global smooth scrolling and anchor offset for fixed header */
html {
    scroll-behavior: smooth;           /* Smooth anchor and programmatic scrolling */
}
/* When jumping to sections by ID, keep a margin so the fixed header doesn’t cover titles */
section, [id] {
    scroll-margin-top: 90px;           /* Adjust if header height changes */
}
:root {
    /* Satva Impex theme – Maroon & White */
    --primary: #7A1E1E;          /* Maroon */
    --primary-dark: #5A1212;     /* Deep Maroon */
    --secondary: #C9A227;        /* Warm gold accent */
    --dark: #1A1A1A;
    --light: #FAFAFA;
    --gray: #6B7280;
    --white: #ffffff;
    /* Themed gradients (used across sections) */
    --gradient-1: linear-gradient(135deg, #3A0F0F 0%, #1A1A1A 100%);
    --gradient-2: linear-gradient(135deg, #7A1E1E 0%, #5A1212 100%);
    --gradient-3: linear-gradient(135deg, #8C2323 0%, #7A1E1E 100%);
    --gradient-4: linear-gradient(135deg, #C9A227 0%, #7A1E1E 100%);
    --gradient-5: linear-gradient(135deg, #7A1E1E 0%, #9C3A3A 100%);
    --gradient-6: linear-gradient(135deg, #4B0F0F 0%, #7A1E1E 100%);
    --gradient-7: linear-gradient(135deg, #FBF6ED 0%, #FAFAFA 100%);
    --gradient-8: linear-gradient(135deg, #3A0F0F 0%, #7A1E1E 100%);
    --gradient-9: linear-gradient(135deg, #EAD9B0 0%, #C9A227 100%);
    --gradient-10: linear-gradient(135deg, #F9E2D0 0%, #F3CBB3 100%);
}
body {
    background-color: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}
/* Header Styles */
/*
  Header & Navigation
  - On scroll, switch to maroon background with white links to keep the white logo readable
*/
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}
header.scrolled {
    background: var(--primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    padding: 0.3rem 5%;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo i {
    font-size: 2rem;
}
/* Optional image logo inside .logo */
.logo img { height: 65px; width: auto; display: block; }
/* Hamburger Menu Button */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    z-index: 1001; /* Ensure it's above the nav background */
    margin-left: auto; /* Push burger to the far right on small screens */
    order: 3; /* Ensure it appears after nav in the flex flow */
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}
    /* Specific style for the CTA button if needed when inside the mobile menu */
    nav .cta-button {
        /* Example: Center the button within the full-width link container */
        margin: 0 auto;
        width: auto; /* Override any fixed width set previously */
        /* Or style it differently if it doesn't fit the list style */
        /* display: block; */
        /* margin: 0.5rem auto; */
    }
.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}
/* Keep nav before the burger in flex order so the burger sits on the far right */
nav { order: 2; }
nav a {
    text-decoration: none;
    color: var(--white); /* Improve contrast on transparent header over dark hero */
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
}
nav a:hover {
    color: var(--secondary);
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
nav a:hover::after {
    width: 100%;
}
/* Prevent the underline effect on the CTA button inside the nav */
nav .cta-button::after {
    display: none;
}
/* Contrast adjustments when header is scrolled to maroon */
header.scrolled nav a { color: var(--white); }
header.scrolled nav a:hover { color: var(--secondary); }
header.scrolled .menu-toggle span { background-color: var(--white); }
/* --- Consolidated Mobile Menu Styles --- */
/* Hamburger Menu Button - Hidden on desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}
/* Close Menu Button - Hidden by default */
.close-menu {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
    z-index: 1002;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
/* Mobile Menu Styles */
@media (max-width: 768px) {
    /* Show hamburger button */
    .menu-toggle {
        display: flex;
    }
    /* Change burger menu color to white on mobile/tablet */
    .menu-toggle span {
        background-color: var(--white);
    }
    /* Hide nav list by default */
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #7A1E1E;
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    /* Show nav list and close button when nav has 'open' class */
    nav.open ul {
        display: flex;
    }
    nav.open .close-menu {
        display: flex;
    }
    /* Style for nav links in mobile menu */
    nav a {
        color: var(--white);
        padding: 0.75rem 1.5rem;
        width: 100%;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.3s ease;
        font-size: 1rem;
    }
    nav a:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
    /* Hide underline effect on mobile */
    nav a::after {
        display: none;
    }
}
/* Explicitly hide the close button on desktop */
@media (min-width: 769px) {
    .close-menu {
        display: none ;
    }
}
.cta-button {
    background: var(--gradient-3);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.5rem; /* Sleek and slim padding */
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: auto; /* Allow natural width based on content */
    height: auto;
    letter-spacing: 0.5px;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(122, 30, 30, 0.3);
}
/* CTA Button styling when header is scrolled (maroon background) */
header.scrolled .cta-button {
    background: var(--secondary);
    color: var(--primary);
}
header.scrolled .cta-button:hover {
    background: #b8921f;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4);
}
/* Hero Section with Animated Ink Splash Effect (using GIF) */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #EAD9B0 0%, #C9A227 100%);
    --gif-url: url('/images/ink_lv2.gif');
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #7A1E1E 0%, #5A1212 100%);
    -webkit-mask-image: var(--gif-url);
    mask-image: var(--gif-url);
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    max-width: 800px;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    z-index: 1;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}
.hero-logo{ width:180px; height:auto; margin:0 auto 1rem auto; filter: drop-shadow(0 6px 16px rgba(0,0,0,.25)); animation: floaty 7s ease-in-out infinite; opacity:.95; }
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.hero-specialties {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.specialty-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.secondary-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.secondary-button:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}
@keyframes floaty{ 0%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } 100%{ transform: translateY(0) } }
/* Hero Section Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        height: 60vh; /* Reduce height for mobile */
        min-height: 600px; /* Set minimum height */
    }
    .hero-content {
        padding: 0 1rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
@media (max-width: 576px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
}
/* Parallax Section with Gradient Animation (used as a visual break / product slider) */
.parallax-section {
    position: relative;
    min-height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-2);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    padding-top: 10rem; /* Add this line to account for the fixed header */
}
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('images/Amairaac_Background_comp_comp.webp') center/cover no-repeat;
    will-change: transform;
    z-index: -1;
    opacity: 0.3;
}
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.35);
    z-index: -1;
}
/* --- New CSS for Parallax Section Slider and Bottom Text --- */
/* Container for slider and text at the bottom */
.parallax-bottom {
    position: absolute;
    bottom: 3rem; /* Adjusted from -18rem to a more reasonable value */
    left: 2%; /* Match the padding used elsewhere */
    right: 2%; /* Match the padding used elsewhere */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the slider and text horizontally */
    gap: 2rem; /* Changed from -2rem to positive 2rem for proper spacing */
    z-index: 3; /* Ensure it's above the background layers */
}
/* Slider Container */
.slider-container {
    width: 100%;
    max-width: 1000px; /* Limit width */
    overflow: hidden; /* Hide overflow from slides */
    border-radius: 16px; /* Match your design style */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Add shadow */
}
/* Standalone Gallery Section (centered, animated maroon background) */
.gallery {
    padding: 5rem 5%;
    background: var(--gradient-2);
    background-size: 400% 400%;
    animation: gradient 30s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.gallery .section-header {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
}
.gallery .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.gallery .section-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}
.gallery .slider-container { 
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
/* Slider */
.slider {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
}
/* Individual Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
}
/* Slide Image */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Slider Navigation Arrows and Dots */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
}
.slider-arrow {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrow:hover {
    color: var(--secondary);
    transform: scale(1.2);
}
.slider-arrow.prev::before {
    content: "❮";
}
.slider-arrow.next::before {
    content: "❯";
}
.slider-dots {
    display: flex;
    gap: 0.5rem;
}
/* Slider Navigation Dots */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot.active {
    background-color: var(--white);
}
.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Gallery Responsive Design */
@media (max-width: 768px) {
    .gallery {
        padding: 4rem 5%;
    }
    .gallery .section-header h2 {
        font-size: 2rem;
    }
    .gallery .section-header p {
        font-size: 1rem;
    }
    .gallery .slider-container {
        max-width: 800px;
    }
    .slider-controls {
        gap: 1.5rem;
    }
    .slider-arrow {
        font-size: 1.5rem;
        padding: 0.4rem;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 3rem 5%;
    }
    .gallery .section-header {
        margin-bottom: 2rem;
    }
    .gallery .section-header h2 {
        font-size: 1.8rem;
    }
    .gallery .section-header p {
        font-size: 0.95rem;
    }
    .gallery .slider-container {
        max-width: 100%;
        border-radius: 12px;
    }
    .slider-controls {
        gap: 1.2rem;
        padding: 1rem 0;
    }
    .slider-arrow {
        font-size: 1.3rem;
    }
    .slider-nav {
        gap: 0.4rem;
        padding: 1rem 0;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .gallery {
        padding: 2rem 3%;
    }
    .gallery .section-header {
        margin-bottom: 1.5rem;
    }
    .gallery .section-header h2 {
        font-size: 1.4rem;
    }
    .gallery .section-header p {
        font-size: 0.9rem;
    }
    .gallery .slider-container {
        border-radius: 8px;
    }
    .slider-controls {
        gap: 1rem;
        padding: 0.8rem 0;
    }
    .slider-arrow {
        font-size: 1.1rem;
        padding: 0.3rem;
    }
    .slider-nav {
        gap: 0.3rem;
        padding: 0.8rem 0;
    }
    .dot {
        width: 8px;
        height: 8px;
    }
}
/* Services Section */
.services {
    padding: 5rem 5%;
    background: var(--gradient-7);
    position: relative;
    z-index: 1;
}

/* Subtle Indian pattern overlay utility
   Usage:
   - Add class `pattern` to any section. It renders faint radial motifs.
   - Default is tuned for light backgrounds (gold/white) using maroon-tinted motifs (multiply blend).
   - For dark sections, add `pattern--on-dark` to switch to soft white motifs (overlay blend).
*/
.pattern { position: relative; overflow: hidden; }
.pattern::before {
    content: "";
    position: absolute; inset: 0;
    z-index: 0;
    pointer-events: none;
    /* Base color for light backgrounds */
    --pattern-color: rgba(122, 30, 30, 0.0);
    background-image:
        radial-gradient(120px 120px at 10% 15%, var(--pattern-color), transparent 70%),
        radial-gradient(160px 160px at 80% 25%, var(--pattern-color), transparent 70%),
        radial-gradient(140px 140px at 30% 80%, var(--pattern-color), transparent 70%),
        radial-gradient(100px 100px at 70% 90%, var(--pattern-color), transparent 70%);
    mix-blend-mode: multiply; /* works well on light backgrounds */
}
.pattern--on-dark::before {
    --pattern-color: rgba(255, 255, 255, 0.0);
    mix-blend-mode: overlay;  /* better for dark backgrounds */
}
.pattern--strong::before { --pattern-color: rgba(122, 30, 30, 0.0); }
.pattern > * { position: relative; z-index: 1; }
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
}
.service-card p {
    color: var(--gray);
    line-height: 1.8;
}
/* Our Approach Section */
.approach {
    padding: 3rem 5%;
    background: var(--gradient-9);
}
.approach-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.approach-steps {
    flex: 1;
    background: var(--gradient-6); /* maroon panel */
    color: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.approach-image {
    width: 100%;
    max-width: 720px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.approach-image img {
    width: 100%;
    height: 100%;
    max-height: 380px;
    display: block;
    object-fit: contain;
}
.approach-details {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.approach-detail {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}
.approach-detail.visible {
    opacity: 1;
    transform: translateX(0);
}
.approach-detail:last-child {
    margin-bottom: 0;
}
.approach-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary); /* maroon headings for steps */
    font-weight: 700;
}
.approach-detail p {
    color: var(--gray);
    line-height: 1.8;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
    /* Mobile Responsive Styles for Our Approach Section */
@media (max-width: 768px) {
    .approach {
        padding: 2rem 3%; /* Reduce padding for mobile */
    }
    .approach-container {
        flex-direction: column; /* Stack elements vertically on mobile */
        border-radius: 16px;
        overflow: hidden;
    }
    .approach-steps {
        padding: 2rem; /* Reduce padding */
        order: 2; /* Move to bottom on mobile */
    }
    .approach .approach-image { /* More specific selector */
        width: 100%;
        max-width: 100%;
        margin: 0;
        height: auto;
        order: 0;
        overflow: hidden;
    }
    .approach-details {
        padding: 2rem; /* Reduce padding */
    }
    .approach-detail {
        margin-bottom: 0.5rem; /* Reduce margin between details */
    }
    .approach-detail h3 {
        font-size: 1.2rem; /* Reduce font size */
    }
    .approach-detail p {
        font-size: 0.95rem; /* Reduce font size */
    }
}
@media (max-width: 576px) {
    .approach {
        padding: 1.5rem 3%; /* Further reduce padding for small mobile */
    }
    .approach-steps {
        padding: 1.5rem; /* Further reduce padding */
    }
    .approach-details {
        padding: 1.5rem; /* Further reduce padding */
    }
    .approach-detail {
        margin-bottom: 1.2rem; /* Further reduce margin */
    }
    .approach-detail h3 {
        font-size: 1.1rem; /* Further reduce font size */
    }
    .approach-detail p {
        font-size: 0.9rem; /* Further reduce font size */
    }
    .approach .approach-image { /* More specific selector */
        width: 100%;
        max-width: 100%;
        margin: 0;
        height: auto;
        order: 0;
        overflow: hidden;
    }
}
/* Expertise Section with Flip Cards */
.expertise {
    padding: 5rem 5%;
    background: var(--gradient-9); /* golden */
    background-size: 400% 400%;    /* Required for the animation effect */
    animation: gradient 35s ease infinite; /* Slow, elegant movement */
}
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
/* Flip Card Styles */
.flip-card {
    width: 100%;
    height: 250px;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}
.flip-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.flipper {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 700ms cubic-bezier(.2,.9,.3,1);
    border-radius: 16px;
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.1);
}
.face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-weight: 700;
    letter-spacing: 0.6px;
    font-size: 1.05rem;
    user-select: none;
}
.front {
    background: var(--white);
    color: var(--dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.back {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.08));
    border: 5px solid rgba(255,255,255,0.4);
    color: var(--white);
    background-blend-mode: overlay;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}
.back .sub {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.9;
    color: var(--yellow);
    margin-top: -6px;
}
/* Hover flips */
.flip-card-left:hover .flipper { transform: rotateY(-180deg); }
.flip-card-right:hover .flipper { transform: rotateY(180deg); }
.flip-card-up:hover .flipper { transform: rotateX(-180deg); }
.flip-card-down:hover .flipper { transform: rotateX(180deg); }
/* For back faces when flipping on X axis */
.flip-card-up .back { transform: rotateX(180deg); }
.flip-card-down .back { transform: rotateX(180deg); }
/* Add these lines for back faces when flipping on Y axis (Left/Right cards) */
.flip-card-left .back { transform: rotateY(-180deg); }
.flip-card-right .back { transform: rotateY(180deg); }
.flip-card-icon {
    color: var(--secondary);
    font-size: 2rem !important;
}
.back .flip-card-icon {
    color: var(--primary);
}
/* Responsive for Expertise section */
/* Tablet breakpoint: 768px */
@media (max-width: 768px) {
    .expertise {
        padding: 4rem 4%;
    }
    .flip-card {
        height: 220px;
        transform: none !important;
        opacity: 1 !important;
        transition: none;
    }
    .face {
        font-size: 1rem;
        padding: 0.5rem;
    }
    .flip-card-icon {
        font-size: 2.5rem;
    }
    .back .flip-card-icon {
        font-size: 2.2rem;
    }
}
/* Mobile breakpoint: 576px */
@media (max-width: 576px) {
    .expertise {
        padding: 3rem 3%;
    }
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .flip-card {
        height: 200px;
    }
    .face {
        font-size: 0.95rem;
    }
    .flip-card-icon {
        font-size: 2.2rem;
    }
    .back .sub {
        font-size: 0.72rem;
    }
}
/* Split Section about with Animation */
.split-section {
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}
.split-content {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
    display: flex; /* Make it a flex container */
    flex-direction: column; /* Arrange children vertically */
    align-items: center; /* Center child elements horizontally (left/right) */
    justify-content: center; /* Center child elements vertically (top/bottom) within the available space */
}
.split-content.visible {
    opacity: 1;
    transform: translateX(0);
}
.split-content h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}
.split-content p {
    font-size: 0.825rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.split-image {
    flex: 1.3;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}
.split-image.visible {
    opacity: 1;
    transform: translateX(0);
}
.split-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    height: auto;
    display: block;
}
.split-reverse .split-content {
    transform: translateX(50px);
}
.split-reverse .split-image {
    transform: translateX(-50px);
}
.split-reverse .split-content.visible {
    transform: translateX(0);
}
.split-reverse .split-image.visible {
    transform: translateX(0);
}
/* Tablet breakpoint: 768px */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
        padding: 4rem 4%;
        gap: 3rem;
    }
    .split-content, .split-image {
        transform: none !important;
        opacity: 1 !important;
        transition: none;
    }
    .split-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    .split-content p {
        font-size: 1rem;
        text-align: center;
    }
}
/* Mobile breakpoint: 576px */
@media (max-width: 576px) {
    .split-section {
        padding: 3rem 3%;
        gap: 2rem;
    }
    .split-content h2 {
        font-size: 1.6rem;
    }
    .split-content p {
        font-size: 0.95rem;
    }
    .split-image img {
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
}
/* Logistics & Supply Section (Three-columns: left/right images, center text) */
.logistics-section {
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
    background: var(--white);
    color: var(--dark);
}
.logistics-col { flex: 1; }
.logistics-image { display: flex; align-items: center; justify-content: center; }
.logistics-image img { width: 100%; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); height: auto; display: block; }
.logistics-center { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 1rem; }
.logistics-center h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--primary); font-weight: 700; }
.logistics-center p { font-size: 1.1rem; color: var(--dark); margin-bottom: 2rem; line-height: 1.8; }
@media (max-width: 768px) { .logistics-section { flex-direction: column; } .logistics-center h2 { font-size: 2rem; } .logistics-center p { font-size: 1rem; } }
@media (max-width: 576px) { .logistics-section { padding: 3rem 3%; } }
/* Stats Section */
.stats {
    padding: 5rem 5%;
    background: var(--gradient-6);
    color: var(--white);
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
.stat-item {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}
.stat-item.visible {
    opacity: 1;
    transform: scale(1);
}
.stat-number-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}
.stat-plus {
    font-size: 2.2rem;
    font-weight: 700;
    padding-top: 0.3rem;
}
.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}
/* --- Responsive Breakpoints Stat section --- */
/* Tablet */
@media (max-width: 768px) {
    .stats {
        padding: 3rem 5%;
    }
    .stats-grid {
        gap: 2rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .stat-label {
        font-size: 1rem;
    }
}
/* Mobile */
@media (max-width: 576px) {
    .stats {
        padding: 2.5rem 4%;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .stat-label {
        font-size: 0.95rem;
    }
}
/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background: var(--white);
    position: relative;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonials-header {
    text-align: center;
    color: var(--primary);
    max-width: 700px;
    margin: 0 auto 4rem;
}
.testimonials-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.testimonials-header p {
    font-size: 1.1rem;
 }
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}
.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}
.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}
.author-info p {
    font-size: 0.9rem;
    color: var(--gray);
}
.centered-section {
    text-align: center;
    margin-top: 20px;  /* You can adjust this margin as needed */
}

/* --- Responsive Breakpoints for testimonial --- */
/* Tablet */
@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 5%;
    }
    .testimonials-grid {
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    .author-info h4 {
        font-size: 1rem;
    }
    .author-info p {
        font-size: 0.85rem;
    }
    .centered-section {
        margin-top: 15px;
    }
}
/* Mobile */
@media (max-width: 576px) {
    .testimonials {
        padding: 2.5rem 4%;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    .testimonial-card:hover {
        transform: translateY(-5px);
    }
    .author-avatar {
        width: 45px;
        height: 45px;
    }
    .author-info h4 {
        font-size: 1rem;
    }
    .author-info p {
        font-size: 0.8rem;
    }
        .centered-section {
        margin-top: 15px;
    }
}
/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: var(--gradient-2);
}
.contact-container {
    max-width: 800px;
    margin: 0 auto;
}
.section-header h2 {
    color: var(--white);
}
.section-header p {
    color: rgba(255, 255, 255, 0.8);
}
/* Override section header colors in light/golden sections */
.approach .section-header h2 { color: var(--primary); }
.approach .section-header p { color: var(--primary); font-weight: 600; }
.popular-products .section-header h2 { color: var(--primary); }
.popular-products .section-header p { color: var(--primary); }
.social .section-header h2 { color: var(--primary); }
.social .section-header p { color: var(--dark); }
.expertise .section-header h2 { color: var(--primary); }
.expertise .section-header p { color: var(--primary); }
.form-group {
    margin-bottom: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns on larger screens */
    gap: 1rem;
}
/* Adjust the form row layout for smaller screens */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr; /* Stack the inputs vertically on mobile */
    }
}
.col {
    display: flex;
    flex-direction: column;
}
.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: 'Inter', sans-serif;
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.form-control:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.btn {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
}
.btn-block {
    display: block;
    width: 100%;
}
#thankYouMessage {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    border-radius: 16px;
    margin-top: 2rem;
}
/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 5%;
    text-align: center;
    position: relative;
}

footer p {
    font-size: 0.85rem;
}

/* New Contact Section with Product Display */
.contact-alternate {
    padding: 5rem 5%;
    background: var(--gradient-6);
    position: relative;
}
.contact-alternate-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-products {
    flex: 1;
    position: relative;
    height: 350px;
    display: none;
    align-items: center;
    justify-content: center;
}
.product-img {
    position: absolute;
    width: 160px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}
.product-1 {
    left: 10%;
    top: 30%;
    transform: rotate(-15deg);
    z-index: 1;
}
.product-1:hover {
    transform: rotate(-15deg) scale(1.1);
}
.product-2 {
    right: 10%;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
    z-index: 2;
}
.product-2:hover {
    transform: translateY(-50%) rotate(5deg) scale(1.15);
}
.product-3 {
    right: 0;
    bottom: 20%;
    transform: rotate(20deg);
    display: none;
}
.product-3:hover {
    transform: rotate(20deg) scale(1.1);
}
.contact-info-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.contact-info-box h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.contact-info-box > .contact-detail:first-of-type {
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 1.5rem;
}
.contact-detail h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0;
}
.contact-detail h4 {
    font-size: 1rem;
    color: var(--primary);
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 700;
}
.contact-detail p {
    color: #333;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}
.contact-detail p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.contact-detail p a:hover {
    text-decoration: underline;
}

/* Mobile Responsive for Contact Alternate */
@media (max-width: 768px) {
    .contact-alternate {
        padding: 3rem 5%;
    }
    .contact-alternate-container {
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
    }
    .contact-products {
        height: 300px;
        order: 2;
        display: none;
    }
    .product-img {
        width: 140px;
    }
    .product-1 {
        left: -30px;
    }
    .product-3 {
        right: -30px;
    }
    .contact-info-box {
        order: 1;
        padding: 2rem;
        max-width: 100%;
    }
    .contact-info-box h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-alternate {
        padding: 2rem 3%;
    }
    .contact-alternate-container {
        gap: 1.5rem;
        flex-direction: column;
        justify-content: center;
    }
    .contact-products {
        height: 200px;
        display: none;
    }
    .product-img {
        width: 100px;
    }
    .product-1 {
        left: -20px;
    }
    .product-3 {
        right: -20px;
    }
    .contact-info-box {
        padding: 1.5rem;
        max-width: 100%;
    }
    .contact-info-box h2 {
        font-size: 1.5rem;
    }
    .contact-detail h4 {
        font-size: 0.9rem;
    }
    .contact-detail p {
        font-size: 0.85rem;
    }
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 5%;
    text-align: center;
    position: relative;
}
.company-info {
    position: absolute;
    bottom: 0rem;
    left: 1rem;
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: left;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--secondary);
}

/* Our Popular Products (dual marquee rows) */
.popular-products { padding: 5rem 5%; background: var(--white); }
.popular-products .section-header { max-width: 900px; margin: 0 auto 2rem auto; text-align: center; }
.marquee { overflow: hidden; white-space: nowrap; position: relative; mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent); max-width: 1200px; margin: 0 auto; }
.marquee__track { display: inline-flex; gap: 2.4rem; align-items: center; animation: marquee-left 45s linear infinite; will-change: transform; }
.marquee--reverse .marquee__track { animation: marquee-right 45s linear infinite; will-change: transform; }
.marquee__item { background: #fff; border-radius: 16px; padding: 0.5rem 0.5rem; box-shadow: 0 6px 20px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(122,30,30,0.15); }
.marquee__item img { height: 240px; width: auto; display: block; }
/* Add extra vertical gap between the two rows */
.popular-products .marquee + .marquee { margin-top: 3rem !important; }
@keyframes marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
/* Mobile responsive for Popular Products */
@media (max-width: 768px) { 
    .marquee__track { gap: 3.6rem; }
    .marquee__item img { height: 162px; } 
    .popular-products .marquee + .marquee { margin-top: 4.5rem !important; }
}
@media (max-width: 576px) { 
    .marquee__track { gap: 3.6rem; }
    .marquee__item img { height: 129.6px; } 
    .popular-products .marquee + .marquee { margin-top: 4.5rem !important; }
}

/* Social connect section */
.social { 
    padding: 5rem 5%; 
    background: linear-gradient(135deg, #FFD700 0%, #FFC800 100%);
    position: relative;
}
.social-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}
.social-products-left,
.social-products-right {
    display: none;
}
.social-product-img {
    width: 180px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}
.social-product-img:hover {
    transform: scale(1.05);
}
.social-content {
    flex: 1;
}
.social-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem; 
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}
.social-card { 
    background: var(--white); 
    border-radius: 16px; 
    padding: 2rem; 
    text-align: center; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    transition: transform .3s ease, box-shadow .3s ease; 
    opacity:0; 
    transform: translateY(20px); 
    position: relative;
}
.social-card.visible { opacity:1; transform: translateY(0); }
.social-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 18px 40px rgba(0,0,0,0.12); }
.social-card i { font-size: 2rem; color: var(--primary); margin-bottom: .75rem; }
.social-card a { display: inline-block; margin-top: .75rem; color: var(--white); background: var(--gradient-3); padding: .5rem 1rem; border-radius: 24px; text-decoration: none; font-weight: 600; }

/* Product images at card corners */
.social-card:nth-child(1) .social-card-product {
    position: absolute;
    bottom: -60px;
    left: -65px;
    transform: rotate(-15deg);
    z-index: 10;
    pointer-events: none;
}

.social-card:nth-child(2) .social-card-product {
    position: absolute;
    bottom: -60px;
    left: -65px;
    transform: rotate(-15deg);
    z-index: 10;
    pointer-events: none;
}

.social-card:nth-child(3) .social-card-product {
    position: absolute;
    bottom: -60px;
    left: -65px;
    transform: rotate(-15deg);
    z-index: 10;
    pointer-events: none;
}

.social-card-product {
    width: 119px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

@media (max-width: 1024px) {
    .social {
        padding: 4rem 5%;
    }
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    .social-card:nth-child(1) .social-card-product {
        display: none;
    }
    .social-card:nth-child(2) .social-card-product {
        display: none;
    }
    .social-card:nth-child(3) .social-card-product {
        display: none;
    }
    .social-card-product {
        width: 120px;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }
}

@media (max-width: 768px) {
    .social {
        padding: 3rem 5% 6rem 5%;
        overflow: visible;
    }
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 1.2rem;
    }
    .social-card:nth-child(1) .social-card-product {
        display: none;
    }
    .social-card:nth-child(2) .social-card-product {
        display: none;
    }
    .social-card:nth-child(3) .social-card-product {
        display: none;
    }
    .social-card-product {
        width: 100px;
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    }
}

@media (max-width: 576px) {
    .social {
        padding: 2rem 3%;
    }
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .social-card:nth-child(1) .social-card-product,
    .social-card:nth-child(2) .social-card-product,
    .social-card:nth-child(3) .social-card-product {
        display: none;
    }
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
        /* --- Cookie Consent Banner Styles --- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    color: var(--white);
    padding: 1.2rem 2rem;
    z-index: 1000; /* Ensures it stays on top */
    display: none; /* Hidden by default, shown by JS if no consent */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
#cookie-banner p {
    margin: 0;
    color: var(--white);
    flex: 1;
    min-width: 280px;
}
#cookie-banner a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}
#cookie-banner a:hover {
    color: var(--secondary);
}
#cookie-consent-button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}
#cookie-consent-button:hover {
    background-color: var(--primary-dark);
}
.whatsapp-button {
    position: fixed;
    bottom: 60px;           /* Distance from bottom */
    right: 20px;            /* Distance from right */
    z-index: 1000;          /* Ensure it stays on top */
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}
.whatsapp-button:hover {
    background-color: #128C7E;
}
@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 50px;
        right: 20px;
    }
    .whatsapp-button i {
        font-size: 24px;
    }
}

/* Image Popup Modal Styles */
.image-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.image-popup-overlay.active {
    display: flex;
}

.image-popup-container {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

#popupImage {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
}

.image-popup-alt {
    font-size: 1rem;
    color: var(--dark);
    text-align: center;
    font-weight: 600;
    margin: 0;
}

.image-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.image-popup-close:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Marquee item hover effect */
.marquee__item {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.marquee__item:hover {
    transform: scale(1.05);
}

/* Pause marquee animation on hover */
.marquee__track.paused {
    animation-play-state: paused !important;
}