@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {

    --primary-blue: #0f172a;
    --primary-color: var(--primary-blue);
    --primary-dark: #000a1f;
    --nav-bg: rgba(255, 255, 255, 0.7);

    --secondary-teal: #00b0f0;

    --text-dark: #0f172a;
    --text-main: #334155;

    --text-muted: #64748b;

    --text-light: #ffffff;

    --bg-white: #ffffff;
    --bg-soft: #f8fafc;

    --border-color: #e2e8f0;




    --brand-gradient: linear-gradient(135deg, rgba(21, 55, 135, 0.9)0%, var(--secondary-teal) 100%);
    --soft-gradient: linear-gradient(135deg, rgba(21, 55, 135, 0.9) 0%, rgba(0, 176, 240, 0.616) 100%);
    --soft-gradient2: linear-gradient(135deg, rgba(21, 55, 135, 0.300) 0%, rgba(0, 176, 240, 0.300) 100%);
    --card-gradient: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);


    --shadow-premium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.04);
    --shadow-soft: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-raised: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    --font-heading: "Outfit", sans-serif;
    --font-body: "Inter", sans-serif;


    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 64px;
    --section-padding: var(--space-xl) 0;
    --container-width: 1200px;
    --border-radius: 12px;
    --transition-base: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);


    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.1);
    --glass-blur: blur(12px);


    --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    --glow-secondary: 0 0 20px rgba(0, 176, 240, 0.3);
    --glow-primary: 0 0 20px rgba(15, 23, 42, 0.2);


    --mesh-gradient: radial-gradient(at 0% 0%, rgba(15, 23, 42, 0.05) 0, transparent 50%),
        radial-gradient(at 50% 0%, rgba(0, 176, 240, 0.05) 0, transparent 50%),
        radial-gradient(at 100% 0%, rgba(15, 23, 42, 0.05) 0, transparent 50%);
}


@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 0px rgba(0, 176, 240, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 176, 240, 0.5);
    }

    100% {
        box-shadow: 0 0 0px rgba(0, 176, 240, 0);
    }
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes reveal-left {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bg-mesh {
    background: var(--bg-soft);
    background-image: var(--mesh-gradient);
    position: relative;
}

.glass-morphism {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.stagger>* {
    opacity: 0;
}

.reveal.active .stagger>*,
.stagger.active>* {
    opacity: 1 !important;
    animation: reveal-up 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.stagger>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger>*:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger>*:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger>*:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger>*:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger>*:nth-child(6) {
    animation-delay: 0.6s;
}

.stagger>*:nth-child(7) {
    animation-delay: 0.7s;
}

.stagger>*:nth-child(8) {
    animation-delay: 0.8s;
}

.stagger>*:nth-child(9) {
    animation-delay: 0.9s;
}

.stagger>*:nth-child(10) {
    animation-delay: 1.0s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: var(--space-sm);
}

a {
    text-decoration: none !important;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 120px;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-base);
}

.main-header.scrolled {
    background-color: var(--nav-bg);
    padding: 8px 0;
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-header.scrolled .logo a {
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu li a {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 17px;
    position: relative;
    letter-spacing: 0.3px;
    padding: 8px 0;
    transition: var(--transition-base);
}

body.home-page .main-header:not(.scrolled) .nav-menu li a {
    color: var(--text-light);
}

body.home-page .main-header:not(.scrolled) .menu-toggle .bar {
    background-color: var(--text-light);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-teal), #ffffff);
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(0, 176, 240, 0);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
    box-shadow: 0 0 15px rgba(0, 176, 240, 0.5);
}

.main-header.scrolled .nav-menu li a {
    color: var(--primary-blue);
}

.main-header.scrolled .nav-menu li a:hover,
.main-header.scrolled .nav-menu li a.active {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
}

.main-header.scrolled .nav-menu li a::after {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
}

.nav-contact-btn,
.header-login-btn {
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    transition: var(--transition-base) !important;
}



.header-login-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white !important;
}

.main-header.scrolled .header-login-btn {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.1);
    color: var(--primary-blue) !important;
}

.nav-contact-btn:hover,
.header-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-raised);
}

.nav-contact-btn::after,
.header-login-btn::after {
    display: none !important;
}

.logo-place {
    width: 90px;
    display: inline-block;
}

.dropdown {
    position: relative;
}

.dropdown-head {
    text-align: center;
}


.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--bg-white);
    width: 900px;
    max-width: 95vw;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-raised), 0 0 0 1px rgba(15, 23, 42, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1000;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.mega-menu-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


.mega-menu.gallery-dropdown {
    width: 240px;
    padding: 24px;
}

.mega-menu.gallery-dropdown .mega-menu-container {
    grid-template-columns: 1fr;
    gap: 10px;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    font-size: 0.95rem;
    color: var(--secondary-teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 176, 240, 0.1);
    font-weight: 700;
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu-list li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    color: var(--text-main) !important;
    font-size: 0.95rem !important;
    padding: 0 !important;
    font-weight: 500 !important;
    transition: var(--transition-base);
}

.mega-menu-list li a i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 176, 240, 0.08);
    color: var(--secondary-teal);
    border-radius: 6px;
    font-size: 0.8rem;
    transition: var(--transition-base);
}

.mega-menu-list li a:hover {
    color: var(--secondary-teal) !important;
    transform: translateX(5px);
}

.mega-menu-list li a:hover i {
    background: var(--secondary-teal);
    color: white;
}

.mega-menu-list li a::after {
    display: none !important;
}





.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.main-header.scrolled .menu-toggle .bar {
    background-color: var(--primary-color);
}

