/********** Template CSS **********/
:root {
    --primary: #0066cc;     /* Deep Medical Blue */
    --secondary: #00b4d8;   /* Vibrant Cyan */
    --accent: #7209b7;      /* Premium Purple */
    --teal: #20c997;        /* Clean Teal */
    --light: #f4f9fc;       /* Soft Light Ice Blue */
    --dark: #07162c;        /* Deep Navy Blue */
    --success: #25d366;     /* WhatsApp Green */
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}

.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 170px;
    z-index: 998;
    transition: all 0.3s ease;
}

.top-shape::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 100%;
    top: 0;
    left: -17px;
    background: var(--primary);
    transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
}

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

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

/* Screen-Fitting Professional Hero Carousel */
#header-carousel,
#header-carousel .carousel-inner,
#header-carousel .carousel-item {
    height: 85vh;
    min-height: 580px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#header-carousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 6s ease-in-out;
}

/* Subtle zoom effect for active slide background (Ken Burns Effect) */
#header-carousel .carousel-item.active img {
    transform: scale(1.05);
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Soft, modern medical gradient overlay */
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.85) 0%, rgba(9, 30, 62, 0.65) 50%, rgba(7, 22, 44, 0.85) 100%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Premium glassmorphic container for slide content */
.carousel-content {
    max-width: 900px;
    width: 100%;
    padding: 40px;
    border-radius: 24px;
    background: rgba(7, 22, 44, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
    text-align: center;
    transition: all 0.5s ease;
}

.carousel-caption h5 {
    font-size: 1.15rem;
    font-weight: 700 !important;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 800 !important;
    line-height: 1.25;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.carousel-caption p {
    font-size: 1.25rem;
    color: rgba(244, 249, 252, 0.95);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Animated button padding */
.carousel-caption .btn {
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Responsive Viewports */
@media (max-width: 991.98px) {
    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item {
        height: 70vh;
        min-height: 480px;
    }
    
    .carousel-content {
        padding: 30px;
        border-radius: 16px;
        background: rgba(7, 22, 44, 0.65);
    }
    
    .carousel-caption h1 {
        font-size: 2.4rem;
    }
    
    .carousel-caption p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .carousel-caption .btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item {
        height: 65vh;
        min-height: 420px;
    }
    
    .carousel-content {
        padding: 24px;
        border-radius: 12px;
    }
    
    .carousel-caption h5 {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
        margin-bottom: 8px !important;
    }
    
    .carousel-caption h1 {
        font-size: 1.95rem;
        line-height: 1.3;
    }
    
    .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item {
        height: 60vh;
        min-height: 380px;
    }
    
    .carousel-content {
        padding: 20px 15px;
        background: rgba(7, 22, 44, 0.7);
    }
    
    .carousel-caption h5 {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .carousel-caption h1 {
        font-size: 1.55rem;
    }
    
    .carousel-caption .btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }
    
    .carousel-caption .btn:last-child {
        margin-bottom: 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}


.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (min-width: 991.98px) {
    .banner {
        position: relative;
        margin-top: -90px;
        z-index: 1;
    }
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: var(--primary);
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: var(--secondary);
}

.twentytwenty-wrapper {
    height: 100%;
}

.hero-header,
.hero-header.bg-primary {
    height: 80vh !important;
    min-height: 520px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.85) 0%, rgba(0, 102, 204, 0.3) 50%, rgba(7, 22, 44, 0.85) 100%), url(../img/carousel-1.jpg) center center no-repeat !important;
    background-size: cover !important;
    background-color: transparent !important;
    border-bottom: 4px solid var(--secondary) !important;
    position: relative !important;
    box-shadow: 0 8px 30px rgba(7, 22, 44, 0.25) !important;
    margin-bottom: 3.5rem !important;
    transition: all 0.5s ease-in-out !important;
}

.hero-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    box-shadow: 0 0 15px var(--secondary);
    animation: ribbonGlow 3s infinite alternate;
}

@keyframes ribbonGlow {
    0% { opacity: 0.5; filter: brightness(1); }
    100% { opacity: 1; filter: brightness(1.3); }
}

.hero-header .row {
    max-width: 600px;
    width: 90% !important;
    margin: 0 auto !important;
    padding: 30px 35px !important;
    background: rgba(7, 22, 44, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.hero-header h1 {
    font-size: 3.25rem !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6) !important;
}

.hero-header a.h4,
.hero-header i.far {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6) !important;
    transition: all 0.3s ease;
}

.hero-header a.h4:hover {
    text-decoration: none;
}

.hero-header i.far.fa-circle {
    font-size: 0.65rem !important;
    opacity: 0.7;
    vertical-align: middle;
    margin: 0 6px;
}

/* Responsive Viewports for Hero Header Heights */
@media (max-width: 991.98px) {
    .hero-header,
    .hero-header.bg-primary {
        height: 70vh !important;
        min-height: 420px !important;
        margin-bottom: 2.5rem !important;
    }
    .hero-header .row {
        max-width: 500px !important;
        padding: 20px 25px !important;
        border-radius: 18px;
        margin: 0 auto !important; /* Reset layout asymmetry on tablets */
    }
    .hero-header h1 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 576px) {
    .hero-header,
    .hero-header.bg-primary {
        height: 60vh !important;
        min-height: 350px !important;
        margin-bottom: 2rem !important;
    }
    .hero-header .row {
        max-width: 92% !important;
        padding: 15px 20px !important;
        border-radius: 14px;
        margin: 0 auto !important; /* Reset layout asymmetry on mobile */
    }
    .hero-header h1 {
        font-size: 1.85rem !important;
        margin-bottom: 8px !important;
    }
    .hero-header a.h4,
    .hero-header i.far {
        font-size: 0.95rem !important;
    }
    .hero-header i.far.fa-circle {
        font-size: 0.55rem !important;
    }
}

/* ==========================================================================
   10 UNIQUE SUBPAGE HEADERS: LAYOUTS, GRADIENTS & DESIGN SIGNATURES
   ========================================================================== */

/* 1. ABOUT US: Centered, Medical Blue, Cyan border glow */
.about-header,
.about-header.bg-primary {
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.85) 0%, rgba(0, 102, 204, 0.25) 50%, rgba(7, 22, 44, 0.85) 100%), url(../img/about.jpg) center center no-repeat !important;
    background-size: cover !important;
    border-bottom: 4px solid var(--secondary) !important;
}
.about-header .row {
    border-color: rgba(0, 180, 216, 0.25);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
}
.about-header .row:hover {
    border-color: rgba(0, 180, 216, 0.6);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.35);
}
.about-header a.h4:not([href="index.html"]) {
    color: var(--secondary) !important;
    text-shadow: 0 2px 8px rgba(0, 180, 216, 0.4) !important;
}
.about-header a.h4:hover {
    color: #ffffff !important;
}

