@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap');

/* =========================
   Base Styles
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
}

/* Top Header Styling */
.top-header {
    min-height: 40px;
    background: #263967;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-weight: 200;
    animation: header-glow 3s ease-in-out infinite;
    padding: 4px 0;
}

@keyframes header-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 16px rgba(38, 57, 103, 0.3);
    }
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 100%;
    gap: clamp(0.625rem, 1vw, 0.75rem);
    padding: 0 clamp(1rem, 1.8vw, 1.25rem);
}

/* Header Left Section */
.header-left {
    display: flex;
    gap: clamp(0.875rem, 2vw, 1.25rem);
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: normal;
    line-height: 1.35;
    transition: opacity 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.header-info:hover {
    opacity: 0.9;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.header-info i {
    font-size: 14px;
}

.header-info span {
    font-weight: 200;
    letter-spacing: 0.3px;
}

/* Header Right Section - Social Media */
.header-right {
    display: flex;
    gap: clamp(0.75rem, 1.5vw, 0.9375rem);
    align-items: center;
    flex-shrink: 0;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    cursor: pointer;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Platform-specific hover colors */
.social-icon[title="Facebook"]:hover,
.social-icon[title="Instagram"]:hover,
.social-icon[title="YouTube"]:hover {
    background: #0dcaf0;
    border-color: #0dcaf0;
    color: white;
}

/* Icon Ripple Effect */
.icon-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: icon-ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes icon-ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Container with Content Padding */
.container {
    max-width: min(92%, 75rem);
    margin: 0 auto;
    width: 100%;
}

/* =========================
   Navigation
========================= */
/* Main Navigation Bar */
.navbar {
    background: #ffffffeb;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 48px;
    z-index: 999;
    margin-top: 0.75rem;
    width: min(98.5%, calc(100% - 1rem));
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(1.25rem, 4vw, 3.125rem);
    min-height: 100px;
    height: auto;
    gap: clamp(1rem, 2.4vw, 1.5rem);
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 0.625rem);
}

.nav-logo {
    height: 71px;
    width: auto;
}

.hospital-name {
    font-size: 24px;
    font-weight: 700;
    color: #263967;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(18px, 2.6vw, 45px);
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.nav-menu > li {
    display: flex;
    align-items: center;
}

.nav-item,
.dropdown-item {
    position: relative;
    list-style: none;
}

.nav-item.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
}

.dropdown-item.has-submenu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 12px;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-menu > li > .nav-link {
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    min-height: 20px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0dcaf0;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #263967;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #263967;
}

.has-dropdown > .nav-link {
    display: inline-block;
    line-height: 1.2;
    padding-right: 16px;
}

.has-submenu > .dropdown-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.has-dropdown > .nav-link::before,
.has-submenu > .dropdown-link::before {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: #263967;
    transition: transform 0.3s ease;
}

.has-dropdown > .nav-link::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.has-submenu > .dropdown-link::before {
    order: 2;
}

.has-dropdown:hover > .nav-link::before,
.has-dropdown:focus-within > .nav-link::before,
.has-submenu:hover > .dropdown-link::before,
.has-submenu:focus-within > .dropdown-link::before {
    transform: rotate(180deg);
}

.has-dropdown.open > .nav-link::before,
.has-submenu.open > .dropdown-link::before {
    transform: rotate(180deg);
}

.dropdown-menu,
.submenu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 260px;
    padding: 12px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(38, 57, 103, 0.08);
    border-radius: 12px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
    z-index: 1001;
    list-style: none;
}

.dropdown-menu li,
.submenu li {
    list-style: none;
}

.submenu {
    top: -12px;
    left: calc(100% + 2px);
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu,
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
    display: block;
}

.dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 18px;
    color: #263967;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.dropdown-link:hover,
.dropdown-link:focus {
    background: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}

/* Right Navigation Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    flex-shrink: 0;
    margin-left: auto;
}

.search-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #0dcaf0;
}

.appointment-btn {
    background: #0dcaf0;
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(13, 202, 240, 0.2);
    white-space: nowrap;
}

.appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 202, 240, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #263967;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* =========================
   Hero Slider
========================= */
/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: clamp(28.75rem, 58vw, 35rem);
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.first-banner-content,
.second-banner-content,
.third-banner-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    z-index: 3;
    color: #263967;
    text-align: left;
    width: min(1020px, 86vw);
    max-width: 1020px;
}

.banner-title {
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.6px;
}

.title-line {
    display: block;
    font-size: clamp(38px, 5vw, 60px);
}

.title-line-regular {
    font-weight: 400;
    color: #0dcaf0;
}

.title-line-bold {
    font-weight: 700;
    color: #0dcaf0;
}

.banner-description {
    margin: clamp(1rem, 2vw, 1.375rem) 0 0;
    font-size: clamp(15px, 1.55vw, 18px);
    line-height: 1.55;
    max-width: min(100%, 47.5rem);
    color: #333;
}

.banner-services {
    margin-top: clamp(1.125rem, 2.4vw, 1.75rem);
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: clamp(0.75rem, 1.8vw, 1.125rem);
    width: min(860px, 100%);
    max-width: 860px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-icon-box {
    width: 100%;
    height: 78px;
    border-radius: 12px;
    border: 1px solid #3333332a;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-icon-box:hover {
    transform: translateY(-6px) scale(1.08);
    background: rgba(255, 255, 255, 0.35);
    border-color: #0dcaf0;
    box-shadow: 0 8px 20px rgba(13, 202, 240, 0.2);
}

.service-icon-box i,
.service-icon-box svg {
    color: #0dcaf0;
    font-size: 36px;
    width: 36px;
    height: 36px;
}

.service-label {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    color: #263967;
    width: 100%;
}

.banner-learn-more {
    display: inline-block;
    text-decoration: none;
    margin-top: clamp(1rem, 2vw, 1.375rem);
    background: #0dcaf0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 56px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(13, 202, 240, 0.28);
}

.banner-learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #263967;
    transition: width 0.35s ease;
    z-index: -1;
}

.banner-learn-more:hover::before {
    width: 100%;
}

.banner-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(38, 57, 103, 0.28);
}

.first-banner-content .title-line,
.first-banner-content .banner-description,
.first-banner-content .service-item,
.first-banner-content .banner-learn-more,
.second-banner-content .title-line,
.second-banner-content .banner-description,
.second-banner-content .service-item,
.second-banner-content .banner-learn-more,
.third-banner-content .title-line,
.third-banner-content .banner-description,
.third-banner-content .stat-item,
.third-banner-content .banner-learn-more {
    opacity: 0;
    transform: translateX(-46px);
}

