/* ========================================
   HOOVALE - Premium Wall Clock Brand CSS
   ======================================== */

:root {
    --primary-color: #0051A3;
    --primary-dark: #003a78;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* ========================================
   Global Styles
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #0072d9 100%);
    border-radius: 2px;
}

/* ========================================
   Header & Navigation
   ======================================== */

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.8rem !important;
    font-weight: 800;
    color: var(--primary-color) !important;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #0072d9 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}


/* ========================================
   Feature Cards
   ======================================== */

.why-choose-us {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0072d9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Product Cards
   ======================================== */

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex: 1;
}

.product-price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.product-actions a {
    flex: 1;
    text-align: center;
}
/* ========================================
   PRODUCT FILTER SIDEBAR (REDESIGNED)
   ======================================== */

.filter-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 1.8rem;
    position: sticky;
    top: 100px;
}

/* FILTER TITLE */

.filter-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FILTER GROUP */

.filter-group {
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
    border-bottom: none;
}

/* SUB TITLE */

.filter-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

/* FILTER OPTIONS LIST */

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* FILTER OPTION ITEM */

.filter-option {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-light);
    border-left: 3px solid transparent;
    transition: all 0.25s ease;
    display: block;
}

/* HOVER EFFECT */

.filter-option:hover {
    background: rgba(0, 81, 163, 0.08);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
    transform: translateX(4px);
}

/* ACTIVE CATEGORY */

.filter-option.active {
    background: rgba(0, 81, 163, 0.12);
    color: var(--primary-color);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
}

/* CATEGORY COUNT BADGE */

.filter-count {
    background: var(--bg-light);
    font-size: 0.75rem;
    padding: 2px 7px;
    border-radius: 20px;
    margin-left: auto;
}

/* CLEAR FILTER BUTTON */

.clear-filter-btn {
    margin-top: 1.5rem;
    width: 100%;
    border-radius: 30px;
    font-weight: 600;
    padding: 10px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    transition: var(--transition);
}

.clear-filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* ========================================
   FILTER SEARCH BAR
   ======================================== */

.search-bar {
    display: flex;
    margin-bottom: 1rem;
}

.search-bar input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px 0 0 8px;
    border: 1px solid var(--border-color);
    outline: none;
}

.search-bar button {
    border-radius: 0 8px 8px 0;
    border: none;
    background: var(--primary-color);
    color: white;
    padding: 0 14px;
}

/* ========================================
   EMPTY PRODUCT MESSAGE
   ======================================== */

.no-product-box {
    background: #e6f3f8;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.no-product-box h4 {
    font-weight: 600;
    color: var(--text-color);
}

/* ========================================
   RESPONSIVE FILTER SIDEBAR
   ======================================== */

@media (max-width: 992px) {

    .filter-card {
        position: static;
        margin-bottom: 25px;
    }

}

@media (max-width: 768px) {

    .filter-card {
        padding: 1.2rem;
    }

    .filter-option {
        font-size: 0.9rem;
    }

}

/* ========================================
   CATEGORY HOVER SMOOTH
   ======================================== */

.filter-option {
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
/* ========================================
   Product Detail Page
   ======================================== */

.product-detail-page {
    background: #ffffff;
}

.main-image-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
    cursor: zoom-in;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-zoom-info {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.thumbnail-gallery {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.thumbnail-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.thumbnail-image:hover,
.thumbnail-image.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.product-detail-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.customization-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group:last-child {
    margin-bottom: 0;
}

.option-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.option-badge {
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

.option-badge:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 81, 163, 0.05);
}

.action-buttons {
    margin: 2rem 0;
}

.share-section {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    color: #ffffff;
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.facebook:hover {
    background-color: #2d4373;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.twitter:hover {
    background-color: #1a91da;
}

.share-btn.linkedin {
    background-color: #0077b5;
}

.share-btn.linkedin:hover {
    background-color: #006399;
}

/* ========================================
   About & Vision/Mission Section
   ======================================== */

.about-preview,
.our-story,
.vision-mission {
    background: #ffffff;
}

.vision-mission-card,
.difference-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.vision-mission-card:hover,
.difference-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.vm-icon,
.diff-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0072d9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
}

.team-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.team-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

/* ========================================
   Stats Section
   ======================================== */

.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   Contact Section
   ======================================== */

.contact-info-section {
    background: var(--bg-light);
}

.contact-info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0072d9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 81, 163, 0.25);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-text {
    color: #cccccc;
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cccccc;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: var(--transition);
}

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

/* ========================================
   Floating WhatsApp Button
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #059669;
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

/* ========================================
   Search Form
   ======================================== */

.search-form {
    width: 100%;
}

.search-input {
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important;
    padding: 0.75rem 1rem !important;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 81, 163, 0.25) !important;
}

/* ========================================
   Modal Styles
   ======================================== */