.menu-toggle.active .bar-1 {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar-2 {
    opacity: 0;
}

.menu-toggle.active .bar-3 {
    transform: translateY(-9px) rotate(-45deg);
}

.menu-toggle.active .bar {
    background-color: var(--primary-color) !important;
}

.close-menu {
    display: none;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 992px) {
    .logo-place {
        width: 70px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: var(--bg-white) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding-top: 100px !important;
        padding-bottom: 50px !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;

        display: flex !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: scale(0.95);
        transform-origin: top right;
        transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, border-radius 0.4s ease !important;
    }

    .nav-menu.active {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: scale(1);
        border-radius: 0;
        gap: 15px !important;
    }

    .nav-menu.shrinking {
        transform: scale(0) !important;
        opacity: 0 !important;
        border-radius: 50% !important;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        width: 32px;
        height: 32px;
        cursor: pointer;
        z-index: 1000;
        transition: var(--transition-base);
    }

    .close-menu img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .close-menu:hover {
        transform: rotate(90deg);
    }

    .close-menu.rotating img {
        animation: rotateClose 0.5s ease-in-out forwards;
    }

    @keyframes rotateClose {
        from {
            transform: rotate(0deg) scale(1);
        }

        to {
            transform: rotate(360deg) scale(0.8);
        }
    }

    body.no-scroll {
        overflow: hidden;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        position: relative;
    }

    .nav-menu li.dropdown {
        padding-bottom: 0;
    }

    .nav-menu li a {
        font-size: 1.35rem;
        display: block;
        width: fit-content;
        margin: 0 auto;
        color: var(--text-dark);
    }

    .nav-menu li a::after {
        bottom: -5px;
    }

    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        text-align: center;
        background-color: rgba(15, 23, 42, 0.02);
        width: 100%;
        padding: 5px 0 20px;
        border: none;
        backdrop-filter: none;
        margin: 0;
    }

    .mega-menu.gallery-dropdown {
        width: 100%;
    }

    .mega-menu-container {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .mega-menu-column {
        width: 100%;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mega-menu-title {
        font-size: 0.75rem;
        margin: 0 auto 10px;
        color: var(--secondary-teal);
        border-bottom: 1px solid rgba(0, 176, 240, 0.1);
        padding-bottom: 5px;
        width: 70%;
        text-align: center;
    }

    .mega-menu-list {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .mega-menu-list li {
        width: 100%;
        padding: 0 !important;
        margin: 0 !important;
        text-align: center;
    }

    .mega-menu-list li a {
        font-size: 1.05rem !important;
        padding: 10px 0 !important;
        font-weight: 500 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center;
        gap: 10px;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .mega-menu-list li a i {
        font-size: 0.75rem;
        width: 20px;
        height: 20px;
        margin: 0;
    }

    .mega-dropdown:hover .mega-menu {
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown.open .mega-menu {
        display: block;
        padding-top: 20px;
    }

    .dropdown-toggle i {
        transition: transform 0.3s ease;
    }

    .dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--primary-color, #0f172a);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(8, 35, 64, 0.95) 0%,
            rgba(8, 35, 64, 0.85) 35%,
            rgba(8, 35, 64, 0.75) 60%,
            rgba(8, 35, 64, 0.65) 100%);
    z-index: 1;
    backdrop-filter: blur(5px);
}

.hero-background-glow {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: var(--secondary-teal);
    filter: blur(150px);
    opacity: 0.2;
    z-index: 0;
    animation: float 10s infinite alternate ease-in-out;
}

.hero-container {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    body.home-page .main-header:not(.scrolled) .nav-menu li a {
        color: var(--text-dark);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 60px;
        padding-top: 40px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-description {
        margin-left: 0;
        margin-right: auto;
    }

    .hero-slider-container {
        padding-left: 0;
        height: 400px;
    }

    .hero-slider {
        max-width: 500px;
        height: 400px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 300px;
        clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 10% 100%, 0% 50%);
    }

    .hero-slider::after {
        clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 10% 100%, 0% 50%);
    }
}

.hero-content {
    color: var(--text-light);
    padding-top: 50px;
    max-width: 700px;
    transform: translateY(-40px);

}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: var(--space-sm);
    color: var(--secondary-teal);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--text-light);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    line-height: 1.4;
    opacity: 1;
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.hero-social {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.hero-btns .btn--outline2 {
    background-color: #044d82;
    border: 1.5px solid #1a82d0;
    border-radius: 8px;
    color: #ffffff;
    backdrop-filter: none;
}

.hero-btns .btn--outline2:hover {
    background-color: #033c66;
    border-color: #1a82d0;
    color: #ffffff;
}

.hero-social a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.hero-social a:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    animation: heroSlideIn 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes heroSlideIn {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-slider {
    position: absolute;
    left: 200px;
    right: 0;
    margin: auto;
    top: 70%;
    transform: translateY(-50%);
    width: 90%;
    max-width: 600px;
    height: 600px;
    z-index: 2;
    animation: heroFloat 8s infinite ease-in-out;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(-50%) translateX(0px);
    }

    50% {
        transform: translateY(-54%) translateX(5px);
    }
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
    pointer-events: none;
    z-index: 3;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1.2s ease-in-out, filter 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
    filter: blur(0);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    clip-path: inset(10px 0 0 0);
    transition: transform 10s ease-out;
}

.slide.active img {
    transform: scale(1);
}

.custom-shape-divider-bottom-1775127699 {
    display: none;
}

@media (min-width: 1025px) {
    .custom-shape-divider-bottom-1775127699 {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        transform: rotate(180deg);
        z-index: 5;
    }

    .custom-shape-divider-bottom-1775127699 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 100px;
        transform: rotateY(180deg);
    }

    .custom-shape-divider-bottom-1775127699 .shape-fill {
        fill: #FFFFFF;
    }
}

.custom-shape-divider-bottom-1776148947 {
    display: none;
}

@media (max-width: 1024px) {
    .custom-shape-divider-bottom-1776148947 {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        transform: rotate(180deg);
        z-index: 5;
    }

    .custom-shape-divider-bottom-1776148947 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 150px;
    }

    .custom-shape-divider-bottom-1776148947 .shape-fill {
        fill: #FFFFFF;
    }
}

@media (max-width: 767px) {
    .custom-shape-divider-bottom-1776148947 svg {
        height: 63px;
    }
}

.hero-curved-text-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 6;
    pointer-events: none;
    line-height: 0;
}

.hero-curved-text-container svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    overflow: visible;
}

.hero-curved-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    fill: #FFFFFF;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .hero-curved-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .hero-curved-text-container svg {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-curved-text {
        font-size: 0.95rem;
        letter-spacing: 3px;
    }

    .hero-curved-text-container svg {
        height: 90px;
    }
}

.hospital-page {
    padding-top: 0;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 9px 24px;
}

.section {
    padding: var(--section-padding);
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile);
    }
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    border: none;
    gap: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn--large {
    padding: 10px 24px;
    font-size: 18px;
}

.btn--primary {
    background: var(--brand-gradient);
    color: var(--text-light);
    box-shadow: 0 5px 5px -5px rgba(7, 195, 242, 0.4);
    background-size: 200% 100%;
    display: inline-flex;
    justify-items: center;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(7, 195, 241, 0.6);
    animation: shimmer 1.5s ease-in-out;
}

.btn--outline {
    background-color: transparent;
    border: 2px solid var(--secondary-teal);
    color: var(--secondary-teal);
}


.btn--outline:hover {
    background: var(--secondary-teal);
    color: var(--text-light);
    border-color: transparent;
    transform: translateY(-3px);
}

.btn--outline2 {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

.btn--outline2:hover {
    background-color: var(--bg-soft);
    color: var(--secondary-teal);
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: var(--shadow-raised);
}

.blog-card:hover,
.testimonial-card:hover,
.gallery-item:hover {
    transform: translateY(-12px) scale(1.03) rotateX(1deg) rotateY(1deg) !important;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25),
        0 0 30px rgba(0, 176, 240, 0.35);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.btn:hover {
    filter: brightness(1.15);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 20px -5px rgba(0, 176, 240, 0.4);
}


@keyframes blogFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card.animated {
    animation: blogFadeIn 0.8s ease forwards;
    opacity: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.bg-light {
    background-color: var(--bg-light);
}

.w-full {
    width: 100%;
}

.section-subtitle {
    display: block;
    color: var(--secondary-teal);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title-left {
    font-size: 2.22rem;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
    border-radius: 4px;
    margin: 18px auto 0;
}

.section-title-center {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    position: relative;
}

.section-desc-center {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-buttons-center {
    text-align: center;
    margin-top: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0, 176, 240, 0.2), rgba(15, 23, 42, 0.08));
    z-index: 0;
    animation: glow-pulse 4s ease infinite;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-raised);
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.02);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--brand-gradient);
    color: var(--text-light);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-raised), var(--glow-secondary);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.about-experience-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 4px;
}

