/* =========================================================
ACTIVE PHYSIOTHERAPY & SPORTS REHAB CENTRE
PREMIUM RESPONSIVE DESIGN SYSTEM
========================================================= */

/* =========================
GOOGLE FONTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* =========================
RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fbfd;
    color: #0f172a;
    line-height: 1.7;
    overflow-x: hidden;
}

/* =========================
ROOT VARIABLES
========================= */

:root {

    --primary: #0F4C81;
    --secondary: #00BFA6;
    --accent: #38BDF8;

    --dark: #0F172A;
    --text: #475569;
    --light: #F8FBFD;
    --white: #ffffff;

    --border: #E2E8F0;

    --gradient:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    --gradient2:
        linear-gradient(135deg,
            #38BDF8,
            #00BFA6);

    --shadow-sm:
        0 5px 20px rgba(0, 0, 0, 0.06);

    --shadow-md:
        0 10px 40px rgba(0, 0, 0, 0.08);

    --shadow-lg:
        0 20px 60px rgba(0, 0, 0, 0.12);

    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;

    --transition: all 0.4s ease;

}

/* =========================
GLOBAL
========================= */

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
    margin-top: -40px;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section-title-area {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 191, 166, 0.12);
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
}

.section-title-area h2 {
    font-size: 52px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 18px;
    color: var(--dark);
}

.section-title-area p {
    max-width: 720px;
    margin: auto;
    color: var(--text);
    font-size: 18px;
}

.text-center {
    text-align: center;
}

/* =========================
BUTTONS
========================= */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-size: 16px;
    border: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* =========================
HEADER
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: #0F172A;
}

.logo span {
    font-size: 22px;
    color: #00BFA6;
}

.logo:hover {
    transform: scale(1.03);
}


.navbar {
    display: flex;
    gap: 28px;
    align-items: center;
}

.navbar a {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    transition: var(--transition);
}


.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: var(--secondary);
    transition: 0.4s;
}

.navbar a:hover::after {
    width: 80%;
}

.navbar a:hover {
    color: var(--secondary);
}

.menu-btn {
    display: none;
    font-size: 34px;
    cursor: pointer;
    color: var(--dark);
}

/* =========================
HERO
========================= */

.hero {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background: var(--gradient);
    margin-top: -40px;

}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -200px;
    right: -100px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -200px;
    left: -120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

#hero-badge {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(0, 166, 166, 0.1);
    border: 2px solid #00a6a6;
    border-radius: 50px;
    color: #edeef0;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 166, 166, 0.15);
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 18px;
    line-height: 1.05;
    font-family: 'Poppins', sans-serif;
    color: white;
    margin: 25px 0;
}

.hero-content p {
    font-size: 19px;
    color: #dbeafe;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: float 5s ease-in-out infinite;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.highlight-badge {
    flex: 1 1 calc(50% - 12px);
    /* equal width 2 per row */
    min-width: 250px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 10px 18px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;

    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.hero-line {
    font-size: 34px;
    font-weight: 900;
    color: #fff;

}

.hero-line span {
    color: #f2f7f6;
    font-size: 34px;

}

/* Tablet */
@media (max-width:768px) {

    .hero-highlights {
        gap: 10px;
    }

    .highlight-badge {
        font-size: 14px;
        padding: 8px 15px;
    }

    .highlight-badge {
        font-size: 5px;

    }





}


@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* =========================
GRID
========================= */

.grid {
    display: grid;
    gap: 30px;
}

.cards-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cards-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cards-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* =========================
CARDS
========================= */

.card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
}

.card p {
    color: var(--text);
}

/* =========================
FEATURE CARDS
========================= */

.feature-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--gradient);
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
}

/* =========================
ABOUT
========================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    font-size: 54px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    margin: 20px 0;
}

.about-content p {
    margin-bottom: 28px;
    color: var(--text);
    font-size: 17px;
}

/* =========================
DARK SECTION
========================= */

.dark-section {
    background: var(--dark);
    color: white;
}

.dark-section .section-subtitle {
    background: rgba(255, 255, 255, 0.1);
    color: #7dd3fc;
}

.dark-section p {
    color: #cbd5e1;
}

