/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.6
Tested up to: 7.0
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

:root {
    /* Colors */
    --primary-blue: #0b1c3b;
    --primary-green: #7cd536;
    --primary-green-hover: #6bc029;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light-green: #f2f9ed;
    --bg-white: #ffffff;
    
    /* Typography System (Desktop First) */
    --font-base: 'Outfit', sans-serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    --fs-h1: 4rem;
    --fs-h2: 2.5rem;
    --fs-h3: 2rem;
    --fs-h4: 1.5rem;
    --fs-h5: 1.25rem;
    --fs-h6: 1rem;
    
    --fs-p: 1.1rem;
    --fs-small: 0.875rem;
    
    --lh-heading: 1.2;
    --lh-base: 1.6;

    /* Global Spacing */
    --section-padding-top: 80px;
    --section-padding-bottom: 80px;
    --section-padding: var(--section-padding-top) 0 var(--section-padding-bottom);
    --spacing-element: 24px;
}

/* Tablet Overrides */
@media (max-width: 991px) {
    :root {
        --fs-h1: 3rem;
        --fs-h2: 2rem;
        --fs-h3: 1.75rem;
        --fs-h4: 1.25rem;
        --fs-p: 1rem;
        --section-padding-top: 60px;
        --section-padding-bottom: 60px;
        --spacing-element: 20px;
    }
}

/* Mobile Overrides */
@media (max-width: 767px) {
    :root {
        --fs-h1: 2.5rem;
        --fs-h2: 1.75rem;
        --fs-h3: 1.5rem;
        --fs-h4: 1.125rem;
        --fs-p: 0.9375rem;
        --section-padding-top: 40px;
        --section-padding-bottom: 40px;
        --spacing-element: 16px;
    }
}

/* Global Reset & Base Styles */
body {
    font-family: var(--font-base);
    color: var(--text-dark);
    font-size: var(--fs-p);
    line-height: var(--lh-base);
    font-weight: var(--fw-regular);
    -webkit-font-smoothing: antialiased;
}
/* Fix for AOS mobile horizontal overflow/shifting bug */
html, 
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    position: relative;
}

/* Force sections using animations to keep their boundaries */
/* section, 
.container, 
.row {
    overflow: hidden; /* Restricts elements from stretching the viewport */
} */
/* Global Typography */
section {
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
}

h1, .h1 { font-size: var(--fs-h1); }
h2, .h2 { font-size: var(--fs-h2); }
h3, .h3 { font-size: var(--fs-h3); }
h4, .h4 { font-size: var(--fs-h4); }
h5, .h5 { font-size: var(--fs-h5); }
h6, .h6 { font-size: var(--fs-h6); }

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-blue);
    font-weight: var(--fw-bold);
    line-height: var(--lh-heading);
}

p {
    font-size: var(--fs-p);
    color: var(--text-muted);
}

/* Common Text Utilities */
.text-blue { color: var(--primary-blue); }
.text-green { color: var(--primary-green); }
.text-muted-custom { color: var(--text-muted); line-height: var(--lh-base); }

/* Buttons */
.btn-custom-green {
    background-color: var(--primary-green);
    color: var(--primary-blue);
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-custom-green:hover {
    background-color: var(--primary-green-hover);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 213, 54, 0.3);
}

.btn-custom-outline {
    background-color: transparent;
    color: var(--primary-blue);
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}
.btn-custom-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

/* Topbar & Navbar */
.topbar {
    background-color: var(--primary-blue);
    color: white;
    font-weight: 400;
    padding: 6px 0;
}
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
}
.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

/* Section Title Pattern */
.section-subtitle {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.section-subtitle i {
}
.section-title {
    line-height: 1.2;
    margin-bottom: 24px;
}

/* Hero Section */
.hero-section { position: relative; overflow: hidden; }
.hero-title {
    font-weight: var(--fw-extrabold);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary-blue);
}
.hero-image-wrapper {
    position: relative;
    z-index: 1;
}
.hero-image-wrapper img {
    width: 100%;
    border-radius: 30px;
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.08); */
}

