/*--- GLOBAL STYLES & VARIABLES --- */:root {--color-red-deep: #b90000;--color-black-bg: #111111;--color-gold: #e6c078;--color-offwhite: #f7f5f2;--color-text-dark: #333333;--color-text-choco: #704d3a;--color-text-light: #f0f0f0;--font-heading:'Poppins',sans-serif;--font-body: 'Poppins',sans-serif}
* {box-sizing: border-box;margin: 0;padding: 0}
body {font-family: var(--font-body);background-color: var(--color-offwhite);color: var(--color-text-dark);overflow-x: hidden;}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
/*--- ANIMATION UTILITY CLASSES --- */
.hidden {opacity: 0;filter: blur(5px);transform: translateY(50px);transition: all 1s ease-out}
.show {opacity: 1;filter: none;transform: translateY(0)}
.hidden-delay-1 { transition-delay: 200ms; }
.hidden-delay-2 { transition-delay: 400ms; }
.hidden-delay-3 { transition-delay: 600ms; }
/*--- GENERAL TYPOGRAPHY & BUTTONS --- */h1, h2, h3 {font-family: var(--font-heading);font-weight: 700;letter-spacing: 1px}
h1 { font-size: clamp(3rem, 7vw, 6rem); } h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
.section-title {text-align: center;margin-bottom: 4rem;font-size: 1.5rem;text-transform: uppercase;letter-spacing: 0.2em;font-weight: 500}
.btn {display: inline-block;padding: 14px 32px;border: 2px solid var(--color-text-dark);background-color: transparent;color: var(--color-text-dark);font-family: var(--font-body);text-decoration: none;text-transform: uppercase;letter-spacing: 2px;font-weight: 500;transition: all 0.4s ease}
.btn:hover {background-color: var(--color-text-dark);color: var(--color-offwhite);transform: translateY(-5px)}
/*========= SOCIAL PROOF SLIDESHOW BAR ========= */
.proof-slideshow-bar {width: 100%;height: 2rem;position: relative; overflow: hidden}
.slide-item {position: absolute;top: 0;left: 0;width: 100%;height: 100%;display: flex;justify-content: center;align-items: center;font-size: 0.9rem;font-family: var(--font-body);font-weight: 500;transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1)}
.slide-item.is-active {transform: translateY(0)}
.slide-item.is-exiting {transform: translateY(-100%)}
/*--- Same Background Colors --- */
.slide-item.bg-color-1 {background-color: #7f0d00;color: #ffde73}
.slide-item.bg-color-2 {background-color: #00753a;color: #ffffff}
.slide-item.bg-color-3 {background-color: #004382;color: #ffde73}
/*========= RESPONSIVE NAVBAR ========= */
.main-header {position: fixed;top: 0;left: 0;width: 100%;z-index: 1000;    padding: 0 0 0 0%;transition: box-shadow 0.4s ease;background-color: rgba(255, 255, 255, 0.95)}
.main-header.scrolled {
    backdrop-filter: blur(10px);box-shadow: 0 2px 15px rgba(0,0,0,0.08);}
    .header-container {display: flex;justify-content: space-between;width: 100%;padding-left: 2rem;padding-right: 2rem;padding-top: 1rem;padding-bottom: 1rem;}
    .right-nav{position: absolute;top: 1.5rem;right: 2rem;}
    .header-logo .logo-text {font-family: var(--font-body);font-weight: 500;letter-spacing: 0.2rem;font-size: 1.5rem;color: var(--color-text-dark);text-decoration: none !important;}
    .desktop-nav ul {list-style: none;display: flex;gap: 2rem}
    .desktop-nav a {text-decoration: none;color: var(--color-text-dark);font-family: var(--font-body);font-size: 0.9rem;text-transform: uppercase;letter-spacing: 1.5px;padding-bottom: 5px;position: relative}
    .desktop-nav a::after {content: '';position: absolute;bottom: 0;left: 50%;transform: translateX(-50%);width: 0;height: 1px;background-color: var(--color-text-dark);transition: width 0.3s ease}
    .desktop-nav a:hover::after {width: 100%}
    /*--- Mobile Specific Styles --- */
    .mobile-nav-toggle {display: none; background: none;border: none;cursor: pointer;z-index: 1001;padding: 10px}
    .hamburger-line {display: block;width: 25px;height: 2px;background-color: var(--color-text-dark);margin: 5px 0;transition: transform 0.4s ease, opacity 0.4s ease}
    /* Hamburger animation to 'X' */
    .mobile-nav-toggle.is-active .hamburger-line:nth-child(1) {transform: translateY(7px) rotate(45deg)}
    .mobile-nav-toggle.is-active .hamburger-line:nth-child(2) {opacity: 0}
    .mobile-nav-toggle.is-active .hamburger-line:nth-child(3) {transform: translateY(-7px) rotate(-45deg)}
    .mobile-nav-overlay {position: fixed;top: 0;left: 0;width: 100%;height: 100%;background-color: var(--color-offwhite);z-index: 999;display: flex;justify-content: center;align-items: center;transform: translateX(100%);transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1)}
    .mobile-nav-overlay.is-active {transform: translateX(0)}
    .mobile-nav-menu ul {list-style: none;text-align: center}
    .mobile-nav-menu li {margin-bottom: 1rem;margin-top: 1rem;}
    .mobile-nav-menu a {color: var(--color-text-dark);text-decoration: none;font-family: var(--font-heading);font-size: 1.25rem}
    /*--- Media Query for Responsiveness --- */
    @media (max-width: 768px) {.desktop-nav {display: none;}.mobile-nav-toggle {display: block;}.header-container {padding-left: 1rem;   position: relative;}.mobile-nav-toggle {position: absolute;    right: 0;}}
    /*========= HERO SECTION ========= */
    .hero {position: relative;text-align: center;color: var(--color-text-light);overflow: hidden;margin-top: 6.75rem;}
    .hero-content {z-index: 2}
    .hero-content .subtitle {color: var(--color-gold);text-transform: uppercase;letter-spacing: 5px;margin-bottom: 1rem;font-size: 1.25rem;background-color: #00000084}
    .hero-content h1 {text-shadow: 0 5px 25px rgba(0,0,0,0.7)}
    .hero-illustration {position: absolute;z-index: 1;animation: float 8s ease-in-out infinite}
    .hero-illustration img {width: 100%;mix-blend-mode: screen; }
    .hero-illustration.tiger {bottom: 5%;left: 10%;width: 20vw;max-width: 250px;animation-duration: 10s}
    .hero-illustration.deer {top: 10%;right: 5%;width: 15vw;max-width: 200px;animation-duration: 12s;animation-delay: -2s}
    @keyframes float {0% { transform: translateY(0px); }50% { transform: translateY(-25px); }100% { transform: translateY(0px); }}
    .hero .mob{display: block;} .hero .wid{display: block;}
    .mobonly{display: block;} .widonly{display: block;}
    
    .overlapping-circle-image {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10rem;
        height: auto;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        z-index: 10;
        border: 5px solid #fff;
    }
    
    .overlapping-circle-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .video-container {
        position: relative;
        width: 100%;
        /* This creates the aspect ratio box based on padding-top percentage */
        padding-top: 45%; /* For a 16:9 aspect ratio (9/16 * 100) */
        height: 0; /* Important to collapse the container's height */
        overflow: hidden;
    }
    
    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the video covers the container while maintaining aspect ratio */
    }
    .logo-text {left:7rem}
    @media (max-width: 600px) {.overlapping-circle-image {width: 7rem;} .logo-text{left: 6rem;} .video-container { padding-top: 100%; }}
    @media (max-width: 600px) { .hero .mob{display: block;}.hero .wid{display: none;}}
    @media (min-width: 600px) {.hero .mob{display: none;}.hero .wid{display: block;}}

    @media (max-width: 600px) { .mobonly{display: block;} .widonly{display: none;}}
    @media (min-width: 600px) { .mobonly{display: none;} .widonly{display: block;}}
    
    /*========= CATEGORY SECTION =========*/
    
    .category-section {
        position: relative;
        overflow: hidden; /* Prevents horizontal scroll from any overflowing elements */
        padding: 4rem 0rem;
        padding-top: 8rem;
        /* background-color:#baa272; */
        background-color: var(--color-offwhite);
        /* background-image: url("./catbg.jpg"); */
        text-align: center;
    }
    .category-title {
        /* Box Styles */
        /* background-color: #fff; */
        /* border: 2px #d3c9be; */
        padding: 0.75rem 1rem;
        /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
        
        /* Layout */
        display: inline-block; /* Makes it only as wide as its content + padding */
        margin-bottom: 3rem; /* Spacing below the title */
    }
    
    /* By default, the widescreen motifs are hidden. */
    .motif {
        display: none;
    }
    
    /* Category grid for MOBILE (and default). This creates a responsive column layout. */
    .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        /* gap: 2rem; */
        max-width: 1400px;
        margin: auto;
    }
    
    /*--- SIMPLIFIED CATEGORY CARD STYLES (from your original CSS) --- */
    .category-card {
        text-align: center;
        background-color: #fff;
        border: 2px  #d3c9be;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        padding-bottom: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-bottom: 2rem;
        overflow: hidden;
        transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    }
    .category-card .btn{
        font-size: 1rem;
        letter-spacing: 0;
        border-radius: 1rem;
        background-color: #0e424d !important;
        color: #fff;
    }
    .category-card .btn:hover{
        background-color: #fff !important;
        color: #0e424d;
        cursor: pointer;
    }
    
    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.5);
        border-color: var(--color-gold);
    }
    
    .category-card .card-image-placeholder {
        
        background-color: #f0f0f0;
        overflow: hidden;
    }
    
    .category-card img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }
    
    .category-card h3 {
        font-family: "Poppins";
        color: var(--color-text-choco);
        font-size: 1.2rem;
        margin-top: 1rem;
        padding: 0 0rem;
    }
    .category-card h4 {
        color: var(--color-text-dark);
        font-size: 1rem;
        font-weight: normal;
        padding: 1rem 1rem;
    }
    
    
    /*========= WIDESCREEN LAYOUT (for screens >= 1280px wide) ========= */
    @media (min-width: 1280px) {
        
        /* Hide the small mobile pseudo-element motifs on widescreen */
        .category-section::before,
        .category-section::after {
            content: none;
        }
        
        /* This is the new 3-column grid container */
        .widescreen-wrapper {
            /* display: grid; */
            /* Defines 3 columns: 1st/3rd for motifs, 2nd for main content */
            /* grid-template-columns: 4fr; */
            /* align-items: center;
            gap: 2rem; */
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Display the vertical motifs */
        .motif {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }
        
        .motif img {
            width: 100%;
            object-fit: contain;
            opacity: 0.5;
        }
        
        /* Force the card grid into exactly 3 columns on widescreen */
        .category-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    
    /*========= HOW IT WORKS SECTION ========= */
    .how-it-works-section {padding: 5rem 5%;
        /* background-color: var(--color-offwhite); */
        background-color: #E8E0D8FF;
        position: relative;}
        .steps-container {display: grid;grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));gap: 1rem;max-width: 1200px;margin: 0 auto}
        .step {padding: 2rem 1.5rem;border: 3px solid #ffffff;text-align: center;border-radius: 1rem;transition: all 0.4s ease}
        .step:hover {border-style: solid;border-color: var(--color-red-deep);transform: translateY(-10px);box-shadow: 0 10px 30px rgba(0,0,0,0.1)}
        .step-number {font-family: var(--font-heading);font-size: 1.5rem;color: var(--color-red-deep);margin-bottom: 0.5rem}
        .step h3 {font-size: 0.95rem;margin-bottom: 1rem}
        .step p {font-size: 0.75rem;color: #666}
        /*========= Clients SECTION ========= */
        /* Section Styling */
        .trusted-brands {
            /* width: 100%;
            max-width: 1200px;
            text-align: center;
            padding: 0 20px;
            box-sizing: border-box; */
            padding: 5rem 5%;background-color: #0e424d;position: relative;
        }
        
        .trusted-brands .section-title {
            margin-bottom: 1rem;
            color: #fff;
        }
        
        .brand-subtitle{
            text-align: center;
            margin-bottom: 3rem;
            /* color: var(--color-red-deep); */
            color: #fff;
        }
        
        /* Logo Slider Styling */
        .logo-slider {
            overflow: hidden;
            padding: 20px 0;
            background: #fff;
            border-radius: 0;
            /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07); */
            margin-bottom: 25px;
            /* -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0));
            mask-image: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0)); */
        }
        
        .slider-track {
            display: flex;
            /* Key Properties for Customization:
            1. width: (width of a single logo card) * (total number of logos * 2)
            2. animation: Adjust the duration (40s) to change speed.
            */
            width: calc(200px * 14); /* 200px card width * (7 logos * 2) */
            animation: scroll 40s linear infinite;
        }
        
        /* Pause animation when the user hovers over the slider */
        .logo-slider:hover .slider-track {
            animation-play-state: paused;
        }
        
        /* Set animation direction */
        .slider-ltr {
            animation-name: scroll-ltr;
        }
        .slider-rtl {
            animation-name: scroll-rtl;
        }
        
        @keyframes scroll-ltr {
            from { transform: translateX(0); }
            to { transform: translateX(calc(-200px * 7)); } /* -200px card width * 7 original logos */
        }
        
        @keyframes scroll-rtl {
            from { transform: translateX(calc(-200px * 7)); } /* -200px card width * 7 original logos */
            to { transform: translateX(0); }
        }
        
        
        /* Logo Card Styling */
        .logo-card {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 200px; /* Fixed width for each logo card */
            height: 100px;
            padding: 15px;
            box-sizing: border-box;
            cursor: pointer;
            transition: transform 0.3s ease-in-out;
        }
        
        .logo-card img {
            max-width: 100%;
            max-height: 60px;
            /* filter: grayscale(100%); */
            /* opacity: 0.6; */
            transition: all 0.3s ease-in-out;
        }
        
        /* Hover Animation on Logo */
        .logo-card:hover {
            transform: scale(1.15);
        }
        
        .logo-card:hover img {
            /* filter: grayscale(0%); */
            /* opacity: 1; */
        }
        /*========= PRODUCT CATEGORIES SECTION ========= */
        .product-categories {padding: 100px 5%;background-color: var(--color-offwhite);overflow: hidden;         padding-top: 8rem;}
        .category-grid-container {display: grid;grid-template-columns: 1fr 1fr 1fr;grid-template-rows: auto auto;gap: 3rem 2rem;max-width: 80%;margin: 0 auto;position: relative;}
        .category-oval {padding: 3rem 2rem;border: 2px dotted #d0c9c2;background-color: white;text-align: center;display: flex;flex-direction: column;justify-content: center;align-items: center;min-height: 400px;transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);border-radius: 45% 55% 60% 40% / 60% 40% 60% 40%}
        .category-oval:hover {transform: translateY(-15px) rotate(1.5deg);border-style: solid;border-color: var(--color-red-deep);box-shadow: 0 20px 40px rgba(0,0,0,0.1)}
        .category-oval h3 {font-size: clamp(1.5rem, 4vw, 2.2rem);margin-bottom: 1rem}
        .category-oval p {color: #666;max-width: 25ch; margin-bottom: 2rem}
        .btn-underline {font-family: var(--font-body);font-weight: 500;text-transform: uppercase;letter-spacing: 1.5px;font-size: 0.8rem;color: var(--color-text-dark);text-decoration: none;position: relative;padding-bottom: 5px}
        .btn-underline::after {content: '';position: absolute;bottom: 0;left: 0;width: 100%;height: 2px;background-color: var(--color-red-deep);transition: width 0.4s ease}
        .btn-underline:hover::after {width: 0}
        /*--- Decorative Illustrations --- */
        .deco-illustration {position: absolute;z-index: 2;font-family: var(--font-heading);color: #aaa;font-size: 1.5rem}
        .deco-illustration.trophy {top: -5%;left: 12%;transform: rotate(-15deg)}
        .deco-illustration.diary {top: -5%;left: 46%;transform: rotate(15deg)}
        .deco-illustration.diya {top: -5%;left: 80%;transform: rotate(0deg)}
        .deco-illustration.sploc {top: 50%;left: 12%;transform: rotate(0deg);}
        .deco-illustration.event {top: 55%;left: 46%;transform: rotate(0deg);}
        .deco-illustration.voucher {top: 55%;left: 80%;transform: rotate(0deg);}
        @media (max-width: 768px) {.category-grid-container {grid-template-columns: 1fr;}.deco-illustration {display: none;}}
        /*========= NEW: TESTIMONIALS & CONTACT SECTION ========= */
        .testimonials-contact-section {display: grid;grid-template-columns: 1fr 1.2fr; gap: 4rem;padding: 100px 5%;align-items: center;background-color: #fff;        padding-top: 8rem;}
        .testimonials-column {padding-right: 2rem}
        .testimonial-slider {position: relative;height: 250px; overflow: hidden}
        .testimonial-slide {position: absolute;width: 100%;opacity: 0;transition: opacity 0.8s ease-in-out;text-align: center}
        .testimonial-slide.active {opacity: 1}
        .testimonial-quote {font-size: 1.1rem;font-style: italic;color: #555;margin-bottom: 1.5rem;line-height: 1.6}
        .testimonial-author {font-family: var(--font-heading);font-weight: 500;color: var(--color-red-deep)}
        .contact-column-themed {background-color: var(--color-offwhite);padding: 3rem;border: 1px solid #e0e0e0}
        .contact-form-themed .section-title {margin-bottom: 2rem}
        .form-grid-themed {display: grid;grid-template-columns: 1fr 1fr;gap: 1.5rem}
        .form-group-themed {display: flex;flex-direction: column}
        .form-group-themed input,
        .form-group-themed select,
        .form-group-themed textarea {width: 100%;padding: 14px;border: 1px solid #ddd;background-color: #fff;font-size: 0.9rem;font-family: var(--font-body);transition: border-color 0.3s ease}
        .form-group-themed input:focus,
        .form-group-themed select:focus,
        .form-group-themed textarea:focus {outline: none;border-color: var(--color-gold)}
        .form-group-themed textarea {resize: vertical;min-height: 120px}
        .form-group-themed.full-width {grid-column: 1 / -1}
        .submit-btn-themed {width: 100%;padding: 15px;border: none;background-color: var(--color-text-dark);color: var(--color-offwhite);font-size: 1rem;font-weight: 500;text-transform: uppercase;letter-spacing: 2px;cursor: pointer;transition: background-color 0.3s ease, transform 0.3s ease}
        .submit-btn-themed:hover {background-color: var(--color-red-deep);transform: translateY(-3px)}
        @media (max-width: 900px) {.testimonials-contact-section {grid-template-columns: 1fr;}.testimonials-column {padding-right: 0;    margin-bottom: 3rem;}}
        @media (max-width: 600px) {.form-grid-themed {grid-template-columns: 1fr;}}
        /*========= MEGA FOOTER SECTION ========= */
        .mega-footer {background-color: white; color: var(--color-text-dark);font-size: 0.9rem}
        /*--- The Magic: Patterned Border using SVG --- */
        .pattern-border {height: 30px;background-image: url("data:image/svg+xml,%3Csvg width='60' height='30' viewBox='0 0 60 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 15 L15 25 L30 15 L45 5 L60 15' stroke='%23e0e0e0' stroke-width='2' fill='none'/%3E%3C/svg%3E");background-repeat: repeat-x;background-position: center}
        /*--- Part 2: Service Perks Bar --- */
        .service-perks {display: grid;grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));gap: 1rem;padding: 2rem 5%;text-align: center}
        .perk-item {padding: 1.5rem;border: 1px solid transparent;}
        .perk-item .icon-placeholder {font-size: 2rem;display: block;margin-bottom: 1rem}
        .perk-item h4 {font-family: var(--font-body);font-weight: 500;margin-bottom: 0.5rem;text-transform: none; letter-spacing: normal;font-size: 1rem}
        .perk-item p {color: #777;font-size: 0.85rem}
        /*--- Part 4: Main Footer Grid --- */
        .footer-main {display: grid;grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));gap: 2.5rem;padding: 4rem 5%}
        .footer-column h4 {font-family: var(--font-body);font-weight: 500;text-transform: uppercase;letter-spacing: 2px;margin-bottom: 1.5rem;font-size: 0.85rem}
        .footer-column ul {list-style: none}
        .footer-column ul li {margin-bottom: 1rem}
        .footer-column a {text-decoration: none;color: #555;transition: color 0.3s ease, padding-left 0.3s ease}
        .footer-column a:hover {color: var(--color-red-deep);padding-left: 5px;}
        .contact-column p {margin-bottom: 1.2rem;line-height: 1.6}
        .contact-column a {font-weight: 500}
        .brand-feature-column .footer-logo {font-size: 2.5rem;font-family: var(--font-heading);margin-bottom: 1rem}
        .brand-feature-column .radio-text {font-family: monospace;font-weight: lighter;letter-spacing: 1px}
        .brand-feature-column p {color: #777;margin-bottom: 1.5rem}
        .social-links {display: flex;gap: 1.5rem}
        .social-links a {font-size: 1.2rem;font-weight: bold}
        .footer-bottom-bar {text-align: center;padding: 1.5rem 0;font-size: 0.8rem;color: #777}
        
        
        /* Container for the animated phrase */
        .animated-phrase-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem; /* Space between images and text */
            padding: 1rem;
            padding-top: 0%;
            /* font-family: 'Courier New', Courier, monospace; */
            font-size: 1.25rem;
            color: #333;
        }
        
        /* Styling for the icons on the left and right */
        .phrase-icon {
            height: 3rem;
            flex-shrink: 0; /* Prevents icons from shrinking */
        }
        
        /* The text element with the blinking cursor */
        /* #typing-text {
        border-right: 3px solid rgba(0, 0, 0, .75);
        white-space: nowrap; 
        overflow: hidden; 
        animation: blinkCursor 750ms step-end infinite;
        } */
        
        /* Blinking animation for the cursor */
        @keyframes blinkCursor {
            from, to {
                border-color: transparent;
            }
            50% {
                border-color: rgba(0, 0, 0, .75);
            }
        }

         /*========= vouchers SECTION =========*/
    
    .vouchers-section {
        position: relative;
        overflow: hidden; /* Prevents horizontal scroll from any overflowing elements */
        padding: 4rem 0rem;
        /* background-color:#baa272; */
        background-color:var(--color-offwhite);
        /* background-image: url("./catbg.jpg"); */
        text-align: center;
    }
    .vouchers-title {
        /* Box Styles */
        /* background-color: #fff; */
        /* border: 2px #d3c9be; */
        padding: 0.75rem 1rem;
        /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
        
        /* Layout */
        display: inline-block; /* Makes it only as wide as its content + padding */
        margin-bottom: 3rem; /* Spacing below the title */
    }
    
    /* By default, the widescreen motifs are hidden. */
    .motif {
        display: none;
    }
    
    /* vouchers grid for MOBILE (and default). This creates a responsive column layout. */
    .vouchers-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* gap: 1rem; */
        max-width: 1300px;
        margin: auto;
    }
    
    /*--- SIMPLIFIED vouchers CARD STYLES (from your original CSS) --- */
    .vouchers-card {
        text-align: center;
        background-color: #fff;
        border: 2px  #d3c9be;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        overflow: hidden;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        margin-bottom: 1rem;
        transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    }
    .vouchers-card .btn{
        font-size: 0.8rem;
        margin-top: 0.5rem;
        padding: 0.5rem;
        border-radius: 1rem;
        background-color: #0e424d !important;
        color: #fff;
    }
    .vouchers-card .btn:hover{
        background-color: #fff !important;
        color: #0e424d;
        cursor: pointer;
    }
    
    .vouchers-card:hover {
        transform: translateY(-5px);
        box-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.5);
        border-color: var(--color-gold);
    }
    
    .vouchers-card .card-image-placeholder {

        height: 3rem;
        background-color: #fff;
        overflow: hidden;
    }
    
    .vouchers-card img {
        background-color: #fff;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
    }
    
    .vouchers-card h3 {
        font-family: "Poppins";
        color: var(--color-text-choco);
        font-size: 1.2rem;
        margin-top: 1rem;
        padding: 0 0rem;
    }
    .vouchers-card h4 {
        color: var(--color-text-dark);
        font-size: 1rem;
        font-weight: normal;
        padding: 1rem 1rem;
    }
    
    
    /*========= WIDESCREEN LAYOUT (for screens >= 1280px wide) ========= */
    @media (min-width: 1280px) {
        
        /* Hide the small mobile pseudo-element motifs on widescreen */
        .vouchers-section::before,
        .vouchers-section::after {
            content: none;
        }
        
        /* This is the new 3-column grid container */
        .widescreen-wrapper {
            /* display: grid; */
            /* Defines 3 columns: 1st/3rd for motifs, 2nd for main content */
            /* grid-template-columns: 4fr; */
            /* align-items: center;
            gap: 2rem; */
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Display the vertical motifs */
        .motif {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }
        
        .motif img {
            width: 100%;
            object-fit: contain;
            opacity: 0.5;
        }
        
        /* Force the card grid into exactly 3 columns on widescreen */
        .vouchers-grid {
            grid-template-columns: repeat(6, 1fr);
        }
    }

    /* Styling for the Contact Widget Link */
#contact-widget-link {
  /* Positioning */
  position: fixed; /* Keeps it visible on scroll */
  bottom: 2rem;    /* Distance from the bottom */
  right: 1rem;     /* Distance from the right */
  z-index: 1000;   /* Ensures it stays on top of other content */
  
  /* Removes default link underline */
  text-decoration: none; 
}

/* Styling for the main widget container */
.contact-widget {
  background-color: #031c37; /* A pleasant blue background */
  color: white;              /* White text for contrast */
  padding: 12px;
  border-radius: 8px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  */
  display: grid;
  grid-template-columns: 2rem auto; /* 1st column 3rem, 2nd column takes remaining space */
  align-items: left; /* Vertically aligns image and text */
  gap: 0.5rem; /* Space between the image and the text */
  transition: transform 0.2s ease-in-out; /* Smooth hover effect */
}

/* Adds a slight lift effect on hover for interactivity */
.contact-widget:hover {
  transform: translateY(-5px);
}

/* Styling for the image in the first column */
.contact-widget img {
  width: 2rem;
  height: 2rem;
  /* border-radius: 50%; */
  object-fit: contain;  /* Ensures the image fills the circle without distortion */
}

/* Styling for the text in the second column */
.contact-widget p {
  font-size: 0.75rem;
  margin: 0; /* Removes default paragraph margin */
  line-height: 1.3;
}

/* Main slider container */
.slider-container {
  width: 100%;
  position: relative; /* Crucial for positioning arrows and dots */
  overflow: hidden;   /* Hides the slides that are off-screen */
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Wrapper for all the slides */
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out; /* The sliding animation */
}

/* Individual slide styling */
.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: auto;   /* Height is determined by image aspect ratio */
  display: block; /* Removes bottom space under the image */
}

/* Prev/Next arrow buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* Vertically centers the buttons */
  background-color: rgba(0, 0, 0, 0.25);
  color: white;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 5px;
  z-index: 10;
  transition: background-color 0.3s;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Container for the indicator dots */
.indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%); /* Horizontally centers the dots */
  display: flex;
  gap: 10px;
  z-index: 10;
}

/* Individual indicator dot */
.indicator {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Active state for the current dot */
.indicator.active {
  background-color: #007BFF;
}



/* ABOUT US STYLES */
/*========= ABOUT US PAGE STYLES ========= */
.about-page-section {
    background-color: var(--color-offwhite);
    padding: 12rem 2rem 6rem 2rem; /* Added more top padding to clear the fixed header */
    min-height: 80vh; /* Ensures the section takes up significant height */
}

.about-container {
    max-width: 800px; /* Optimal width for readability */
    margin: 0 auto;
    text-align: left;
}

.about-container .section-title {
    text-align: center; /* Center the main title */
    margin-bottom: 3rem;
}

.about-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-container .about-conclusion {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 3rem;
    color: var(--color-text-choco);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .about-page-section {
        padding: 8rem 1.5rem 4rem 1.5rem;
    }
    
    .about-container p {
        font-size: 1rem;
    }
}