/* =========================
TAGS
========================= */

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.tags span {
    padding: 14px 24px;
    background: white;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tags span:hover {
    transform: translateY(-5px);
    background: var(--gradient);
    color: white;
}

/* =========================
CTA
========================= */

.cta {
    padding: 120px 0;
    text-align: center;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -200px;
    right: -120px;
}

.cta h2 {
    font-size: 60px;
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
    color: #dbeafe;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

/* =========================
CONTACT FORM
========================= */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid var(--border);
    outline: none;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(0, 191, 166, 0.15);
}

.contact-form textarea {
    min-height: 180px;
    resize: none;
}

/* =========================================
FOOTER CONTACT CSS
========================================= */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-box h4 {
    font-size: 24px;
    margin-bottom: 24px;
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-icon {
    min-width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;



    color: white;
}

.footer-icon svg {
    width: 20px;
    height: 20px;
}

.footer-contact-item p,
.footer-contact-item a {
    color: #CBD5E1;
    line-height: 1.8;
    font-size: 15px;
    transition: 0.4s;
}

.footer-contact-item a:hover {
    color: #00BFA6;
}


/* ==========================
   GALLERY SECTION
========================== */

.gallery-section {
    padding: 100px 5%;
    background: linear-gradient(135deg,
            #ecfaf1 0%,
            #edeff0 100%);

}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h1 {
    font-size: 52px;
    font-weight: 800;
    color: #0c0c0c;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #64748B;
    max-width: 700px;
    margin: auto;
}

/* ==========================
   GRID
========================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ==========================
   CARD
========================== */

.gallery-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, .08);

    transition: .4s ease;
}

.gallery-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 25px 60px rgba(15, 23, 42, .15);
}

/* IMAGE */

.gallery-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center top;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* CONTENT */

.gallery-content {
    padding: 22px;
}

.gallery-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.gallery-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748B;
}

/* TOP ACCENT */

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;

    background: linear-gradient(90deg,
            #0F4C81,
            #00BFA6);
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h1 {
        font-size: 42px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:576px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-card img {
        height: 420px;

    }


    .section-title h1 {
        font-size: 32px;
    }

    .section-title p {
        font-size: 15px;
    }

}



/* RESPONSIVE */

@media(max-width:992px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-badge {
        font-size: 2px;
    }
}

@media(max-width:768px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }




}

/* =========================
ANIMATIONS
========================= */

.fade-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
SCROLLBAR
========================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #e2e8f0;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 999px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px) {

    .hero-grid,
    .about-grid,
    .cards-4 {
        grid-template-columns: 1fr;
    }

    .cards-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .about-content h2 {
        font-size: 44px;
    }

}

@media(max-width:768px) {

    .section {
        padding: 90px 0;
    }

    .logo {
        font-size: 8px;

    }

    .logo span {
        font-size: 24px;
    }


    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        box-shadow: var(--shadow-md);
    }


    .navbar.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        padding: 110px 0;
    }

    .hero-grid {
        gap: 50px;
    }



    .hero-content p {
        font-size: 17px;
    }

    .section-title-area h2 {
        font-size: 38px;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .cta h2 {
        font-size: 42px;
    }

    .cards-3,
    .cards-2 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media(max-width:480px) {

    .container {
        width: 92%;
    }

    .hero-line {
        font-size: 26px;
        margin-bottom: -12px;
    }

    .hero-content h1 {
        font-size: 20px;
    }

    .section-title-area h2 {
        font-size: 32px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .cta h2 {
        font-size: 34px;
    }

    .card {
        padding: 30px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .highlight-badge {
        width: 100%;
        text-align: left;
        border-radius: 12px;
        font-size: 14px;
        padding: 12px 15px;
    }



    .hero-content p {
        font-size: 80%;

    }

    #hero-badge {
        font-size: 16px;
        padding: 14px 22px;
        font-weight: 500;
        line-height: 1.2;
    }

}

/* =========================================================
ABOUT PAGE FULL CSS
========================================================= */

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #0F172A;
    overflow-x: hidden;
}

/* =========================================================
GLOBAL
========================================================= */

.container {
    width: min(1180px, 90%);
    margin: auto;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.section {
    padding: 120px 0;
}

/* =========================================================
HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.85);

    backdrop-filter: blur(14px);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.05);
}


.logo {
    font-size: 22px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: #0F172A;
}

.logo span {
    font-size: 22px;
    color: #00BFA6;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navbar a {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    transition: 0.4s;
    position: relative;
}

.navbar a:hover,
.navbar a.active {
    color: #00BFA6;
}

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0%;
    height: 2px;

    background: #00BFA6;
    transition: 0.4s;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.menu-btn {
    display: none;
    font-size: 34px;
    cursor: pointer;
}

/* =========================================================
ABOUT SECTION
========================================================= */

.about-page-section {
    position: relative;
    padding: 130px 0;
    margin-top: -70px;
    background:
        linear-gradient(135deg,
            #f4fbff 0%,
            #eef8fc 45%,
            #ffffff 100%);

    overflow: hidden;
}

/* GLOW EFFECT */

.about-page-section::before {
    content: '';
    position: absolute;

    top: -120px;
    right: -120px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        rgba(0, 191, 166, 0.08);

    filter: blur(40px);
}

.about-page-section::after {
    content: '';
    position: absolute;

    bottom: -120px;
    left: -100px;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        rgba(15, 76, 129, 0.08);

    filter: blur(40px);
}

/* =========================================================
SECTION TITLE
========================================================= */

.section-title-area {
    text-align: center;
    margin-bottom: 90px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    display: inline-block;

    padding: 12px 24px;
    border-radius: 999px;

    background:
        rgba(0, 191, 166, 0.12);

    color: #00BFA6;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 24px;
}

.section-title-area h2 {
    font-size: 62px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;

    margin-bottom: 24px;
    color: #0F172A;
}

.section-title-area p {
    max-width: 760px;
    margin: auto;

    font-size: 18px;
    line-height: 1.9;

    color: #475569;
}

/* =========================================================
ABOUT GRID
========================================================= */

.about-page-grid {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 70px;
    align-items: start;

    position: relative;
    z-index: 2;
}

/* =========================================================
DOCTOR IMAGE
========================================================= */

.about-doctor-image {
    position: sticky;
    top: 120px;

    border-radius: 40px;
    overflow: hidden;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.12);
}

.about-doctor-image img {
    height: 650px;
    object-fit: cover;

    transition: 0.8s;
}

.about-doctor-image:hover img {
    transform: scale(1.05);
}

/* EXPERIENCE BADGE */

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;

    padding: 18px 24px;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(12px);

    font-size: 16px;
    font-weight: 700;

    color: #0F172A;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);
}

/* =========================================================
CONTENT
========================================================= */

.about-page-content {
    background: white;

    padding: 50px;

    border-radius: 40px;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.08);
}

