/* WiseStudio - Main Stylesheet */

/* Prevent horizontal scrolling globally */
*, *::before, *::after {
    box-sizing: border-box;
}

.container,
.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

/* Ensure all rows and columns don't overflow */
.row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    overflow-x: hidden;
}

.col,
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-auto, .col-sm, .col-md, .col-lg, .col-xl, .col-xxl {
    max-width: 100%;
    overflow-x: hidden;
}

/* Additional hero section overflow fixes */
.hero-section,
.hero-section * {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    --primary: #b108b6;
    --secondary: #FF6584;
    --success: #4CAF50;
    --info: #00BCD4;
    --warning: #FFC107;
    --danger: #F44336;
    --light: #F8F9FA;
    --dark: #212529;
    --purple-light: #A78BFA;
    --teal: #20C997;
    --indigo: #6610F2;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    max-width: 100vw;
    width: 100%;
    font-size: 16px; /* Standard base size */
}

/* Standardized Typography System */
/* Base font sizes for consistent readability */

/* Headings - Progressive sizing */
h1 { font-size: 2.5rem; }   /* 40px */
h2 { font-size: 2rem; }     /* 32px */
h3 { font-size: 1.5rem; }   /* 24px */
h4 { font-size: 1.25rem; }  /* 20px */
h5 { font-size: 1.125rem; } /* 18px */
h6 { font-size: 1rem; }     /* 16px */

/* Paragraph text - Standard size */
p {
    font-size: 1rem;    /* 16px */
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Lead text - Slightly larger for emphasis */
.lead {
    font-size: 1.125rem; /* 18px */
    line-height: 1.5;
}

/* Small text */
.small, small {
    font-size: 0.875rem; /* 14px */
}

/* List items */
ul li, ol li {
    font-size: 1rem;    /* 16px */
    line-height: 1.6;
}

/* Navigation */
.navbar-brand {
    font-size: 1.25rem; /* 20px */
}

.nav-link {
    font-size: 1rem;    /* 16px */
}

/* Buttons */
.btn {
    font-size: 1rem;    /* 16px */
}

.btn-lg {
    font-size: 1.125rem; /* 18px */
}

.btn-sm {
    font-size: 0.875rem; /* 14px */
}

/* Badges */
.badge {
    font-size: 0.875rem; /* 14px */
}

/* Form inputs */
.form-control {
    font-size: 1rem;    /* 16px */
}

.form-control-lg {
    font-size: 1.125rem; /* 18px */
}

/* Table text */
.table {
    font-size: 1rem;    /* 16px */
}

.table th {
    font-size: 0.9rem;  /* 14.4px */
}

/* Card text */
.card-body {
    font-size: 1rem;    /* 16px */
}

.card-header {
    font-size: 1rem;    /* 16px */
}

/* Testimonial text */
.testimonial-card p {
    font-size: 1rem;    /* 16px */
}

/* Footer text */
.footer {
    font-size: 0.9rem;  /* 14.4px */
}

.footer h5 {
    font-size: 1.125rem; /* 18px */
}

/* Carousel captions */
.carousel-caption h5 {
    font-size: 1.125rem; /* 18px */
}

/* Hero section */
.hero-subtitle {
    font-size: 2rem;     /* 32px */
}

/* Section titles */
.section-title {
    font-size: 2rem;     /* 32px */
}

/* Responsive text sizing */
@media (max-width: 768px) {
    body {
        font-size: 15px;  /* Slightly smaller base on mobile */
    }
    
    h1 { font-size: 2rem; }      /* 32px */
    h2 { font-size: 1.75rem; }   /* 28px */
    h3 { font-size: 1.375rem; }  /* 22px */
    h4 { font-size: 1.125rem; }  /* 18px */
    h5 { font-size: 1rem; }      /* 16px */
    h6 { font-size: 0.9rem; }    /* 14.4px */
    
    .lead {
        font-size: 1rem;         /* 16px */
    }
    
    .hero-subtitle {
        font-size: 1.5rem;       /* 24px */
    }
    
    .section-title {
        font-size: 1.75rem;      /* 28px */
    }
    
    .btn-lg {
        font-size: 1rem;         /* 16px */
    }
    
    .navbar-brand {
        font-size: 1.125rem;     /* 18px */
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;  /* Smaller base on small mobile */
    }
    
    h1 { font-size: 1.75rem; }   /* 28px */
    h2 { font-size: 1.5rem; }    /* 24px */
    h3 { font-size: 1.25rem; }   /* 20px */
    h4 { font-size: 1rem; }      /* 16px */
    h5 { font-size: 0.9rem; }    /* 14.4px */
    h6 { font-size: 0.85rem; }   /* 13.6px */
    
    .hero-subtitle {
        font-size: 1.25rem;      /* 20px */
    }
    
    .section-title {
        font-size: 1.5rem;       /* 24px */
    }
}

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, var(--primary), var(--indigo));
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1030;
    position: sticky;
    top: 0;
    padding: 0.5rem 0;
    min-height: 56px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    padding: 0.25rem 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    margin: 0 5px;
}