.about-experience-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-description {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* --- Modern Diagonal Mission & Vision --- */
.mission-vision-modern {
    display: flex;
    margin-top: 80px;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background: #fff;
    min-height: 520px;
    position: relative;
    box-shadow: 0 0 35px var(--secondary-teal)
}

.mv-card {
    flex: 1;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
}

.mv-vision {
    background: linear-gradient(135deg, rgba(21, 55, 135, 0.9) 0%, var(--secondary-teal) 100%);
    color: white;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 2;
    padding-right: 15%;
}

.mv-mission {
    background: #fdfdfd;
    color: var(--primary-blue);
    margin-left: -15%;
    padding-left: 20%;
    z-index: 1;
}

.mv-title {
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.mv-vision .mv-title {
    color: white;
}

.mv-title span {
    font-size: 3.5rem;
    display: block;
    letter-spacing: -1px;
}

.mv-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 450px;
}

.mv-vision .mv-text {
    color: rgba(255, 255, 255, 0.95);
}

.mv-mission .mv-title {
    color: #1e293b;
    margin-top: 20px;
}

.mv-mission .mv-title span {
    color: #0f172a;
}

.mv-icon-wrapper {
    font-size: 5.5rem;
    transition: var(--transition-smooth);
}

.mv-vision .mv-icon-wrapper {
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.mv-mission .mv-icon-wrapper {
    color: #1e293b;
    text-align: right;
    opacity: 0.8;
}

.mv-card:hover .mv-icon-wrapper {
    transform: scale(1.15) rotate(8deg);
    opacity: 1;
}

.mv-card:hover .mv-text {
    opacity: 1;
}

@media (max-width: 992px) {
    .mission-vision-modern {
        flex-direction: column;
        min-height: auto;
        border-radius: 40px;
        margin-top: 50px;
    }

    .mv-vision {
        clip-path: none;
        padding: 50px;
        margin-right: 0;
    }

    .mv-mission {
        margin-left: 0;
        padding: 50px;
    }

    .mv-title span {
        font-size: 2.8rem;
    }

    .mv-icon-wrapper {
        font-size: 4rem;
        margin-top: 20px;
    }

    .mv-mission {
        display: flex;
        flex-direction: column-reverse;
    }
}

.about-highlights {
    margin: 30px 0;
}

.about-highlights li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
}

.highlight-icon {
    width: 25px;
    height: 25px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.8rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card-placeholder {
    background-color: var(--bg-white);
    padding: var(--space-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.service-card-placeholder:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--secondary-teal);
}

.service-icon-box {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--secondary-teal);
}

.service-card-title {
    margin-bottom: var(--space-xs);
    font-size: 1.25rem;
}

.service-card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.why-choose-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.why-choose-item {
    text-align: center;
    padding: 36px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 176, 240, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 176, 240, 0.04), rgba(15, 23, 42, 0.02));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-choose-item:hover::before {
    opacity: 1;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 176, 240, 0.12);
    border-color: rgba(0, 176, 240, 0.25);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 176, 240, 0.12), rgba(15, 23, 42, 0.06));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    box-shadow: 0 4px 16px rgba(0, 176, 240, 0.1);
}

.why-choose-item:hover .why-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 8px 24px rgba(0, 176, 240, 0.2);
}

.appointment-cta {
    position: relative;
    padding: 80px 0;
    color: var(--text-light);
    background-image: url('https://images.unsplash.com/photo-1576091160550-2173bdb999ef?auto=format&fit=crop&q=80&w=1600');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--soft-gradient)
}

.container-cta {
    position: relative;
    z-index: 2;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 100px;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-form-box {
    background-color: var(--bg-white);
    padding: var(--space-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-raised);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.quick-appointment-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}


.quick-appointment-form input,
.quick-appointment-form select {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: var(--space-sm);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-base);
    background-color: #f1f5f9;
}

.quick-appointment-form input:focus,
.quick-appointment-form select:focus {
    outline: none;
    border-color: var(--secondary-teal);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1);
}

.departments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.dept-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 320px;
    max-width: 400px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(0, 176, 240, 0.12);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.dept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dept-card:hover::before {
    transform: scaleX(1);
}

.dept-card:hover {
    border-color: rgba(0, 176, 240, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 176, 240, 0.12), 0 4px 20px rgba(15, 23, 42, 0.08);
}

.dept-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 176, 240, 0.12), rgba(15, 23, 42, 0.06));
    color: var(--secondary-teal);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.dept-card:hover .dept-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--glow-secondary);
    background: var(--soft-gradient);
    color: white;
}

.dept-card h3 {
    margin-bottom: 6px;
    font-size: 1.25rem;
    color: var(--primary-blue);
}

.dept-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-list {
    margin-top: 12px;
    padding-left: 0;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-list li:hover {
    color: var(--primary-blue);
}

.service-list li i {
    color: var(--secondary-teal);
    font-size: 0.85rem;
    margin-top: 4px;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.doctor-card {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 176, 240, 0.1);
    position: relative;
}

.doctor-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.04) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.doctor-card:hover::after {
    opacity: 1;
}

.doctor-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 24px 60px rgba(0, 176, 240, 0.14), 0 4px 20px rgba(15, 23, 42, 0.1);
    border-color: rgba(0, 176, 240, 0.3);
}

.doctor-img-box {
    height: 200px;
    width: 200px;
    align-items: center;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.doctor-img-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
    pointer-events: none;
}

.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-card:hover .doctor-img {
    transform: scale(1.08);
}

.doctor-info {
    padding: 20px 24px 24px;
    text-align: center;
    background: transparent;
}

.doctor-info h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--primary-blue);
}

.doctor-spec {
    color: var(--secondary-teal);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    background: rgba(0, 176, 240, 0.08);
    border-radius: 20px;
    display: inline-block;
    margin-top: 2px;
}

/* Read More Button on Doctor Cards */
.btn-read-more-dr {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #00aadd;
    background: #fff;
    border: 2px solid #00aadd;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-read-more-dr:hover {
    background: #00aadd;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0,170,221,0.3);
}

/* ===== DOCTOR DETAIL MODAL ===== */
.dr-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 40, 0.82);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.dr-modal-overlay.active {
    display: flex;
}
.dr-modal-box {
    background: #fff;
    border-radius: 20px;
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modalSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.dr-modal-close {
    position: absolute;
    top: 16px; right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.dr-modal-close:hover { color: var(--primary-blue); }
.dr-modal-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}
.dr-modal-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dr-modal-img-main {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    height: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.dr-modal-img-side {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 160px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.dr-modal-content h2 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 6px;
}
.dr-modal-spec {
    color: var(--secondary-teal);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.dr-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dr-modal-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: #333;
    line-height: 1.5;
}
.dr-modal-list li i {
    color: var(--secondary-teal);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .dr-modal-inner { grid-template-columns: 1fr; }
    .dr-modal-box { padding: 24px 18px; }
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    background: var(--bg-soft);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-raised), var(--glow-secondary);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.85);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 176, 240, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 2.5rem;
    color: white;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.gallery-item:hover .overlay-icon {
    transform: translateY(0);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.88);
    padding: 36px 32px;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
    position: relative;
    border: 1px solid rgba(0, 176, 240, 0.1);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: var(--secondary-teal);
    opacity: 0.08;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-teal), var(--primary-blue));
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover::after {
    width: 100%;
}

.testimonial-card:hover::before {
    opacity: 0.14;
    transform: scale(1.05);
}

.testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(0, 176, 240, 0.12);
    border-color: rgba(0, 176, 240, 0.25);
    transform: translateY(-6px);
}

.testimonial-rating {
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author h4 {
    color: var(--primary-blue);
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--secondary-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Google Reviews UI Styles */
.google-reviews-section {
    padding: var(--section-padding);
    background-color: var(--bg-soft);
    position: relative;
}

.google-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.google-logo-wrapper {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.google-logo-wrapper img {
    width: 24px;
}

.google-brand-text h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #3c4043;
}

.google-rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.google-rating-num {
    font-weight: 700;
    color: #3c4043;
}

.google-stars-static {
    color: #fbbc04;
    font-size: 0.9rem;
}

.google-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.google-review-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease;
}

.google-review-card:hover {
    transform: translateY(-5px);
}

.google-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.google-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a73e8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.google-user-details {
    display: flex;
    flex-direction: column;
}

.google-user-name {
    font-weight: 600;
    color: #202124;
    font-size: 0.95rem;
}

.google-meta {
    font-size: 0.8rem;
    color: #70757a;
}

.google-stars {
    color: #fbbc04;
    font-size: 0.85rem;
}

.google-review-body {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #3c4043;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.google-write-review {
    background-color: #1a73e8;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.google-write-review:hover {
    background-color: #1557b0;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

@media (max-width: 768px) {
    .google-review-header {
        flex-direction: column;
        align-items: flex-start;
    }
}



.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    position: relative;
    height: 480px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    background: var(--primary-blue);
    border: none;
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.25);
}

.blog-img-box {
    position: absolute;
    inset: 0;
    z-index: 1;
    height: 100% !important;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.15);
}

.blog-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.blog-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2px 10px;
    z-index: 3;
    color: var(--text-dark);
}

