/* ==========================================================================
   Aqua Paints — Modern Homepage Stylesheet (Mobile-First & Responsive)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --aq-primary: #008779;
    --aq-primary-dark: #005a51;
    --aq-primary-light: #e6f6f4;
    --aq-teal: #00b4d8;
    --aq-blue: #0077b6;
    --aq-navy: #03045e;
    --aq-orange: #ff6b35;
    --aq-yellow: #ffb703;
    --aq-accent-red: #e63946;
    --aq-green: #2a9d8f;
    --aq-purple: #7209b7;
    --aq-dark: #1a202c;
    --aq-gray-dark: #334155;
    --aq-gray: #64748b;
    --aq-gray-light: #f1f5f9;
    --aq-border: #e2e8f0;
    --aq-white: #ffffff;
    --aq-radius: 12px;
    --aq-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --aq-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --aq-shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* Fix navbar float & prevent white gaps */
.navigation {
    float: none !important;
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}

.navigation .navbar-default {
    margin: 0 !important;
    border: none !important;
}

.homepage-wrapper {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--aq-dark);
    background-color: #fcfdfd;
    overflow-x: hidden;
    clear: both !important;
    display: block !important;
    width: 100% !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative !important;
}

.font-bn {
    font-family: 'Hind Siliguri', 'Kalpurush', sans-serif !important;
}

.aq-flex-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .aq-flex-row {
        display: block;
    }
}

/* ==========================================================================
   Section Headers & Common Utilities
   ========================================================================== */
.aq-section {
    padding: 70px 0;
    position: relative;
    clear: both;
}

@media (max-width: 767px) {
    .aq-section {
        padding: 45px 0;
    }
}

.aq-section-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

.aq-section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aq-primary);
    background: var(--aq-primary-light);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.aq-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--aq-dark);
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.3;
}

.aq-section-desc {
    font-size: 15px;
    color: var(--aq-gray);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .aq-section-title {
        font-size: 24px;
    }
    .aq-section-desc {
        font-size: 14px;
    }
    .aq-section-header {
        margin-bottom: 30px;
    }
}

/* Decorative Paint Wave Accents */
.paint-bar {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}
.paint-bar span {
    display: inline-block;
    height: 4px;
    border-radius: 2px;
}
.paint-bar span:nth-child(1) { width: 30px; background: var(--aq-primary); }
.paint-bar span:nth-child(2) { width: 15px; background: var(--aq-orange); }
.paint-bar span:nth-child(3) { width: 25px; background: var(--aq-teal); }
.paint-bar span:nth-child(4) { width: 10px; background: var(--aq-yellow); }

/* ==========================================================================
   1. Hero Visual Section (Full Image Banner)
   ========================================================================== */
.aq-hero-section {
    position: relative;
    background: #56b9e6;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    overflow: hidden;
    clear: both;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aq-hero-banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #56b9e6;
    margin: 0 auto;
}

.aq-hero-full-img {
    display: block;
    width: 100%;
    max-width: 540px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .aq-hero-section {
        background: radial-gradient(circle at center, #6fc5eb 0%, #56b9e6 60%, #48a8d6 100%);
        min-height: 520px;
        padding: 24px 0 !important;
    }
    .aq-hero-full-img {
        max-width: 500px;
        border-radius: 12px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    }
}

@media (min-width: 1200px) {
    .aq-hero-section {
        min-height: 600px;
        padding: 30px 0 !important;
    }
    .aq-hero-full-img {
        max-width: 540px;
    }
}

@media (max-width: 767px) {
    .aq-hero-section {
        background: #56b9e6;
        padding: 0 !important;
    }
    .aq-hero-banner-container {
        padding: 0;
    }
    .aq-hero-full-img {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
}

/* ==========================================================================
   2. Company Introduction Section
   ========================================================================== */
.aq-intro-section {
    background: #ffffff;
}

.aq-intro-img-wrapper {
    position: relative;
    border-radius: var(--aq-radius);
    overflow: hidden;
    box-shadow: var(--aq-shadow-md);
}

.aq-intro-img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    border-radius: var(--aq-radius);
}

.aq-intro-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 58, 52, 0.9) 0%, transparent 100%);
    padding: 25px 20px 18px;
    color: #ffffff;
}

.aq-intro-img-overlay h4 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: #56e2d5;
}

.aq-intro-img-overlay p {
    margin: 0;
    font-size: 12px;
    color: #e2e8f0;
}

.aq-intro-text-box {
    padding-left: 15px;
}

.aq-intro-subtitle {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--aq-primary);
    margin-bottom: 8px;
    display: block;
}

.aq-intro-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--aq-dark);
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.35;
}

.aq-intro-lead {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--aq-primary-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    border-left: 4px solid var(--aq-orange);
    padding-left: 14px;
}

.aq-intro-paragraph {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--aq-gray-dark);
    margin-bottom: 22px;
}

.aq-intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

.aq-intro-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--aq-gray-light);
    padding: 10px 14px;
    border-radius: 8px;
    border-left: 3px solid var(--aq-primary);
}

.aq-intro-feature-item i {
    font-size: 17px;
    color: var(--aq-primary);
    margin-top: 2px;
}

