:root {
    /* Colors */
    --primary-color: #0066cc;
    --secondary-color: #0066cc;
    --light-bg: #f8f9fa;
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --whatsapp-green: #25d366;
    --whatsapp-dark: #128c7e;
    
    /* Spacing */
    --section-padding: 5rem;
    --card-spacing: 1.5rem;
    
    /* Shadows */
    --card-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    --hover-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

/* Base Styles */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    padding-top: 76px;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background-color: #000; /* Fallback color */
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: slideUp 1s ease-out;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-image {
    animation: fadeInRight 1s ease-out;
    max-width: 80%;
    margin: auto;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Feature Boxes */
.feature-box {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.feature-box:hover {
    background: rgba(0,102,204,0.05);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
}

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

/* Stats Section */
.stat-box {
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box .feature-icon {
    font-size: 3rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    background-color: var(--whatsapp-dark);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--hover-shadow);
    text-decoration: none;
}

/* Navigation Styles */
.navbar-brand {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 0;
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.brand-text-container {
    display: flex;
    align-items: baseline;
}

.navbar-brand .brand-text {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 1.5rem;
}

.navbar-brand .domain-text {
    color: var(--primary-color) !important;
    opacity: 0.9;
    font-size: 1.5rem;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
    color: white !important;
    background-color: var(--primary-color);
    font-weight: 600;
}

/* Remove the old underline styles */
.navbar-nav .nav-link::after {
    display: none;
}

/* Footer */
footer {
    background-color: #1a1a1a;
}

footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Mobile Responsiveness Enhancements */
@media (max-width: 768px) {
    /* General Spacing */
    body {
        padding-top: 60px;
    }

    /* Typography */
    h1.display-4 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }

    /* Hero Section */
    .hero-section {
        height: auto;
        min-height: 100vh;
        text-align: center;
    }

    .hero-content {
        padding: 2rem 0;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }

    /* Services Section */
    .service-card {
        margin-bottom: 1rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    /* Stats Section */
    .stat-box {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .stat-box .display-4 {
        font-size: 2.5rem;
    }

    /* Pricing Cards */
    .pricing-card {
        margin-bottom: 2rem;
    }

    .pricing-value .price span.display-4 {
        font-size: 2.5rem;
    }

    .pricing-card .btn {
        padding: 0.75rem 1.5rem;
    }

    /* Form Elements */
    .form-control, .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem;
    }

    /* Navigation */
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
        text-align: center;
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 2rem 0;
    }

    footer .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }

    /* WhatsApp Float Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    /* Typography */
    h1.display-4 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }

    /* Cards */
    .card {
        margin-bottom: 1rem;
    }

    .card-body {
        padding: 1.25rem;
    }

    /* Partners Grid */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .partner-logo-container {
        padding: 1rem;
    }

    /* Testimonials */
    .testimonial-card {
        margin-bottom: 1.5rem;
    }

    /* Base Health Services */
    .service-icon {
        font-size: 1.75rem;
    }

    /* Pricing Value */
    .pricing-value .price .currency {
        font-size: 1.25rem;
    }

    .pricing-value .price span.display-4 {
        font-size: 2.25rem;
    }
}

/* Landscape Mode */
@media (max-height: 576px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 120vh;
    }

    .hero-content {
        padding: 4rem 0;
    }
}

/* Tablet Devices */
@media (min-width: 769px) and (max-width: 991px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .pricing-card {
        margin-bottom: 2rem;
    }

    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.pricing-value {
    margin: 1.5rem 0;
}

.pricing-value .price {
    color: var(--primary-color);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-value .price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.pricing-value .price span.display-4 {
    font-size: 3.5rem;
    line-height: 1;
}

.pricing-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card ul {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-card ul li {
    padding: 0.75rem 0;
    color: #444;
    line-height: 1.4;
}

.pricing-card .btn-wrapper {
    margin-top: auto;
}

.pricing-card .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card .badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 20px;
}

.fa-check-circle {
    color: #28a745;
}

.fa-plus-circle {
    color: var(--primary-color);
}

/* Additional Pricing Styles */
.pricing-card s {
    opacity: 0.7;
}

.pricing-card .list-unstyled li {
    margin-bottom: 1rem;
}

.pricing-card .list-unstyled li:last-child {
    margin-bottom: 0;
}

.pricing-card .list-unstyled li strong {
    color: #333;
}

.bg-primary-subtle {
    background-color: rgba(0,102,204,0.1);
}

.bg-warning-subtle {
    background-color: rgba(255,193,7,0.1);
}

.text-warning {
    color: #ffc107 !important;
}

/* Partners Section */
.partners-section {
    background-color: #fff;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-item {
    aspect-ratio: 1;
}

.partner-logo-container {
    background: white;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    pointer-events: none;
}

.partner-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.partner-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo-container:hover .partner-logo {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .partner-logo-container {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: #fff;
    padding: 5rem 0;
    overflow: hidden;
}

.gallery-scroll {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    animation: scrollGallery 40s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex: 0 0 400px;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: all 0.3s ease;
}

.gallery-content {
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 10));
    }
}

@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 350px;
    }
    
    @keyframes scrollGallery {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-350px * 10));
        }
    }
}

@media (max-width: 576px) {
    .gallery-item {
        flex: 0 0 300px;
    }
    
    @keyframes scrollGallery {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 10));
        }
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }

    .gallery-section {
        padding: 3rem 0;
    }
}