.blog-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 100px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-info h3 {
    font-size: 1.8rem !important;
    color: var(--text-dark) !important;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.blog-info p {
    font-size: 1rem !important;
    color: var(--text-dark) !important;
    margin-bottom: 25px !important;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;

}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-expand-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover .blog-expand-btn {
    transform: scale(1.1) rotate(90deg);
    background: var(--secondary-teal);
    color: #fff;
}


.blog-details-expand {
    display: none;
    width: 100%;
    background: var(--bg-white);
    border-radius: 30px;
    margin-top: 25px;
    padding: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-premium);
    grid-column: 1 / -1;
}

.blog-details-expand.active {
    display: block;
    padding: 50px;
    animation: reveal-up 0.6s forwards;
}

.blog-details-content h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.blog-details-content .procedures-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.blog-details-content .procedures-list li {
    background: var(--bg-soft);
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-details-content .procedures-list li:hover {
    background: var(--bg-white);
    transform: translateX(10px);
    border-color: var(--secondary-teal);
    color: var(--secondary-teal);
}

.blog-details-content .procedures-list li::before {
    content: '→';
    color: var(--secondary-teal);
    font-weight: 800;
}


.contact-info-strip {
    background-color: var(--primary-color);
    padding: 40px 0;
    color: var(--text-light);
}

.contact-strip-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-strip-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
}

.strip-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

@media (max-width: 1024px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .hero-social {
        justify-content: center;
    }

    .hero-slider-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-header.scrolled {
        padding: 7px 0;
    }

    .main-header {
        height: 100px;
    }

    body {
        font-size: 14px;
    }

    .section-title-left,
    .section-title-center {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .btn {
        padding: 9px 20px;
        font-size: 0.85rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    h5 {
        font-size: 1rem;
    }

    .about-experience-badge {
        bottom: -50px;
        right: 10px;
        padding: 8px;
    }

    .about-experience-num {
        font-size: 2rem;
    }

    .dept-card {
        flex-direction: column;
        text-align: center;
    }

    .dept-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .hero-section {
        height: auto;
        min-height: 550px;
        padding-top: 100px;
        padding-bottom: 50px;
    }


    .hero-slider-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-strip-grid {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer {
    position: relative;
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 120px 0 0;
    overflow: hidden;
}

.custom-shape-divider-top-1775130317 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.custom-shape-divider-top-1775130317 svg {
    position: relative;
    display: block;
    width: calc(144% + 1.3px);
    height: 80px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1775130317 .shape-fill {
    fill: #FFFFFF;
}

.footer-grid {
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-col h3 {
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-teal);
    margin-top: 12px;
    border-radius: 2px;
}

.footer-logo a .logo-place {
    width: 100px;
}

.footer-col p {
    font-size: 0.95rem;
    color: var(--bg-white);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: var(--space-md);
}

.footer-social a {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    opacity: 1;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.btm-footer {
    margin: 0 auto;
}

.bottom-links li a:hover {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 176, 240, 0.45);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(0, 176, 240, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 176, 240, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes spinOnce {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceDot {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes borderPulse {
    0% {
        border-color: var(--primary-color);
    }

    50% {
        border-color: var(--accent-color);
    }

    100% {
        border-color: var(--primary-color);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(0, 176, 240, 0.3);
    }

    50% {
        box-shadow: 0 0 22px rgba(0, 176, 240, 0.7);
    }
}

@keyframes underlineGrow {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}

.hero-section {
    background-size: 110% 110%;
    animation: heroZoom 4s ease-in-out infinite alternate;
    perspective: 1000px;
}

@keyframes heroZoom {
    from {
        background-size: 100% 100%;
    }

    to {
        background-size: 115% 115%;
    }
}

.hero-gradient-overlay {
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    z-index: 1;
    animation: floatY 6s ease-in-out infinite;
}

.hero-section::before {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #ffffff 0%, transparent 70%);
    top: 10%;
    left: -80px;
    animation-duration: 7s;
}

.hero-section::after {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #a0e7e5 0%, transparent 70%);
    bottom: 15%;
    right: -60px;
    animation-duration: 9s;
    animation-direction: alternate-reverse;
}

.about-experience-badge {
    animation: floatY 4s ease-in-out infinite;
}

.btn--primary {
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    position: relative;
    overflow: hidden;
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.btn--primary:hover::after {
    left: 150%;
}

.btn--outline {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.btn--outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary-teal);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: inherit;
}

.btn--outline:hover::before {
    transform: scaleX(1);
}

.btn--outline:hover {
    color: var(--text-light);
    border-color: var(--primary-color);
}

.section-title-center,
.section-title-left {
    position: relative;
    display: inline-block;
}

.section-title-center::after,
.section-title-left::after {
    content: '';
    display: block;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    margin-top: 8px;
    transition: width 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active .section-title-center::after,
.reveal.active .section-title-left::after,
.section-header-center .section-title-center::after {
    width: 70px;
}


.specialist-intro-card {
    position: relative;
    margin-top: -30px;
    margin-left: auto;
    margin-right: -40px;
    width: 340px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    z-index: 10;
    animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.intro-spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.intro-spec-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.specialist-intro-card .spec-img-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
    background: #fff;
}

.specialist-intro-card .spec-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialist-intro-card .spec-info h4 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 4px;
    font-weight: 700;
}

.specialist-intro-card .spec-info span {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    line-height: 1.3;
}

.about-image-wrapper {
    position: relative;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .specialist-intro-card {
        margin-top: -60px;
        margin-right: 0;
        width: 300px;
        padding: 18px;
        animation: floatY 5s ease-in-out infinite;
    }
}

@media (max-width: 576px) {
    .specialist-intro-card {
        margin-top: 30px;
        margin-right: 0;
        width: 100%;
        box-shadow: none;
        border-color: rgba(0, 176, 240, 0.2);
        animation: none;
    }
}

.service-card-placeholder {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.service-card-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 176, 240, 0.06) 0%, rgba(52, 152, 219, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: inherit;
}

.service-card-placeholder:hover::before {
    opacity: 1;
}

.service-card-placeholder:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 176, 240, 0.18);
    border-bottom-color: var(--primary-color);
}

.service-icon-box {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.service-card-placeholder:hover .service-icon-box {
    transform: scale(1.3) rotate(-6deg);
}

.why-icon {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        background-color 0.4s ease;
}

.why-choose-item:hover .why-icon {
    transform: scale(1.2) rotate(12deg);
    background: linear-gradient(135deg, rgba(0, 176, 240, 0.099), #0050c91f);
    animation: pulse-ring 1.2s ease-out;
}

.why-choose-item:hover .why-icon {
    filter: drop-shadow(0 4px 12px rgba(0, 176, 240, 0.616));
}

.why-choose-item {
    border-radius: var(--border-radius);
    transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.why-choose-item:hover {
    transform: translateY(-8px);

}

.dept-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    border-left: 4px solid transparent;
    padding-left: 20px;
}

.dept-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 176, 240, 0.07) 0%, rgba(0, 200, 200, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 0;
}

.dept-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 45px rgba(0, 176, 240, 0.15);
    border-left-color: var(--primary-color);
    border-color: transparent;
    border-left-color: var(--primary-color);
}

.dept-card:hover::before {
    opacity: 1;
}

.dept-icon {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.dept-card:hover .dept-icon {
    transform: scale(1.25) rotate(-8deg);
    animation: floatY 1.5s ease-in-out infinite;
}

.dept-card h3,
.dept-card p {
    position: relative;
    z-index: 1;
}

.dept-card:hover h3 {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.doctor-card {
    position: relative;
    overflow: hidden;
}

.doctor-info {
    position: relative;
    z-index: 1;
    transition: background 0.4s ease;
}

.doctor-card:hover .doctor-info {
    background: linear-gradient(135deg, rgba(0, 176, 240, 0.08) 0%, rgba(0, 200, 200, 0.04) 100%);
}

.doctor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 176, 240, 0.2);
}

.doctor-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00c9c9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.doctor-card:hover::after {
    transform: scaleX(1);
}

.doctor-card:hover .doctor-spec {
    color: var(--primary-color);
    transition: color 0.3s ease;
}


.testimonial-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border-top-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.4s ease, color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 176, 240, 0.18);
    background: linear-gradient(160deg, rgba(0, 176, 240, 0.04) 0%, #fff 60%);
    border-top-color: #00c9c9;
}

.testimonial-card:hover::before {
    opacity: 0.14;
    color: #00c9c9;
}



.appointment-cta {
    position: relative;
    overflow: hidden;
}

.appointment-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--soft-gradient);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    z-index: 1;
}

.cta-overlay {
    display: none;
}

.container-cta {
    z-index: 2;
}

.cta-form-box {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta-form-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.quick-appointment-form input:focus,
.quick-appointment-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 176, 240, 0.15);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-social a {
    transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--bg-white), #ffffff);
    transform: translateY(-5px) rotate(8deg);
    color: black;
}

.hero-social a {
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 176, 240, 0.5);
}

.about-highlights li {
    transition: transform 0.3s ease;
}

.about-highlights li:hover {
    transform: translateX(6px);
}

.highlight-icon {
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.about-highlights li:hover .highlight-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.2) rotate(10deg);
}

.services-grid .service-card-placeholder:nth-child(1) {
    transition-delay: 0.05s;
}

.services-grid .service-card-placeholder:nth-child(2) {
    transition-delay: 0.15s;
}

.services-grid .service-card-placeholder:nth-child(3) {
    transition-delay: 0.25s;
}

.services-grid .service-card-placeholder:nth-child(4) {
    transition-delay: 0.35s;
}

.departments-grid .dept-card:nth-child(1) {
    transition-delay: 0.05s;
}

.departments-grid .dept-card:nth-child(2) {
    transition-delay: 0.12s;
}

.departments-grid .dept-card:nth-child(3) {
    transition-delay: 0.19s;
}

.departments-grid .dept-card:nth-child(4) {
    transition-delay: 0.26s;
}

.departments-grid .dept-card:nth-child(5) {
    transition-delay: 0.33s;
}

.departments-grid .dept-card:nth-child(6) {
    transition-delay: 0.40s;
}

.doctors-grid .doctor-card:nth-child(1) {
    transition-delay: 0.05s;
}

.doctors-grid .doctor-card:nth-child(2) {
    transition-delay: 0.15s;
}

.doctors-grid .doctor-card:nth-child(3) {
    transition-delay: 0.25s;
}

.testimonial-grid .testimonial-card:nth-child(1) {
    transition-delay: 0.05s;
}

.testimonial-grid .testimonial-card:nth-child(2) {
    transition-delay: 0.15s;
}

.testimonial-grid .testimonial-card:nth-child(3) {
    transition-delay: 0.25s;
}

.blog-grid .blog-card:nth-child(1) {
    transition-delay: 0.05s;
}

.blog-grid .blog-card:nth-child(2) {
    transition-delay: 0.15s;
}

.blog-grid .blog-card:nth-child(3) {
    transition-delay: 0.25s;
}





.about-img {
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 176, 240, 0.2);
}