.about-page-content h3 {
    font-size: 46px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;

    margin-bottom: 18px;
}

.doctor-role {
    font-size: 18px;
    line-height: 1.8;

    color: #0F4C81;
    font-weight: 600;

    margin-bottom: 30px;
}

/* QUALIFICATIONS */

.qualification-box {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-bottom: 34px;
}

.qualification-box span {
    padding: 12px 18px;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    color: white;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);
}

.about-page-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;

    margin-bottom: 30px;
}

/* =========================================================
MISSION & VISION
========================================================= */

.info-card {
    padding: 32px;

    border-radius: 28px;

    background: #F8FAFC;

    margin-bottom: 28px;

    transition: 0.4s;
}

.info-card:hover {
    transform: translateY(-8px);

    background: white;

    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;

    margin-bottom: 14px;

    color: #0F172A;
}

.info-card p {
    margin-bottom: 0;
}

/* =========================================================
CONTACT INFO
========================================================= */

.doctor-contact {
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 18px;

    align-items: flex-start;

    padding: 22px;

    border-radius: 24px;

    background: #F8FAFC;

    margin-bottom: 22px;

    transition: 0.4s;
}

.contact-item:hover {
    transform: translateX(10px);

    background: white;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */

.icon {
    min-width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    color: white;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}

.icon svg {
    width: 28px;
    height: 28px;
}

/* CONTACT TEXT */

.contact-item h5 {
    font-size: 20px;
    font-weight: 700;

    margin-bottom: 10px;
    color: #0F172A;
}

.contact-item p,
.contact-item a {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.contact-item a:hover {
    color: #00BFA6;
}

/* =========================================================
ABOUT EXTRA IMAGE
========================================================= */

.about-image {
    margin-top: 40px;
    margin-bottom: 40px;

    border-radius: 34px;
    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-image img {
    height: 340px;
    object-fit: cover;

    transition: 0.7s;
}

.about-image:hover img {
    transform: scale(1.06);
}

/* =========================================================
BUTTONS
========================================================= */

.about-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* PRIMARY BUTTON */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    color: white;

    font-size: 15px;
    font-weight: 700;

    transition: 0.4s;
}

.btn-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);
}

/* SECONDARY BUTTON */

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    border-radius: 999px;

    border: 2px solid #0F4C81;

    font-size: 15px;
    font-weight: 700;

    transition: 0.4s;
}

.dark-btn {
    color: #0F4C81;
    background: white;
}

.dark-btn:hover {
    background: #0F4C81;
    color: white;

    transform: translateY(-4px);
}



/* =========================================================
ANIMATION
========================================================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

@keyframes fadeUp {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .about-page-grid {
        grid-template-columns: 1fr;
    }

    .about-doctor-image {
        position: relative;
        top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-title-area h2 {
        font-size: 52px;
    }

}

/* =========================================================
TABLET
========================================================= */