.slide.active .first-banner-content .title-line,
.slide.active .first-banner-content .banner-description,
.slide.active .first-banner-content .service-item,
.slide.active .first-banner-content .banner-learn-more,
.slide.active .second-banner-content .title-line,
.slide.active .second-banner-content .banner-description,
.slide.active .second-banner-content .service-item,
.slide.active .second-banner-content .banner-learn-more,
.slide.active .third-banner-content .title-line,
.slide.active .third-banner-content .banner-description,
.slide.active .third-banner-content .stat-item,
.slide.active .third-banner-content .banner-learn-more {
    animation: slide-content-in 0.8s ease forwards;
}

.slide.active .first-banner-content .title-line-regular,
.slide.active .second-banner-content .title-line-regular,
.slide.active .third-banner-content .title-line-regular {
    animation-delay: 0.1s;
}

.slide.active .first-banner-content .title-line-bold,
.slide.active .second-banner-content .title-line-bold,
.slide.active .third-banner-content .title-line-bold {
    animation-delay: 0.25s;
}

.slide.active .first-banner-content .banner-description,
.slide.active .second-banner-content .banner-description,
.slide.active .third-banner-content .banner-description {
    animation-delay: 0.4s;
}

.slide.active .first-banner-content .service-item:nth-child(1),
.slide.active .second-banner-content .service-item:nth-child(1),
.slide.active .third-banner-content .stat-item:nth-child(1) {
    animation-delay: 0.55s;
}

.slide.active .first-banner-content .service-item:nth-child(2),
.slide.active .second-banner-content .service-item:nth-child(2),
.slide.active .third-banner-content .stat-item:nth-child(2) {
    animation-delay: 0.67s;
}

.slide.active .first-banner-content .service-item:nth-child(3),
.slide.active .second-banner-content .service-item:nth-child(3),
.slide.active .third-banner-content .stat-item:nth-child(3) {
    animation-delay: 0.79s;
}

.slide.active .first-banner-content .service-item:nth-child(4),
.slide.active .second-banner-content .service-item:nth-child(4) {
    animation-delay: 0.91s;
}

.slide.active .first-banner-content .banner-learn-more,
.slide.active .second-banner-content .banner-learn-more,
.slide.active .third-banner-content .banner-learn-more {
    animation-delay: 1.03s;
}

/* Slide 3 — Stats row */
.banner-stats {
    margin-top: clamp(1.25rem, 2.8vw, 2rem);
    display: flex;
    gap: clamp(1rem, 3vw, 2.25rem);
    align-items: flex-start;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 90px;
    transition: all 0.3s ease;
    padding: 12px;
    margin: -12px;
    border-radius: 8px;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(13, 202, 240, 0.08);
}

.stat-number {
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 700;
    color: #0dcaf0;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    margin-top: 6px;
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes slide-content-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: calc(20px + 5%);
    transform: translateX(-50%);
    display: flex;
    gap: clamp(0.625rem, 1.4vw, 0.875rem);
    z-index: 3;
}

.slider-dot {
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 50%;
    background: rgba(38, 57, 103, 0.65);
    cursor: pointer;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
    animation: pulse-btn 2.2s ease-in-out infinite;
}

.slider-dot:hover {
    background: rgba(13, 202, 240, 0.9);
    transform: scale(1.15);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.slider-dot:active {
    transform: scale(0.92);
}

.slider-dot.active {
    background: #0dcaf0;
    box-shadow: 0 0 0 4px rgba(13, 202, 240, 0.2);
}

@keyframes pulse-btn {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.35);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(13, 202, 240, 0);
    }
}

/* =========================
   Decorative Elements
========================= */
/* BG Effect Image - Vertical Rotation at Bottom Center */
.bg-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 500px;
    height: 500px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.20;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
    transform: translateX(-50%);
    animation: rotate-vertical 25s linear infinite;
}

@keyframes rotate-vertical {
    from {
        transform: translateX(-50%) rotateX(0deg);
    }
    to {
        transform: translateX(-50%) rotateX(360deg);
    }
}

.color-bars-section {
    width: 100%;
    padding: 0;
    position: relative;
    margin-top: -5vh;
    z-index: 4;
}

.color-bars-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: min(100%, 75rem);
    margin: 0 auto;
}

.color-bar {
    width: 33.333%;
    max-width: 25rem;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.color-bar::after {
    content: '';
    position: absolute;
    bottom: 2%;
    left: 50%;
    width: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.85);
    transition: width 0.4s ease, left 0.4s ease;
}

.color-bar:hover::after {
    width: 80%;
    left: 10%;
}

.bar-one {
    background: #11b694;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.bar-card-content {
    height: 100%;
    width: 100%;
    padding: 28px 24px;
    padding-left: 88px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    color: #ffffff;
    gap: 14px;
    position: relative;
}

.bar-card-title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.bar-card-title i,
.bar-card-title svg {
    font-size: 33px;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 33px;
    height: 33px;
}

.bar-card-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    max-width: 88%;
}

.bar-card-phone {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.bar-card-phone i {
    font-size: 16px;
}

.bar-card-hours {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.bar-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 8px;
}

.bar-hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bar-hours-day {
    font-weight: 600;
}

.bar-hours-time {
    opacity: 0.9;
    font-weight: 400;
}

.bar-two {
    background: #008cd2;
}

.bar-three {
    background: #263967;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.bar-card-map {
    width: 100%;
    flex: 1;
    border-radius: 6px;
    overflow: hidden;
    min-height: 0;
}

.bar-card-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* About Section */
.about-section {
    width: 100%;
    padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 2vw, 1.25rem) clamp(2rem, 5vw, 3.5rem);
    background: #f8f9fa;
}

.about-layout {
    max-width: min(96%, 80rem);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(21.25rem, 43.75%) minmax(20rem, 1fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 6.875rem);
}

.about-visual {
    position: relative;
    width: min(100%, 35rem);
    min-height: 38.75rem;
}

.about-bg-image {
    width: min(100%, 85.714%);
    aspect-ratio: 4 / 3;
    display: block;
    height: auto;
    object-fit: cover;
    margin: 0;
}

.about-doctor-wrapper {
    position: absolute;
    width: min(62%, 300px);
    left: min(62%, 305px);
    top: 190px;
    z-index: 2;
}

.about-doctor-overlay {
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 6px solid #ffffff;
    box-sizing: border-box;
    max-width: none;
    display: block;
}

.about-doctor-label {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(17, 182, 148, 0.78);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 7px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.doctor-label-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
}

.doctor-label-qual {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    white-space: nowrap;
}