.footer-links li a {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, padding-left 0.4s ease;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    transition: width 0.35s ease;
}

.footer-links li a:hover::after {
    width: 100%;
}

.section-subtitle {
    position: relative;
    display: inline-block;
    animation: fadeInScale 0.7s ease both;
}

.why-choose-section {
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 176, 240, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatY 8s ease-in-out infinite;
    pointer-events: none;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 176, 240, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatY 10s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}


.page-banner {
    position: relative;
    padding: 150px 0 80px;
    color: var(--text-dark);
    text-align: center;
    overflow: hidden;
}

/* Membership Banner Styles */
.membership-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.membership-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.membership-banner-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 176, 240, 0.1);
}

.membership-banner-image-box {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 500px;
    overflow: hidden;
}

.membership-banner-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.membership-banner-card:hover .membership-banner-image-box img {
    transform: scale(1.03);
}

.membership-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px;
}

.membership-text-side h1 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.membership-price-tag {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 176, 240, 0.3);
}

.membership-market-price {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.membership-market-price span {
    text-decoration: line-through;
    color: #999;
}

.membership-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.membership-features-list li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.membership-features-list li i {
    color: var(--secondary-teal);
    font-size: 1.2rem;
}

.membership-action-btns {
    display: flex;
    gap: 20px;
}

.membership-details-side {
    background: rgba(0, 176, 240, 0.03);
    padding: 40px;
    border-radius: 20px;
}

.membership-details-title {
    font-size: 1.4rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.membership-details-list {
    list-style: none;
    padding: 0;
}

.membership-details-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.membership-details-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.membership-terms-box {
    margin-top: 40px;
    padding: 30px;
    background: #fdfdfd;
    border-top: 1px solid #eee;
}

.membership-terms-title {
    font-size: 1.2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.membership-terms-list {
    column-count: 2;
    column-gap: 40px;
    list-style: none;
    padding: 0;
}

.membership-terms-list li {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.membership-terms-list li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ccc;
}

@media (max-width: 992px) {
    .membership-content-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .membership-terms-list {
        column-count: 1;
    }

    .membership-text-side h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .membership-action-btns {
        flex-direction: column;
    }

    .membership-banner-image-box {
        max-height: 300px;
    }
}


.breadcrumb a {
    color: var(--accent-color);
}

.breadcrumb span {
    color: var(--secondary-teal);
}


.achievements-section {
    padding: var(--section-padding);
    background-color: var(--bg-soft);
    position: relative;
    z-index: 10;
}

.achievements-box {
    background: var(--brand-gradient);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: var(--shadow-raised);
    position: relative;
    overflow: hidden;
}

.achievements-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    transform: rotate(45deg);
    pointer-events: none;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.counter-item {
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
    color: var(--text-light);
}

.counter-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-teal);
}

.counter-icon {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 15px;
    transition: var(--transition-base);
}

.counter-item:hover .counter-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--text-light);
}

.counter-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    line-height: 1;
}

.counter-item p {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}


.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    background-color: var(--bg-white);
    color: var(--text-main);
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}


.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-main);
    transition: var(--transition-base);
}

.faq-question:hover {
    background-color: var(--accent-color);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 10px 25px 25px;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}


.service-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.service-main-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
}

.treatment-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.step-card {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
}

.step-num {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 15px;
}


.sidebar-widget {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    transition: var(--transition-base);
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}


.meta-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.meta-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content blockquote {
    padding: 30px;
    background-color: var(--accent-color);
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    font-size: 1.3rem;
    margin: 40px 0;
    border-radius: 0 15px 15px 0;
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: var(--font-body);
    transition: var(--transition-base);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 176, 240, 0.1);
}


.gallery-grid.masonry {
    columns: 3 300px;
    column-gap: 20px;
}

.gallery-grid.masonry .gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    height: auto;
}

@media (max-width: 992px) {

    .service-details-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-banner h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}


.merged-service-section {
    scroll-margin-top: 140px;
    padding: 100px 0;
}

.merged-service-section:nth-child(even) {
    background-color: var(--bg-soft);
}

.merged-service-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.merged-service-grid.reverse .service-image-col {
    order: 2;
}

.merged-service-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-base);
    object-fit: cover;
    height: 500px;
}

.merged-service-img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-raised);
}

.service-feature-list {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-main);
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.merged-service-section:nth-child(even) .service-feature-list li {
    background: var(--bg-white);
}

.merged-service-section:nth-child(odd) .service-feature-list li {
    background: var(--bg-soft);
}

.service-feature-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

@media (max-width: 992px) {
    .merged-service-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .merged-service-grid.reverse .service-image-col {
        order: -1;
    }

    .merged-service-section {
        padding: 60px 0;
    }

    .merged-service-img {
        height: 350px;
    }
}



.doctor-card,
.service-card-placeholder,
.dept-card,
.blog-card,
.testimonial-card,
.gallery-item,
.btn {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.4s ease;
}

.doctor-card:hover,
.service-card-placeholder:hover,
.dept-card:hover,
.blog-card:hover,
.testimonial-card:hover {
    z-index: 10;
}

.btn:hover {
    filter: brightness(1.05);
}


