/* ===================================
   NKATI Welfare - Complete Stylesheet
   =================================== */

/* Fonts */
@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Keyframe Animations */
@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}

@keyframes floatUpSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #25378C;
    --accent-red: #C0392B;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 26px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    color: var(--white);
}

.btn-primary {
    background-color: var(--accent-red);
}

.btn-primary:hover {
    background-color: #A02D24;
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
}

.btn-blue {
    background-color: var(--primary-blue);
}

.btn-blue:hover {
    background-color: #1a2a6c;
    box-shadow: 0 4px 12px rgba(37, 55, 140, 0.3);
}

/* Section Titles */
.section-title {
    font-size: 60px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* ===================================
   HEADER
   =================================== */
.header {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
}

.header.header-scrolled {
    background-color: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header.header-scrolled .org-name,
.header.header-scrolled .org-subtitle {
    color: var(--accent-red);
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header .container {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5px;
    padding-right: 5px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 95px;
    width: auto;
    display: block;
}

.header-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.org-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: color 0.3s ease-in-out;
}

.org-subtitle {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: color 0.3s ease-in-out;
}


/* ===================================
   HERO SLIDER
   =================================== */
.hero-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 100vh;
    min-height: 550px;
    max-height: none;
    margin-top: 0;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.decorative-vector {
    position: absolute;
    top: -25px;
    right: 0;
    width: auto;
    height: 300px;
    z-index: 2;
}

.decorative-vector-left {
    position: absolute;
    top: 50px;
    left: 0;
    width: 150px;
    height: 500px;
    z-index: 0;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    text-align: left;
}

.slide-content .container {
    padding-left: 0;
    padding-right: 0;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.3;
    max-width: 600px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.slide.active .slide-title {
    animation: slideInFromLeft 0.6s ease forwards;
}

.slide-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 550px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.slide.active .slide-description {
    animation: slideInFromLeft 0.8s ease forwards;
}

.slide.active .btn {
    animation: slideInFromLeft 1s ease forwards;
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-nav img {
    width: 50px;
    height: 50px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.slider-nav:hover img {
    transform: scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 130px;
    right: 130px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    flex: 1;
    height: 7px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    min-width: 80px;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}

.indicator.active {
    background-color: rgba(255, 255, 255, 0.3);
}

.indicator.active::before {
    background-color: rgba(255, 255, 255, 1);
    animation: indicatorProgress 9s linear;
    animation-fill-mode: forwards;
}

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

@keyframes indicatorProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===================================
   ABOUT US SECTION
   =================================== */
.about-us {
    padding: 0 0 40px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    padding-top: 100px;
    align-items: start;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.about-images-left {
    position: relative;
    height: 500px;
}

.vector-bg-left {
    display: none;
    height: 480px;
    object-fit: contain;
    z-index: 0;
    opacity: 1;
}

.circle-image {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.circle-image:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.circle-image.large:hover {
    transform: scale(1.03);
}

.circle-image.medium:hover,
.circle-image.small:hover {
    transform: scale(1.03);
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.circle-image:hover img {
    transform: scale(1.05);
}

.circle-image.large {
    width: 400px;
    height: 400px;
    top: -50px;
    left: -70px;
    transform: none;
    z-index: 1;
    animation: floatUpSlow 6s ease-in-out infinite;
}

.circle-image.medium {
    width: 170px;
    height: 170px;
    top: -65px;
    left: 240px;
    z-index: 3;
    animation: floatDown 5s ease-in-out infinite 1s;
}

.circle-image.small {
    width: 100px;
    height: 100px;
    bottom: 130px;
    left: -70px;
    z-index: 2;
    animation: floatUp 4s ease-in-out infinite 0.5s;
}

.about-text-right {
    padding-left: 0px;
    opacity: 0;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.3s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.section-label {
    display: inline-block;
    color: var(--accent-red);
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.3s;
}

.about-heading {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 100%;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.5s;
}

.about-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.7s;
}

/* Our Mission Section */
.mission-content-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}

.mission-text-left {
    padding-right: 60px;
    padding-top: 0px;
    margin-top: 0px;
    opacity: 0;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.5s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.mission-heading {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.7s;
}

.mission-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.9s;
}

.mission-images-right {
    position: relative;
    height: 500px;
}

.vector-bg-right {
    position: absolute;
    right: -700px;
    top: 30%;
    transform: translateY(-50%) scaleX(-1);
    width: 550px;
    height: 480px;
    object-fit: contain;
    z-index: 0;
    opacity: 1;
    display: none;
}

.circle-image.large-right {
    width: 260px;
    height: 260px;
    top: -10px;
    right: -20px;
    z-index: 1;
    animation: floatDown 5.5s ease-in-out infinite;
}

.circle-image.medium-right {
    width: 230px;
    height: 230px;
    top: 150px;
    right: 160px;
    z-index: 2;
    animation: floatUp 6.5s ease-in-out infinite 1.5s;
}

.vector-middle {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: auto;
    z-index: 0;
}

/* Decorative Corner Vectors */
.vector-corner-top-right {
    position: absolute;
    top: -140px;
    right: 5px;
    width: 400px;
    height: auto;
    z-index: 2;
    opacity: 0.9;
    object-fit: contain;
    z-index: 0;
    opacity: 1;
    transform: rotate(90deg);
}

.vector-corner-bottom-left {
    position: absolute;
    bottom: -50px;
    left: -100px;
    width: 350px;
    height: 350px;
    object-fit: contain;
    z-index: 0;
    opacity: 1;
    transform: rotate(180deg);
}

/* ===================================
   MISSION SECTION
   =================================== */
.mission {
    padding: 80px 0;
    background-color: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-content {
    padding-right: 20px;
}

.mission-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-list {
    margin-top: 30px;
}

.mission-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.mission-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 20px;
}

.mission-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: 40px 0 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-bg-image {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
    padding: 30px;
    pointer-events: none;
}

.service-overlay h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
}

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
    position: relative;
    padding: 80px;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 55, 140, 0.85) 0%, rgba(37, 55, 140, 0.75) 50%, rgba(37, 55, 140, 0.65) 100%);
}

.cta-vector-red {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: auto;
    z-index: 1;
    opacity: 0.9;
}

.cta-content-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 100%;
    padding: 0 40px 0 80px;
}

.cta-left {
    padding-right: 20px;
}

.cta-heading {
    font-size: 42px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    margin: 0;
}

.cta-right {
    padding-left: 20px;
}

.cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-red {
    background-color: var(--accent-red);
    color: var(--white);
}

.btn-red:hover {
    background-color: #a52f23;
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

/* ===================================
   WHY CHOOSE SECTION
   =================================== */
.why-choose {
    padding: 80px 0;
    background-color: #FFFFFF;
    position: relative;
    overflow: visible;
}

.why-vector-right-bottom {
    position: absolute;
    bottom: -140px;
    right: 0;
    width: auto;
    height: 400px;
    z-index: 1;
    pointer-events: none;
}

.why-choose-intro,
.why-choose .container > * {
    position: relative;
    z-index: 2;
}

/* Part 1: Why Choose Intro Section */
.why-choose-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
    background-color: #FFFFFF;
    padding: 60px 0;
    border-radius: 0;
}

.why-intro-left {
    padding-right: 30px;
}

.why-intro-text {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.8;
    padding-left: 20px;
    margin-bottom: 15px;
    position: relative;
}

.why-intro-text:first-of-type::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    width: 3px;
    height: 150%;
    background-color: var(--accent-red);
}

.why-intro-text:last-of-type {
    margin-bottom: 0;
}

.why-intro-right {
    position: relative;
}

.why-intro-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: none;
}