.modal-content {
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* ========================================
   Error Pages
   ======================================== */

.error-page {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.1;
    margin: 0;
}

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

.error-message {
    font-size: 1rem;
}

/* ========================================
   Badges & Labels
   ======================================== */

.badge {
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ========================================
   Breadcrumb
   ======================================== */

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.breadcrumb-item {
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--text-color);
    font-weight: 600;
}

/* ========================================
   Pagination
   ======================================== */

.pagination {
    gap: 0.5rem;
}

.page-link {
    border-color: var(--border-color);
    color: var(--primary-color);
    border-radius: 6px;
    transition: var(--transition);
}

.page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sticky-header .navbar-brand {
        font-size: 1.5rem !important;
    }

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

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

    .product-detail-title {
        font-size: 1.8rem;
    }

    .filter-card {
        position: static;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .error-code {
        font-size: 5rem;
    }
}

@media (max-width: 576px) {
    :root {
        --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .hero-section {
        min-height: 70vh;
        padding-top: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image {
        display: none;
    }

    .page-title {
        font-size: 1.5rem;
    }

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

    .section-title::after {
        width: 40px;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .action-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .cta-section .row {
        text-align: center;
    }

    .cta-section .col-lg-4 {
        text-align: center;
        margin-top: 1rem;
    }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .sticky-header,
    .whatsapp-float,
    .footer,
    .cta-section,
    .product-actions {
        display: none;
    }

    body {
        background-color: #ffffff;
    }
}

/* ========================================
   Utility Classes
   ======================================== */

.min-vh-50 {
    min-height: 50vh;
}

.gap {
    gap: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0072d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================
   PROFESSIONAL BANNER CAROUSEL STYLES
   File: carousel.css
   ============================================ */

/* ============================================
   CAROUSEL WRAPPER & CONTAINER
   ============================================ */

.banner-carousel-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.banner-carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #1a1a1a;
    overflow: hidden;
}

@media (max-width: 992px) {
    .banner-carousel-container {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .banner-carousel-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .banner-carousel-container {
        height: 280px;
    }
}

/* ============================================
   CAROUSEL ITEMS & IMAGES
   ============================================ */

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.carousel-inner.active {
    display: block;
}

.carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.carousel-item.active {
    opacity: 1;
    z-index: 10;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
    backface-visibility: hidden;
}

/* ============================================
   CAROUSEL CONTENT & TEXT
   ============================================ */

.carousel-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute !important;
    top: 50% !important;
    left: 8% !important;   /* 👈 left side pe lao */
    transform: translateY(-50%) !important;
    z-index: 999 !important;
    max-width: 500px;
    
    padding: 50px 40px;
    text-align: center;
    animation: slideInUp 0.9s ease 0.3s both;
}
/* ============================================
   CAROUSEL OVERLAY
   ============================================ */

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: opacity 0.9s ease;
}


@media (max-width: 768px) {
    .carousel-content {
        padding: 40px 30px;
        animation: slideInUp 0.9s ease 0.2s both;
    }
}

@media (max-width: 480px) {
    .carousel-content {
        padding: 30px 20px;
        animation: slideInUp 0.7s ease 0.2s both;
    }
}

/* Text Positioning Classes */

.carousel-top-left {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}

.carousel-top-center {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.carousel-top-right {
    justify-content: flex-start;
    align-items: flex-end;
    text-align: right;
}

.carousel-center-left {
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.carousel-center-center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.carousel-center-right {
    justify-content: center;
    align-items: flex-end;
    text-align: right;
}

.carousel-bottom-left {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
}

.carousel-bottom-center {
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

.carousel-bottom-right {
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}

/* Carousel Heading */

.carousel-heading {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    font-family: 'Montserrat', sans-serif;
    word-wrap: break-word;
}

@media (max-width: 992px) {
    .carousel-heading {
        font-size: 2.8rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .carousel-heading {
        font-size: 2rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-heading {
        font-size: 1.5rem;
        margin-bottom: 8px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

/* Carousel Subheading */

.carousel-subheading {
    font-size: 1.4rem;
    margin: 0 0 25px 0;
    line-height: 1.5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    max-width: 700px;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 992px) {
    .carousel-subheading {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .carousel-subheading {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .carousel-subheading {
        font-size: 0.85rem;
        margin-bottom: 12px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    }
}

/* Carousel Button */

.carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0051A3 0%, #0066cc 100%);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 81, 163, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #0066cc 0%, #0080ff 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 81, 163, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.carousel-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .carousel-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .carousel-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        padding: 10px 24px;
        font-size: 0.8rem;
        gap: 6px;
    }
}

/* ============================================
   CAROUSEL NAVIGATION CONTROLS
   ============================================ */

/* Arrow Controls */

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    user-select: none;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-control:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

@media (max-width: 992px) {
    .carousel-control {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .carousel-control-prev {
        left: 20px;
    }
    
    .carousel-control-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .carousel-control {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

/* ============================================
   CAROUSEL INDICATORS (DOTS)
   ============================================ */

.carousel-indicators {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 12px;
    padding: 12px 25px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.carousel-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
}

.carousel-indicator.active {
    background: rgba(255, 255, 255, 1);
    border-color: white;
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .carousel-indicators {
        bottom: 25px;
        gap: 10px;
        padding: 10px 20px;
    }
    
    .carousel-indicator {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .carousel-indicators {
        bottom: 15px;
        gap: 8px;
        padding: 8px 15px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
}

/* ============================================
   CAROUSEL AUTOPLAY TOGGLE
   ============================================ */

.carousel-toggle-autoplay {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 15;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    user-select: none;
}

.carousel-toggle-autoplay:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-toggle-autoplay:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .carousel-toggle-autoplay {
        width: 45px;
        height: 45px;
        font-size: 16px;
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .carousel-toggle-autoplay {
        width: 40px;
        height: 40px;
        font-size: 14px;
        top: 12px;
        right: 12px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE DISPLAY CONTROL
   ============================================ */

/* Hide mobile carousel on desktop */
@media (min-width: 769px) {
    .carousel-mobile-only {
        display: none !important;
    }
}

/* Hide desktop carousel on mobile */
@media (max-width: 768px) {
    .carousel-desktop-only {
        display: none !important;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.carousel-control:focus,
.carousel-indicator:focus,
.carousel-toggle-autoplay:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Loading state */
.carousel-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.carousel-no-scroll {
    overflow: hidden;
}


.carousel-heading,
.carousel-subheading {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}