/* =========================================
   DOCTORS SECTION — GOD MODE PROFESSIONAL
   ========================================= */

.doctors-section {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative;
    z-index: 1;
    overflow: visible !important;
}


.doctors-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
}


.doctor-dept-block {
    width: 100%;
}


.dept-header-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    background: linear-gradient(110deg, #0f172a 0%, #173691 55%, #0284c7 100%);
    color: #fff;
    padding: 16px 28px;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.22);
    border-left: 5px solid #38bdf8;
    box-sizing: border-box;
}


.dept-header-bar::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}


.dept-doctors-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 4px 2px;
}


.doctor-card {
    background: #fff;
    border-radius: 88px;
    padding: 20px 16px 22px;
    text-align: center;
    border: 1px solid rgba(0, 176, 240, 0.12);
    box-shadow: 0 2px 16px rgba(15, 23, 42, 0.07);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;

    width: 440px;
    flex: 0 0 440px;
}

.doctor-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #173691, #38bdf8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0 0 18px 18px;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(2, 132, 199, 0.18);
    border-color: rgba(56, 189, 248, 0.4);
}

.doctor-card:hover::after {
    transform: scaleX(1);
}


.doctor-img-box {
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 4 / 5;
    background: #f1f5f9;
    flex-shrink: 0;
}

.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.doctor-card:hover .doctor-img {
    transform: scale(1.06);
}


.doctor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doctor-info h3 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.35;
    font-family: var(--font-heading);
}

.doctor-spec {
    font-size: 0.8rem;
    color: #0284c7;
    font-weight: 600;
    line-height: 1.55;
    background: rgba(2, 132, 199, 0.07);
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 4px;
}


@media (max-width: 1200px) {
    .doctor-card {
        width: 420px;
        flex: 0 0 220px;
    }
}

@media (max-width: 992px) {
    .doctors-grid {
        gap: 36px;
    }

    .dept-header-bar {
        font-size: 0.82rem;
        padding: 14px 22px;
        letter-spacing: 1.6px;
    }

    .doctor-card {
        width: 400px;
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .doctors-grid {
        gap: 28px;
    }

    .dept-header-bar {
        font-size: 0.76rem;
        padding: 13px 18px;
        letter-spacing: 1.3px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .dept-doctors-row {
        gap: 16px;
    }

    .doctor-card {
        width: calc(50% - 8px);
        flex: 0 0 calc(50% - 8px);
        padding: 16px 12px 18px;
    }

    .doctor-info h3 {
        font-size: 0.9rem;
    }

    .doctor-spec {
        font-size: 0.74rem;
    }
}

@media (max-width: 480px) {
    .doctor-card {
        width: 100%;
        flex: 0 0 100%;
    }
}




#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-teal));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(0, 176, 240, 0.5);
}


.about-highlights {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: var(--text-main);
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(0, 176, 240, 0.04);
    border: 1px solid rgba(0, 176, 240, 0.1);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-highlights li:hover {
    transform: translateX(8px);
    background: rgba(0, 176, 240, 0.08);
    border-color: rgba(0, 176, 240, 0.25);
    box-shadow: 0 4px 16px rgba(0, 176, 240, 0.1);
}

.highlight-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--soft-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 176, 240, 0.3);
}

.about-highlights li:hover .highlight-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 4px 16px rgba(0, 176, 240, 0.4);
}

.mv-item {
    width: 300px;
    box-shadow: #000a1f 0px 2px 8px 0px;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    margin: 0 auto;
}

.departments-section {
    position: relative;
    overflow: hidden;
}

.departments-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 176, 240, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: float 15s ease-in-out infinite;
}

.departments-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: float 12s ease-in-out infinite reverse;
}

.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 176, 240, 0.05) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.blog-section {
    position: relative;
    overflow: hidden;
}

.blog-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 176, 240, 0.04) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}




.map-clickable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(15, 23, 42, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none !important;
}

.map-clickable-overlay:hover {
    background: rgba(15, 23, 42, 0.15);
    backdrop-filter: blur(2px);
}

.view-map-btn {
    background: var(--brand-gradient);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-premium);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-clickable-overlay:hover .view-map-btn {
    transform: translateY(0);
    opacity: 1;
}

.view-map-btn i {
    font-size: 1.2rem;
}


.map-placeholder iframe {
    pointer-events: none;
}



@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    .gallery-item {
        border-radius: 15px;
    }
}

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-base);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.map-section-no-pad {
    padding-bottom: 0;
}

.container-no-pad {
    padding: 0;
}