.nav-link:hover {
    color: white !important;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0;
    min-height: calc(100vh - 56px);
    position: relative;
    overflow: hidden;
    height: calc(100vh - 56px);
    margin-top: 0;
    width: 100%;
    max-width: 100vw;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-section .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(40,16,60,0.6);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
    padding-top: 80px;
    padding-bottom: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

/* Hero Section Specific Fixes */
.hero-section .row,
.hero-section .col-lg-10 {
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.hero-section .d-flex {
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;
}

/* Fix badge overflow in hero */
.hero-section .badge {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

/* Ensure hero content doesn't overflow */
.hero-section .text-center {
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

/* Carousel Styles */
.carousel {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.carousel-inner {
    height: 100% !important;
    overflow: hidden;
}

.carousel-item {
    height: 100% !important;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    overflow: hidden;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 4;
    opacity: 0.7;
    height: 100%;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    z-index: 4;
    bottom: 30px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-indicators button.active {
    background-color: white;
    border-color: white;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.8s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Hero Carousel Specific Styles - Override general carousel styles */
#heroCarousel {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

#heroCarousel .carousel-inner {
    height: 100% !important;
    overflow: hidden;
}

#heroCarousel .carousel-item {
    height: 100% !important;
    overflow: hidden;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    overflow: hidden;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    z-index: 4;
    opacity: 0.7;
    height: 100%;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    opacity: 1;
}

#heroCarousel .carousel-indicators {
    z-index: 4;
    bottom: 30px;
    margin-bottom: 0;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.3);
}

#heroCarousel .carousel-indicators button.active {
    background-color: white;
    border-color: white;
}

#heroCarousel.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.8s;
    transition-property: opacity;
}

#heroCarousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Reset general carousel styles to normal for non-hero carousels */
.carousel:not(#heroCarousel) {
    position: relative !important;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    z-index: auto;
    overflow: hidden;
}

.carousel:not(#heroCarousel) .carousel-inner {
    height: auto !important;
    overflow: hidden;
}

.carousel:not(#heroCarousel) .carousel-item {
    height: auto !important;
    overflow: hidden;
}

.carousel:not(#heroCarousel) .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    overflow: hidden;
}

.carousel:not(#heroCarousel) .carousel-control-prev,
.carousel:not(#heroCarousel) .carousel-control-next {
    z-index: 2;
    opacity: 0.7;
    height: 100%;
}

.carousel:not(#heroCarousel) .carousel-control-prev:hover,
.carousel:not(#heroCarousel) .carousel-control-next:hover {
    opacity: 1;
}

.carousel:not(#heroCarousel) .carousel-indicators {
    z-index: 2;
    bottom: 10px;
    margin-bottom: 0;
}

.carousel:not(#heroCarousel) .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.3);
}

.carousel:not(#heroCarousel) .carousel-indicators button.active {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Hero Text Styles */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    margin-bottom: 2rem;
}

/* Enhanced text readability over images */
.hero-section h2,
.hero-section p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Badge Styles */
.badge:hover {
    transform: scale(1.05);
}

.badge.rounded-pill {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
    margin: 0.3rem;
}

.badge.rounded-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Button Styles */
.btn-cta {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: var(--indigo);
}

/* CTA Section Contact Buttons */
.cta-contact-buttons {
    margin-bottom: 2rem;
}

.cta-contact-buttons .btn {
    transition: all 0.3s ease;
    border-width: 2px;
    font-weight: 600;
}

.cta-contact-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cta-contact-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

@media (max-width: 767.98px) {
    .cta-contact-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    
    .cta-contact-buttons {
        margin-bottom: 1.5rem;
    }
}

/* Feature Card Styles */
.feature-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

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

/* Category Card Styles */
.category-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.category-img {
    height: 200px;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 20px;
}

/* Testimonial Styles */
.testimonial-card {
    border: none;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: white;
    height: 100%;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

/* Pricing Card Styles */
.pricing-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.pricing-card.popular .pricing-header {
    background: linear-gradient(135deg, var(--primary), var(--indigo));
    color: white;
}

.pricing-header {
    background-color: var(--light);
    padding: 20px;
    text-align: center;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafb;
}

.pricing-period {
    color: #f8fafb;
}

.pricing-feature {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
}

.pricing-feature:last-child {
    border-bottom: none;
}

/* Pricing Section Layout */
#pricing .row {
    display: flex;
    align-items: stretch;
}

#pricing .col-lg-6:first-child {
    flex: 0 0 70%; /* Carousel takes 70% of width */
    max-width: 70%;
}

#pricing .col-lg-6:last-child {
    flex: 0 0 30%; /* Pricing card takes 30% of width */
    max-width: 30%;
}

/* Full Width Snapshots Carousel */
#pricing .col-lg-10 {
    max-width: 85%;
}