.why-vector-decoration {
    display: none;
}

.why-vector-red-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: auto;
    z-index: 3;
}

.why-vector-blue-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: auto;
    z-index: 3;
}

/* Part 2: Income and Expenditure Section */
.income-expenditure-section {
    margin-bottom: 50px;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.income-expenditure-section::before {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(37, 55, 140, 0.20) 100%);
    z-index: 0;
}

.income-expenditure-section > * {
    position: relative;
    z-index: 1;
}

.income-expenditure-section .financial-table-wrapper {
    box-shadow: none !important;
    background-color: transparent !important;
    border: none;
    border-radius: 0;
}

.income-expenditure-section .income-column,
.income-expenditure-section .expenditure-column {
    box-shadow: none !important;
}

.income-expenditure-section .financial-column {
    background-color: transparent !important;
    border: 1.5px solid #D1D5DB;
    border-radius: 0;
    overflow: hidden;
}

.income-expenditure-section .financial-table {
    background-color: transparent !important;
}

.income-expenditure-section .financial-table tr {
    background-color: transparent !important;
    border-bottom: 1.5px solid #D1D5DB;
}

.income-expenditure-section .financial-table tr:last-child {
    border-bottom: none;
}

.income-expenditure-section .financial-table td {
    background-color: transparent !important;
    padding: 12px 15px;
}

.income-expenditure-section .expenditure-table td:nth-child(2) {
    border-right: 1.5px solid #D1D5DB;
}

.income-expenditure-section .financial-table tr.total-row {
    background-color: transparent !important;
    border-top: 1.5px solid #D1D5DB;
}

.financial-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 25px;
}

.financial-table-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.financial-column {
    background-color: transparent;
    width: 100%;
}

.expenditure-column {
    margin-top: 20px;
}

.column-header {
    padding: 12px 20px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.income-header {
    background-color: var(--primary-blue);
    color: var(--white);
}

.expenditure-header {
    background-color: var(--primary-blue);
    color: var(--white);
}

.financial-table {
    width: 100%;
    border-collapse: collapse;
}

.financial-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.financial-table tr:last-child {
    border-bottom: none;
}

.financial-table td {
    padding: 10px 15px;
    font-size: 12px;
    color: #2d3748;
}

.financial-table td.amount {
    text-align: right;
    font-weight: 500;
}

.financial-table tr.total-row {
    background-color: #f7fafc;
}

.financial-table tr.total-row td {
    font-weight: 700;
    color: var(--primary-blue);
    padding: 12px 15px;
}

.financial-table tr.total-row td.amount {
    color: #000000;
}

/* Income table with 2 columns */
.income-table {
    display: table;
    width: 100%;
}

.income-table tr {
    display: table-row;
}

.income-table td:first-child {
    width: 70%;
}

.income-table td:last-child {
    width: 30%;
}

/* Expenditure table with 4 columns */
.expenditure-table {
    display: table;
    width: 100%;
}

.expenditure-table tr {
    display: table-row;
}

.expenditure-table td {
    display: table-cell;
    width: 25%;
    vertical-align: middle;
}

/* Part 3: Balance Sheet Section */
.balance-sheet-section {
    margin-bottom: 50px;
}

.balance-sheet-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.balance-sheet-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 20px;
}

.balance-sheet-row:last-child {
    margin-bottom: 0;
}