/* Info Cards Row */
.info-cards-row {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.scroll-row-container {
    overflow-x: auto;
    cursor: grab;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scroll-row-container::-webkit-scrollbar {
    display: none;
}
.scroll-row-container:active {
    cursor: grabbing;
}
.scroll-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
}
.scroll-card {
    flex: 0 0 calc(25% - 11.25px);
    min-width: 250px;
}
.info-card-v2 {
    background-color: #f0fbe8;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 50px, #e3f6ce 50px, #e3f6ce 100px);
    border-radius: 16px;
    padding: 16px;
    position: relative;
    height: 150px;
	min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.badge-new-v2 {
    background-color: #a5ea65;
    color: #0b1c3b;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 8px;
	font-size: calc(var(--fs-small) * 0.85px);
}
.info-card-v2 h4 {
    margin: 0 0 2px 0;
    color: #0b1c3b;
    font-weight: 700;
	font-size: var(--fs-h6);
}
.info-card-v2 p {
    color: #8ba37c;
    margin: 0;
	font-size: var(--fs-small);
}
.btn-arrow-circle {
    width: 28px;
    height: 28px;
    background-color: #0b1c3b;
    color: #a5ea65;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    z-index: 2;
}
.btn-arrow-circle:hover {
    background-color: #a5ea65;
    color: #0b1c3b;
}
.card-product-img {
    position: absolute;
    right: 5px;
    bottom: 5px;
    height: 110px;
    width: auto;
    object-fit: contain;
    z-index: 1;
}
@media (max-width: 991px) {
    .scroll-card { flex: 0 0 calc(33.333% - 10px); }
}
@media (max-width: 767px) {
    .scroll-card { flex: 0 0 calc(50% - 7.5px); }
}
@media (max-width: 500px) {
    .scroll-card { flex: 0 0 calc(85%); }
}

/* About Section */
/* About Section */
.about-section { }

.about-image {
    border-radius: 30px;
    width: 100%;
    background-color: #f0f7ec;
}

/* ==========================================================================
   Feature Grid (Mobile-First: Scrollable & Draggable)
   ========================================================================== */
.feature-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    margin-top: 25px;
    padding-bottom: 15px; /* Adds space for touch scrolling */
    
    /* Hide scrollbar for a cleaner look */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    
    /* Prevent text highlighting while dragging */
    user-select: none; 
    -webkit-user-select: none;
    cursor: grab;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.feature-grid::-webkit-scrollbar {
    display: none;
}

.feature-item-v2 {
    flex: 0 0 160px; /* Fixed width on mobile so they don't squish */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background-color: #f3faec;
    border: 2px dashed #cde6b4;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s;
}

.feature-item-v2:hover {
    background-color: #eaf6de;
    transform: translateY(-2px);
}

.feature-icon-v2 {
    width: 32px;
    height: 32px;
    background-color: var(--primary-blue);
    color: var(--primary-green); /* Falls back to Rezeneca Green if variable is set */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text-v2 {
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 4px;
    line-height: 1.3;
}

/* ==========================================================================
   Feature Grid (Desktop: 3-Column CSS Grid)
   ========================================================================== */
@media (min-width: 992px) {
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* Your 3-column layout */
        overflow-x: visible; /* Disable horizontal scrolling */
        cursor: auto; /* Reset cursor */
        padding-bottom: 0;
    }

    .feature-item-v2 {
        flex: auto; /* Remove fixed mobile width */
    }
}

/* Services Section */
.services-section { background-color: #f8fbfa; }
.service-card {
    border-radius: 30px;
    padding: 30px 30px 90px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card h3 {
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    max-width: 55%;
}
.service-card p {
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    max-width: 55%;
}
.service-card .icon-link {
    width: 40px;
    height: 40px;
    background-color: #bdf285;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    transition: all 0.3s;
}
.service-card .icon-link:hover {
    background-color: var(--primary-green);
    color: white;
}
.service-card img {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    z-index: 1;
    object-fit: cover;
}
.bg-pink { background-color: #fde8e8; }
.bg-green-light { background-color: #eaf5e1; }
.bg-yellow { background-color: #fef5d4; }
.bg-purple { background-color: #f2eefa; }

/* Categories */
.categories-section { }
.category-card-v2 {
    background-color: #f3faec;
    border: 2px dashed #cde6b4;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: left;
}
.category-card-v2:hover {
    background-color: #eaf6de;
    transform: translateY(-3px);
}
.category-icon-v2 {
    width: 40px;
    height: 40px;
    background-color: #bdf285;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 12px;
}
.category-card-v2 h4 {
    margin-bottom: 6px;
    color: var(--primary-blue);
    font-weight: 700;
}
.category-card-v2 p {
    color: #8ba37c;
    margin: 0;
    line-height: 1.4;
}

/* Process Section */
.process-section { background-color: #e6f0d8; }
.process-step {
    background: white;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.step-number {
    font-weight: 800;
    color: #f0f0f0;
    line-height: 1;
}
.step-icon {
    color: var(--primary-blue);
    margin-top: -10px;
}
.process-content h4 {
    margin-bottom: 8px;
}
.process-content p {
    color: var(--text-muted);
    margin: 0;
}

/* New Process Step V2 */
.process-step-v2 {
    background-color: white;
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    border: 1px solid transparent; /* Transparent border for layout */
}
.process-step-v2::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' stroke='%23b9c6d3' stroke-width='3' stroke-dasharray='14%2c 14'/%3e%3c/svg%3e");
    pointer-events: none;
    z-index: 3;
}
.step-number-v2 {
    position: absolute;
    top: 30px;
    left: 20px;
    font-weight: 800;
    color: rgba(220, 225, 230, 0.4);
    line-height: 1;
    z-index: 1;
}
.process-content-v2 {
    position: relative;
    z-index: 2;
}
.step-icon-v2 {
    color: var(--primary-blue);
    display: block;
}
.process-content-v2 h4 {
    margin-bottom: 10px;
}
.process-content-v2 p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.process-image-wrapper {
    position: relative;
    padding: 20px;
}
.process-image-wrapper img {
    width: 100%;
}

/* Quality Section */
.quality-section { }
.quality-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.quality-logo-item {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}
.quality-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Testimonials */
.testimonials-section { background-color: #f8fbfa; }
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-name {
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}
.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.stars {
    color: #ffc107;
}
.testimonial-card.featured {
    transform: scale(1.05);
    background-color: var(--bg-light-green);
    border: 2px solid var(--primary-green);
    box-shadow: 0 20px 40px rgba(124, 213, 54, 0.1);
}

/* CTA Section */
.cta-section {
    margin: 0px 0 -100px 0;
    position: relative;
    z-index: 10;
}
.cta-card {
    background-color: var(--primary-blue);
    border-radius: 30px;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
}
.cta-content {
    padding: 60px;
    color: white;
    position: relative;
    z-index: 2;
}
.cta-title {
    color: white;
    margin-bottom: 20px;
}
.cta-text {
    color: #a0aec0;
    margin-bottom: 30px;
}
.cta-image {
    position: absolute;
    left: -50px;
    top: -60px;
    width: 45%;
    height: auto;
    object-fit: contain;
    z-index: 1;
    opacity: 1;
}
@media (max-width: 991px) {
    .cta-card {
        flex-direction: column;
    }
    .cta-image {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        height: 300px;
    }
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 160px 0 20px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-bottom: 20px;
    text-decoration: none;
    color: white;
}
.footer p {
    color: #a0aec0;
}
.footer-heading {
    font-weight: 600;
    margin-bottom: 24px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--primary-green);
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.social-link {
    width: 35px;
    height: 35px;
    background-color: var(--primary-green);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}
.social-link:hover {
    background-color: white;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
	text-decoration: none;
}
.footer-bottom  a {
	color: #a0aec0;
}
.footer-bottom a:hover {
	color: var(--primary-green);
	te
}

/* Utilities */
.object-cover { object-fit: cover; }
.rounded-30 { border-radius: 30px; }

/* Responsive Media Queries (Layout specific overrides, typography is global) */
@media (max-width: 991px) {
    .info-cards-row {
        margin-top: 0;
        padding-top: 20px;
    }
    
}

@media (max-width: 767px) {
    .cta-content {
        padding: 30px;
    }
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    .info-card .icon-box {
        margin-bottom: 10px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Swiper Testimonials Section */
.testimonial-bg-wrapper {
    background-color: #f0f7e8;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 auto;
    position: relative;
    max-width: 85%;
}
.testimonial-swiper {
    width: 100%;
    padding: 20px 10px !important; /* To prevent shadow clipping */
    margin: -40px 0 !important; /* Overlap the green box */
    overflow: visible !important;
}
.testimonial-card-v2 {
    background-color: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-header-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.testimonial-avatar-v2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-name-v2 {
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}
.testimonial-text-v2 {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.stars-v2 {
    background-color: #fef8dd;
    color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    gap: 3px;
}
.testimonial-date-v2 {
    color: var(--text-muted);
    font-weight: 500;
}

/* Custom Swiper Pagination */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    opacity: 1;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
    width: 25px;
    background: var(--primary-blue);
}
@media (max-width: 991px) {
    .testimonial-bg-wrapper {
        padding: 40px 20px;
        max-width: 95%;
    }
}

/* Mega enu ==============================
============================================================================================================
*/

/* Remvve the black background  */
#mega-menu-wrap-primary,#mega-menu-wrap-primary #mega-menu-primary {
    background: transparent !important;
    background-color: transparent !important;
}

/* Style the links and remove black background from items */
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    background: transparent !important;
    background-color: transparent !important;
    color: #2c3e50 !important;
}

/* Mega enu ==============================
============================================================================================================
*/

/* ==========================================================================
   Testimonials Section (Mobile Optimized)
   ========================================================================== */

/* Main section styling */
.testimonials-section {
    padding: 60px 0;
    overflow: hidden; /* Prevents the page from scrolling horizontally */
}

/* Section Titles */
.section-subtitle {
    color: #a5ea65; /* Rezeneca Green */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title {
    color: #0f172a; /* Navy Dark */
    font-weight: 800;
    font-size: 28px;
    margin-top: 10px;
}



.testimonial-bg-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; /* Aligns to the left container edge */
    width: 85%; /* Only spans part of the screen */
    max-width: 320px;
    height: 100%;
    background-color: #f1f8e9; /* Very pale green */
    border-radius: 24px;
    z-index: 0;
}

/* Swiper Container */
.testimonial-swiper {
    overflow: visible; /* CRITICAL: Allows the next card to peek off-screen */
}

/* Individual Cards */
.testimonial-card-v2 {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    height: 100%;
    position: relative;
    z-index: 1; /* Keeps cards above the green background */
    display: flex;
    flex-direction: column;
}

.testimonial-header-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar-v2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name-v2 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.testimonial-text-v2 {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1; /* Pushes the footer to the bottom */
}

/* Stars and Date Footer */
.stars-v2 {
    background: #fff8e1; /* Pale yellow background like the image */
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    gap: 3px;
    color: #1e293b;
    font-size: 11px;
}

.testimonial-date-v2 {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
}

/* Custom Swiper Pagination (Pill Shape for Active) */
.testimonials-section .swiper-pagination {
    margin-top: 30px;
}

.testimonials-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-section .swiper-pagination-bullet-active {
    width: 24px; /* Stretches the dot into a pill */
    border-radius: 4px;
    background: #0f172a; /* Dark navy */
}


/* ==========================================================================
   Max Mega Menu Fixes for Bootstrap Offcanvas Drawer
   ========================================================================== */

/* 1. Hide the redundant black toggle bar inside the mobile drawer */
#mobileNavigationDrawer .mega-menu-toggle {
    display: none !important;
}

/* 2. Force the menu items to always be visible (since we removed the button to open them) */
#mobileNavigationDrawer .mega-menu-wrap .mega-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important; 
    background: transparent !important;
}

/* 3. Strip away any leftover dark backgrounds from the wrapper */
#mobileNavigationDrawer .mega-menu-wrap {
    background: transparent !important;
    padding: 0 !important;
}

/* 4. Ensure the sub-menu dropdown arrows look correct on mobile */
#mobileNavigationDrawer #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
    color: #0f172a !important; /* Dark text for readability */
    border-bottom: 1px solid #f1f5f9 !important; /* Light separator line */
    padding: 15px 0 !important;
}


/* ==========================================================================
   Float Apps
   ========================================================================== */

.float-scroll-up {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--bg-light-green), var(--primary-blue));
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 10px 20px rgba(59, 130, 246, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 1;
    visibility: hidden;
    animation: pulseGlow 3s infinite;
}
.float-scroll-up:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0px 15px 25px rgba(59, 130, 246, 0.6);
  color: #fff;
}
.float-scroll-up.show {
    opacity: 1 !important;
    visibility: visible !important;
}
@media (max-width: 767px) {
  .float-scroll-up {
    width: 45px; height: 45px; bottom: 96px; left: 20px; 
  }
}

/* =========================================
   DESKTOP VIEW (Floating Bubbles)
   ========================================= */

/* Hide text labels on desktop */
.mobile-text {
    display: none; 
}

/* Base styling for all three buttons */
.float-call, .float-mail, .float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 20px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    z-index: 100;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Individual positions and colors */
.float-whatsapp { 
    bottom: 20px; 
    background: #25d366; 
}
.float-call { 
    bottom: 90px; 
    background: #0a1128; /* Dark blue matching your screenshot */
} 
.float-mail { 
    bottom: 160px; 
    background: #8cc63f; /* Light green matching your screenshot */
} 

/* =========================================
   MOBILE VIEW (Horizontal Bottom Bar)
   ========================================= */
@media (max-width: 768px) {
    
    /* Create a full-width flex container at the bottom */
    .floating-action-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        z-index: 999;
    }

    /* Transform bubbles into flat rectangles */
    .float-call, .float-mail, .float-whatsapp {
        position: static; /* Removes fixed position from individual buttons */
        width: 33.333%;   /* Split into 3 equal columns */
        height: 55px;
        border-radius: 0; /* Remove circular shape */
        box-shadow: none;
        flex-direction: row; /* Align icon and text side-by-side */
        gap: 6px; /* Space between icon and text */
        font-size: 14px; /* Slightly smaller font for mobile */
        font-weight: bold;
    }

    /* Show the text labels on mobile */
    .mobile-text {
        display: inline-block;
    }
    
    /* Remove original 'bottom' spacing from desktop */
    .float-whatsapp { bottom: 0; }
    .float-call { bottom: 0; }
    .float-mail { bottom: 0; }
}
/* Floating  */