@media(max-width:768px) {

    .menu-btn {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        background: white;

        padding: 25px;

        display: none;
        flex-direction: column;
        gap: 20px;

        box-shadow:
            0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .navbar.active {
        display: flex;
    }

    .about-page-section {
        padding: 110px 0 80px;
    }

    .section-title-area h2 {
        font-size: 40px;
    }

    .about-page-content {
        padding: 35px;
    }

    .about-page-content h3 {
        font-size: 36px;
    }

    .about-doctor-image img {
        height: 500px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:480px) {

    .section-title-area h2 {
        font-size: 32px;
    }

    .about-page-content {
        padding: 28px;
    }

    .about-page-content h3 {
        font-size: 30px;
    }

    .contact-item {
        flex-direction: column;
    }

    .icon {
        width: 60px;
    }

    .about-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .about-doctor-image img {
        height: 420px;
    }

    .about-image img {
        height: 240px;
    }

}

/* =========================================================
CONTACT PAGE FULL CSS
========================================================= */

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: rgba(0, 191, 166, 0.08);
    color: #0F172A;
    overflow-x: hidden;
}

/* =========================================================
GLOBAL
========================================================= */

.container {
    width: min(1180px, 90%);
    margin: auto;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.section {
    padding: 120px 0;
}



/* =========================================================
CONTACT HERO
========================================================= */

.contact-hero {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f4fbff 0%,
            #eef8fc 45%,
            #ffffff 100%);
}

/* GLOW */

.contact-hero::before {
    content: '';
    position: absolute;

    top: -140px;
    right: -100px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        rgba(0, 191, 166, 0.08);

    filter: blur(40px);
}

.contact-hero::after {
    content: '';
    position: absolute;

    bottom: -140px;
    left: -100px;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background:
        rgba(15, 76, 129, 0.08);

    filter: blur(40px);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-badge {
    display: inline-block;

    padding: 12px 24px;
    border-radius: 999px;

    background:
        rgba(0, 191, 166, 0.12);

    color: #00BFA6;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 24px;
}

.contact-hero-content h1 {
    font-size: 68px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;

    margin-bottom: 28px;
    color: #0F172A;
}

.contact-hero-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #475569;

    max-width: 760px;
}

/* =========================================================
CONTACT SECTION
========================================================= */

.contact-section {
    padding: 120px 0;
}

/* TITLE */

.section-title-area {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: inline-block;

    padding: 12px 24px;
    border-radius: 999px;

    background:
        rgba(0, 191, 166, 0.12);

    color: #00BFA6;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 22px;
}

.section-title-area h2 {
    font-size: 58px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;

    margin-bottom: 22px;
    color: #0F172A;
}

.section-title-area p {
    max-width: 760px;
    margin: auto;

    font-size: 18px;
    line-height: 1.9;

    color: #475569;
}

/* =========================================================
CONTACT GRID
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* =========================================================
LEFT CARD
========================================================= */

.contact-info-card {
    background: white;

    border-radius: 36px;
    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08);

    transition: 0.4s;
}

.contact-info-card:hover {
    transform: translateY(-10px);
}

.contact-image {
    height: 320px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 0.7s;
}

.contact-info-card:hover .contact-image img {
    transform: scale(1.08);
}

.contact-info-content {
    padding: 40px;
}

.contact-info-content h3 {
    font-size: 34px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;

    margin-bottom: 18px;
}

.contact-info-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #475569;

    margin-bottom: 30px;
}

/* =========================================================
CONTACT ITEM
========================================================= */

.contact-item {
    display: flex;
    gap: 18px;

    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-icon {
    min-width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    color: white;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-item h4 {
    font-size: 20px;
    font-weight: 700;

    margin-bottom: 10px;
    color: #0F172A;
}

.contact-item p,
.contact-item a {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.contact-item a:hover {
    color: #00BFA6;
}

/* =========================================================
FORM CARD
========================================================= */

.contact-form-card {
    background: white;

    padding: 50px;

    border-radius: 36px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;

    margin-bottom: 16px;
}

.contact-form-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;

    margin-bottom: 34px;
}

/* =========================================================
FORM
========================================================= */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 18px 22px;

    border: none;
    outline: none;

    background: #F8FAFC;

    border-radius: 18px;

    font-size: 15px;
    font-family: 'Inter', sans-serif;

    transition: 0.4s;
}

.form-group input:focus,
.form-group textarea:focus {
    background: white;

    box-shadow:
        0 0 0 3px rgba(0, 191, 166, 0.15);
}

.form-group textarea {
    resize: none;
    min-height: 160px;
}

/* =========================================================
BUTTON
========================================================= */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 34px;
    border: none;
    cursor: pointer;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    color: white;

    font-size: 15px;
    font-weight: 700;

    transition: 0.4s;
}

.btn-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);
}

.full-btn {
    width: 100%;
}

/* =========================================================
MAP SECTION
========================================================= */

.map-section {
    padding-bottom: 120px;
}