.balance-column {
    background-color: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.balance-column .financial-table {
    flex: 1;
}

.balance-column:first-child {
    border: 1.5px solid #D1D5DB;
}

.balance-column:nth-child(2) {
    border-top: 1.5px solid #D1D5DB;
    border-right: 1.5px solid #D1D5DB;
    border-bottom: 1.5px solid #D1D5DB;
}

.balance-sheet-section .financial-table {
    background-color: transparent !important;
}

.balance-sheet-section .financial-table tr {
    background-color: transparent !important;
    border-bottom: 1.5px solid #D1D5DB;
}

.balance-sheet-section .financial-table tr:last-child {
    border-bottom: none;
}

.balance-sheet-section .financial-table td {
    background-color: transparent !important;
    padding: 12px 15px;
}

.balance-sheet-section .financial-table tr.total-row {
    background-color: transparent !important;
    border-top: 1.5px solid #D1D5DB;
}

.balance-total-row {
    grid-column: 1 / -1;
    border-left: 1.5px solid #D1D5DB;
    border-right: 1.5px solid #D1D5DB;
    border-bottom: 1.5px solid #D1D5DB;
    border-top: none;
}

.balance-total-row .financial-table {
    width: 100%;
}

.balance-total-row .financial-table tr.total-row {
    border-top: none;
}

.blue-header {
    background-color: var(--primary-blue);
    color: var(--white);
}

.red-header {
    background-color: var(--accent-red);
    color: var(--white);
}

/* Part 4: Charts Section */
.charts-section {
    margin-bottom: 40px;
}

.charts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.chart-container {
    background-color: var(--white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.chart-header {
    padding: 35px 20px 0 20px;
    margin-bottom: 30px;
}

.chart-label {
    font-size: 13px;
    color: var(--accent-red);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

.chart-value {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.chart-placeholder {
    width: 100%;
    height: 240px;
    padding: 0 15px 15px 15px;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

/* Chart SVG Animation */
.chart-svg rect {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-container.animate-in .chart-svg rect {
    clip-path: inset(0 0 0 0);
}

.chart-svg path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-container.animate-in .chart-svg path {
    stroke-dashoffset: 0;
}

/* ===================================
   FINANCIALS SECTION
   =================================== */
.financials {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.financials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.financial-table {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.table-title {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: var(--primary-blue);
    color: var(--white);
}

th, td {
    padding: 12px 15px;
    text-align: left;
}

th {
    font-weight: 600;
}

tbody tr {
    border-bottom: 1px solid var(--border-gray);
}

tbody tr:hover {
    background-color: var(--light-gray);
}

.income-row, .expense-row, .asset-row, .liability-row {
    background-color: var(--light-gray);
    font-weight: 600;
}

.total-row {
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 700;
}

.surplus-row, .equity-row {
    background-color: var(--accent-red);
    color: var(--white);
    font-weight: 700;
}

.financials-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 30px;
    font-style: italic;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: visible;
}

.gallery-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(6, 110px);
    gap: 15px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

/* Column 1: 2 images stacked 50/50 */
.gallery-item-1 {
    grid-column: 1;
    grid-row: 1 / 4;
}

.gallery-item-6 {
    grid-column: 1;
    grid-row: 4 / 7;
}

/* Column 2 area - Row 1 (33.3%): gallery3 and gallery4 side by side */
.gallery-item-3 {
    grid-column: 2;
    grid-row: 1 / 3;
}

.gallery-item-4 {
    grid-column: 3;
    grid-row: 1 / 3;
}

/* Column 2 area - Row 2 (33.3%): 1 wide image */
.gallery-item-2 {
    grid-column: 2 / 4;
    grid-row: 3 / 5;
}

/* Column 2 area - Row 3 (33.3%): 2 images side by side */
.gallery-item-5 {
    grid-column: 2;
    grid-row: 5 / 7;
}

.gallery-item-7 {
    grid-column: 3;
    grid-row: 5 / 7;
}

.gallery-vector-blue {
    display: none;
    z-index: 1;
    pointer-events: none;
}

.gallery-vector-right {
    position: absolute;
    top: -50px;
    right: 0;
    width: auto;
    height: 350px;
    z-index: 0;
    pointer-events: none;
}

.gallery-vector-left {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: auto;
    height: 400px;
    z-index: 0;
    pointer-events: none;
}

/* ===================================
   CERTIFICATIONS SECTION
   =================================== */
.certifications {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: visible;
}

.cert-vector-left {
    position: absolute;
    top: -140px;
    left: 0;
    width: auto;
    height: 400px;
    z-index: 0;
    pointer-events: none;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.cert-card {
    background-color: var(--white);
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-badge {
    padding: 30px 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    position: relative;
}

.cert-badge::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: -65px;
    width: 1px;
    background-color: #E5E7EB;
}

.cert-card:last-child .cert-badge::after {
    display: none;
}

.cert-badge img {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cert-title {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 600;
    margin-top: 0;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.cert-subtitle {
    font-size: 11px;
    color: #6B7280;
    margin-bottom: 20px;
    padding: 0 15px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.cert-image {
    padding: 20px;
}

.cert-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 15px;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    display: block;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.testimonial-date {
    display: block;
    font-size: 12px;
    color: #9CA3AF;
}

.stars {
    color: #F59E0B;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.stars span {
    display: inline-block;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.animate-in .stars span {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card.animate-in .stars span:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card.animate-in .stars span:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card.animate-in .stars span:nth-child(3) { transition-delay: 0.3s; }
.testimonial-card.animate-in .stars span:nth-child(4) { transition-delay: 0.4s; }
.testimonial-card.animate-in .stars span:nth-child(5) { transition-delay: 0.5s; }

.testimonial-text {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   CONTACT US BANNER
   =================================== */
.contact-us-banner-wrapper {
    padding: 0 0 80px;
    background-color: #F9FAFB;
}

.contact-us-banner {
    position: relative;
    padding: 45px 80px;
    overflow: hidden;
    border-radius: 24px;
}

.contact-us-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-us-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 55, 140, 0.85);
}

.contact-us-vector-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 85%;
    z-index: 1;
}

.contact-us-vector-red {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: 70%;
    z-index: 1;
}

.contact-us-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-us-label {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-us-heading {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-us-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   OLD CONTACT BANNER (Keep for reference)
   =================================== */
.contact-banner-wrapper {
    padding-bottom: 80px;
    background-color: #F9FAFB;
}

.contact-banner {
    position: relative;
    background: linear-gradient(135deg, #1E3A8A 0%, #4169E1 100%);
    padding: 45px 60px;
    text-align: center;
    overflow: hidden;
    border-radius: 24px;
}

.contact-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.92) 0%, rgba(65, 105, 225, 0.92) 100%);
}

.contact-banner-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-label {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-banner-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-banner-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-vector-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: auto;
    opacity: 0.7;
    z-index: 3;
}

.contact-vector-red {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 280px;
    height: auto;
    opacity: 0.7;
    z-index: 3;
}

/* ===================================
   FOOTER CTA
   =================================== */
.footer-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2a6c 100%);
    padding: 80px 0;
    text-align: center;
}

.footer-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.footer-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: #25378C;
    color: var(--white);
    padding: 45px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    align-items: start;
}

/* Left Column - Brand */
.footer-col-brand {
    display: flex;
    flex-direction: column;
}

/* Align all column headings */
.footer-col-bank,
.footer-col-location {
    display: flex;
    flex-direction: column;
}

.footer-brand-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-logo-box {
    width: 120px;
    height: 160px;
    border: none;
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-brand-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 15px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-clinic-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1.3;
}

.footer-managed {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    margin-top: 10px;
}

.footer-social {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social-icons a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-social-icons img {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: block;
}

/* Middle Column - Bank Details */
.footer-col-bank {
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    padding-top: 15px;
}

.footer-bank-info {
    margin-top: 10px;
}

.footer-bank-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-bank-info strong {
    color: var(--white);
    font-weight: 600;
}

/* Right Column - Location */
.footer-col-location {
}

.footer-map {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 10px;
    height: 220px;
    position: relative;
}

.footer-map img {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.footer-map iframe {
    position: absolute;
    border: 0;
    display: block;
    /* Oversize + offset to crop Google logo (bottom-left) and controls (top/right) */
    top: -60px;
    left: -60px;
    width: calc(100% + 120px);
    height: calc(100% + 120px);
    pointer-events: none;
}

.footer-map-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    text-decoration: none;
    cursor: pointer;
}

.footer-map-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a73e8;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.15s ease, background 0.15s ease;
}

.footer-map-link:hover .footer-map-btn {
    background: #1765c1;
    transform: translateY(-1px);
}

/* Contact Information Bar */
.footer-contact-bar {
    padding: 0 0 30px;
    display: flex;
    align-items: center;
    gap: 35px;
}

.footer-contact-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-contact-items {
    display: flex;
    gap: 35px;
    align-items: center;
    flex: 1;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
}

.footer-contact-item span {
    line-height: 1.4;
    white-space: nowrap;
}

.footer-contact-item:last-child span {
    white-space: normal;
    max-width: 400px;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    transform: scale(1.15);
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    /* Hero Slider Tablet */
    .hero-slider {
        height: 100vh;
        min-height: 500px;
        max-height: none;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-description {
        font-size: 15px;
    }

    /* CTA Banner Tablet */
    .cta-banner {
        padding: 60px 40px;
    }

    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }

    .cta-heading {
        font-size: 36px;
        text-align: center;
    }

    .cta-text {
        font-size: 15px;
        text-align: center;
    }

    .cta-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-vector-red {
        width: 110px;
    }

    /* Why Choose Tablet */
    .why-choose-intro {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 50px 30px;
        margin-bottom: 60px;
    }

    .why-intro-left {
        padding-right: 0;
        text-align: center;
    }

    .why-intro-text {
        font-size: 13px;
        padding-left: 0;
    }

    .why-intro-right {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-vector-red-top,
    .why-vector-blue-bottom {
        width: 100px;
    }

    .why-vector-right-bottom {
        width: 140px;
    }

    .about-content-wrapper,
    .mission-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images-left,
    .mission-images-right {
        height: 400px;
        margin: 0 auto;
        max-width: 500px;
    }

    .about-text-right,
    .mission-text-left {
        padding: 0 20px;
    }

    .about-heading,
    .mission-heading {
        font-size: 36px;
    }

    .circle-image.large {
        width: 280px;
        height: 280px;
        left: 0px;
        top: 20px;
    }

    .circle-image.medium {
        width: 200px;
        height: 200px;
        right: 0px;
        top: 10px;
        left: auto;
    }

    .circle-image.small {
        width: 120px;
        height: 120px;
        bottom: 50px;
        left: 10px;
    }

    .circle-image.large-right {
        width: 280px;
        height: 280px;
        right: 0px;
        top: 30px;
    }

    .circle-image.medium-right {
        width: 200px;
        height: 200px;
        left: 30px;
        top: 160px;
        right: auto;
    }

    /* Decorative Vectors - About Section */
    .vector-middle {
        width: 180px;
    }

    .mission-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .financials-grid {
        grid-template-columns: 1fr;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 60px 40px;
    }

    .cta-title {
        font-size: 36px;
    }

    /* Contact Us Banner */
    .contact-us-banner {
        padding: 40px 50px !important;
    }

    .contact-us-heading {
        font-size: 36px;
    }

    .contact-us-vector-blue,
    .contact-us-vector-red {
        width: 140px;
    }

    /* Charts */
    .charts-wrapper {
        gap: 25px;
    }

    .chart-value {
        font-size: 34px;
    }

    /* Footer */
    .footer-contact-bar {
        flex-wrap: wrap;
    }

    .footer-contact-items {
        flex-wrap: wrap;
    }

    .footer-grid {
        gap: 35px;
    }

    /* Decorative Vectors */
    .decorative-vector {
        height: 250px;
    }

    .decorative-vector-left {
        width: 130px;
        height: 450px;
    }

    .vector-middle {
        width: 200px;
    }

    /* Why Choose */
    .stat-card {
        padding: 30px;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    /* Hero Slider Mobile */
    .hero-slider {
        min-height: 450px;
        max-height: none;
        height: 100vh;
        margin-top: 0;
    }

    .slide-content .container {
        padding-left: 75px;
        padding-right: 75px;
    }

    .slide-title {
        font-size: 26px;
        line-height: 1.3;
        max-width: 90%;
    }

    .slide-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
        max-width: 90%;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .slider-nav img {
        width: 44px;
        height: 44px;
    }

    .decorative-vector {
        height: 150px;
        top: -15px;
    }

    .slider-indicators {
        left: 20px;
        right: 20px;
        bottom: 20px;
        gap: 10px;
    }

    .indicator {
        min-width: 60px;
        height: 6px;
        border-radius: 8px;
    }

    /* CTA Banner Mobile */
    .cta-banner {
        padding: 50px 20px;
    }

    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .cta-left,
    .cta-right {
        padding: 0;
    }

    .cta-heading {
        font-size: 28px;
        text-align: center;
    }

    .cta-text {
        font-size: 14px;
        text-align: center;
    }

    .cta-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-vector-red {
        width: 100px;
        height: auto;
    }

    /* Why Choose Section Mobile */
    .why-choose {
        padding: 60px 0;
    }

    .why-choose .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .why-choose-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
        padding: 40px 20px;
    }

    .why-intro-left {
        padding-right: 0;
        text-align: center;
    }

    .why-intro-text {
        font-size: 14px;
        padding-left: 0;
    }

    .why-intro-text:first-of-type::before {
        display: none;
    }

    .why-intro-right {
        max-width: 400px;
        margin: 0 auto;
    }

    .why-intro-image {
        width: 100%;
        height: auto;
    }

    .why-vector-red-top,
    .why-vector-blue-bottom {
        width: 80px;
        height: auto;
    }

    .why-vector-right-bottom {
        width: 120px;
        height: auto;
    }

    /* Financial tables in why choose */
    .financial-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .income-expenditure-section .financial-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .financial-column {
        min-width: 100%;
    }

    .income-expenditure-section .financial-column {
        min-width: 650px;
    }

    .column-header {
        font-size: 13px;
        padding: 10px;
        white-space: nowrap;
    }

    .expenditure-table {
        min-width: 650px;
    }

    /* Hide red headers on mobile */
    .red-header {
        display: none;
    }

    /* Balance Sheet Responsive */
    .balance-sheet-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .balance-column {
        border: 1.5px solid #D1D5DB !important;
        margin-bottom: 0;
    }

    .balance-column:first-child {
        border-bottom: none !important;
    }

    .balance-column:nth-child(2) {
        border-top: none !important;
    }

    .balance-total-row {
        border: 1.5px solid #D1D5DB !important;
        border-top: none !important;
    }

    /* About Us Images Fix */
    .about-images-left {
        overflow: visible;
        position: relative;
    }

    .about-us {
        padding: 50px 0;
        overflow: visible;
    }

    .about-content-wrapper {
        margin-bottom: 40px;
        overflow: visible;
        padding-top: 60px;
    }

    .mission-content-wrapper {
        gap: 40px;
    }

    .about-images-left,
    .mission-images-right {
        height: 280px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .about-heading,
    .mission-heading {
        font-size: 30px;
        line-height: 1.3;
    }

    .about-description,
    .mission-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .circle-image.large {
        width: 180px;
        height: 180px;
        left: 15px;
        top: 30px;
    }

    .circle-image.medium {
        width: 110px;
        height: 110px;
        left: 155px;
        top: 45px;
        right: auto;
    }

    .circle-image.small {
        width: 70px;
        height: 70px;
        bottom: 55px;
        left: 12px;
    }

    .circle-image.large-right {
        width: 160px;
        height: 160px;
        right: 25px;
        top: 12px;
        bottom: auto;
    }

    .circle-image.medium-right {
        width: 160px;
        height: 160px;
        left: 65px;
        top: 82px;
        right: auto;
    }

    /* Decorative Vectors */
    .about-us .decorative-vector {
        height: 200px;
    }

    .about-us .decorative-vector-left {
        width: 110px;
        height: 380px;
    }

    .vector-middle {
        width: 160px;
        transform: translate(-50%, -50%) rotate(6deg);
    }

    .cert-vector-left {
        height: 220px;
        top: -80px;
    }

    .decorative-curve-left,
    .decorative-curve-right {
        display: none;
    }

    .header {
        padding: 8px 0;
    }

    .header .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-brand {
        gap: 10px;
    }

    .logo-image {
        height: 60px;
    }

    .org-name {
        font-size: 12px;
        letter-spacing: 0.3px;
    }

    .org-subtitle {
        font-size: 11px;
        letter-spacing: 0.2px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 6px;
        min-width: auto;
    }

    .section-title {
        font-size: 42px;
    }

    .services-grid,
    .certifications-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-auto-rows: 220px;
    }

    .gallery-tall {
        grid-row: span 1;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-title, .footer-cta-title {
        font-size: 28px;
    }

    /* CTA Banner Tablet */
    .cta-banner {
        padding: 50px 30px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 15px;
    }

    /* Contact Us Banner Tablet */
    .contact-us-banner {
        padding: 35px 40px !important;
    }

    .contact-us-heading {
        font-size: 32px;
    }

    .contact-us-text {
        font-size: 15px;
    }

    .contact-us-vector-blue,
    .contact-us-vector-red {
        width: 120px;
        height: auto;
    }

    /* Charts Tablet */
    .charts-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .chart-value {
        font-size: 32px;
    }

    .chart-placeholder {
        height: 220px;
    }

    /* Financial Tables Tablet */
    .financial-table {
        font-size: 12px;
    }

    .financial-table td {
        padding: 10px 12px;
    }

    .table-header {
        padding: 12px;
        font-size: 14px;
    }

    /* Footer Tablet */
    .footer-contact-bar {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-contact-items {
        gap: 20px;
    }

    .footer-contact-item {
        flex: 1;
        min-width: 200px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-logo-box img {
        height: 80px;
    }

    .footer-clinic-name {
        font-size: 16px;
    }

    /* Decorative Vectors Tablet */
    .decorative-vector-left {
        width: 120px;
        height: 400px;
    }

    .vector-middle {
        width: 180px;
    }

    /* Why Choose Section */
    .why-choose-grid {
        gap: 30px;
    }

    .stat-card {
        padding: 25px;
    }
}

@media (max-width: 480px) and (min-width: 390px) {
    /* Hero Slider Medium Mobile (iPhone 12, Pixel 7, etc.) */
    .hero-slider {
        min-height: 420px;
        max-height: none;
        height: 100vh;
        margin-top: 0;
    }

    .slide-content .container {
        padding-left: 68px;
        padding-right: 68px;
    }

    .slide-title {
        font-size: 24px;
        line-height: 1.25;
        max-width: 92%;
    }

    .slide-description {
        font-size: 15px;
        line-height: 1.45;
        margin-bottom: 20px;
        max-width: 92%;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-nav img {
        width: 46px;
        height: 46px;
    }

    .slider-indicators {
        left: 20px;
        right: 20px;
        bottom: 20px;
        gap: 9px;
    }

    .indicator {
        min-width: 50px;
        height: 6px;
        border-radius: 6px;
    }

    .decorative-vector {
        height: 140px;
        top: -12px;
    }

    /* Header Medium Mobile */
    .header {
        padding: 7px 0;
    }

    .header .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .header-brand {
        gap: 9px;
    }

    .logo-image {
        height: 55px;
    }

    .org-name {
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .org-subtitle {
        font-size: 10px;
        letter-spacing: 0.2px;
    }

    .btn {
        padding: 9px 19px;
        font-size: 12px;
        border-radius: 6px;
        min-width: auto;
    }

    /* About Section Medium Mobile */
    .about-us {
        padding: 45px 0;
    }

    .about-content-wrapper {
        padding-top: 55px;
        margin-bottom: 35px;
    }

    .mission-content-wrapper {
        gap: 35px;
    }

    .about-images-left,
    .mission-images-right {
        height: 270px;
        max-width: 95%;
        margin: 0 auto;
    }

    .about-heading,
    .mission-heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .about-description,
    .mission-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .circle-image.large {
        width: 170px;
        height: 170px;
        left: 12px;
        top: 28px;
    }

    .circle-image.medium {
        width: 105px;
        height: 105px;
        left: 148px;
        top: 42px;
        right: auto;
    }

    .circle-image.small {
        width: 65px;
        height: 65px;
        bottom: 52px;
        left: 10px;
    }

    .circle-image.large-right {
        width: 150px;
        height: 150px;
        right: 22px;
        top: 10px;
    }

    .circle-image.medium-right {
        width: 150px;
        height: 150px;
        left: 58px;
        top: 78px;
    }

    .about-us .decorative-vector {
        height: 180px;
    }

    .about-us .decorative-vector-left {
        width: 105px;
        height: 360px;
    }

    .vector-middle {
        width: 150px;
        transform: translate(-50%, -50%) rotate(6deg);
    }

    .cert-vector-left {
        height: 200px;
        top: -70px;
    }

    .why-vector-right-bottom {
        width: 110px;
        height: auto;
    }
}

@media (max-width: 389px) {
    /* Hero Slider Small Mobile */
    .hero-slider {
        min-height: 400px;
        max-height: none;
        height: 100vh;
        margin-top: 0;
    }

    .slide-content .container {
        padding-left: 65px;
        padding-right: 65px;
    }

    .slide-title {
        font-size: 22px;
        line-height: 1.2;
        max-width: 95%;
    }

    .slide-description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 18px;
        max-width: 95%;
    }

    .slider-prev {
        left: 8px;
    }

    .slider-next {
        right: 8px;
    }

    .slider-nav img {
        width: 44px;
        height: 44px;
    }

    .slider-indicators {
        left: 18px;
        right: 18px;
        bottom: 18px;
        gap: 8px;
    }

    .indicator {
        min-width: 45px;
        height: 5px;
        border-radius: 6px;
    }

    .decorative-vector {
        height: 130px;
        top: -10px;
    }

    /* Header Small Mobile */
    .header {
        padding: 4px 0;
    }

    .header .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-brand {
        gap: 6px;
    }

    .logo-image {
        height: 42px;
    }

    .org-name {
        font-size: 9px;
        letter-spacing: 0.2px;
    }

    .org-subtitle {
        font-size: 8px;
        letter-spacing: 0.2px;
    }

    /* CTA Banner Small Mobile */
    .cta-banner {
        padding: 40px 15px;
    }

    .cta-content-wrapper {
        padding: 0 10px;
        gap: 25px;
    }

    .cta-heading {
        font-size: 22px;
    }

    .cta-text {
        font-size: 13px;
    }

    .cta-vector-red {
        width: 80px;
    }

    /* Why Choose Small Mobile */
    .why-choose-intro {
        padding: 30px 15px;
        gap: 30px;
        margin-bottom: 40px;
    }

    .why-intro-text {
        font-size: 13px;
    }

    .why-intro-text:first-of-type::before {
        display: none;
    }

    .why-vector-red-top,
    .why-vector-blue-bottom {
        width: 60px;
    }

    .why-vector-right-bottom {
        width: 100px;
        height: auto;
    }

    .column-header {
        font-size: 12px;
        padding: 8px;
        white-space: normal;
    }

    /* Hide red headers on small mobile */
    .red-header {
        display: none;
    }

    /* Financial Tables Mobile */
    .income-expenditure-section {
        padding: 30px 0;
    }

    .income-expenditure-section .financial-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .income-expenditure-section .financial-column {
        min-width: 650px;
    }

    .balance-sheet-section {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .financial-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .financial-column {
        min-width: 100%;
    }

    .financial-table {
        width: 100%;
        min-width: 300px;
    }

    .expenditure-table {
        min-width: 600px;
    }

    .financial-table td {
        font-size: 11px;
        padding: 8px 10px;
        word-break: break-word;
    }

    .financial-table td:first-child {
        max-width: 180px;
    }

    /* Balance Sheet Mobile */
    .balance-sheet-row {
        grid-template-columns: 1fr;
        margin-bottom: 0;
    }

    .balance-column {
        width: 100%;
    }

    .balance-sheet-section {
        overflow-x: auto;
    }

    /* About Images Mobile */
    .about-images-left,
    .mission-images-right {
        overflow: visible;
        margin: 0 auto;
    }

    .header {
        padding: 4px 0;
    }

    .header .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .header-brand {
        gap: 6px;
    }

    .logo-image {
        height: 45px;
    }

    .org-name {
        font-size: 8px;
        letter-spacing: 0.3px;
    }

    .org-subtitle {
        font-size: 7px;
        letter-spacing: 0.3px;
    }

    .btn {
        padding: 7px 17px;
        font-size: 11px;
        border-radius: 5px;
        min-width: auto;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 40px 20px;
    }

    .cta-content {
        padding: 0 10px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-description {
        font-size: 13px;
    }

    /* Contact Us Banner */
    .contact-us-banner {
        padding: 30px 20px !important;
    }

    .contact-us-heading {
        font-size: 22px;
    }

    .contact-us-text {
        font-size: 13px;
    }

    .contact-us-vector-blue,
    .contact-us-vector-red {
        width: 80px;
        height: auto;
    }

    /* Charts */
    .charts-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .chart-container {
        padding: 0;
    }

    .chart-header {
        padding: 20px 15px 0 15px;
        margin-bottom: 20px;
    }

    .chart-value {
        font-size: 28px;
    }

    .chart-placeholder {
        height: 200px;
        padding: 0 10px 10px 10px;
    }

    /* Financial Tables */
    .financial-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .financial-table {
        min-width: 300px;
        font-size: 11px;
    }

    .financial-table td {
        padding: 8px 10px;
        font-size: 11px;
    }

    .financial-title {
        font-size: 14px;
        padding: 0 15px;
        line-height: 1.4;
    }

    .financial-section {
        margin-bottom: 30px;
    }

    .table-header {
        padding: 10px;
        font-size: 13px;
    }

    /* Balance Sheet */
    .balance-sheet-wrapper {
        flex-direction: column;
    }

    .balance-column {
        border: 1.5px solid #D1D5DB !important;
        margin-bottom: 20px;
    }

    .balance-column:first-child {
        margin-bottom: 0;
    }

    .balance-total-row {
        border: 1.5px solid #D1D5DB !important;
    }

    /* Income/Expenditure */
    .income-expenditure-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    /* Footer */
    .footer-contact-bar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .footer-contact-items {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .footer-contact-item {
        width: 100%;
    }

    .footer-contact-item span {
        white-space: normal;
    }

    .footer-logo-box img {
        height: 60px;
    }

    .footer-clinic-name {
        font-size: 14px;
    }

    .footer-managed {
        font-size: 11px;
    }

    .footer-col h3 {
        font-size: 16px;
    }

    .footer-col p,
    .footer-col a {
        font-size: 12px;
    }

    /* Decorative Vectors */
    .decorative-vector-left {
        width: 100px;
        height: 350px;
    }

    .vector-middle {
        width: 150px;
    }

    /* About/Mission responsive adjustments */
    .about-us {
        padding: 40px 0;
    }

    .about-content-wrapper {
        padding-top: 50px;
        margin-bottom: 30px;
    }

    .mission-content-wrapper {
        padding-top: 50px;
        gap: 30px;
    }

    .about-images-left,
    .mission-images-right {
        height: 250px;
        max-width: 95%;
        margin: 0 auto;
    }

    .about-heading,
    .mission-heading {
        font-size: 26px;
        line-height: 1.3;
    }

    .about-description,
    .mission-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .circle-image.large {
        width: 150px;
        height: 150px;
        left: 10px;
        top: 25px;
    }

    .circle-image.medium {
        width: 95px;
        height: 95px;
        left: 132px;
        top: 35px;
        right: auto;
    }

    .circle-image.small {
        width: 60px;
        height: 60px;
        bottom: 48px;
        left: 8px;
    }

    .circle-image.large-right {
        width: 135px;
        height: 135px;
        right: 18px;
        top: 12px;
    }

    .circle-image.medium-right {
        width: 135px;
        height: 135px;
        left: 45px;
        top: 85px;
    }

    .about-us .decorative-vector {
        height: auto;
    }

    .about-us .decorative-vector-left {
        width: 11vw;
        max-width: 62px;
        min-width: 42px;
    }

    .vector-middle {
        width: 140px;
        transform: translate(-50%, -50%) rotate(6deg);
    }

    .cert-vector-left {
        height: 180px;
        top: -60px;
    }
}

@media (max-width: 375px) {
    /* Extra Small Devices */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Hero Slider Extra Small */
    .hero-slider {
        min-height: 380px;
        max-height: none;
        height: 100vh;
        margin-top: 0;
    }

    .slide-content .container {
        padding-left: 65px;
        padding-right: 65px;
    }

    .slide-title {
        font-size: 20px;
        line-height: 1.2;
        max-width: 95%;
    }

    .slide-description {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 15px;
        max-width: 95%;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-nav img {
        width: 44px;
        height: 44px;
    }

    .slider-indicators {
        left: 16px;
        right: 16px;
        bottom: 16px;
        gap: 6px;
    }

    .indicator {
        min-width: 40px;
        height: 5px;
        border-radius: 5px;
    }

    .decorative-vector {
        height: 110px;
        top: -8px;
    }

    /* CTA Banner Extra Small */
    .cta-banner {
        padding: 30px 12px;
    }

    .cta-content-wrapper {
        padding: 0 8px;
        gap: 20px;
    }

    .cta-heading {
        font-size: 20px;
        line-height: 1.3;
    }

    .cta-text {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .cta-vector-red {
        width: 70px;
    }

    /* Why Choose Extra Small */
    .why-choose-intro {
        padding: 25px 12px;
        gap: 25px;
        margin-bottom: 30px;
    }

    .why-intro-text {
        font-size: 12px;
        line-height: 1.6;
    }

    .why-intro-text:first-of-type::before {
        display: none;
    }

    .section-label {
        font-size: 11px;
    }

    .section-title {
        font-size: 30px;
    }

    .why-vector-red-top,
    .why-vector-blue-bottom {
        width: 50px;
    }

    .why-vector-right-bottom {
        width: 80px;
        height: auto;
    }

    .financial-column {
        min-width: 260px;
    }

    .income-expenditure-section .financial-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .income-expenditure-section .financial-column {
        min-width: 550px;
    }

    .column-header {
        font-size: 11px;
        padding: 6px;
        white-space: normal;
        line-height: 1.3;
    }

    /* Hide red headers on extra small mobile */
    .red-header {
        display: none;
    }

    /* Financial Tables Extra Small */
    .financial-table {
        min-width: 100%;
        font-size: 10px;
    }

    .financial-table td {
        font-size: 10px;
        padding: 6px 8px;
    }

    .financial-table td:first-child {
        max-width: 150px;
        font-size: 9px;
    }

    .financial-table td.amount {
        white-space: nowrap;
    }

    .expenditure-table {
        min-width: 550px;
    }

    /* Balance Sheet Extra Small */
    .balance-sheet-section {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .balance-sheet-wrapper {
        min-width: 300px;
    }

    /* About Images Extra Small */
    .about-us {
        overflow: visible;
    }

    .about-content-wrapper {
        overflow: visible;
    }

    /* Header Extra Small */
    .header {
        padding: 5px 0;
    }

    .header .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-brand {
        gap: 7px;
    }

    .logo-image {
        height: 48px;
    }

    .org-name {
        font-size: 9px;
        letter-spacing: 0.2px;
    }

    .org-subtitle {
        font-size: 8px;
        letter-spacing: 0.1px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 11px;
        border-radius: 5px;
        min-width: auto;
    }


    /* CTA and Contact Banners */
    .cta-banner,
    .contact-us-banner {
        padding: 25px 15px !important;
    }

    .cta-title,
    .contact-us-heading {
        font-size: 20px;
    }

    .cta-description,
    .contact-us-text {
        font-size: 12px;
    }

    .contact-us-vector-blue,
    .contact-us-vector-red {
        width: 60px;
    }

    /* Charts */
    .chart-value {
        font-size: 24px;
    }

    .chart-label {
        font-size: 11px;
    }

    .chart-placeholder {
        height: 180px;
    }

    /* Tables */
    .financial-table {
        font-size: 10px;
    }

    .financial-table td {
        padding: 6px 8px;
        font-size: 10px;
    }

    .financial-title {
        font-size: 13px;
    }

    .table-header {
        padding: 8px;
        font-size: 12px;
    }

    /* Footer */
    .footer {
        padding: 30px 0 20px;
    }

    .footer-grid {
        gap: 25px;
    }

    .footer-logo-box img {
        height: 50px;
    }

    .footer-clinic-name {
        font-size: 13px;
    }

    .footer-managed {
        font-size: 10px;
    }

    .footer-col h3 {
        font-size: 14px;
    }

    .footer-col p,
    .footer-col a {
        font-size: 11px;
    }

    .footer-contact-bar {
        padding: 0 0 20px;
    }

    .footer-contact-label {
        font-size: 14px;
    }

    .footer-contact-item {
        font-size: 11px;
    }

    .footer-contact-icon {
        width: 16px;
        height: 16px;
    }

    /* About/Mission */
    .about-us {
        padding: 35px 0;
    }

    .about-content-wrapper {
        padding-top: 45px;
        margin-bottom: 25px;
    }

    .mission-content-wrapper {
        padding-top: 45px;
        gap: 25px;
    }

    .about-heading,
    .mission-heading {
        font-size: 24px;
        line-height: 1.3;
    }

    .about-description,
    .mission-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .about-images-left,
    .mission-images-right {
        height: 230px;
        max-width: 95%;
        margin: 0 auto;
    }

    .circle-image.large {
        width: 140px;
        height: 140px;
        left: 8px;
        top: 20px;
    }

    .circle-image.medium {
        width: 85px;
        height: 85px;
        left: 120px;
        top: 30px;
        right: auto;
    }

    .circle-image.small {
        width: 55px;
        height: 55px;
        bottom: 42px;
        left: 6px;
    }

    .circle-image.large-right {
        width: 125px;
        height: 125px;
        right: 15px;
        top: 8px;
    }

    .circle-image.medium-right {
        width: 125px;
        height: 125px;
        left: 38px;
        top: 77px;
    }

    /* Decorative Vectors */
    .about-us .decorative-vector {
        height: auto;
    }

    .about-us .decorative-vector-left {
        width: 12vw;
        max-width: 58px;
        min-width: 38px;
    }

    .vector-middle {
        width: 120px;
        transform: translate(-50%, -50%) rotate(6deg);
    }

    .cert-vector-left {
        height: 160px;
        top: -50px;
    }

    /* Section Titles */
    .section-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 15px;
        line-height: 1.4;
    }

    .section-label {
        font-size: 12px;
    }
}