/* 2. PET-CT SERVICES: Asymmetric Left, Deep Orchid Purple gradient & glow */
.service-header,
.service-header.bg-primary {
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.85) 0%, rgba(114, 9, 183, 0.25) 50%, rgba(7, 22, 44, 0.85) 100%), url(../img/after.jpg) center center no-repeat !important;
    background-size: cover !important;
    border-bottom: 4px solid var(--accent) !important;
}
.service-header::after {
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 15px var(--accent);
}
@media (min-width: 992px) {
    .service-header .row {
        margin-left: 8% !important;
        margin-right: auto !important;
    }
}
.service-header .row {
    border-color: rgba(114, 9, 183, 0.25);
    box-shadow: 0 10px 30px rgba(114, 9, 183, 0.15);
}
.service-header .row:hover {
    border-color: rgba(114, 9, 183, 0.6);
    box-shadow: 0 15px 35px rgba(114, 9, 183, 0.35);
}
.service-header a.h4:not([href="index.html"]) {
    color: #d88dfb !important;
    text-shadow: 0 2px 8px rgba(114, 9, 183, 0.4) !important;
}
.service-header a.h4:hover {
    color: #ffffff !important;
}

/* 3. GAMMA CAMERA: Centered, Rich Amber Orange gradient & glow */
.gamma-header,
.gamma-header.bg-primary {
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.85) 0%, rgba(255, 112, 67, 0.25) 50%, rgba(7, 22, 44, 0.85) 100%), url(../img/carousel-2.jpg) center center no-repeat !important;
    background-size: cover !important;
    border-bottom: 4px solid #ff7043 !important;
}
.gamma-header::after {
    background: linear-gradient(90deg, transparent, #ff7043, transparent);
    box-shadow: 0 0 15px #ff7043;
}
.gamma-header .row {
    border-color: rgba(255, 112, 67, 0.25);
    box-shadow: 0 10px 30px rgba(255, 112, 67, 0.15);
}
.gamma-header .row:hover {
    border-color: rgba(255, 112, 67, 0.6);
    box-shadow: 0 15px 35px rgba(255, 112, 67, 0.35);
}
.gamma-header a.h4:not([href="index.html"]) {
    color: #ff9e80 !important;
    text-shadow: 0 2px 8px rgba(255, 112, 67, 0.4) !important;
}
.gamma-header a.h4:hover {
    color: #ffffff !important;
}

/* 4. TECHNOLOGY: Asymmetric Left, Emerald Teal glow & sliding Scanner Laser */
.technology-header,
.technology-header.bg-primary {
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.85) 0%, rgba(32, 201, 151, 0.25) 50%, rgba(7, 22, 44, 0.85) 100%), url(../img/before.jpg) center center no-repeat !important;
    background-size: cover !important;
    border-bottom: 4px solid var(--teal) !important;
}
.technology-header::after {
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
    box-shadow: 0 0 15px var(--teal);
}
@media (min-width: 992px) {
    .technology-header .row {
        margin-left: 8% !important;
        margin-right: auto !important;
    }
}
.technology-header .row {
    border-color: rgba(32, 201, 151, 0.25);
    box-shadow: 0 10px 30px rgba(32, 201, 151, 0.15);
    position: relative;
    overflow: hidden; /* Constrain sliding scanline to card border */
}
.technology-header .row:hover {
    border-color: rgba(32, 201, 151, 0.6);
    box-shadow: 0 15px 35px rgba(32, 201, 151, 0.35);
}

