:root {
    --primary-color: #4a6fa5;
    --secondary-color: #0060fb;
    --accent-color: #17a2b8;
    --gradient-start: #4a6fa5;
    --gradient-end: #17a2b8;
    --title-color: #212529;
    --menu-bg: #ffffff;
    --menu-text: #212529;
    --section-light: #f8f9fa;
    --section-dark: #e9ecef;
    --bg-color: #ffffff;
    --text-color: #212529;
    --card-bg: #ffffff;
    --border-color: #e9ecef;
    --shadow-color: rgba(0,0,0,0.08);
}

/* Google Chrome Dark Theme Colors */
[data-bs-theme="dark"] {
    --primary-color: #8ab4f8;
    --secondary-color:  #0060fb;
    --accent-color: #81c995;
    --gradient-start: #8ab4f8;
    --gradient-end: #81c995;
    --bg-color: #202124;
    --text-color: #e8eaed;
    --card-bg: #2d2e32;
    --title-color: #e8eaed;
    --menu-bg: #1f2024;
    --menu-text: #e8eaed;
    --section-light: #2d2e32;
    --section-dark: #1a1c1e;
    --border-color: #3c4043;
    --shadow-color: rgba(0,0,0,0.3);
}

[data-bs-theme="light"] {
    --primary-color: #4a6fa5;
    --secondary-color: #0060fb;
    --accent-color: #17a2b8;
    --gradient-start: #4a6fa5;
    --gradient-end: #17a2b8;
    --bg-color: #ffffff;
    --text-color: #212529;
    --card-bg: #ffffff;
    --title-color: #212529;
    --menu-bg: #ffffff;
    --menu-text: #212529;
    --section-light: #f8f9fa;
    --section-dark: #e9ecef;
    --border-color: #e9ecef;
    --shadow-color: rgba(0,0,0,0.08);
}

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

body {
    font-family: 'Inter', 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    padding-top: 76px;
    overflow-x: hidden;
}