.aq-intro-feature-item strong {
    display: block;
    font-size: 13px;
    color: var(--aq-dark);
}

.aq-intro-feature-item span {
    font-size: 11.5px;
    color: var(--aq-gray);
}

@media (max-width: 991px) {
    .aq-intro-text-box {
        padding-left: 0;
        margin-top: 25px;
    }
}

@media (max-width: 575px) {
    .aq-intro-features {
        grid-template-columns: 1fr;
    }
    .aq-intro-heading {
        font-size: 22px;
    }
}

/* ==========================================================================
   3. Key Products Slider Section
   ========================================================================== */
.aq-products-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.aq-product-card {
    background: #ffffff;
    border-radius: var(--aq-radius);
    padding: 20px 16px;
    box-shadow: var(--aq-shadow-sm);
    border: 1px solid var(--aq-border);
    transition: all 0.3s ease;
    margin: 8px 4px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.aq-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--aq-shadow-lg);
    border-color: var(--aq-primary);
}

.aq-product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-interior { background: #e0f2fe; color: #0284c7; }
.badge-exterior { background: #dcfce7; color: #16a34a; }
.badge-enamel { background: #fef3c7; color: #d97706; }
.badge-industrial { background: #f3e8ff; color: #9333ea; }
.badge-primer { background: #fee2e2; color: #dc2626; }

.aq-product-img-box {
    height: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
}

.aq-product-img {
    max-height: 175px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.aq-product-card:hover .aq-product-img {
    transform: scale(1.06);
}

.aq-product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.aq-product-cat {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--aq-primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.aq-product-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--aq-dark);
    margin: 0 0 14px;
    line-height: 1.35;
    min-height: 42px;
}

.aq-product-desc {
    font-size: 12.5px;
    color: var(--aq-gray);
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}

.aq-product-feature-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--aq-gray-dark);
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.aq-product-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    background: var(--aq-primary-light);
    color: var(--aq-primary-dark) !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    margin-top: auto;
}

.aq-product-card:hover .aq-product-btn {
    background: var(--aq-primary);
    color: #ffffff !important;
}

/* ==========================================================================
   4. Major Clients Slider Section
   ========================================================================== */
.aq-clients-section {
    background: #ffffff;
    border-top: 1px solid var(--aq-border);
    border-bottom: 1px solid var(--aq-border);
}

.aq-client-card {
    background: #ffffff;
    border: 1px solid var(--aq-border);
    border-radius: 12px;
    padding: 16px 12px 14px;
    margin: 8px 4px;
    text-align: center;
    box-shadow: var(--aq-shadow-sm);
    transition: all 0.3s ease;
    min-height: 155px;
    height: 155px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aq-client-card:hover {
    border-color: var(--aq-primary);
    box-shadow: var(--aq-shadow-md);
    transform: translateY(-4px);
}

.aq-client-logo-box {
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    overflow: hidden;
    padding: 2px 4px;
}

.aq-client-logo-img {
    max-height: 68px;
    max-width: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.aq-client-card:hover .aq-client-logo-img {
    transform: scale(1.08);
}

.aq-client-icon-badge {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--aq-primary-light);
    color: var(--aq-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.aq-client-card:hover .aq-client-icon-badge {
    background: var(--aq-primary);
    color: #ffffff;
    transform: scale(1.08);
}

.aq-client-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--aq-dark);
    margin: 0 0 2px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aq-client-category {
    font-size: 11px;
    color: var(--aq-gray);
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   5. Government & Institutional Enlistments Slider
   ========================================================================== */
.aq-govt-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}

.aq-govt-card {
    background: #ffffff;
    border: 1px solid #c7f2d6;
    border-radius: 14px;
    padding: 16px 10px 14px;
    margin: 8px 4px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(20, 83, 45, 0.05);
    transition: all 0.3s ease;
    min-height: 185px;
    height: 185px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aq-govt-card:hover {
    border-color: #16a34a;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.15);
}

.aq-govt-logo-box {
    width: 100%;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 2px 4px;
}

.aq-govt-logo-img {
    max-height: 82px;
    max-width: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.aq-govt-card:hover .aq-govt-logo-img {
    transform: scale(1.1);
}

.aq-govt-name {
    font-size: 14px;
    font-weight: 800;
    color: #14532d;
    margin: 0;
    line-height: 1.3;
}

.aq-govt-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    color: #15803d;
    background: #dcfce7;
    padding: 3px 9px;
    border-radius: 6px;
    margin-top: 6px;
    max-width: 95%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   6. Licenses & Certifications Slider
   ========================================================================== */
.aq-creds-section {
    background: #f8fafc;
}

.aq-cred-card {
    background: #ffffff;
    border: 1px solid var(--aq-border);
    border-radius: var(--aq-radius);
    padding: 20px 14px;
    margin: 8px 4px;
    text-align: center;
    box-shadow: var(--aq-shadow-sm);
    transition: all 0.3s ease;
    min-height: 230px;
    height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aq-cred-card:hover {
    border-color: var(--aq-primary);
    transform: translateY(-5px);
    box-shadow: var(--aq-shadow-md);
}

.aq-cred-seal-box {
    width: 100%;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 2px;
    overflow: hidden;
}

.aq-cred-seal-img {
    max-width: 90%;
    max-height: 78px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.aq-cred-card:hover .aq-cred-seal-img {
    transform: scale(1.08);
}

.aq-cred-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #008779, #00b4d8);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 135, 121, 0.25);
}

.aq-cred-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--aq-dark);
    margin: 0 0 4px;
    line-height: 1.3;
}

.aq-cred-authority {
    font-size: 11px;
    font-weight: 600;
    color: var(--aq-primary);
    margin-bottom: 4px;
}

.aq-cred-detail {
    font-size: 11px;
    color: var(--aq-gray);
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   7. Notable Landmark Projects Slider
   ========================================================================== */
.aq-projects-section {
    background: #ffffff;
    border-top: 1px solid var(--aq-border);
}

.aq-project-card {
    background: #ffffff;
    border: 1px solid var(--aq-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--aq-shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 8px 4px;
}

.aq-project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--aq-shadow-lg);
    border-color: var(--aq-primary);
}

.aq-project-img-box {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #0f172a;
}

.aq-project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.aq-project-card:hover .aq-project-img {
    transform: scale(1.08);
}

.aq-project-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 135, 121, 0.9);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 9px;
    border-radius: 4px;
}

.aq-project-info {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.aq-project-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--aq-dark);
    margin: 0 0 6px;
    line-height: 1.35;
}

.aq-project-location {
    font-size: 12px;
    font-weight: 600;
    color: var(--aq-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.aq-project-desc {
    font-size: 12px;
    color: var(--aq-gray);
    line-height: 1.5;
    margin: 0;
}

.aq-media-logo-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--aq-white);
    background: var(--aq-navy);
    padding: 3px 7px;
    border-radius: 4px;
    white-space: nowrap;
}

.aq-media-logo-tag.tag-prothom { background: #e11d48; }
.aq-media-logo-tag.tag-star { background: #0f172a; }
.aq-media-logo-tag.tag-nirman { background: #0284c7; }

.aq-media-text h5 {
    margin: 0;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--aq-dark);
}

.aq-media-text span {
    font-size: 10.5px;
    color: var(--aq-gray);
}

.aq-csr-badge-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

.aq-csr-pill {
    background: #ffffff;
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    padding: 9px;
    font-size: 11.5px;
    font-weight: 600;
    color: #3730a3;
    display: flex;
    align-items: center;
    gap: 7px;
}

.aq-csr-pill i {
    color: #6366f1;
}

@media (max-width: 575px) {
    .aq-csr-badge-wrap {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   8. Contact & Quick Action Section
   ========================================================================== */
.aq-contact-section {
    background: linear-gradient(135deg, #013a34 0%, #005f55 100%);
    color: #ffffff;
}

.aq-contact-section .aq-section-title {
    color: #ffffff;
}

.aq-contact-section .aq-section-desc {
    color: #e2e8f0;
}

.aq-contact-section .aq-section-subtitle {
    background: rgba(255, 255, 255, 0.15);
    color: #56e2d5;
}

.aq-action-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.aq-action-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    text-decoration: none !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    display: block;
}

.aq-action-card:hover {
    background: #ffffff;
    color: var(--aq-primary-dark) !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.aq-action-card:hover .aq-action-icon {
    background: var(--aq-primary);
    color: #ffffff;
}

.aq-action-card:hover .aq-action-btn {
    background: var(--aq-primary);
    color: #ffffff;
}

.aq-action-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.icon-whatsapp { background: #25d366; color: #ffffff; }
.icon-phone { background: #ff6b35; color: #ffffff; }
.icon-email { background: #00b4d8; color: #ffffff; }

.aq-action-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 5px;
}

.aq-action-value {
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 12px;
    opacity: 0.9;
}

.aq-action-btn {
    display: inline-block;
    padding: 5px 16px;
    font-size: 11.5px;
    font-weight: 600;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.25);
    color: inherit;
    transition: all 0.2s ease;
}

.aq-locations-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 22px;
}

.aq-location-item h4 {
    color: #56e2d5;
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.aq-location-item p {
    font-size: 12.5px;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .aq-action-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ==========================================================================
   Owl Carousel Custom Styling & Smooth Navigation
   ========================================================================== */
.aq-slider-wrap {
    position: relative;
    padding: 0 5px;
}

.owl-theme .owl-nav {
    margin-top: 20px;
    text-align: center;
}

.owl-theme .owl-nav [class*=owl-] {
    color: var(--aq-primary-dark) !important;
    font-size: 16px !important;
    padding: 8px 18px !important;
    background: #ffffff !important;
    border: 1px solid var(--aq-border) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 30px !important;
    margin: 0 6px !important;
    box-shadow: var(--aq-shadow-sm);
    transition: all 0.2s ease;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--aq-primary) !important;
    color: #ffffff !important;
    border-color: var(--aq-primary) !important;
}

.owl-theme .owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 5px 4px;
    background: #cbd5e1;
    display: block;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--aq-primary);
    width: 24px;
}