/* Sliding Tech Laser Scanline Animation */
.technology-header .row::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(32, 201, 151, 0.7), transparent);
    box-shadow: 0 0 12px rgba(32, 201, 151, 0.8);
    animation: cardScanline 5s infinite linear;
    pointer-events: none;
    z-index: 1;
}
@keyframes cardScanline {
    0% { top: -10%; }
    50% { top: 110%; }
    100% { top: -10%; }
}

.technology-header a.h4:not([href="index.html"]) {
    color: #55efc4 !important;
    text-shadow: 0 2px 8px rgba(32, 201, 151, 0.4) !important;
}
.technology-header a.h4:hover {
    color: #ffffff !important;
}

/* 5. CLINICAL SPECIALITIES: Asymmetric Right, Indigo-Magenta duotone glow */
.specialities-header,
.specialities-header.bg-primary {
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.85) 0%, rgba(186, 12, 100, 0.25) 50%, rgba(7, 22, 44, 0.85) 100%), url(../img/banner-specialities.png) center center no-repeat !important;
    background-size: cover !important;
    border-bottom: 4px solid #ba0c64 !important;
}
.specialities-header::after {
    background: linear-gradient(90deg, transparent, #ba0c64, transparent);
    box-shadow: 0 0 15px #ba0c64;
}
@media (min-width: 992px) {
    .specialities-header .row {
        margin-right: 8% !important;
        margin-left: auto !important;
    }
}
.specialities-header .row {
    border-color: rgba(186, 12, 100, 0.25);
    box-shadow: 0 10px 30px rgba(186, 12, 100, 0.15);
}
.specialities-header .row:hover {
    border-color: rgba(186, 12, 100, 0.6);
    box-shadow: 0 15px 35px rgba(186, 12, 100, 0.35);
}
.specialities-header a.h4:not([href="index.html"]) {
    color: #ff80ab !important;
    text-shadow: 0 2px 8px rgba(186, 12, 100, 0.4) !important;
}
.specialities-header a.h4:hover {
    color: #ffffff !important;
}

/* 6. OUR TEAM: Centered, Silver White pristine glow */
.team-header,
.team-header.bg-primary {
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.85) 0%, rgba(200, 220, 240, 0.2) 50%, rgba(7, 22, 44, 0.85) 100%), url(../img/banner-team.png) center center no-repeat !important;
    background-size: cover !important;
    border-bottom: 4px solid #e2e8f0 !important;
}
.team-header::after {
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    box-shadow: 0 0 15px #e2e8f0;
}
.team-header .row {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}
.team-header .row:hover {
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
}
.team-header a.h4:not([href="index.html"]) {
    color: #cbd5e1 !important;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3) !important;
}
.team-header a.h4:hover {
    color: #ffffff !important;
}