.navbar {
    background-color: var(--menu-bg) !important;
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: all 0.3s;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

/* ============================================ */
/* PERFECT HAMBURGER TO X ICON - FIXED */
/* ============================================ */

.navbar-toggler {
    border: none;
    padding: 0;
    width: 28px;
    height: 28px;
    position: relative;
    background: transparent;
    transition: all 0.3s;
    z-index: 1002;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Hide the original span lines */
.navbar-toggler .line {
    display: none;
}

/* Create hamburger icon using pseudo-elements */
.navbar-toggler::before,
.navbar-toggler::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    left: 0;
}

/* Top line - hamburger style */
.navbar-toggler::before {
    top: 6px;
}

/* Bottom line - hamburger style */
.navbar-toggler::after {
    bottom: 6px;
}

/* When menu is open - transform to X */
.navbar-toggler[aria-expanded="true"]::before {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1px;
}

.navbar-toggler[aria-expanded="true"]::after {
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1px;
}

/* Hover effect */
.navbar-toggler:hover::before,
.navbar-toggler:hover::after {
    background-color: var(--primary-color);
}

/* Dark theme support */
[data-bs-theme="dark"] .navbar-toggler::before,
[data-bs-theme="dark"] .navbar-toggler::after {
    background-color: var(--text-color);
}

/* Close button styling */
.close-menu-btn {
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #ff0000 !important;
    z-index: 1003;
    opacity: 0;
    transition: opacity 0.3s;
    cursor: pointer;
    display: none;
}

.close-menu-btn.show {
    display: none;
    /*opacity: 1;*/
}

.close-menu-btn:hover {
    color: #ff4444 !important;
    transform: scale(1.1);
    transition: transform 0.2s;
}

/* Hide burger icon when menu is open - but keep the X visible */
.navbar-toggler.hidden {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* VERTICAL MOBILE MENU FOR ALL DEVICES */
.navbar-collapse {
    background-color: var(--menu-bg);
    position: fixed !important;
    top: 0;
    right: 0;
    width: 85% !important;
    max-width: 400px;
    height: 100vh;
    box-shadow: -5px 0 15px var(--shadow-color);
    padding: 5rem 1.5rem 2rem !important;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 1000;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    border-left: 1px solid var(--border-color);
}

.navbar-collapse.show {
    transform: translateX(0);
}

/* Vertical menu list for all devices */
.navbar-nav {
    flex-direction: column !important;
    width: 100%;
    padding: 0;
    margin: 0;
}

.navbar-nav .nav-item {
    margin-bottom: 0.75rem;
    width: 100%;
}

.navbar-nav .nav-link {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s;
    color: var(--menu-text);
    font-weight: 500;
    font-size: 1.05rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid transparent;
    text-align: left;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    transform: translateX(-5px);
    border-left: 4px solid #ff0000;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.navbar-nav .nav-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Theme toggle in menu */
.nav-theme-toggle {
    margin-top: auto;
    padding: 1rem;
    border-radius: 12px;
    background-color: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

[data-bs-theme="dark"] .nav-theme-toggle {
    background-color: rgba(255,255,255,0.08);
}

/* Overlay for menu */
.navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.navbar-overlay.show {
    display: block;
    opacity: 1;
}

/* Desktop adjustments - keep menu vertical */
@media (min-width: 992px) {
    .navbar-collapse {
        width: 40% !important;
        min-width: 350px;
        max-width: 450px;
    }
    .navbar-expand-lg .navbar-toggler {
        display: block !important;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .navbar-collapse {
        width: 85% !important;
    }
}

@media (max-width: 576px) {
    .navbar-collapse {
        width: 100% !important;
    }
}

/* Section titles with gradient */
.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    font-weight: 800;
    font-size: 2.5rem;
    text-align: left;
    width: 100%;
    text-shadow: 0 2px 4px var(--shadow-color);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

/* ============================================ */
/* HERO SLIDER - FIXED HEIGHT (NO JUMPING) */
/* ============================================ */

.hero-slider {
    height: auto;
    position: relative;
    margin-top: -5px !important;
    width: 100%;
    margin-bottom: 60px;
    overflow: visible !important;
}

#home {
    padding: 0 !important;
    margin: 0 ;
    overflow: visible !important;
}

#heroCarousel {
    height: auto;
    overflow: visible !important;
}

.carousel {
    overflow: visible !important;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out;
}

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

.hero-slide {
    position: relative;
    width: 100%;
    background: var(--bg-color);
}

/* Fixed aspect ratio to prevent jumping */
.hero-slide {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* REMOVED BLACK OVERLAY */
.hero-slide::after {
    display: none !important;
}

/* ============================================ */
/* HERO SLIDER CAPTION STYLES */
/* ============================================ */

.hero-caption {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 15;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
    pointer-events: none;
}

.hero-caption-content {
    display: inline-block;
    max-width: 80%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 16px;
    border-left: 4px solid #ff0000;
    box-shadow: 0 10px 30px var(--shadow-color);
    pointer-events: auto;
}

.hero-caption-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.hero-caption-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255,0,0,0.3);
}

.hero-caption-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,0,0,0.4);
    background: linear-gradient(135deg, #ff3333, #ff0000);
    color: white;
}

.hero-caption-btn i {
    transition: transform 0.3s ease;
}

.hero-caption-btn:hover i {
    transform: translateX(5px);
}

/* ============================================ */
/* HERO SLIDER INDICATORS (DOTS) */
/* ============================================ */

.carousel-indicators {
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    /*z-index: 1050;*/
    pointer-events: auto;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    margin: 0 !important;
    background-color: rgba(128, 128, 128, 0.8) !important;
    border: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px var(--shadow-color);
    cursor: pointer;
    padding: 0;
    opacity: 1;
    text-indent: 0;
}

[data-bs-theme="dark"] .carousel-indicators button {
    background-color: rgba(200, 200, 200, 0.6) !important;
}

.carousel-indicators button.active {
    background-color: #ff0000 !important;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 2px 5px var(--shadow-color);
}

.carousel-indicators button:hover {
    transform: scale(1.15);
    background-color: #ff4444 !important;
}

/* ============================================ */
/* HERO SLIDER ARROWS */
/* ============================================ */

.simple-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    border: none;
    color: #ff0000 !important;
    font-size: 3rem;
    z-index: 15;
    transition: all 0.3s;
    cursor: pointer;
    opacity: 0.7;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    padding: 0;
    width: auto;
    height: auto;
}