.map-wrapper {
    overflow: hidden;

    border-radius: 36px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================================
ANIMATION
========================================================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

@keyframes fadeUp {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-hero-content h1 {
        font-size: 56px;
    }

}

/* =========================================================
TABLET
========================================================= */

@media(max-width:768px) {

    .menu-btn {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        background: white;

        padding: 25px;

        display: none;
        flex-direction: column;
        gap: 20px;

        box-shadow:
            0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .navbar.active {
        display: flex;
    }

    .contact-hero {
        padding: 120px 0 80px;
    }

    .contact-hero-content h1 {
        font-size: 42px;
    }

    .section-title-area h2 {
        font-size: 40px;
    }

    .contact-info-content,
    .contact-form-card {
        padding: 30px;
    }

    .contact-image {
        height: 260px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 380px;
    }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:480px) {

    .contact-hero-content h1 {
        font-size: 34px;
    }

    .section-title-area h2 {
        font-size: 32px;
    }

    .contact-form-card h3 {
        font-size: 28px;
    }

    .contact-info-content h3 {
        font-size: 28px;
    }

    .contact-item {
        flex-direction: column;
    }

    .contact-icon {
        width: 60px;
    }

    .map-wrapper {
        height: 320px;
    }

}

/* =========================================================
SPORTS PHYSIOTHERAPY PAGE
========================================================= */

.sports-section {
    background:
        linear-gradient(180deg,
            #f8fbfd 0%,
            #eef7fb 100%);
}

/* =========================
SPORTS CARD
========================= */

.sports-card {
    padding: 0;
    overflow: hidden;
    border-radius: 30px;
    transition: 0.5s;
    background: white;
}

.sports-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* =========================
IMAGE
========================= */

.sports-image {
    position: relative;
    overflow: hidden;
    height: auto;
}

.sports-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.sports-card:hover .sports-image img {
    transform: scale(1.08);
}

/* =========================
CONTENT
========================= */

.sports-content {
    padding: 32px;
}

.sports-content h3 {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 16px;
    color: #0F172A;
}

.sports-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px) {

    .sports-image {
        height: 220px;
    }

    .sports-content {
        padding: 24px;
    }

    .sports-content h3 {
        font-size: 24px;
    }

}

/* =========================================================
PREMIUM CHIROPRACTIC & SPINE CARE DESIGN
UNIQUE MODERN GLASSMORPHISM UI
========================================================= */

.chiropractic-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            #f4fbff 0%,
            #eef8fc 40%,
            #ffffff 100%);
}

/* BACKGROUND GLOW */

.chiropractic-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(0, 191, 166, 0.08);
    top: -180px;
    right: -120px;
    filter: blur(40px);
}

.chiropractic-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(15, 76, 129, 0.08);
    bottom: -180px;
    left: -100px;
    filter: blur(40px);
}

/* =========================================================
TITLE
========================================================= */

.chiropractic-section .section-title-area {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 80px;
}

.chiropractic-section .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(0, 191, 166, 0.12);
    backdrop-filter: blur(12px);
    color: #00BFA6;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.chiropractic-section .section-title-area h2 {
    font-size: 58px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
}

.chiropractic-section .section-title-area p {
    max-width: 760px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
}

/* =========================================================
GRID
========================================================= */

.chiropractic-section .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 2;
}

/* =========================================================
CARD
========================================================= */

.chiropractic-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.06);

    transition: 0.5s;
    padding: 0;
}

.chiropractic-card:hover {
    transform:
        translateY(-12px) scale(1.01);

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.12);
}

/* GRADIENT BORDER EFFECT */

.chiropractic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6,
            #38BDF8);
}

/* =========================================================
IMAGE
========================================================= */

.chiro-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.chiro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.7s;
}

.chiropractic-card:hover .chiro-image img {
    transform: scale(1.08);
}

/* IMAGE OVERLAY */

.chiro-image::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.25) 100%);
}

/* =========================================================
CONTENT
========================================================= */

.chiro-content {
    padding: 34px;
    position: relative;
}

.chiro-content h3 {
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0F172A;
}

.chiro-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #475569;
}

/* =========================================================
HOVER GLOW
========================================================= */

.chiropractic-card:hover .chiro-content h3 {
    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================================
FLOATING ICON
========================================================= */

.chiro-icon {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 65px;
    height: 65px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15);

    z-index: 5;
}

.chiro-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

/* =========================================================
ANIMATION
========================================================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

@keyframes fadeUp {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .chiropractic-section .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chiropractic-section .section-title-area h2 {
        font-size: 48px;
    }

}

@media(max-width:768px) {

    .chiropractic-section {
        padding: 90px 0;
    }

    .chiropractic-section .grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .chiropractic-section .section-title-area {
        margin-bottom: 60px;
    }

    .chiropractic-section .section-title-area h2 {
        font-size: 38px;
    }

    .chiropractic-section .section-title-area p {
        font-size: 16px;
    }

    .chiro-image {
        height: 220px;
    }

    .chiro-content {
        padding: 26px;
    }

    .chiro-content h3 {
        font-size: 25px;
    }

}

@media(max-width:480px) {

    .chiropractic-section .section-title-area h2 {
        font-size: 32px;
    }

    .chiro-content h3 {
        font-size: 22px;
    }

    .chiro-content {
        padding: 22px;
    }

    .chiro-icon {
        width: 55px;
        height: 55px;
    }

    .chiro-icon svg {
        width: 24px;
        height: 24px;
    }

}

/* =========================================================
FOOT BIOMECHANICS PAGE
========================================================= */