/* 7. GALLERY: Centered Extra-Wide, Solid Deep Indigo Blue gradient & glow */
.gallery-header,
.gallery-header.bg-primary {
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.85) 0%, rgba(63, 81, 181, 0.25) 50%, rgba(7, 22, 44, 0.85) 100%), url(../img/banner-gallery.png) center center no-repeat !important;
    background-size: cover !important;
    border-bottom: 4px solid #3f51b5 !important;
}
.gallery-header::after {
    background: linear-gradient(90deg, transparent, #3f51b5, transparent);
    box-shadow: 0 0 15px #3f51b5;
}
.gallery-header .row {
    border-color: rgba(63, 81, 181, 0.25);
    box-shadow: 0 10px 30px rgba(63, 81, 181, 0.15);
}
@media (min-width: 992px) {
    .gallery-header .row {
        max-width: 820px !important; /* Wide card format for showcase */
    }
}
.gallery-header .row:hover {
    border-color: rgba(63, 81, 181, 0.6);
    box-shadow: 0 15px 35px rgba(63, 81, 181, 0.35);
}
.gallery-header a.h4:not([href="index.html"]) {
    color: #9fa8da !important;
    text-shadow: 0 2px 8px rgba(63, 81, 181, 0.4) !important;
}
.gallery-header a.h4:hover {
    color: #ffffff !important;
}

/* 8. FAQS: Centered, Calming Mint Green gradient & glow */
.faqs-header,
.faqs-header.bg-primary {
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.85) 0%, rgba(40, 167, 69, 0.2) 50%, rgba(7, 22, 44, 0.85) 100%), url(../img/banner-faqs.png) center center no-repeat !important;
    background-size: cover !important;
    border-bottom: 4px solid #28a745 !important;
}
.faqs-header::after {
    background: linear-gradient(90deg, transparent, #28a745, transparent);
    box-shadow: 0 0 15px #28a745;
}
.faqs-header .row {
    border-color: rgba(40, 167, 69, 0.2);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.1);
}
.faqs-header .row:hover {
    border-color: rgba(40, 167, 69, 0.55);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.25);
}
.faqs-header a.h4:not([href="index.html"]) {
    color: #a3e635 !important;
    text-shadow: 0 2px 8px rgba(40, 167, 69, 0.35) !important;
}
.faqs-header a.h4:hover {
    color: #ffffff !important;
}

/* 9. CONTACT US: Asymmetric Left, Sunset Coral Red gradient & glow */
.contact-header,
.contact-header.bg-primary {
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.85) 0%, rgba(255, 87, 34, 0.25) 50%, rgba(7, 22, 44, 0.85) 100%), url(../img/banner-contact.png) center center no-repeat !important;
    background-size: cover !important;
    border-bottom: 4px solid #ff5722 !important;
}
.contact-header::after {
    background: linear-gradient(90deg, transparent, #ff5722, transparent);
    box-shadow: 0 0 15px #ff5722;
}
@media (min-width: 992px) {
    .contact-header .row {
        margin-left: 8% !important;
        margin-right: auto !important;
    }
}
.contact-header .row {
    border-color: rgba(255, 87, 34, 0.25);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.15);
}
.contact-header .row:hover {
    border-color: rgba(255, 87, 34, 0.6);
    box-shadow: 0 15px 35px rgba(255, 87, 34, 0.35);
}
.contact-header a.h4:not([href="index.html"]) {
    color: #ffab91 !important;
    text-shadow: 0 2px 8px rgba(255, 87, 34, 0.4) !important;
}
.contact-header a.h4:hover {
    color: #ffffff !important;
}