.simple-slider-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.simple-slider-arrow.prev {
    left: 20px;
}

.simple-slider-arrow.next {
    right: 20px;
}

/* Caption Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alternate section backgrounds */
section {
    padding: 100px 0;
    transition: background-color 0.5s ease;
}

#about {
    background-color: var(--section-light) !important;
    margin-top: 20px;
}

#news {
    background-color: var(--section-dark) !important;
}

#gallery {
    background-color: var(--section-light) !important;
}

#video {
    background-color: var(--section-dark) !important;
}

#contact {
    background-color: var(--section-light) !important;
}

/* Card styles */
.card-img-top {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.content-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-color);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-color);
}

.content-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Blog link special styling */
.nav-link.blog-link {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white !important;
    font-weight: 600;
}

.nav-link.blog-link:hover {
    background: linear-gradient(135deg, #FF5252, #FF7B39);
    transform: translateX(-5px) scale(1.02);
}

/* SIMPLE CAROUSEL CONTROLS */
.simple-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    border: none;
    color: #ff0000 !important;
    font-size: 2.5rem;
    z-index: 10;
    opacity: 0.7;
    transition: all 0.3s;
    cursor: pointer;
    width: auto;
    height: auto;
    padding: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.simple-carousel-control:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
    background: transparent !important;
}

.simple-carousel-control.prev {
    left: 15px;
}

.simple-carousel-control.next {
    right: 15px;
}

/* Card carousel container */
.card-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 15px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.card-carousel-container:active {
    cursor: grabbing;
}

.card-carousel-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: max-content;
    gap: 30px;
    padding: 10px 0;
    will-change: transform;
}

/* Individual card styling */
.carousel-card {
    flex: 0 0 auto;
    width: 280px;
    min-width: 280px;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-color);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-color);
}

.carousel-card-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.carousel-card:hover .carousel-card-img {
    transform: scale(1.05);
}

.carousel-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.carousel-card-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--title-color);
}

.carousel-card-text {
    flex-grow: 1;
    margin-bottom: 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* CENTERED VIEW BUTTON */
.carousel-card-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.view-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    min-width: 120px;
}

.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
    color: white;
}

/* Video container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow-color);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Social icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    margin-right: 12px;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 20px var(--shadow-color);
}

/* WhatsApp specific */
.social-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.social-icon.whatsapp:hover {
    transform: translateY(-5px) rotate(0deg);
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

/* Read more toggle */
.read-more-toggle {
    color: var(--accent-color);
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(23, 162, 184, 0.1);
    border-radius: 25px;
    transition: all 0.3s;
}

.read-more-toggle:hover {
    background-color: rgba(23, 162, 184, 0.2);
    transform: translateY(-2px);
}

.hidden-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

/* Theme toggle button */
.toggle-theme-btn {
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.toggle-theme-btn:hover {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 6px 18px var(--shadow-color);
}

/* Loading animation */
.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    width: 100%;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* About Badge Image */
.about-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-top: -5rem;
    margin-bottom: 1.5rem;
}

.about-badge-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 10px 25px var(--shadow-color);
    transition: transform 0.3s;
}