.foot-bio-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f5fbff 0%,
            #eef8fc 50%,
            #ffffff 100%);
}

/* =========================================================
TITLE
========================================================= */

.foot-bio-section .section-title-area {
    text-align: center;
    margin-bottom: 80px;
}

.foot-bio-section .section-subtitle {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(0, 191, 166, 0.12);
    color: #00BFA6;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.foot-bio-section h2 {
    font-size: 58px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    margin-bottom: 22px;
    color: #0F172A;
}

.foot-bio-section .section-title-area p {
    max-width: 760px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
}

/* =========================================================
TOP GRID
========================================================= */

.foot-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 90px;
}

/* =========================================================
CONTENT
========================================================= */

.foot-content h3 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    color: #0F172A;
}

.foot-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 24px;
}

/* =========================================================
FEATURES
========================================================= */

.foot-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 30px;
}

.foot-feature {
    padding: 18px 22px;
    border-radius: 18px;
    background: white;
    font-weight: 600;
    color: #0F172A;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);

    transition: 0.4s;
}

.foot-feature:hover {
    transform: translateY(-6px);

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    color: white;
}

/* =========================================================
MAIN IMAGE
========================================================= */

.foot-main-image {
    position: relative;
}

.foot-main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 40px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.12);
}

/* FLOATING CARD */

.floating-card {
    position: absolute;
    bottom: 30px;
    left: 30px;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);

    padding: 24px 28px;
    border-radius: 24px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);
}

.floating-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: #0F172A;
}

.floating-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

/* =========================================================
SERVICE GRID
========================================================= */

.foot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* =========================================================
CARD
========================================================= */

.foot-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.06);

    transition: 0.5s;
}

.foot-card:hover {
    transform:
        translateY(-12px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.12);
}

/* =========================================================
IMAGE
========================================================= */

.foot-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.foot-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.7s;
}

.foot-card:hover .foot-image img {
    transform: scale(1.08);
}

/* IMAGE OVERLAY */

.foot-image::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

/* =========================================================
CONTENT
========================================================= */

.foot-card-content {
    padding: 30px;
}

.foot-card-content h3 {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 14px;
    color: #0F172A;
}

.foot-card-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .foot-top-grid {
        grid-template-columns: 1fr;
    }

    .foot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .foot-bio-section {
        padding: 90px 0;
    }

    .foot-bio-section h2 {
        font-size: 40px;
    }

    .foot-content h3 {
        font-size: 34px;
    }

    .foot-main-image img {
        height: 450px;
    }

    .foot-grid {
        grid-template-columns: 1fr;
    }

    .foot-features {
        grid-template-columns: 1fr;
    }

}

@media(max-width:480px) {

    .foot-bio-section h2 {
        font-size: 32px;
    }

    .foot-content h3 {
        font-size: 28px;
    }

    .floating-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .foot-card-content {
        padding: 24px;
    }

}

/* =========================================================
BLOG PAGE COMPLETE CSS
========================================================= */


/* =========================================================
GLOBAL
========================================================= */

.container {
    width: min(1180px, 90%);
    margin: auto;
}

.section {
    padding: 120px 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}



/* =========================================================
BLOG HERO
========================================================= */

.blog-hero {
    position: relative;
    padding: 140px 0 100px;

    background:
        linear-gradient(135deg,
            #f4fbff 0%,
            #eef8fc 50%,
            #ffffff 100%);

    overflow: hidden;
}

/* GLOW */

.blog-hero::before {
    content: '';
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(0, 191, 166, 0.08);

    top: -150px;
    right: -120px;

    filter: blur(40px);
}

.blog-hero::after {
    content: '';
    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background:
        rgba(15, 76, 129, 0.08);

    bottom: -140px;
    left: -100px;

    filter: blur(40px);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-badge {
    display: inline-block;

    padding: 12px 24px;
    border-radius: 999px;

    background:
        rgba(0, 191, 166, 0.12);

    color: #00BFA6;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 24px;
}

.blog-hero-content h1 {
    font-size: 68px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;

    margin-bottom: 28px;
    color: #0F172A;
}

.blog-hero-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #475569;
    max-width: 760px;
}

/* =========================================================
BLOG SECTION
========================================================= */

.blog-section {
    padding: 120px 0;
    position: relative;
}

/* TITLE */

.section-title-area {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: inline-block;

    padding: 12px 24px;
    border-radius: 999px;

    background:
        rgba(0, 191, 166, 0.12);

    color: #00BFA6;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 22px;
}

.section-title-area h2 {
    font-size: 58px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;

    margin-bottom: 24px;
}

.section-title-area p {
    max-width: 760px;
    margin: auto;

    font-size: 18px;
    line-height: 1.9;

    color: #475569;
}

/* =========================================================
FEATURED BLOG
========================================================= */

.featured-blog {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;

    padding: 40px;

    background:
        rgba(255, 255, 255, 0.8);

    backdrop-filter: blur(14px);

    border-radius: 40px;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.08);

    margin-bottom: 100px;
}