/* 10. APPOINTMENT: Asymmetric Right, Vibrant Electric Turquoise gradient & glow */
.appointment-header,
.appointment-header.bg-primary {
    background: linear-gradient(135deg, rgba(7, 22, 44, 0.85) 0%, rgba(0, 180, 216, 0.25) 50%, rgba(7, 22, 44, 0.85) 100%), url(../img/banner-appointment.png) center center no-repeat !important;
    background-size: cover !important;
    border-bottom: 4px solid var(--secondary) !important;
}
.appointment-header::after {
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    box-shadow: 0 0 15px var(--secondary);
}
@media (min-width: 992px) {
    .appointment-header .row {
        margin-right: 8% !important;
        margin-left: auto !important;
    }
}
.appointment-header .row {
    border-color: rgba(0, 180, 216, 0.25);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
}
.appointment-header .row:hover {
    border-color: rgba(0, 180, 216, 0.6);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.35);
}
.appointment-header a.h4:not([href="index.html"]) {
    color: #80deea !important;
    text-shadow: 0 2px 8px rgba(0, 180, 216, 0.4) !important;
}
.appointment-header a.h4:hover {
    color: #ffffff !important;
}

.bg-appointment {
    background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-form {
    background: rgba(6, 163, 218, .7);
}

.service-item img,
.service-item .bg-light,
.service-item .bg-light h5,
.team-item .team-text {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.15);
}

.team-item .team-text::after,
.service-item .bg-light::after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-radius:100px / 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .7);
    opacity: 0;
    transition: .5s;
    z-index: -1;
}

.team-item:hover .team-text::after,
.service-item:hover .bg-light::after {
    opacity: 1;
}

.bg-offer {
    background:url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.offer-text {
    background: rgba(6, 163, 218, .85);
}

.price-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 45px);
    height: 45px;
    top: calc(50% - 22.5px);
    left: -22.5px;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
}

.price-carousel:hover .owl-nav {
    opacity: 1;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.bg-testimonial {
    background: url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    background: rgba(6, 163, 218, .85);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: calc(100% + 46px);
    height: 46px;
    top: calc(50% - 23px);
    left: -23px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
}

/********** Premium Medical Additions **********/

/* Glowing & Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 102, 204, 0.08);
}

.glass-card-dark {
    background: rgba(7, 22, 44, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Gradient Texts & Backgrounds */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bg-medical-gradient {
    background: linear-gradient(135deg, var(--dark), #0f2c59);
}

/* Glowing Medical Pulse Scan Effect */
.scan-pulse {
    position: relative;
    overflow: hidden;
}

.scan-pulse::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, transparent, rgba(0, 180, 216, 0.4), transparent);
    animation: scanLine 3s infinite linear;
    pointer-events: none;
    z-index: 2;
}

@keyframes scanLine {
    0% { top: -20%; }
    100% { top: 120%; }
}

/* Pulsing Scanner glow accents */
.scanner-glow {
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
    animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 10px rgba(0, 180, 216, 0.2); }
    100% { box-shadow: 0 0 25px rgba(0, 180, 216, 0.5); }
}

/* Sticky Mobile Bar & Floating Ribbon style for Appointments */
.floating-ribbon {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
    z-index: 999;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-ribbon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.5);
    color: #ffffff;
    text-decoration: none;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

/* Sticky top nav blur */
.navbar.sticky-top {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Adjust twentytwenty styling for clean medical display */
.twentytwenty-handle {
    border: 3px solid var(--secondary) !important;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow {
    border-right-color: var(--secondary) !important;
    border-left-color: var(--secondary) !important;
}

/* Premium Brand Logo Styling */
.logo-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(0, 180, 216, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.2);
    transition: all 0.3s ease;
}

.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #ff7043; /* Brand Coral Orange */
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 112, 67, 0.5);
}

.logo-dot {
    width: 9px;
    height: 9px;
    background: #ffffff;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Jost', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.logo-iris {
    color: #0066cc; /* Deep Medical Blue */
}

.logo-petct {
    color: #ff7043; /* Brand Coral Orange matching dot */
    font-weight: 500;
    margin-left: 5px;
}

/* Premium WebP Brand Logo - Highlighted & Scaled */
.navbar-brand-img {
    height: 82px;
    width: auto;
    display: block;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Soft, premium medical glow using drop-shadow matching brand blue & orange colors */
    filter: drop-shadow(0 2px 6px rgba(0, 102, 204, 0.08)) drop-shadow(0 1px 2px rgba(255, 112, 67, 0.05));
    transform-origin: left center;
}