.map-container-inner {
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.full-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.blog-view-btn {
    font-weight: 700;
    font-size: 0.9rem;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.mission-vision-title {
    color: var(--primary-color);
}

.mission-vision-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.infra-title {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.infra-gallery {
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
}

.infra-img {
    border-radius: 15px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.infra-img-wide {
    grid-column: span 2;
}

.cta-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.btn-cta-custom {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.blog-details-intro {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 40px;
    border-left: 4px solid var(--secondary-teal);
    padding-left: 20px;
}

.blog-content-mb-20 {
    margin-bottom: 20px;
}

.blog-content-mb-30 {
    margin-bottom: 30px;
}

.services-grid-layout {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.services-header-spacing {
    margin-bottom: 20px;
    padding-top: 40px;
}

.service-title-styling {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-title-styling {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-cards-spacing {
    margin-top: 40px;
}

.emergency-sidebar-widget {
    margin-top: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.emergency-sidebar-text {
    margin: 15px 0;
    font-size: 0.95rem;
}

.emergency-sidebar-number {
    font-size: 1.5rem;
    color: var(--secondary-teal);
}

.contact-form-title {
    margin-bottom: 30px;
}

.form-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* =========================================
   LOGIN PAGE & HEADER LOGIN BUTTON
   ========================================= */

.login-page-body {
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 120px 0 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.45), rgba(15, 23, 42, 0.45)), url('./images/best-hospital-secure-login-background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-body);
}

.login-card {
    width: 100%;
    max-width: 460px;
    padding: 60px 45px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    color: white;
    animation: reveal-up 1s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.login-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    color: white;
    font-size: 22px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.login-header {
    text-align: center;
    margin-bottom: 50px;
}

.login-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.4rem;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.login-form .input-group {
    position: relative;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-base);
}

.login-form .input-group:focus-within {
    border-bottom-color: white;
}

.login-form .input-group label {
    position: absolute;
    top: -24px;
    left: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.login-form .input-group input {
    width: 100%;
    padding: 14px 45px 14px 0;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.login-form .input-group i {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.remember-me input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--secondary-teal);
}

.forgot-pass {
    color: white;
    font-weight: 600;
    text-decoration: underline !important;
    text-underline-offset: 5px;
}

.login-btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-blue);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.login-btn-submit:hover {
    background: #000a1f;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 176, 240, 0.4);
}

.login-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.login-footer a {
    color: white;
    font-weight: 800;
    text-decoration: underline !important;
    text-underline-offset: 5px;
    margin-left: 5px;
}


.header-login-btn {
    background: var(--primary-blue);
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 12px;
    margin-left: 12px;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.header-login-btn:hover {
    background: #1e293b;
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--glow-primary);
}

.header-login-btn i {
    font-size: 0.95rem;
}

.main-header.scrolled .header-login-btn {
    background: var(--primary-blue);
    color: white !important;
}

@media (max-width: 992px) {

    .header-login-btn {
        margin: 25px auto;
        width: 85%;
        text-align: center;
        font-size: 1.5rem !important;
        padding: 10px !important;
        justify-content: center;
        color: white !important;
    }
}

/* =============================================
   PROCEDURES GRID SECTION
============================================= */
.procedure-list-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.procedure-title-wrapper {
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 4px solid var(--secondary-teal);
}

.procedure-title-wrapper h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.procedure-title-wrapper p {
    color: var(--text-main);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
}

.procedure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.procedure-card-item {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.procedure-card-item:hover {
    background: #ffffff;
    border-color: rgba(0, 176, 240, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.procedure-card-item .icon-arrow {
    color: var(--secondary-teal);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.procedure-card-item:hover .icon-arrow {
    transform: translateX(4px);
}

.procedure-card-item .item-text {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .procedure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .procedure-grid {
        grid-template-columns: 1fr;
    }

    .procedure-title-wrapper h3 {
        font-size: 1.7rem;
    }
}


.god-tier-features {
    padding: 100px 0;
    position: relative;
    background: var(--bg-soft);
    overflow: hidden;
}

.god-tier-features::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 176, 240, 0.03) 0%, transparent 60%);
    z-index: 0;
    animation: rotateClose 40s linear infinite;
}

.gt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.gt-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 176, 240, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.gt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 176, 240, 0.15);
    border-color: rgba(0, 176, 240, 0.4);
}

.gt-card:hover::before {
    opacity: 1;
}

.gt-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-white) 0%, #f0f7ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--secondary-teal);
    box-shadow: 0 10px 20px rgba(0, 176, 240, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gt-card:hover .gt-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-blue);
    color: var(--bg-white);
    border-color: var(--secondary-teal);
    box-shadow: 0 0 30px rgba(0, 176, 240, 0.4);
}

.gt-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.gt-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}


.god-tier-features.dark-mode {
    background: var(--primary-blue);
}

.god-tier-features.dark-mode .section-title-center {
    color: var(--bg-white);
}

.god-tier-features.dark-mode .section-desc-center {
    color: rgba(255, 255, 255, 0.7);
}

.god-tier-features.dark-mode .gt-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.god-tier-features.dark-mode .gt-card h3 {
    color: var(--bg-white);
}

.god-tier-features.dark-mode .gt-card p {
    color: rgba(255, 255, 255, 0.6);
}

.god-tier-features.dark-mode .gt-icon-box {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.god-tier-features.dark-mode .gt-card:hover {
    border-color: var(--secondary-teal);
    box-shadow: 0 20px 40px rgba(0, 176, 240, 0.2);
}

.god-tier-features.dark-mode .gt-card::before {
    background: linear-gradient(135deg, rgba(0, 176, 240, 0.2) 0%, transparent 100%);
}


.floating-contact-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: floatContact 3s ease-in-out infinite;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.4s ease;
}

.floating-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.floating-btn:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

.floating-call {
    background: linear-gradient(135deg, #00B0F0, #007bb5);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation-delay: 1.5s;
}

@keyframes floatContact {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}


.btn--youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

.btn--youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    color: white;
}

.btn--youtube::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* =========================================
   REDESIGNED BLOG SECTION
   ========================================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-date-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    z-index: 10;
    font-weight: 700;
    color: var(--text-light);

    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    box-shadow: none;
    font-family: 'Gloria Hallelujah', cursive, sans-serif;
}

.blog-date-badge i {
    font-size: 1.2rem;
}

.blog-img-box {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 50%;
}



.blog-info h3 {
    font-size: 1.8rem;
    color: #1a2e2a;

    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.blog-info p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}



.blog-details-section {
    padding: 80px 0;
    background: #ffffff;
}

.blog-details-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.post-featured-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 25px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta span:not(:last-child)::after {
    content: '|';
    margin-left: 15px;
    color: #cbd5e1;
}

.post-meta i {
    color: var(--text-dark);
}

.post-title {
    font-size: 2.5rem;
    color: var(--text-dark);

    margin-bottom: 20px;
    font-weight: 700;
}

.post-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
}

.post-body h3 {
    color: #1a2e2a;
    margin: 35px 0 15px;
}

.post-footer-actions {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-links {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: 0.3s;
}

.share-btn.fb {
    background: #1877f2;
}

.share-btn.tw {
    background: #1da1f2;
}

.share-btn.wa {
    background: #25d366;
}

.share-btn.pin {
    background: #bd081c;
}

.share-btn.insta {
    background: #e4405f;
}

.btn-like {
    background: var(--text-dark);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-like:hover {
    transform: scale(1.05);
    background: #f84d16;
}


.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.widget-title {
    font-size: 1.4rem;
    color: var(--text-dark);

    margin-bottom: 25px;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-dark);
    opacity: 0.3;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
}

.pop-post-img {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.pop-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pop-post-info h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 5px;
}

.pop-post-meta {
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.categories-list li {
    margin-bottom: 5px;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
    transition: 0.3s;
}

.categories-list li a:hover {
    color: var(--text-dark);
    padding-left: 5px;
}

.cat-count {
    color: var(--text-dark);
}

/* =========================================
   GOD MODE PREMIUM UI ENHANCEMENTS
   ========================================= */

.glass-morphism {
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--glass-shadow) !important;
    transition: var(--transition-smooth) !important;
}

.doctor-card.glass-morphism:hover {
    background: rgba(255, 255, 255, 0.65) !important;
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(0, 176, 240, 0.15) !important;
    border-color: var(--secondary-teal) !important;
}

.doctor-img-box {
    position: relative;
    overflow: hidden;
}

.doctor-img-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: 0.8s;
}

.doctor-card:hover .doctor-img-box::after {
    left: 150%;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
    backdrop-filter: blur(4px);
    transition: opacity 0.4s ease;
}


.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-blue), var(--secondary-teal));
    border-radius: 10px;
}

/* --- Membership Plan Page Styles --- */
.plan-detail-hero {
    padding: 160px 0 80px;
    background: var(--bg-soft);
}

.plan-main-container {
    display: flex;
    gap: 40px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.plan-gallery-section {
    display: flex;
    gap: 20px;
    width: 50%;
}

.plan-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80px;
    flex-shrink: 0;
}

.plan-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.plan-thumb.active,
.plan-thumb:hover {
    border-color: var(--secondary-teal);
    transform: scale(1.05);
}

.plan-main-image {
    flex-grow: 1;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.plan-main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    border-radius: 12px;
    display: block;
}