/* IMAGE */

.featured-blog-image {
    height: 550px;
    px;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
}

.featured-blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.7s;
}

.featured-blog:hover .featured-blog-image img {
    transform: scale(1.08);
}

.featured-blog-image::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

/* CONTENT */

.blog-badge {
    display: inline-block;

    padding: 10px 18px;
    border-radius: 999px;

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    color: white;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 24px;
}

.featured-blog-content h3 {
    font-size: 42px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;

    margin-bottom: 24px;
}

.featured-blog-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;

    margin-bottom: 28px;
}

/* META */

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    margin-bottom: 34px;
}

.blog-meta span {
    padding: 12px 18px;
    border-radius: 999px;

    background: white;

    font-size: 14px;
    font-weight: 600;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05);

    transition: 0.4s;
}

.blog-meta span:hover {
    transform: translateY(-4px);

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    color: white;
}

/* =========================================================
BUTTON
========================================================= */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 34px;
    border-radius: 999px;

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    color: white;

    font-size: 15px;
    font-weight: 700;

    transition: 0.4s;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);
}

/* =========================================================
BLOG GRID
========================================================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */

.blog-card {
    background: white;

    border-radius: 32px;
    overflow: hidden;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.06);

    transition: 0.5s;
}

.blog-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.blog-image {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.7s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

/* CONTENT */

.blog-content {
    padding: 30px;
}

.blog-date {
    display: block;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #00BFA6;

    margin-bottom: 14px;
}

.blog-content h3 {
    font-size: 28px;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;

    margin-bottom: 16px;

    transition: 0.4s;
}

.blog-card:hover .blog-content h3 {
    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;

    margin-bottom: 24px;
}

/* READ MORE */

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 700;

    color: #0F4C81;

    transition: 0.4s;
}

.read-more:hover {
    gap: 16px;
    color: #00BFA6;
}

/* =========================================================
NEWSLETTER
========================================================= */

.newsletter-section {
    padding-bottom: 120px;
}

.newsletter-box {
    padding: 70px;

    border-radius: 40px;

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    text-align: center;

    color: white;
}

.newsletter-box h2 {
    font-size: 48px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;

    margin-bottom: 20px;
}

.newsletter-box p {
    font-size: 18px;
    line-height: 1.8;

    max-width: 700px;
    margin: auto auto 35px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.newsletter-form input {
    width: 420px;
    max-width: 100%;

    padding: 18px 24px;
    border: none;
    outline: none;

    border-radius: 999px;

    font-size: 15px;
}

.newsletter-form button {
    padding: 18px 34px;
    border: none;
    cursor: pointer;

    border-radius: 999px;

    background: #ffffff;
    color: #0F172A;

    font-size: 15px;
    font-weight: 700;

    transition: 0.4s;
}

.newsletter-form button:hover {
    transform: translateY(-4px);
}


/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .featured-blog {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-hero-content h1 {
        font-size: 56px;
    }

}

@media(max-width:768px) {

    .menu-btn {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        background: white;

        padding: 25px;

        display: none;
        flex-direction: column;
        gap: 20px;

        box-shadow:
            0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .navbar.active {
        display: flex;
    }

    .blog-hero {
        padding: 120px 0 80px;
    }

    .blog-hero-content h1 {
        font-size: 42px;
    }

    .section-title-area h2 {
        font-size: 38px;
    }

    .featured-blog {
        padding: 24px;
        gap: 35px;
    }

    .featured-blog-image {
        height: 320px;
    }

    .featured-blog-content h3 {
        font-size: 30px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-box {
        padding: 50px 30px;
    }

    .newsletter-box h2 {
        font-size: 34px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:480px) {

    .blog-hero-content h1 {
        font-size: 34px;
    }

    .section-title-area h2 {
        font-size: 32px;
    }

    .featured-blog-content h3 {
        font-size: 26px;
    }

    .featured-blog-image {
        height: 260px;
    }

    .newsletter-box h2 {
        font-size: 28px;
    }

}

/* =========================================================
SERVICES PAGE FULL CSS
========================================================= */

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fbfd;
    color: #0F172A;
    overflow-x: hidden;
}

/* =========================================================
GLOBAL
========================================================= */

.container {
    width: min(1180px, 90%);
    margin: auto;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.section {
    padding: 120px 0;
}



/* =========================================================
SERVICES HERO
========================================================= */

.services-hero {
    position: relative;
    padding: 150px 0 110px;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            #6cb0d8 0%,
            #eef8fc 45%,
            #ffffff 100%);
}

/* GLOW EFFECTS */

.services-hero::before {
    content: '';
    position: absolute;

    top: -150px;
    right: -120px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(0, 191, 166, 0.08);

    filter: blur(40px);
}

.services-hero::after {
    content: '';
    position: absolute;

    bottom: -120px;
    left: -100px;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        rgba(15, 76, 129, 0.08);

    filter: blur(40px);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-badge {
    display: inline-block;

    padding: 12px 24px;
    border-radius: 999px;

    background:
        rgba(0, 191, 166, 0.12);

    color: #00BFA6;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 24px;
}

.services-hero-content h1 {
    font-size: 68px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;

    margin-bottom: 30px;
    color: #0F172A;
}

.services-hero-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #475569;

    max-width: 760px;

    margin-bottom: 40px;
}

/* =========================================================
BUTTON
========================================================= */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    color: white;

    font-size: 15px;
    font-weight: 700;

    transition: 0.4s;
}

.btn-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15);
}

/* =========================================================
SECTION TITLE
========================================================= */

.section-title-area {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: inline-block;

    padding: 12px 24px;
    border-radius: 999px;

    background:
        rgba(0, 191, 166, 0.12);

    color: #00BFA6;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 22px;
}

.section-title-area h2 {
    font-size: 58px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;

    margin-bottom: 24px;
}

.section-title-area p {
    max-width: 760px;
    margin: auto;

    font-size: 18px;
    line-height: 1.9;

    color: #475569;
}

/* =========================================================
SERVICES SECTION
========================================================= */

.services-section {
    padding: 120px 0;
}

/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */

.service-card {
    background: white;

    border-radius: 34px;
    overflow: hidden;

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.07);

    transition: 0.5s;
}