#snapshotsCarousel {
    max-width: 100%;
    margin: 0 auto;
}

#snapshotsCarousel .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

#snapshotsCarousel .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

#snapshotsCarousel .carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 15px 20px;
    bottom: 30px;
    left: 30px;
    right: 30px;
    backdrop-filter: blur(5px);
}

#snapshotsCarousel .carousel-caption h5 {
    margin-bottom: 0;
    font-size: 1.3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#snapshotsCarousel .carousel-control-prev,
#snapshotsCarousel .carousel-control-next {
    width: 8%;
    opacity: 0.8;
    transition: opacity 0.3s;
}

#snapshotsCarousel .carousel-control-prev:hover,
#snapshotsCarousel .carousel-control-next:hover {
    opacity: 1;
}

#snapshotsCarousel .carousel-indicators {
    bottom: 15px;
}

#snapshotsCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    transition: all 0.3s;
}

#snapshotsCarousel .carousel-indicators button.active {
    background-color: white;
    transform: scale(1.2);
}

/* Contact & Pricing Section Layout */
#contact .card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
}

#contact .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#contact .card-header {
    background: linear-gradient(135deg, var(--primary) 0%, #8e05a3 100%);
    border-radius: 12px 12px 0 0;
    padding: 1.5rem;
}

#contact .card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

#contact .card-header h4 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

#contact .card-header .fs-6 {
    font-size: 1rem !important;
}

#contact .card-body {
    padding: 1.5rem;
    font-size: 0.9rem;
}

#contact .card-body ul {
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

#contact .card-body li {
    padding: 4px 0;
    font-size: 0.85rem;
    transition: color 0.2s;
    line-height: 1.4;
}

#contact .card-body li:hover {
    color: var(--primary);
}

#contact .card-body .bi {
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

#contact .btn-primary {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #091823, #150663);
    /*background-image: url('../images/wmfoot1.png'); */
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0 20px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.8), rgba(52, 152, 219, 0.7));
    z-index: 1;
}

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

.footer .contact-info {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer .contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.footer .contact-info strong {
    color: white;
    font-weight: 600;
}

.footer .contact-info i {
    color: #87CEEB;
    width: 16px;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer ul {
    margin: 0;
    padding: 0;
}

.footer ul li {
    margin-bottom: 6px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer .social-links {
    margin-top: 20px;
}

.footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

.footer .text-center p,
.footer .text-md-start p {
    margin-bottom: 5px;
}

/* Additional footer text styling */
.footer .text-center p:last-child,
.footer .text-md-start p:last-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer .text-md-end a {
    color: rgba(255, 255, 255, 0.7);
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

/* Better text contrast for readability */
.footer {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive footer adjustments */
@media (max-width: 767.98px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 0;
    }
    
    .footer .contact-info {
        font-size: 0.85rem;
    }
    
    .footer h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer .social-links {
        text-align: center;
        margin-top: 15px;
    }
    
    .footer .social-links a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        margin: 0 5px;
    }
    
    .footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    #pricing .col-lg-10 {
        max-width: 95%;
    }
    
    #snapshotsCarousel .carousel-item img {
        height: 400px;
    }
    
    #snapshotsCarousel .carousel-caption {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    #snapshotsCarousel .carousel-caption h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    #pricing .col-lg-10 {
        max-width: 100%;
    }
    
    #snapshotsCarousel .carousel-item img {
        height: 300px;
    }
    
    #snapshotsCarousel .carousel-caption {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 10px 14px;
    }
    
    #snapshotsCarousel .carousel-caption h5 {
        font-size: 1rem;
    }
    
    #snapshotsCarousel .carousel-control-prev,
    #snapshotsCarousel .carousel-control-next {
        width: 12%;
    }
}

/* Tablet responsive adjustments for pricing section */
@media (min-width: 768px) and (max-width: 991.98px) {
    #pricing .col-lg-6:first-child {
        flex: 0 0 60%;
        max-width: 60%;
    }
    
    #pricing .col-lg-6:last-child {
        flex: 0 0 40%;
        max-width: 40%;
    }
    
    #snapshotsCarousel {
        height: 350px;
    }
    
    #snapshotsCarousel .carousel-item img {
        height: 350px;
    }
}