/* Interactive Hover Glow & Subtle Zoom */
.navbar-brand:hover .navbar-brand-img {
    transform: scale(1.04);
    filter: drop-shadow(0 8px 16px rgba(0, 102, 204, 0.16)) drop-shadow(0 4px 8px rgba(255, 112, 67, 0.08));
}

/* Elegant compression in scrolled sticky state */
.sticky-top.navbar-light .navbar-brand-img {
    height: 68px;
    filter: drop-shadow(0 2px 6px rgba(0, 102, 204, 0.06));
}

.sticky-top.navbar-light .navbar-brand:hover .navbar-brand-img {
    transform: scale(1.04);
    filter: drop-shadow(0 6px 12px rgba(0, 102, 204, 0.12));
}

/* Responsive viewports (Tablet & Mobile) */
@media (max-width: 991.98px) {
    .navbar-brand-img {
        height: 65px;
        filter: drop-shadow(0 2px 6px rgba(0, 102, 204, 0.06));
    }
    
    .navbar-brand:hover .navbar-brand-img {
        transform: scale(1.02);
    }
}


/* Premium Navigation Links & Dropdowns */
.navbar-light .navbar-nav .nav-link {
    position: relative;
    padding: 35px 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 22px 12px;
}

/* Bottom sliding active bar for desktop nav items */
@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        bottom: 25px;
        left: 12px;
        right: 12px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::after {
        bottom: 12px;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        transform: scaleX(1);
    }
    
    /* Animated dropdown menus */
    .navbar-nav .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
        min-width: 230px;
        padding: 15px 0;
        margin-top: 0;
    }
    
    .navbar-nav .dropdown:hover .dropdown-menu,
    .navbar-nav .dropdown-menu.show {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Dropdown Menu Item Styling */
.dropdown-menu .dropdown-item {
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    padding: 10px 24px;
    transition: all 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(0, 180, 216, 0.08);
    color: var(--primary);
    padding-left: 28px;
}

/* Glow button styling */
.btn-glow {
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.25);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Premium Responsive Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-radius: 8px;
    }
    
    .navbar-light .navbar-nav .nav-link.active,
    .navbar-light .navbar-nav .nav-link:hover {
        background: rgba(0, 102, 204, 0.06);
        color: var(--primary);
    }
    
    .navbar-collapse {
        background: #ffffff;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 15px 35px rgba(7, 22, 44, 0.12);
        margin-top: 15px;
        border: 1px solid rgba(0, 180, 216, 0.1);
        max-height: 80vh;
        overflow-y: auto;
    }

    .dropdown-menu {
        background: rgba(244, 249, 252, 0.8) !important;
        border-radius: 12px !important;
        margin: 5px 0 10px 0 !important;
        padding: 8px 0 !important;
        border: 1px solid rgba(0, 102, 204, 0.05) !important;
    }

    .dropdown-item {
        padding: 10px 20px !important;
    }

    .navbar-brand {
        padding: 0 !important;
    }

    .btn-glow {
        margin-top: 15px;
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
    }
}