.about-heart-badge {
    position: absolute;
    left: min(51%, 250px);
    top: 300px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    color: #d32f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.about-heart-badge i,
.about-heart-badge svg {
    font-size: 80px;
    transform: scale(0.80);
    transform-origin: center;
    line-height: 1;
    animation: heart-boom 1.15s ease-in-out infinite;
}

.about-info-block {
    width: 100%;
    max-width: 36.25rem;
    text-align: left;
    padding-top: 0.75rem;
}

.about-info-title {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
    color: #11b694;
}

.about-info-subtitle {
    margin: 12px 0 0;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    color: #333;
}

.about-info-description {
    margin: 16px 0 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #555;
}

.about-info-points-title {
    margin: 22px 0 0;
    padding-top: 18px;
    border-top: 1px dashed #11b694a6;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #11b694a6;
}

.about-info-points {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    gap: 12px;
}

.about-info-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 12pt;
    font-weight: 500;
}

.about-info-points i,
.about-info-points svg {
    color: #11b694;
    font-size: 15px;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* Our Achievements Section */
.achievements-section {
    width: 100%;
    margin-top: 0;
    position: relative;
    top: -100px;
    padding: clamp(7.3125rem, 14.625vw, 11.7rem) 1rem clamp(8.775rem, 17.55vw, 13.1625rem);
    background-color: rgb(17, 182, 149);
    background-image: url("Assets/Backgrounds/Background 1.jpg");
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.achievements-container {
    max-width: min(96%, 75rem);
    margin: 0 auto;
    text-align: center;
}

.achievements-title {
    margin: 0;
    position: relative;
    top: -100px;
    color: #ffffff;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    text-shadow: 0 4px 14px rgba(14, 28, 50, 0.28);
}

.achievements-subtitle {
    margin: 0.9rem auto 0;
    position: relative;
    top: -100px;
    max-width: 52rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.95rem, 1.6vw, 1.08rem);
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(14, 28, 50, 0.2);
}

.achievements-grid {
    margin-top: clamp(2.2rem, 5vw, 3.2rem);
    position: relative;
    top: -100px;
    display: grid;
    grid-template-columns: repeat(4, 254px);
    justify-content: center;
    gap: clamp(1rem, 2.2vw, 1.5rem);
}

.achievement-card {
    position: relative;
    width: 254px;
    height: 127px;
    padding-top: 0.95rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(5, 11, 23, 0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.achievement-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #1c4f8f;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s ease;
    pointer-events: none;
    z-index: 0;
}

.achievement-card:hover {
    transform: translateY(-9px) scale(1.03);
    box-shadow: 0 16px 30px rgba(6, 22, 45, 0.3);
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

.achievement-icon-box {
    position: absolute;
    top: -34px;
    left: 25px;
    transform: none;
    width: 65px;
    height: 68px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c4f8f;
    box-shadow: 0 4px 10px rgba(20, 31, 51, 0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
    z-index: 2;
}

.achievement-icon-box i,
.achievement-icon-box svg {
    font-size: 32px;
    transition: color 0.35s ease, transform 0.35s ease;
}

.achievement-card:hover .achievement-icon-box {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(8, 27, 52, 0.28);
    background: #ffffff;
}

.achievement-card:hover .achievement-icon-box i,
.achievement-card:hover .achievement-icon-box svg {
    color: #11b694;
    transform: scale(1.08);
}

.achievement-value {
    margin: 0;
    color: #11b694;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}

.achievement-label {
    margin: 2px 0 0;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}

.achievement-card:hover .achievement-value,
.achievement-card:hover .achievement-label {
    color: #ffffff;
}

/* Aparna Advantage Section */
.advantage-section {
    position: relative;
    margin-top: -300px;
    z-index: 7;
    padding-bottom: 60px;
}

.advantage-box {
    position: relative;
    overflow: hidden;
    width: 80%;
    height: 525px;
    margin: 0 auto;
    background-color: #008cd2;
    background-image: linear-gradient(rgba(0, 140, 210, 0.8), rgba(0, 140, 210, 0.8)), url("Assets/Backgrounds/hero bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 18px 36px rgba(9, 18, 37, 0.38);
    display: flex;
    align-items: stretch;
}

.advantage-box::before,
.advantage-box::after {
    content: '';
    position: absolute;
    inset: 1.5% 0.50%;
    opacity: 0;
    border-radius: 8px;
    pointer-events: none;
}

.advantage-box::before {
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.55s ease, opacity 0.28s ease;
}

.advantage-box::after {
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.55s ease, opacity 0.28s ease;
}

.advantage-box:hover::before,
.advantage-box:hover::after {
    transform: scale(1);
    opacity: 1;
}

.advantage-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 36px 44px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantage-title {
    margin: 50px;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.advantage-subtitle {
    margin: -30px auto 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.95rem, 1.3vw, 1.08rem);
    line-height: 1.5;
}

.advantage-grid {
    margin-top: 50px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    gap: 14px;
}

.advantage-card {
    position: relative;
    overflow: hidden;
    width: 95%;
    background: linear-gradient(145deg, #ffffff 0%, #f5fbff 100%);
    border-radius: 12px;
    padding: 18px 16px 16px;
    box-shadow: 0 10px 24px rgba(6, 16, 34, 0.26);
    border: 1px solid rgba(184, 214, 239, 0.85);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.advantage-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #11b694 0%, #11b694 100%);
}

.advantage-card::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    margin: 10px auto 0;
    background: #0dcaf0;
    transition: width 0.32s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 32px rgba(5, 13, 29, 0.38);
    border-color: rgba(17, 182, 148, 0.42);
}

.advantage-card:hover::after {
    width: 80%;
}

.advantage-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(145deg, #11b694 0%, #11b694 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 18px rgba(17, 182, 148, 0.34);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.advantage-card:hover .advantage-icon {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 14px 24px rgba(17, 182, 148, 0.4);
}

.advantage-card-title {
    margin: 12px 0 0;
    color: #1d325d;
    font-size: 1.03rem;
    font-weight: 700;
    line-height: 1.25;
}

.advantage-card-text {
    margin: 7px 0 0;
    color: #3f526f;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Gynecology Services Section */
.gynecology-services-section {
    position: relative;
    width: 100%;
    padding: 64px 16px 80px;
    background: url("Assets/Backgrounds/Services Background.jpg") center / cover no-repeat;
    animation: gynecology-bg-drift 40s ease-in-out infinite alternate;
    overflow: hidden;
}

.gynecology-services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("Assets/Backgrounds/Services Background 1.png") center / cover no-repeat;
    opacity: 0.62;
    animation: gynecology-overlay-drift 14s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes gynecology-bg-drift {
    0% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 48% 44%;
    }
    100% {
        background-position: 52% 56%;
    }
}

@keyframes gynecology-overlay-drift {
    0% {
        background-position: 50% 50%;
    }
    50% {
        background-position: 43% 46%;
    }
    100% {
        background-position: 58% 57%;
    }
}

.gynecology-services-container {
    position: relative;
    z-index: 1;
    max-width: min(96%, 1220px);
    margin: 0 auto;
}

.gynecology-services-title {
    margin: 0;
    color: #16366a;
    font-size: clamp(1.9rem, 3.2vw, 2.85rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.3px;
    text-align: center;
}

.gynecology-services-subtitle {
    width: fit-content;
    margin: 16px auto 0;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(17, 182, 148, 0.12);
    border: 1px solid rgba(17, 182, 148, 0.24);
    color: #0f886f;
    font-size: clamp(0.95rem, 1.45vw, 1.12rem);
    font-weight: 700;
    text-align: center;
}

.gynecology-services-description {
    margin: 20px auto 0;
    max-width: 980px;
    color: #304761;
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
}

.gynecology-services-grid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gynecology-service-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 250, 255, 0.98) 100%);
    border: 1px solid rgba(17, 182, 148, 0.16);
    border-radius: 16px;
    padding: 20px 16px 16px;
    box-shadow: 0 10px 20px rgba(8, 30, 58, 0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Four horizontal hover boxes */
.gynecology-service-card .hover-box {
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    background: #263967;
    z-index: 5;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.gynecology-service-card .hover-box-1 {
    left: 0;
    transform-origin: right center;
    transform: rotateY(-90deg);
    transition-delay: 0.05s;
}

.gynecology-service-card .hover-box-2 {
    left: 25%;
    transform-origin: right center;
    transform: rotateY(-90deg);
    transition-delay: 0.1s;
}

.gynecology-service-card .hover-box-3 {
    left: 50%;
    transform-origin: left center;
    transform: rotateY(90deg);
    transition-delay: 0.15s;
}

.gynecology-service-card .hover-box-4 {
    left: 75%;
    transform-origin: left center;
    transform: rotateY(90deg);
    transition-delay: 0.2s;
}

.gynecology-service-card:hover .hover-box {
    transform: rotateY(0deg);
}

.gynecology-service-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #11b694 0%, #0dcaf0 100%);
    z-index: 10;
}

.gynecology-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 28px rgba(9, 34, 66, 0.16);
    border-color: rgba(17, 182, 148, 0.35);
}

.gyne-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(13, 202, 240, 0.14) 0%, rgba(17, 182, 148, 0.18) 100%);
    border: 1.5px solid rgba(13, 202, 240, 0.3);
    color: #0dcaf0;
    font-size: 1.3rem;
    margin-bottom: 12px;
    margin-top: 4px;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    z-index: 6;
}

.gynecology-service-card:hover .gyne-icon {
    background: linear-gradient(145deg, #0dcaf0 0%, #11b694 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(13, 202, 240, 0.38);
}

.gynecology-service-title {
    margin: 2px 0 0;
    color: #18315b;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
    position: relative;
    z-index: 6;
    transition: color 0.4s ease;
}

.gynecology-service-card:hover .gynecology-service-title {
    color: #ffffff;
}

.gynecology-service-text {
    margin: 8px 0 0;
    color: #47627f;
    font-size: 0.91rem;
    line-height: 1.62;
    position: relative;
    z-index: 6;
    transition: color 0.4s ease;
}

.gynecology-service-card:hover .gynecology-service-text {
    color: #ffffff;
}

/* Meet Our Doctors Section */
.meet-doctors-section {
    width: 100%;
    padding: 60px 16px 80px;
    background: #ffffff;
}

.meet-doctors-box {
    width: 95%;
    height: auto;
    margin: 0 auto;
    background: url("Assets/Backgrounds/Doctors Background.jpg") center / cover no-repeat;
    border-radius: 16px;
    border: 1px solid rgba(13, 202, 240, 0.24);
    padding: 36px 44px;
    display: flex;
    flex-direction: column;
}

.meet-doctors-title {
    margin: 0;
    color: #16366a;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.meet-doctors-headline {
    margin: 0;
    color: #16366a;
    font-size: clamp(1.35rem, 2.5vw, 2.1rem);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.meet-doctors-body {
    margin: 16px auto 0;
    max-width: 980px;
    color: #304761;
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
}

.meet-doctors-images {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.meet-doctor-image {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
    display: block;
    border: 1px solid rgba(38, 57, 103, 0.12);
}

.doctor-image-wrap {
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.doctor-image-wrap::before,
.doctor-image-wrap::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 8px 8px 0 0;
    pointer-events: none;
}

/* Top/bottom lines */
.doctor-image-wrap::before {
    border-top: 2px solid rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid rgba(255, 255, 255, 0.95);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.42s ease;
}

/* Left/right lines */
.doctor-image-wrap::after {
    border-left: 2px solid rgba(255, 255, 255, 0.95);
    border-right: 2px solid rgba(255, 255, 255, 0.95);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.42s ease 0.12s;
}

.doctor-card:hover .doctor-image-wrap::before,
.doctor-card:hover .doctor-image-wrap::after {
    transform: scale(1);
}

.doctor-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
}

/* Grid 0fr→1fr trick: collapses to zero height, no dead whitespace */
.doctor-hover-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.doctor-card:hover .doctor-hover-content {
    grid-template-rows: 1fr;
}

/* Inner wrapper needed for the 0fr collapse to work */
.doctor-hover-inner {
    overflow: hidden;
}

/* Blue box: wipes in from left, then gains inner stroke glow */
.doctor-info-box {
    background: #0f886f;
    padding: 14px 18px;
    clip-path: inset(0 100% 0 0);
    box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0);
    transition: clip-path 0.48s cubic-bezier(0.4, 0, 0.2, 1) 0.08s,
                box-shadow 0.4s ease 0.52s;
}

.doctor-card:hover .doctor-info-box {
    clip-path: inset(0 0% 0 0);
    box-shadow: inset 0 0 0 5px #0f886f, inset 0 0 0 7px rgba(255, 255, 255, 0.35);
}

/* Name fades down-into-place after box finishes sliding */
.doctor-name {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.28s ease 0.48s, transform 0.28s ease 0.48s;
}

.doctor-card:hover .doctor-name {
    opacity: 1;
    transform: translateY(0);
}

/* Qualifications follow name */
.doctor-quals {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    display: block;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.28s ease 0.62s, transform 0.28s ease 0.62s;
}

.doctor-card:hover .doctor-quals {
    opacity: 1;
    transform: translateY(0);
}

.doctor-bio-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.doctor-card:hover .doctor-bio-wrap {
    grid-template-rows: 1fr;
}

.doctor-bio {
    overflow: hidden;
    margin: 0;
    padding: 12px 2px 4px;
    color: #000000;
    font-size: 0.88rem;
    line-height: 1.65;
}

@keyframes heart-boom {
    0%,
    100% {
        transform: scale(0.75);
    }
    20% {
        transform: scale(0.9);
    }
    38% {
        transform: scale(0.78);
    }
    56% {
        transform: scale(0.88);
    }
    74% {
        transform: scale(0.75);
    }
}

/* Main Content Area */
.main-content {
    padding: 50px;
}

.main-content .container {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.348);
}

.main-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1e3c72;
}

.main-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* =========================
   Home CTA Section
========================= */
.home-cta-section {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #008cd2;
    overflow: hidden;
}

.home-cta-section::before,
.home-cta-section::after {
    content: '';
    position: absolute;
    inset: -18%;
    pointer-events: none;
}

.home-cta-section::before {
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16) 0 2px, transparent 3px),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.14) 0 2px, transparent 3px),
        radial-gradient(circle at 35% 75%, rgba(255, 255, 255, 0.14) 0 2px, transparent 3px),
        linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.07) 100%);
    background-size: 80px 80px, 110px 110px, 95px 95px, 100% 100%;
    opacity: 0.7;
    animation: home-cta-pattern-drift 5s linear infinite;
    z-index: 0;
}