/* Gallery Page Styles */
.gallery-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.featured-image {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.featured-image img {
    transition: all 0.3s ease;
}

.featured-image:hover img {
    transform: scale(1.02);
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

.lb-data .lb-number {
    font-size: 0.9rem;
    color: #ddd;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

/* Service Gallery */
.service-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gallery-count {
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.gallery-link:hover .gallery-overlay {
    opacity: 1;
}

.service-gallery img {
    transition: all 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-link:hover img {
    transform: scale(1.05);
}

/* Lightbox Customization */
.lb-outerContainer {
    border-radius: 8px 8px 0 0;
}

.lb-dataContainer {
    border-radius: 0 0 8px 8px;
}

.lb-data .lb-caption {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    padding: 10px 0;
}

.lb-data .lb-number {
    font-size: 0.9rem;
    color: #ddd;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    padding-bottom: 10px;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1;
}

.lb-data .lb-close {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.lb-data .lb-close:hover {
    opacity: 1;
}

/* Mobile Adjustments for Gallery */
@media (max-width: 768px) {
    .gallery-overlay i {
        font-size: 1.5rem;
    }

    .gallery-count {
        font-size: 0.8rem;
    }

    .service-gallery img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .service-gallery img {
        height: 160px;
    }
}

/* Clients Section */
.clients-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.client-item {
    flex: 0 0 250px;
    height: 150px;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-item:hover .client-logo {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6));
    }
}

/* Add hover pause effect */
.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

/* Add gradient overlay for smooth edges */
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

@media (max-width: 768px) {
    .client-item {
        flex: 0 0 200px;
        height: 120px;
    }
    
    .client-logo {
        max-width: 100%;
        max-height: 100%;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 6));
        }
    }
    
    .carousel-container::before,
    .carousel-container::after {
        width: 100px;
    }
}

@media (max-width: 576px) {
    .client-item {
        flex: 0 0 180px;
        height: 100px;
    }
    
    .client-logo {
        max-width: 100%;
        max-height: 100%;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 6));
        }
    }
    
    .carousel-container::before,
    .carousel-container::after {
        width: 60px;
    }
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    margin-bottom: 2rem;
}

.gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-link img {
    transition: transform 0.3s ease;
}

.gallery-link:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
}

.gallery-link:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay span {
    font-size: 1rem;
    font-weight: 500;
}

/* Client Logo Styles */
.client-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.1);
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.pricing-value .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-value .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Lightbox Customization */
.lb-outerContainer {
    border-radius: 8px 8px 0 0 !important;
}

.lb-dataContainer {
    border-radius: 0 0 8px 8px !important;
    background: white;
    padding: 1rem !important;
}

.lb-data .lb-caption {
    font-size: 1.1rem !important;
    color: #333 !important;
    font-weight: 600 !important;
}

.lb-data .lb-number {
    color: #666 !important;
    font-size: 0.9rem !important;
    padding-top: 0.5rem !important;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8 !important;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
    opacity: 1 !important;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        padding: 4rem 0;
    }

    .service-card,
    .testimonial-card,
    .pricing-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-logo {
        height: 50px;
    }

    .navbar-brand .brand-text,
    .navbar-brand .domain-text {
        font-size: 1.25rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .stat-box {
        margin-bottom: 2rem;
    }

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

    .gallery-item {
        margin-bottom: 1.5rem;
    }

    .client-logo {
        max-height: 60px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 66px;
    }

    .navbar-logo {
        height: 40px;
    }

    .navbar-brand .brand-text,
    .navbar-brand .domain-text {
        font-size: 1.1rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .service-icon,
    .feature-icon {
        font-size: 2rem;
    }

    .pricing-value .display-4 {
        font-size: 2.25rem;
    }
}

/* Gallery Carousel Styles */
.carousel-item img {
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.cursor-pointer {
    cursor: pointer;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
}

/* Thumbnail Navigation */
.thumbnail-nav {
    height: 100px;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 0.7;
    border: 2px solid transparent;
}

.thumbnail-nav:hover {
    opacity: 1;
    border-color: var(--primary-color);
}

.view-all-btn {
    height: 100px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    border-color: var(--primary-color);
    background: #f1f3f5;
}

.view-all-btn i {
    font-size: 24px;
    margin-bottom: 8px;
}

/* Mobile Responsiveness for Gallery */
@media (max-width: 992px) {
    .carousel-item img {
        height: 400px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }

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

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

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
    
    .thumbnail-nav {
        height: 70px;
    }
    
    .view-all-btn {
        height: 70px;
    }
    
    .view-all-btn i {
        font-size: 20px;
        margin-bottom: 4px;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        height: 250px;
    }
    
    .thumbnail-nav {
        height: 50px;
    }
    
    .view-all-btn {
        height: 50px;
    }
    
    .view-all-btn i {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .view-all-btn p {
        font-size: 10px;
    }
}

/* Gallery Styles */
.gallery-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
    padding: 10px 0;
}

.gallery-container::-webkit-scrollbar {
    height: 6px;
}

.gallery-container::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-container::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 20px;
}

.gallery-track {
    display: flex;
    gap: 10px;
    padding: 10px 0;
}

.gallery-item {
    flex: 0 0 150px;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-2px);
}

.gallery-item.active {
    border-color: var(--primary-color);
}

.gallery-item.active img {
    opacity: 1;
}

.gallery-item:not(.active) img {
    opacity: 0.7;
}

.main-image-container {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    position: relative;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

/* Responsive Gallery Styles */
@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 120px;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 100px;
    }
    
    .main-image-container {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        flex: 0 0 80px;
    }
    
    .main-image-container {
        aspect-ratio: 1/1;
    }
} 