.service-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.12);
}

/* IMAGE */

.service-image {

    overflow: hidden;
    line-height: 0;
}

.service-image img {
    display: block;
    width: 100%;
    height: auto;


    transition: 0.7s;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

/* CONTENT */

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 28px;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;

    margin-bottom: 16px;

    transition: 0.4s;
}

.service-card:hover .service-content h3 {
    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

/* =========================================================
WHY SECTION
========================================================= */

.why-section {
    padding-bottom: 120px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* IMAGE */

.why-image {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
}

.why-image img {
    height: 100%;
    object-fit: cover;

    transition: 0.7s;
}

.why-image:hover img {
    transform: scale(1.06);
}

/* CONTENT */

.why-content h2 {
    font-size: 52px;
    line-height: 1.15;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;

    margin-bottom: 26px;
}

.why-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #475569;

    margin-bottom: 34px;
}

/* POINTS */

.why-points {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-bottom: 40px;
}

.why-item {
    padding: 18px 22px;

    border-radius: 18px;

    background: #F8FAFC;

    font-size: 16px;
    font-weight: 600;

    transition: 0.4s;
}

.why-item:hover {
    transform: translateX(8px);

    background:
        linear-gradient(135deg,
            #0F4C81,
            #00BFA6);

    color: white;
}

/* =========================================================
FOOTER
========================================================= */

/* =========================================================
FOOTER  (all four columns always in one row on desktop)
========================================================= */
 
.footer {
    background: #0F172A;
    padding: 100px 0 0;
    color: white;
}
 
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
 
    padding-bottom: 70px;
}
 
.footer-box h3 {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
 
    margin-bottom: 20px;
}
 
.footer-box p {
    color: #CBD5E1;
    line-height: 1.9;
}
 
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
 
.footer-links a {
    color: #CBD5E1;
    transition: 0.4s;
}
 
.footer-links a:hover {
    color: #00BFA6;
    padding-left: 6px;
}
 
.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);
 
    text-align: center;
 
    padding: 26px;
 
    font-size: 15px;
    color: #CBD5E1;
}
 
/* =========================================================
ANIMATION
========================================================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

@keyframes fadeUp {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-hero-content h1 {
        font-size: 56px;
    }

}

/* =========================================================
TABLET
========================================================= */

@media(max-width:768px) {

    .menu-btn {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        background: white;

        padding: 25px;

        display: none;
        flex-direction: column;
        gap: 20px;

        box-shadow:
            0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .navbar.active {
        display: flex;
    }

    .services-hero {
        padding: 120px 0 80px;
    }

    .services-hero-content h1 {
        font-size: 42px;
    }

    .section-title-area h2 {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-content h2 {
        font-size: 38px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:480px) {

    .services-hero-content h1 {
        font-size: 34px;
    }

    .section-title-area h2 {
        font-size: 32px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .why-content h2 {
        font-size: 30px;
    }

}