.home-cta-section::after {
    background:
        radial-gradient(65px 26px at 30px 100%, rgba(255, 255, 255, 0.22) 48%, transparent 52%) 0 0 / 140px 60px repeat-x,
        radial-gradient(65px 24px at 100px 100%, rgba(255, 255, 255, 0.16) 48%, transparent 52%) 0 18px / 160px 62px repeat-x,
        radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0.22), transparent 34%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.18), transparent 36%);
    animation: home-cta-wave-shift 4s linear infinite, home-cta-glow-float 3s ease-in-out infinite alternate;
    z-index: 0;
}

.home-cta-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.home-cta-overlay::before,
.home-cta-overlay::after {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 6px;
    pointer-events: none;
}

.home-cta-overlay::before {
    border-top: 2px solid rgba(255, 255, 255, 0.72);
    border-bottom: 2px solid rgba(255, 255, 255, 0.72);
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.52s ease, opacity 0.28s ease;
}

.home-cta-overlay::after {
    border-left: 2px solid rgba(255, 255, 255, 0.72);
    border-right: 2px solid rgba(255, 255, 255, 0.72);
    transform: scaleY(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.52s ease 0.12s, opacity 0.28s ease 0.12s;
}

.home-cta-section:hover .home-cta-overlay::before,
.home-cta-section:hover .home-cta-overlay::after {
    transform: scale(1);
    opacity: 1;
}

.home-cta-symbols {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.symbol-doctor,
.symbol-plus {
    position: absolute;
    color: rgba(255, 255, 255, 0.26);
    text-shadow: 0 6px 16px rgba(20, 45, 90, 0.2);
}

.symbol-doctor {
    font-size: clamp(36px, 4.6vw, 64px);
    animation: home-cta-symbol-float 2.5s ease-in-out infinite;
}

.symbol-plus {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1;
    animation: home-cta-plus-pulse 1.5s ease-in-out infinite;
}

.symbol-doctor-1 {
    top: 18%;
    left: 9%;
    animation-delay: 0.2s;
}

.symbol-doctor-2 {
    right: 10%;
    bottom: 20%;
    animation-delay: 1.2s;
}

.symbol-plus-1 {
    top: 24%;
    right: 22%;
    animation-delay: 0.5s;
}

.symbol-plus-2 {
    top: 66%;
    left: 18%;
    animation-delay: 1.8s;
}

.symbol-plus-3 {
    right: 14%;
    top: 50%;
    animation-delay: 2.8s;
}

.home-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px;
    max-width: 980px;
    margin: 0 auto;
}

@keyframes home-cta-pattern-drift {
    from {
        transform: translate3d(-2%, -1%, 0);
    }
    to {
        transform: translate3d(2%, 1%, 0);
    }
}

@keyframes home-cta-glow-float {
    from {
        transform: scale(1);
        opacity: 0.75;
    }
    to {
        transform: scale(1.06);
        opacity: 0.92;
    }
}

@keyframes home-cta-wave-shift {
    from {
        background-position: 0 0, 0 18px, 0 0, 0 0;
    }
    to {
        background-position: 280px 0, -240px 18px, 0 0, 0 0;
    }
}

@keyframes home-cta-symbol-float {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.22;
    }
    50% {
        transform: translateY(-12px) scale(1.06);
        opacity: 0.34;
    }
}