.about-badge-img:hover {
    transform: scale(1.02);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.8rem;
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
    background: rgba(255, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* Smooth scrolling offset */
html {
    scroll-padding-top: 76px;
    scroll-behavior: smooth;
}

/* Music hint animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
        visibility: hidden;
    }
}

/* Music playing indicator */
.music-playing {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.music-playing i {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================ */
/* RESPONSIVE STYLES */
/* ============================================ */

@media (max-width: 992px) {
    .hero-caption {
        bottom: 12%;
    }
    
    .hero-caption-content {
        padding: 15px 30px;
        max-width: 85%;
    }
    
    .hero-caption-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .hero-caption-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 70px 0;
    }
    
    .simple-carousel-control {
        font-size: 2rem;
    }
    
    .simple-carousel-control.prev {
        left: 8px;
    }
    
    .simple-carousel-control.next {
        right: 8px;
    }
    
    .card-carousel-container {
        padding: 0 8px;
    }
    
    .carousel-card {
       /* width: 250px;*/
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        margin-bottom: 50px;
    }
    
    .hero-caption {
        bottom: 10%;
    }
    
    .hero-caption-content {
        padding: 12px 25px;
        max-width: 90%;
    }
    
    .hero-caption-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .hero-caption-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
    
    .carousel-indicators {
       /* bottom: -35px;*/
        gap: 10px;
    }
    
    .carousel-indicators button {
        width: 10px !important;
        height: 10px !important;
    }
    
    .simple-slider-arrow {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        margin-bottom: 40px;
    }
    
    .hero-caption {
        bottom: 8%;
    }
    
    .hero-caption-content {
        padding: 10px 20px;
        max-width: 95%;
    }
    
    .hero-caption-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .hero-caption-btn {
        padding: 5px 12px;
        font-size: 0.75rem;
        gap: 5px;
    }
    
    .carousel-indicators {
        /*bottom: -30px;*/
        gap: 8px;
    }
    
    .carousel-indicators button {
        width: 8px !important;
        height: 8px !important;
    }
    
    .hero-slider .simple-slider-arrow {
        font-size: 1.8rem;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-slider .simple-slider-arrow.prev {
        left: 8px !important;
        right: auto !important;
    }
    
    .hero-slider .simple-slider-arrow.next {
        right: 8px !important;
        left: auto !important;
    }
    
    .simple-carousel-control {
        font-size: 2rem;
    }
    
    .simple-carousel-control.prev {
        left: 5px;
    }
    
    .simple-carousel-control.next {
        right: 5px;
    }
    
    .card-carousel-container {
        padding: 0 5px;
    }
    
    .carousel-card {
       /* width: 220px;*/
        min-width: 220px;
    }
}

/* Tablet landscape fix */
@media (min-width: 577px) and (max-width: 768px) {
    .hero-slider .simple-slider-arrow.prev {
        left: 12px !important;
        right: auto !important;
    }
    .hero-slider .simple-slider-arrow.next {
        right: 12px !important;
        left: auto !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .card-carousel-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        cursor: default;
    }
    
    .card-carousel-container .simple-carousel-control {
        /*display: none;*/
    }
    
    .carousel-card {
        scroll-snap-align: start;
    }
}
/* Section header with button */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.section-header .section-title {
    margin-bottom: 0;
    flex: 1;
}

@media (max-width: 576px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-header .view-btn {
        align-self: flex-start;
    }
}
/* Install App Button Animation */
@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#install-prompt {
    animation: slideUp 0.5s ease-out;
    z-index: 10000 !important;
}

#install-prompt button {
    font-weight: 600;
    transition: all 0.3s;
}

#install-prompt button:hover {
    transform: scale(1.05);
}
/* In style.css */
/* Prevent zoom on page layout but allow on media */
body {
    touch-action: pan-x pan-y;
}

/* Allow zoom on images and videos */
img, video, iframe, .modal-media, .gallery-item img {
    touch-action: auto;
}

/* Prevent double-tap zoom on buttons */
button, a, .nav-link, .view-btn {
    touch-action: manipulation;
}