.plan-info-section {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.plan-page-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.plan-page-price {
    font-size: 2rem;
    color: var(--secondary-teal);
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-page-tax-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.plan-action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.plan-action-buttons .btn {
    flex: 1;
    text-align: center;
    border-radius: 8px;
    padding: 12px 20px;
}

.plan-inclusions-box {
    border: 1px dashed var(--secondary-teal);
    border-radius: 8px;
    padding: 25px;
    position: relative;
    margin-bottom: 40px;
}

.plan-inclusions-title {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--secondary-teal);
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-inclusions-list {
    margin: 0;
    padding: 0 0 0 20px;
    list-style-type: decimal;
    color: var(--text-main);
}

.plan-inclusions-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.plan-renewal-note {
    text-align: center;
    color: var(--secondary-teal);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 20px;
}

.plan-terms-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.plan-terms-title {
    font-size: 1.5rem;
    color: var(--secondary-teal);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.plan-terms-list {
    padding-left: 20px;
    color: var(--text-muted);
    list-style-type: disc;
}

.plan-terms-list li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .plan-main-container {
        flex-direction: column;
    }

    .plan-gallery-section {
        flex-direction: column-reverse;
        width: 100%;
    }

    .plan-info-section {
        width: 100%;
    }

    .plan-thumbnails {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .plan-main-image img {
        height: auto;
        max-height: 400px;
        object-fit: contain;
        object-position: center top;
    }

    ::-webkit-scrollbar-thumb {
        background: linear-gradient(var(--primary-blue), var(--secondary-teal));
        border-radius: 10px;
    }

    /* --- Membership Plan Page Styles --- */
    .plan-detail-hero {
        padding: 160px 0 80px;
        background: var(--bg-soft);
    }

    .plan-main-container {
        display: flex;
        gap: 40px;
        background: var(--bg-white);
        border-radius: var(--border-radius);
        padding: 40px;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--border-color);
    }

    .plan-gallery-section {
        display: flex;
        gap: 20px;
        width: 50%;
    }

    .plan-thumbnails {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 80px;
        flex-shrink: 0;
    }

    .plan-thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: var(--transition-base);
    }

    .plan-thumb.active,
    .plan-thumb:hover {
        border-color: var(--secondary-teal);
        transform: scale(1.05);
    }

    .plan-main-image {
        flex-grow: 1;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        align-items: flex-start;
    }

    .plan-main-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center top;
        border-radius: 12px;
        display: block;
    }

    .plan-info-section {
        width: 50%;
        display: flex;
        flex-direction: column;
    }

    .plan-page-title {
        font-size: 2.5rem;
        color: var(--primary-blue);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .plan-page-price {
        font-size: 2rem;
        color: var(--secondary-teal);
        font-weight: 700;
        margin-bottom: 5px;
    }

    .plan-page-tax-info {
        font-size: 0.9rem;
        color: var(--text-muted);
        margin-bottom: 30px;
    }

    .plan-action-buttons {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
    }

    .plan-action-buttons .btn {
        flex: 1;
        text-align: center;
        border-radius: 8px;
        padding: 12px 20px;
    }

    .plan-inclusions-box {
        border: 1px dashed var(--secondary-teal);
        border-radius: 8px;
        padding: 25px;
        position: relative;
        margin-bottom: 40px;
    }

    .plan-inclusions-title {
        position: absolute;
        top: -15px;
        left: 20px;
        background: var(--secondary-teal);
        color: white;
        padding: 5px 15px;
        border-radius: 4px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .plan-inclusions-list {
        margin: 0;
        padding: 0 0 0 20px;
        list-style-type: decimal;
        color: var(--text-main);
    }

    .plan-inclusions-list li {
        margin-bottom: 10px;
        font-size: 1.05rem;
    }

    .plan-renewal-note {
        text-align: center;
        color: var(--secondary-teal);
        font-size: 0.85rem;
        font-weight: 600;
        margin-top: 20px;
    }

    .plan-terms-section {
        margin-top: 60px;
        padding-top: 40px;
        border-top: 1px solid var(--border-color);
    }

    .plan-terms-title {
        font-size: 1.4rem;
        color: #fff;
        margin-bottom: 25px;
        text-transform: uppercase;
        background: linear-gradient(90deg, #1e293b 0%, #334155 100%);
        padding: 15px 25px;
        border-radius: 8px;
        display: inline-block;
        letter-spacing: 1px;
    }

    .plan-terms-list {
        padding-left: 0;
        color: var(--text-muted);
        list-style-type: none;
    }

    .plan-terms-list li {
        margin-bottom: 12px;
        font-size: 1rem;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .plan-terms-list li::before {
        content: '\f0da';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: var(--secondary-teal);
        margin-top: 3px;
    }

    @media (max-width: 992px) {
        .plan-main-container {
            flex-direction: column;
        }

        .plan-gallery-section {
            flex-direction: column-reverse;
            width: 100%;
        }

        .plan-info-section {
            width: 100%;
        }

        .plan-thumbnails {
            flex-direction: row;
            width: 100%;
            justify-content: center;
            flex-wrap: wrap;
        }

        .plan-main-image img {
            height: auto;
            max-height: 400px;
            object-fit: contain;
            object-position: center top;
        }
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-blue);
    }

    /* Plan Banner Badge Styles */
    .plan-main-image {
        position: relative;
    }

    .plan-banner-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--primary-color);
        color: #fff;
        padding: 8px 15px;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 5px 15px rgba(0, 176, 240, 0.3);
        z-index: 10;
    }

    /* CSS-Based Banner Overlays */
    .plan-main-image {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
    }

    .plan-banner-text-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 60%, transparent 100%);
        padding: 40px 30px 20px;
        color: #fff;
        display: flex;
        flex-direction: column;
        gap: 5px;
        pointer-events: none;
    }

    .plan-banner-text-overlay .banner-category {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--primary-color);
        font-weight: 800;
    }

    .plan-banner-text-overlay .banner-title {
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1.1;
        margin: 5px 0;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .plan-banner-text-overlay .banner-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--accent-color);
    }

    .plan-banner-text-overlay .banner-hospital {
        position: absolute;
        top: -30px;
        right: 30px;
        font-size: 0.9rem;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        padding: 5px 15px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .plan-banner-text-overlay.hidden {
        display: none;
    }
}

/* --- Dental Membership Specific Styles --- */
.plan-intro-offer {
    background: #00b0f0;
    color: white;
    padding: 6px 15px;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

.plan-benefit-note {
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 25px;
    line-height: 1.4;
}

.plan-benefit-note span {
    color: #e11d48;
    font-weight: 700;
    font-size: 1.1rem;
}

.plan-price-container {
    background: #334155;
    color: white;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px 0 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    /* Burst effect */
    mask: radial-gradient(circle at center, white 70%, transparent 72%) no-repeat center/100%;
    -webkit-mask: radial-gradient(circle at center, white 70%, transparent 72%) no-repeat center/100%;
}

/* Recreating the scalloped burst with CSS */
.plan-price-container::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    background: #334155;
    z-index: -1;
    border-radius: 50%;
    /* Scalloped edge using repeating-conic-gradient or mask */
    mask-image: radial-gradient(circle, transparent 65%, black 66%),
                repeating-conic-gradient(black 0 10deg, transparent 10deg 20deg);
    -webkit-mask-image: radial-gradient(circle, transparent 65%, black 66%),
                        repeating-conic-gradient(black 0 10deg, transparent 10deg 20deg);
}

.plan-price-burst-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: -5px;
}

.plan-page-price {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
}

.plan-market-price-crossed {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
    position: relative;
}

.plan-market-price-crossed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e11d48;
    transform: rotate(-15deg);
}

.plan-feature-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.plan-feature-tags .tag {
    background: #00b0f0;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-base);
}

.plan-feature-tags .tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 176, 240, 0.3);
}

.plan-image-footer-info {
    margin-top: 40px;
    padding: 25px;
    background: #00b0f0;
    color: white;
    border-radius: 12px;
    font-size: 0.95rem;
}

.plan-image-footer-info p {
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    font-weight: 600;
}

.contact-flex span {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .plan-feature-tags {
        grid-template-columns: repeat(2, 1fr);
    }
    .plan-price-container {
        margin: 20px auto;
    }
    .plan-intro-offer {
        display: block;
        width: fit-content;
        margin: 0 auto 15px;
    }
    .plan-benefit-note {
        text-align: center;
    }
}

.plan-terms-list.image-style {
    list-style: none !important;
    padding-left: 0 !important;
}

.plan-terms-list.image-style li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
}

.plan-terms-list.image-style li i {
    color: #334155;
    font-size: 1.2rem;
}

.plan-terms-list.image-style li::before {
    display: none !important;
}

.plan-terms-section .plan-terms-title {
    background: #334155;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Video Gallery Section */
.video-gallery-section {
    padding: var(--section-padding);
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    background: var(--bg-white);
    position: relative;
    aspect-ratio: 9/16;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-raised);
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Testimonials Section */
.video-testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

.video-testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-video-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 380px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.testimonial-video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-raised), 0 0 25px rgba(0, 176, 240, 0.2);
    border-color: rgba(0, 176, 240, 0.4);
}

.testimonial-video-card .video-wrapper {
    width: 100%;
    background: #000;
    overflow: hidden;
}

.testimonial-video-card .video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.testimonial-video-card .testimonial-video-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    text-align: center;
}

.testimonial-video-card .testimonial-video-info h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    transition: var(--transition-base);
}

.testimonial-video-card:hover .testimonial-video-info h3 {
    color: var(--secondary-teal);
}

.testimonial-video-card .testimonial-video-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-video-card .btn-read-more-vdo {
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 8px;
    margin-top: auto;
    width: 100%;
    max-width: 200px;
}

@media (max-width: 992px) {
    .testimonial-video-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .testimonial-video-card {
        flex: 0 1 100%;
        max-width: 100%;
    }
}


@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* ── Fullscreen video fix ── */
video:fullscreen,
video:-webkit-full-screen,
video:-moz-full-screen,
video:-ms-fullscreen {
    object-fit: contain !important;
}

*:fullscreen video,
*:-webkit-full-screen video {
    object-fit: contain !important;
}