@keyframes home-cta-plus-pulse {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2) rotate(8deg);
        opacity: 0.36;
    }
}

.home-cta-heading {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.home-cta-body {
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    margin-bottom: 38px;
    font-weight: 300;
}

.home-cta-btn {
    display: inline-block;
    padding: 15px 48px;
    background: #0dcaf0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 18px rgba(13, 202, 240, 0.38);
    letter-spacing: 0.3px;
}

.home-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #263967;
    transition: width 0.35s ease;
    z-index: -1;
}

.home-cta-btn:hover::before {
    width: 100%;
}

.home-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(38, 57, 103, 0.38);
}

/* =========================
   Responsive Breakpoints
========================= */
@media (max-width: 1024px) {
    .top-header .container {
        padding: 0 16px;
    }

    .navbar .container {
        padding: 18px 24px;
        gap: 18px;
    }

    .hero-slider {
        height: 520px;
    }

    .bg-effect {
        width: 380px;
        height: 380px;
    }

    .first-banner-content,
    .second-banner-content,
    .third-banner-content {
        left: 5%;
        width: min(92vw, 920px);
    }

    .banner-services {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
        max-width: 560px;
    }

    .color-bar {
        flex: 1;
        width: auto;
        min-width: 0;
    }

    .bar-card-title {
        font-size: 22px;
    }

    .bar-card-title i,
    .bar-card-title svg {
        font-size: 26px;
        width: 26px;
        height: 26px;
    }

    .bar-card-content {
        padding: 20px 16px;
        padding-left: 68px;
        gap: 10px;
    }

    .bar-hours-row {
        font-size: 13px;
    }

    .gynecology-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .meet-doctors-box {
        padding: 30px 28px;
    }

}