/* SEO Keywords & Tags Component Styling */
.seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.seo-tags a {
    font-size: 13.5px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    color: #e2e8f0 !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.seo-tags a:hover {
    background: var(--primary);
    color: #ffffff !important;
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

.seo-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.seo-filter-pills a {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.seo-filter-pills a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

/* ==========================================================================
   COMPREHENSIVE MULTI-DEVICE RESPONSIVENESS SYSTEM
   Optimized for:
   - Ultra-Compact Phones (320px - 375px)
   - Standard Mobile (376px - 575.98px)
   - Large Phones / Phablets (576px - 767.98px)
   - Tablets Landscape / Portrait (768px - 991.98px)
   - Laptops & Desktops (> 992px)
   ========================================================================== */

/* 1. Global Viewport & Container Resets */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

/* Image comparison & slider container responsiveness */
.twentytwenty-container,
.twentytwenty-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
}

.twentytwenty-container img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* 2. Tablets & Medium Screens (< 992px) */
@media (max-width: 991.98px) {
    /* Navbar override for px-5 in HTML */
    .navbar.px-5 {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .navbar-brand-img {
        height: 60px !important;
        max-width: 200px !important;
    }

    /* Reset banner negative margins on non-desktop screens */
    .banner {
        margin-top: 0 !important;
        margin-bottom: 2rem !important;
    }

    /* Responsive hero header dimensions */
    .hero-header,
    .hero-header.bg-primary {
        min-height: 380px !important;
        height: 50vh !important;
        margin-bottom: 2.5rem !important;
    }

    .hero-header .row {
        max-width: 92% !important;
        margin: 0 auto !important;
        padding: 20px 25px !important;
    }

    /* Responsive image containers */
    [style*="min-height: 500px"] {
        min-height: 360px !important;
    }

    /* Floating action widgets */
    .floating-whatsapp {
        bottom: 24px;
        right: 22px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .floating-ribbon {
        bottom: 92px;
        right: 22px;
        padding: 10px 18px;
        font-size: 13.5px;
    }

    .back-to-top {
        right: 22px;
        bottom: 150px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* 3. Portrait Tablets & Large Phones (< 768px) */
@media (max-width: 767.98px) {
    /* Fluid typography */
    .display-1 { font-size: 2.75rem !important; }
    .display-2 { font-size: 2.45rem !important; }
    .display-3 { font-size: 2.2rem !important; }
    .display-4 { font-size: 1.95rem !important; }
    .display-5 { font-size: 1.75rem !important; }
    .display-6 { font-size: 1.5rem !important; }
    .section-title h1 { font-size: 1.65rem !important; }

    /* Fluid padding and gutters */
    .p-5 {
        padding: 1.75rem !important;
    }
    .px-5 {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
    .py-5 {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important;
    }
    .g-5, .gx-5 {
        --bs-gutter-x: 1.5rem !important;
    }
    .gy-5 {
        --bs-gutter-y: 1.5rem !important;
    }

    /* Subpage hero headers */
    .hero-header,
    .hero-header.bg-primary {
        min-height: 300px !important;
        height: 40vh !important;
    }

    .hero-header h1 {
        font-size: 2rem !important;
    }

    /* Team circle avatars */
    .team-avatar-wrap,
    [style*="width: 150px; height: 150px"] {
        width: 120px !important;
        height: 120px !important;
    }
    [style*="width: 150px; height: 150px"] i {
        font-size: 3.5rem !important;
    }

    /* Table responsive behavior */
    .table {
        font-size: 14px;
    }
}

/* 4. Standard Mobile Phones (< 576px) */
@media (max-width: 575.98px) {
    /* Global layout breathing room */
    .container,
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Navbar compactness */
    .navbar.px-5 {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .navbar-brand-img {
        height: 52px !important;
        max-width: 170px !important;
    }

    .navbar-toggler {
        padding: 6px 10px;
        font-size: 1.1rem;
    }

    .navbar-collapse {
        padding: 15px;
        border-radius: 12px;
        margin-top: 8px;
    }

    /* Fluid typography */
    .display-3 { font-size: 1.85rem !important; }
    .display-4 { font-size: 1.7rem !important; }
    .display-5 { font-size: 1.5rem !important; }
    .display-6 { font-size: 1.3rem !important; }
    .section-title h1 { font-size: 1.45rem !important; }
    .section-title h5 {
        font-size: 0.85rem !important;
        letter-spacing: 1px !important;
    }
    .section-title h5::before,
    .section-title h5::after {
        display: none !important; /* Prevents decor lines from colliding with narrow titles */
    }

    /* Fluid paddings */
    .p-5 {
        padding: 1.25rem !important;
    }
    .px-5 {
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
    }
    .py-5 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }
    .g-5, .gx-5 {
        --bs-gutter-x: 1rem !important;
    }
    .gy-5 {
        --bs-gutter-y: 1rem !important;
    }

    /* Hero carousel */
    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item {
        height: auto !important;
        min-height: 380px !important;
    }

    .carousel-content {
        padding: 20px 14px !important;
        border-radius: 14px !important;
    }

    .carousel-caption h1 {
        font-size: 1.45rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }

    .carousel-caption h5 {
        font-size: 0.8rem !important;
        letter-spacing: 0.5px !important;
    }

    .carousel-caption .btn {
        width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-bottom: 8px !important;
        padding: 10px 16px !important;
        font-size: 13.5px !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 8% !important;
    }

    /* Subpage hero headers */
    .hero-header,
    .hero-header.bg-primary {
        min-height: 240px !important;
        height: auto !important;
        padding: 40px 12px !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-header .row {
        max-width: 96% !important;
        padding: 16px 14px !important;
        border-radius: 14px !important;
    }

    .hero-header h1 {
        font-size: 1.55rem !important;
        margin-bottom: 6px !important;
    }

    .hero-header a.h4,
    .hero-header i.far {
        font-size: 0.85rem !important;
    }

    /* Image containers */
    [style*="min-height: 500px"] {
        min-height: 260px !important;
    }

    /* Form input ergonomics (Prevents iOS zoom) */
    input.form-control,
    select.form-select,
    textarea.form-control {
        font-size: 16px !important;
        padding: 10px 14px !important;
    }

    /* Accordions (FAQs) */
    .accordion-button {
        padding: 12px 14px !important;
        font-size: 0.92rem !important;
        line-height: 1.4 !important;
    }

    .accordion-body {
        padding: 12px 14px !important;
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
    }

    /* SEO Keyword Pills & Badges */
    .seo-filter-pills {
        gap: 6px !important;
    }

    .seo-filter-pills a {
        font-size: 11.5px !important;
        padding: 5px 12px !important;
    }

    .seo-tags {
        gap: 6px !important;
    }

    .seo-tags a {
        font-size: 11.5px !important;
        padding: 5px 10px !important;
    }

    /* Service card headers */
    .service-item h4 {
        font-size: 1.15rem !important;
    }

    /* Clean non-overlapping floating widgets */
    .floating-whatsapp {
        bottom: 16px !important;
        right: 16px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 24px !important;
    }

    .floating-ribbon {
        bottom: 72px !important;
        right: 16px !important;
        padding: 7px 13px !important;
        font-size: 12px !important;
        border-radius: 20px !important;
    }

    .back-to-top {
        bottom: 118px !important;
        right: 16px !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
    }

    /* Touch-device gallery overlay */
    .gallery-overlay {
        opacity: 1 !important;
        background: linear-gradient(0deg, rgba(7, 22, 44, 0.95) 0%, rgba(7, 22, 44, 0.4) 60%, transparent 100%) !important;
        justify-content: flex-end !important;
        padding: 15px !important;
    }

    .gallery-tag {
        margin-bottom: 4px !important;
        font-size: 10.5px !important;
    }

    .gallery-overlay h4 {
        font-size: 1rem !important;
        margin-bottom: 2px !important;
    }

    .gallery-overlay p {
        display: none !important;
    }
}

/* 5. Ultra-Compact Mobile Phones (<= 375px e.g. iPhone SE, Galaxy Fold) */
@media (max-width: 375.98px) {
    .navbar-brand-img {
        height: 44px !important;
        max-width: 145px !important;
    }

    .navbar-toggler {
        padding: 4px 8px !important;
        font-size: 0.95rem !important;
    }

    .display-3 { font-size: 1.6rem !important; }
    .display-4 { font-size: 1.5rem !important; }
    .display-5 { font-size: 1.35rem !important; }
    .display-6 { font-size: 1.2rem !important; }
    .section-title h1 { font-size: 1.3rem !important; }

    .p-5 {
        padding: 1rem !important;
    }
    .p-4 {
        padding: 0.85rem !important;
    }
    .px-5 {
        padding-left: 0.65rem !important;
        padding-right: 0.65rem !important;
    }

    .carousel-caption h1 {
        font-size: 1.3rem !important;
    }

    .hero-header h1 {
        font-size: 1.35rem !important;
    }

    .floating-ribbon {
        padding: 6px 10px !important;
        font-size: 11px !important;
        gap: 5px !important;
    }

    .floating-whatsapp {
        width: 44px !important;
        height: 44px !important;
        font-size: 22px !important;
    }

    .back-to-top {
        width: 32px !important;
        height: 32px !important;
        font-size: 12px !important;
        bottom: 112px !important;
    }
}