@media (max-width: 768px) {
    .top-header {
        position: relative;
    }

    .home-cta-section {
        min-height: 340px;
    }

    .symbol-doctor {
        font-size: 44px;
    }

    .symbol-plus {
        font-size: 30px;
    }

    .symbol-doctor-2,
    .symbol-plus-3 {
        display: none;
    }

    .home-cta-content {
        padding: 60px 20px;
    }

    .top-header .container {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
        align-items: flex-start;
    }

    .bg-effect {
        width: 280px;
        height: 280px;
    }

    .header-left {
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        font-size: 12px;
    }

    .header-info span {
        display: inline;
    }

    .header-info {
        gap: 5px;
        width: 100%;
        justify-content: flex-start;
        padding: 10px 12px;
    }

    .header-info:hover,
    .header-info:active {
        opacity: 0.95;
        background-color: rgba(255, 255, 255, 0.144);
    }

    .header-right {
        gap: 10px;
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 8px;
    }

    .social-icon {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    .navbar {
        top: 0;
        width: calc(100% - 24px);
        margin-top: 8px;
    }

    .navbar .container {
        padding: 12px 20px;
        min-height: auto;
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        width: calc(100% - 24px);
        flex-direction: column;
        gap: 0;
        background: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 998;
        border-radius: 12px;
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown-menu,
    .submenu {
        display: none;
        position: static;
        min-width: 100%;
        padding: 0;
        margin: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .has-dropdown.open > .dropdown-menu,
    .has-submenu.open > .submenu {
        display: block;
    }

    .nav-item.has-dropdown,
    .dropdown-item.has-submenu {
        width: 100%;
    }

    .nav-item.has-dropdown::after,
    .dropdown-item.has-submenu::after {
        display: none;
    }

    .has-dropdown:hover > .dropdown-menu,
    .has-dropdown:focus-within > .dropdown-menu,
    .has-submenu:hover > .submenu,
    .has-submenu:focus-within > .submenu {
        display: none;
    }

    .has-dropdown.open > .dropdown-menu,
    .has-submenu.open > .submenu {
        display: block;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .has-dropdown > .nav-link,
    .has-submenu > .dropdown-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .has-dropdown > .nav-link {
        padding-right: 20px;
    }

    .has-dropdown > .nav-link::before {
        position: static;
        transform: none;
    }

    .dropdown-link {
        padding: 10px 32px;
        border-bottom: 1px solid #f3f3f3;
        font-size: 13px;
    }

    .submenu .dropdown-link {
        padding-left: 48px;
    }

    .nav-link::after {
        left: 20px;
        bottom: 8px;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: calc(100% - 40px);
    }

    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hospital-name {
        font-size: 20px;
    }

    .hero-slider {
        height: 620px;
    }

    .first-banner-content,
    .second-banner-content,
    .third-banner-content {
        left: 5%;
        right: 5%;
        width: auto;
        max-width: none;
    }

    .title-line {
        font-size: 42px;
    }

    .banner-description {
        font-size: 16px;
        max-width: 100%;
    }

    .banner-services {
        grid-template-columns: repeat(2, minmax(130px, 1fr));
        max-width: 520px;
        gap: 12px;
    }

    .service-icon-box {
        height: 64px;
    }

    .service-icon-box i,
    .service-icon-box svg {
        font-size: 29px;
        width: 29px;
        height: 29px;
    }

    .service-label {
        font-size: 13px;
    }

    .banner-learn-more {
        margin-top: 22px;
        padding: 12px 56px;
        font-size: 15px;
    }

    .slider-dot {
        width: 14px;
        height: 14px;
    }

    .slider-dots {
        bottom: calc(14px + 5%);
    }

    .color-bars-section {
        margin-top: 0;
    }

    .color-bars-wrap {
        flex-direction: column;
    }

    .color-bar {
        width: 100%;
        height: 220px;
        min-height: unset;
        flex: none;
    }

    .bar-one {
        border-radius: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .bar-three {
        border-radius: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .bar-card-content {
        padding: 22px 20px;
        padding-left: 72px;
    }

    .bar-card-title {
        font-size: 20px;
    }

    .bar-card-title i,
    .bar-card-title svg {
        font-size: 24px;
        width: 24px;
        height: 24px;
        left: 20px;
    }

    .bar-card-text {
        max-width: 100%;
    }

    .bar-card-map {
        flex: 1;
        min-height: 0;
        height: auto;
    }

    .main-content {
        padding: 20px;
    }

    .main-content .container {
        padding: 20px;
    }

    .main-content h1 {
        font-size: 24px;
    }

    .about-section {
        padding: 44px 20px 42px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-visual {
        width: min(100%, 560px);
        min-height: 430px;
        margin: 0 auto;
    }

    .about-bg-image {
        width: 100%;
        height: auto;
        max-width: 480px;
    }

    .about-doctor-wrapper {
        width: 180px;
        left: min(63%, 300px);
        top: 210px;
    }

    .about-heart-badge {
        left: min(54%, 255px);
        top: 275px;
        width: 72px;
        height: 72px;
    }

    .about-heart-badge i,
    .about-heart-badge svg {
        font-size: 52px;
    }

    .about-info-block {
        max-width: 100%;
        padding-top: 0;
    }

    .about-info-subtitle {
        font-size: 24px;
    }

    .about-info-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .about-info-points-title {
        font-size: 18px;
        padding-top: 16px;
    }

    .about-info-points {
        column-gap: 16px;
    }

    .about-info-points li {
        font-size: 16px;
    }

    .achievements-section {
        top: 0;
        margin-top: 0;
        padding: 64px 16px 76px;
    }

    .achievements-title,
    .achievements-subtitle,
    .achievements-grid {
        top: 0;
    }

    .achievements-title {
        font-size: 32px;
    }

    .achievements-subtitle {
        margin-top: 12px;
        max-width: 38rem;
        font-size: 15px;
        line-height: 1.55;
    }

    .achievements-grid {
        margin-top: 28px;
        grid-template-columns: repeat(2, minmax(0, 240px));
        gap: 42px 18px;
    }

    .achievement-card {
        width: 100%;
        height: auto;
        min-height: 160px;
        padding: 44px 14px 18px;
        border-radius: 14px;
    }

    .achievement-icon-box {
        left: 50%;
        top: -28px;
        transform: translateX(-50%);
    }

    .achievement-card:hover .achievement-icon-box {
        transform: translateX(-50%) translateY(-4px);
    }

    .achievement-value {
        font-size: 26px;
    }

    .achievement-label {
        margin-top: 6px;
        font-size: 16px;
    }

    .advantage-section {
        margin-top: 24px;
        padding: 0 14px 46px;
    }

    .advantage-box {
        width: min(92%, 760px);
        height: auto;
        min-height: 400px;
    }

    .advantage-content {
        padding: 30px 24px 24px;
    }

    .advantage-grid {
        grid-template-columns: repeat(2, minmax(0, 260px));
        justify-content: center;
        gap: 14px 16px;
    }

    .gynecology-services-section {
        padding: 52px 16px 58px;
    }

    .gynecology-services-subtitle {
        padding: 7px 14px;
        font-size: 0.96rem;
    }

    .gynecology-services-description {
        font-size: 0.95rem;
        line-height: 1.68;
    }

    .gynecology-services-grid {
        margin-top: 30px;
        gap: 14px;
    }

    .gynecology-service-card {
        padding: 18px 14px 14px;
    }

    .meet-doctors-section {
        padding: 48px 16px 58px;
    }

    .meet-doctors-box {
        height: auto;
        min-height: 600px;
        padding: 26px 20px;
    }

    .meet-doctors-images {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .meet-doctor-image {
        height: auto;
    }
}

@media (max-width: 480px) {
    .header-left {
        flex-direction: column;
        gap: 5px;
    }

    .home-cta-section {
        min-height: 280px;
    }

    .home-cta-symbols {
        opacity: 0.75;
    }

    .symbol-doctor {
        font-size: 34px;
    }

    .symbol-plus {
        font-size: 24px;
    }

    .symbol-doctor-1 {
        left: 5%;
        top: 20%;
    }

    .symbol-plus-1 {
        right: 8%;
        top: 24%;
    }

    .symbol-plus-2 {
        left: 10%;
        top: 68%;
    }

    .home-cta-content {
        padding: 48px 16px;
    }

    .home-cta-btn {
        padding: 13px 32px;
        font-size: 15px;
    }

    .header-info {
        font-size: 11px;
    }

    .hero-slider {
        height: 720px;
    }

    .bg-effect {
        width: 200px;
        height: 200px;
    }

    .first-banner-content,
    .second-banner-content,
    .third-banner-content {
        top: 52%;
        left: 16px;
        right: 16px;
    }

    .title-line {
        font-size: 32px;
    }

    .banner-description {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.45;
    }

    .banner-services {
        margin-top: 14px;
        grid-template-columns: repeat(2, minmax(110px, 1fr));
        gap: 8px;
    }

    .service-icon-box {
        height: 50px;
        border-radius: 8px;
    }

    .service-icon-box i,
    .service-icon-box svg {
        font-size: 22px;
        width: 22px;
        height: 22px;
    }

    .service-label {
        margin-top: 6px;
        font-size: 11px;
        line-height: 1.25;
    }

    .banner-learn-more {
        margin-top: 22px;
        padding: 12px 56px;
        font-size: 15px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
    }

    .slider-dots {
        bottom: calc(10px + 5%);
    }

    .color-bar {
        min-height: unset;
        height: 200px;
    }

    .bar-card-content {
        padding: 18px 16px;
        padding-left: 60px;
        gap: 8px;
    }

    .bar-card-title {
        font-size: 18px;
    }

    .bar-card-title i,
    .bar-card-title svg {
        font-size: 22px;
        width: 22px;
        height: 22px;
        left: 16px;
    }

    .bar-card-text {
        font-size: 13px;
    }

    .bar-card-phone {
        font-size: 16px;
    }

    .bar-hours-row {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 2px;
    }

    .bar-card-map {
        flex: 1;
        min-height: 0;
        height: auto;
    }

    .main-content {
        padding: 15px;
    }

    .main-content h1 {
        font-size: 20px;
    }

    .about-section {
        padding: 24px 16px 32px;
    }

    .about-layout {
        gap: 4px;
    }

    .about-visual {
        width: min(100%, 360px);
        min-height: 290px;
        margin: 0 auto;
    }

    .about-bg-image {
        width: 100%;
        height: auto;
        max-width: 360px;
    }

    .about-doctor-wrapper {
        width: 150px;
        left: min(60%, 210px);
        top: 150px;
    }

    .about-heart-badge {
        left: min(49%, 170px);
        top: 197px;
        width: 58px;
        height: 58px;
    }

    .about-heart-badge i,
    .about-heart-badge svg {
        font-size: 40px;
    }

    .about-info-subtitle {
        font-size: 20px;
    }

    .about-info-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .about-info-points-title {
        font-size: 17px;
        margin-top: 18px;
        padding-top: 14px;
    }

    .about-info-points {
        margin-top: 14px;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .about-info-points li {
        font-size: 15px;
    }

    .achievements-section {
        top: 0;
        margin-top: 0;
        padding: 52px 14px 60px;
    }

    .achievements-title {
        top: 0;
        font-size: 28px;
    }

    .achievements-subtitle {
        top: 0;
        font-size: 14px;
        line-height: 1.5;
    }

    .achievements-grid {
        top: 0;
        margin-top: 24px;
        grid-template-columns: minmax(0, 290px);
        gap: 38px;
    }

    .achievement-card {
        min-height: 148px;
        padding: 42px 14px 16px;
        border-radius: 14px;
    }

    .achievement-icon-box {
        width: 60px;
        height: 62px;
        top: -24px;
        left: 50%;
        transform: translateX(-50%);
    }

    .achievement-card:hover .achievement-icon-box {
        transform: translateX(-50%) translateY(-4px);
    }

    .achievement-icon-box i,
    .achievement-icon-box svg {
        font-size: 28px;
    }

    .achievement-value {
        font-size: 24px;
    }

    .achievement-label {
        margin-top: 5px;
        font-size: 15px;
    }

    .advantage-section {
        margin-top: 18px;
        padding: 0 12px 32px;
    }

    .advantage-box {
        width: 100%;
        min-height: 400px;
    }

    .advantage-content {
        padding: 24px 16px 20px;
    }

    .advantage-title {
        font-size: 1.65rem;
    }

    .advantage-subtitle {
        font-size: 0.9rem;
    }

    .advantage-grid {
        grid-template-columns: minmax(0, 280px);
        justify-content: center;
        gap: 12px;
    }

    .advantage-card {
        padding: 14px 12px;
    }

    .gynecology-services-section {
        padding: 40px 14px 46px;
    }

    .gynecology-services-title {
        font-size: 1.48rem;
        line-height: 1.26;
    }

    .gynecology-services-subtitle {
        margin-top: 10px;
        padding: 6px 12px;
        font-size: 0.92rem;
    }

    .gynecology-services-description {
        margin-top: 14px;
        font-size: 0.88rem;
        line-height: 1.62;
    }

    .gynecology-services-grid {
        grid-template-columns: 1fr;
        margin-top: 22px;
        gap: 12px;
    }

    .gynecology-service-card {
        padding: 16px 13px 13px;
    }

    .gynecology-service-title {
        font-size: 0.98rem;
    }

    .gynecology-service-text {
        font-size: 0.88rem;
    }

    .meet-doctors-section {
        padding: 38px 12px 44px;
    }

    .meet-doctors-box {
        min-height: auto;
        height: auto;
        padding: 22px 14px;
    }

    .meet-doctors-images {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .meet-doctor-image {
        height: auto;
    }
}

/* =========================
   Site Footer
========================= */
.site-footer {
    position: relative;
    background-color: #263967;
    overflow: hidden;
    color: #ffffff;
}

/* Background image at 50% opacity */
.footer-bg-overlay {
    position: absolute;
    inset: 0;
    background: url("Assets/Backgrounds/footer bg.png") center / cover no-repeat;
    opacity: 0.50;
    pointer-events: none;
    z-index: 0;
}

/* ---- Main Area ---- */
.footer-main {
    position: relative;
    z-index: 1;
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem) clamp(2.5rem, 5vw, 4rem);
}

.footer-container {
    max-width: min(96%, 78rem);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: start;
}

/* ---- Column : Brand ---- */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo {
    height: 58px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-hospital-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 26px;
}

/* ---- Column titles ---- */
.footer-col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: 0.3px;
}

.footer-col-title-bar {
    display: inline-block;
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: linear-gradient(180deg, #0dcaf0 0%, #11b694 100%);
    flex-shrink: 0;
}

/* ---- Quick Links / Services ---- */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.28s ease, gap 0.28s ease, padding-left 0.28s ease;
}

.footer-links li a i {
    font-size: 10px;
    color: #0dcaf0;
    transition: transform 0.28s ease;
    flex-shrink: 0;
}

.footer-links li a:hover {
    color: #0dcaf0;
    padding-left: 6px;
    gap: 12px;
}

.footer-links li a:hover i {
    transform: translateX(4px);
}

/* ---- Contact List ---- */
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(13, 202, 240, 0.15);
    border: 1px solid rgba(13, 202, 240, 0.3);
    color: #0dcaf0;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-contact-list li:hover .footer-contact-icon {
    background: rgba(13, 202, 240, 0.3);
    transform: scale(1.12);
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-list a:hover {
    color: #0dcaf0;
}

.footer-contact-list em {
    font-style: normal;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ================================
   Social Media Icons — Hover FX
================================ */
.footer-connect {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.footer-connect-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease,
                color 0.3s ease;
}

/* Pulsing ring */
.fsi-ring {
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
}

/* Shine sweep */
.fsi-shine {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(130deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.48) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    transition: none;
}

/* Tooltip label */
.fsi-label {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    white-space: nowrap;
    background: rgba(20, 30, 60, 0.92);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 10;
}

.fsi-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(20, 30, 60, 0.92);
}

/* Icon — 3-D flip on hover */
.footer-connect-icon i {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1;
    display: block;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backface-visibility: hidden;
}

/* ---- Hover state (shared) ---- */
.footer-connect-icon:hover {
    transform: translateY(-6px) scale(1.18);
    color: #ffffff;
}

.footer-connect-icon:hover .fsi-ring {
    animation: fsi-ring-pulse 0.7s ease forwards;
}

.footer-connect-icon:hover .fsi-shine {
    animation: fsi-shine-sweep 0.55s ease forwards;
}

.footer-connect-icon:hover .fsi-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.footer-connect-icon:hover i {
    transform: rotateY(360deg);
}

/* ---- Platform brand colours ---- */
.footer-connect-icon[data-platform="Facebook"]:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 8px 28px rgba(24, 119, 242, 0.55), 0 0 0 4px rgba(24, 119, 242, 0.18);
}
.footer-connect-icon[data-platform="Facebook"]:hover .fsi-ring {
    border-color: rgba(24, 119, 242, 0.6);
}

.footer-connect-icon[data-platform="Instagram"]:hover {
    background: radial-gradient(circle at 30% 110%, #ffd355 0%, #f09433 10%, #e6683c 22%, #dc2743 36%, #cc2366 52%, #bc1888 66%);
    border-color: #e6683c;
    box-shadow: 0 8px 28px rgba(220, 39, 67, 0.55), 0 0 0 4px rgba(220, 39, 67, 0.18);
}
.footer-connect-icon[data-platform="Instagram"]:hover .fsi-ring {
    border-color: rgba(220, 39, 67, 0.6);
}

.footer-connect-icon[data-platform="YouTube"]:hover {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 8px 28px rgba(255, 0, 0, 0.55), 0 0 0 4px rgba(255, 0, 0, 0.18);
}
.footer-connect-icon[data-platform="YouTube"]:hover .fsi-ring {
    border-color: rgba(255, 0, 0, 0.6);
}

.footer-connect-icon[data-platform="WhatsApp"]:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55), 0 0 0 4px rgba(37, 211, 102, 0.18);
}
.footer-connect-icon[data-platform="WhatsApp"]:hover .fsi-ring {
    border-color: rgba(37, 211, 102, 0.6);
}

.footer-connect-icon[data-platform="LinkedIn"]:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 8px 28px rgba(0, 119, 181, 0.55), 0 0 0 4px rgba(0, 119, 181, 0.18);
}
.footer-connect-icon[data-platform="LinkedIn"]:hover .fsi-ring {
    border-color: rgba(0, 119, 181, 0.6);
}

.footer-connect-icon[data-platform="Twitter"]:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    box-shadow: 0 8px 28px rgba(29, 161, 242, 0.55), 0 0 0 4px rgba(29, 161, 242, 0.18);
}
.footer-connect-icon[data-platform="Twitter"]:hover .fsi-ring {
    border-color: rgba(29, 161, 242, 0.6);
}

/* ---- Social icon keyframes ---- */
@keyframes fsi-ring-pulse {
    0%   { transform: scale(1);   opacity: 0.8; }
    50%  { transform: scale(1.5); opacity: 0.4; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes fsi-shine-sweep {
    0%   { transform: translateX(-120%) skewX(-20deg); }
    100% { transform: translateX(160%)  skewX(-20deg); }
}

/* ---- Divider ---- */
.site-footer::after {
    content: '';
    display: block;
    position: relative;
    z-index: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 30%, rgba(13, 202, 240, 0.4) 50%, rgba(255,255,255,0.15) 70%, transparent 100%);
}

/* ---- Bottom Bar ---- */
.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 18px clamp(1rem, 3vw, 2rem);
}

.footer-bottom-inner {
    max-width: min(96%, 78rem);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copyright {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-bottom-connect {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-connect a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.footer-bottom-connect i {
    font-size: 14px;
    line-height: 1;
    display: block;
}

.footer-bottom-connect a:hover {
    transform: translateY(-2px);
    background: #0dcaf0;
    border-color: #0dcaf0;
    color: #ffffff;
}

.footer-bottom-links a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: #0dcaf0;
}

/* ---- Footer Responsive ---- */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 3rem;
    }
    .footer-brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand-col {
        grid-column: span 1;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .footer-bottom-links {
        gap: 14px;
    }
}