:root {

    --primary-blue: #0A4C9A;
    --secondary-blue: #083B78;
    --teal-green: #0FA6A6;
    --light-bg: #F5F9FF;
    --text-dark: #111827;
    --text-light: #6B7280;
    --white: #ffffff;
    --border-color: #E5E7EB;
}

/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ================= TOP HEADER ================= */

.top-header {
    background: var(--secondary-blue);
    padding: 12px 0;
    color: var(--white);
    font-size: 14px;
}

.top-left a {
    color: var(--white);
    margin-right: 16px;
    font-size: 15px;
    transition: 0.3s;
}

.top-left a:hover {
    color: var(--teal-green);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-right span {
    font-weight: 500;
}

.top-right i {
    margin-right: 8px;
}

/* ================= NAVBAR ================= */

.custom-navbar {

    background: var(--white);

    padding: 10px 0;

    position: sticky;
    top: 0;
    z-index: 999;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.navbar-brand img {
    height: 60px;
    margin-left: -50px;
}

.navbar-nav .nav-link {

    color: var(--text-dark);

    font-size: 17px;

    font-weight: 600;

    margin: 0 14px;

    transition: 0.3s;

    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

/* ACTIVE MENU */

.navbar-nav .nav-link.active {
    color: var(--primary-blue);
}

/* BUTTON */

.appoint-btn {

    background: var(--primary-blue);

    color: var(--white);

    padding: 14px 26px;

    border-radius: 50px;

    font-weight: 600;

    transition: 0.3s;
}

.appoint-btn:hover {

    background: var(--teal-green);

    color: var(--white);
}

/* ================= MEGA MENU ================= */

.mega-menu {

    width: 550px;

    left: 50%;

    transform: translateX(-50%);

    border: none;

    border-radius: 20px;

    padding: 15px;

    background: var(--white);

    display: none;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.mega-menu .row {
    row-gap: 10px;
}

.mega-menu a {

    display: block;

    padding: 12px 10px;

    color: var(--text-dark);

    border-radius: 10px;

    font-size: 15px;

    font-weight: 500;

    transition: 0.3s;
}

.mega-menu a:hover {

    background: var(--light-bg);

    color: var(--primary-blue);

    padding-left: 18px;
}

/* DESKTOP */

@media(min-width:992px) {

    .nav-item.dropdown:hover .mega-menu {
        display: block;
    }
}

/* ================= HERO ================= */

.hero-section {

    padding: 20px 0;

    background: linear-gradient(135deg,
            #f5f9ff 0%,
            #ffffff 100%);
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {

    font-size: 52px;

    line-height: 1.2;

    font-weight: 800;

    color: var(--primary-blue);

    margin-bottom: 22px;
}

.hero-content p {

    font-size: 18px;

    line-height: 1.9;

    color: var(--text-light);
}

/* ================= MOBILE ================= */

@media(max-width:991px) {

    .top-header {
        text-align: center;
    }

    .top-header .container {
        flex-direction: row;
        gap: 10px;
    }

    .top-right {
        flex-direction: column;
        gap: 5px;
    }

    .navbar-brand img {
        height: 62px;
        margin-left: 0px;
    }

    .navbar-nav {
        margin-top: 20px;
    }

    .navbar-nav .nav-link {
        margin: 0;
        padding: 12px 0;
    }

    .appoint-btn {
        display: none;
    }

    .mega-menu {

        width: 100%;

        position: static;

        transform: none;

        padding: 15px;

        box-shadow: none;

        border-radius: 12px;
    }

    .nav-item.dropdown.active .mega-menu {
        display: block;
    }

    .hero-section {
        padding: 70px 0;
    }

    .hero-content h1 {

        font-size: 34px;
    }

    .hero-content p {

        font-size: 16px;
        line-height: 1.8;
    }
}


/* ================= HERO SECTION ================= */

.hero-section {

    position: relative;

    overflow: hidden;

    padding: 20px 0 0;

    background:
        linear-gradient(90deg,
            rgba(8, 59, 120, 0.96) 0%,
            rgba(10, 76, 154, 0.92) 35%,
            rgba(15, 166, 166, 0.82) 100%);

}

/* LEFT PATTERN */

.hero-section::before {

    content: "";

    position: absolute;

    left: -120px;

    bottom: -120px;

    width: 500px;

    height: 500px;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.08) 2px,
            transparent 2px);

    background-size: 22px 22px;

    opacity: 0.5;

    z-index: 1;
}

.hero-content {

    position: relative;

    z-index: 2;

    padding-bottom: 70px;
}

/* TAG */

.hero-tag {

    display: inline-block;

    background: rgba(0, 0, 0, 0.35);

    color: var(--white);

    padding: 12px 20px;

    border-radius: 6px;

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 25px;
}

/* HEADING */

.hero-content h1 {

    color: var(--white);

    font-size: 40px;

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 30px;
}

/* PARAGRAPH */

.hero-content p {

    color: rgba(255, 255, 255, 0.9);

    font-size: 21px;

    line-height: 1.8;

    max-width: 760px;

    margin-bottom: 40px;
}

/* BUTTONS */

.hero-btns {

    display: flex;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;
}

/* PRIMARY BTN */

.hero-btn {

    background: var(--white);

    color: var(--primary-blue);

    padding: 16px 34px;

    border-radius: 50px;

    font-size: 17px;

    font-weight: 700;

    transition: 0.4s;
}

.hero-btn:hover {

    background: var(--secondary-blue);

    color: var(--white);
}

/* LINK BTN */

.hero-link {

    color: var(--white);

    font-size: 20px;

    font-weight: 600;

    transition: 0.3s;
}

.hero-link i {

    margin-left: 10px;
}

.hero-link:hover {

    color: #dbeafe;
}

/* RIGHT SIDE */

.hero-image-wrapper {

    position: relative;

    text-align: center;

    z-index: 2;
}

/* ROUND IMAGE */

.hero-circle {

    position: absolute;

    top: 40px;

    left: 50%;

    transform: translateX(-50%);

    width: 620px;

    max-width: 100%;

    opacity: 0.9;

    z-index: 1;

    animation: rotateCircle 25s linear infinite;
}

/* DOCTOR IMAGE */

.doctor-img {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 700px;

    margin-top: 30px;
}

/* ANIMATION */

@keyframes rotateCircle {

    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .hero-section {

        padding: 70px 0 0;
    }

    .hero-content {

        text-align: center;

        padding-bottom: 20px;
    }

    .hero-content h1 {

        font-size: 46px;
    }

    .hero-content p {

        font-size: 18px;

        line-height: 1.8;
    }

    .hero-btns {

        justify-content: center;
    }

    .hero-image-wrapper {

        margin-top: 40px;
    }

    .hero-circle {

        width: 420px;
    }

    .doctor-img {

        max-width: 480px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .hero-section {

        padding: 60px 0 0;
    }

    .hero-tag {

        font-size: 13px;

        padding: 10px 16px;
    }

    .hero-content h1 {

        font-size: 34px;

        line-height: 1.3;
    }

    .hero-content p {

        font-size: 16px;

        line-height: 1.8;
    }

    .hero-btn {

        width: 100%;

        text-align: center;
    }

    .hero-link {

        width: 100%;

        text-align: center;

        font-size: 18px;
    }

    .hero-circle {

        width: 300px;

        top: 20px;
    }

    .doctor-img {

        max-width: 340px;
    }
}


/* ================= COUNTER SECTION ================= */

.counter-section {

    position: relative;

    margin-top: -70px;

    z-index: 20;

    padding-bottom: 80px;
}

.counter-box {
    background: var(--white);
    border-radius: 24px;
    padding: 30px 26px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* TOP BORDER EFFECT */

.counter-box::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(90deg,
            var(--primary-blue),
            var(--teal-green));
}

/* HOVER */

.counter-box:hover {

    transform: translateY(-10px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.15);
}

/* ICON */

.counter-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--teal-green));
    color: var(--white);
    font-size: 34px;
    box-shadow: 0 10px 25px rgba(10, 76, 154, 0.25);
}

/* NUMBER */

.counter-box h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1px;
    line-height: 1;
}

/* TEXT */

.counter-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .counter-section {

        margin-top: 0;

        padding-top: 60px;
    }

    .counter-box {

        padding: 35px 25px;
    }

    .counter-box h2 {

        font-size: 42px;
    }

    .counter-box p {

        font-size: 16px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .counter-section {

        padding: 50px 0;
    }

    .counter-box {

        border-radius: 18px;

        padding: 30px 20px;
    }

    .counter-icon {

        width: 75px;

        height: 75px;

        font-size: 28px;
    }

    .counter-box h2 {

        font-size: 36px;
    }

    .counter-box p {

        font-size: 15px;

        line-height: 1.6;
    }
}


/* ================= ABOUT SECTION ================= */

.about-section {

    padding: 120px 0;

    background: #f8fbff;

    overflow: hidden;

    position: relative;
}

.about-image-wrapper {
    position: relative;
    text-align: center;
    padding: 0px;
}

/* BACKGROUND SHAPE */

.about-bg-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background: linear-gradient(180deg, var(--teal-green), var(--primary-blue));
    z-index: 1;
}

/* IMAGE */

.about-doctor-img {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 480px;
}

/* EXPERIENCE CARD */

.experience-card {

    position: absolute;

    right: 0;

    bottom: 40px;

    background: var(--white);

    padding: 20px 28px;

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);

    z-index: 3;

    animation: floatCard 3s ease-in-out infinite;
}

.experience-card h3 {

    font-size: 42px;

    font-weight: 800;

    color: var(--primary-blue);

    margin-bottom: 5px;
}

.experience-card span {

    font-size: 15px;

    color: var(--text-light);

    font-weight: 600;
}

/* RIGHT CONTENT */

.about-content {

    padding-left: 30px;
}

.section-tag {

    display: inline-block;

    background: rgba(10, 76, 154, 0.1);

    color: var(--primary-blue);

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 25px;
}

.about-content h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.about-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 40px;
}

/* FEATURES */

.about-features {

    display: flex;

    gap: 25px;

    margin-bottom: 40px;

    flex-wrap: wrap;
}

.feature-box {
    flex: 1;
    min-width: 227px;
    background: var(--white);
    padding: 18px;
    border-radius: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: 0.4s;
    border: 1px solid #edf2f7;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.feature-box:hover {

    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ICON */

.feature-icon {
    min-width: 50px;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--teal-green));
    color: var(--white);
    font-size: 28px;
}

.feature-content h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-content p {

    font-size: 16px;

    line-height: 1.8;

    color: var(--text-light);

    margin: 0;
}

/* CHECK LIST */

.about-check-list {

    margin-bottom: 40px;
}

.check-item {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 22px;
}

.check-item i {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    background: var(--primary-blue);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

    margin-top: 5px;
}

.check-item p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-light);
    margin: 0;
}

/* BUTTON */

.about-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background:
        linear-gradient(135deg,
            var(--primary-blue),
            var(--teal-green));

    color: var(--white);

    padding: 16px 34px;

    border-radius: 50px;

    font-size: 16px;

    font-weight: 700;

    transition: 0.4s;
}

.about-btn:hover {

    transform: translateY(-4px);

    color: var(--white);

    box-shadow:
        0 12px 30px rgba(10, 76, 154, 0.3);
}

/* FLOAT CARD */

@keyframes floatCard {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* SCROLL ANIMATION */

.scroll-up {

    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.scroll-up.show {

    opacity: 1;

    transform: translateY(0);
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .about-section {

        padding: 80px 0;
    }

    .about-content {

        padding-left: 0;

        text-align: center;
    }

    .about-content h2 {

        font-size: 42px;
    }

    .about-text {

        font-size: 17px;
    }

    .about-features {

        justify-content: center;
    }

    .check-item {

        text-align: left;
    }

    .experience-card {

        right: 20px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .about-section {

        padding: 70px 0;
    }

    .about-image-wrapper {

        padding: 15px;
    }

    .about-bg-shape {

        border-radius: 24px;
    }

    .about-content h2 {

        font-size: 32px;

        line-height: 1.3;
    }

    .about-text {

        font-size: 15px;

        line-height: 1.8;
    }

    .feature-box {

        padding: 22px;
    }

    .feature-content h4 {

        font-size: 20px;
    }

    .check-item p {

        font-size: 15px;
    }

    .experience-card {

        position: relative;

        right: auto;

        bottom: auto;

        margin-top: 20px;

        display: inline-block;
    }

    .about-btn {

        width: 100%;

        justify-content: center;
    }
}


/* ================= SERVICES SECTION ================= */

.services-section {

    padding: 90px 0;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #f8fbff 0%,
            #eef7ff 100%);
}

/* GRID BACKGROUND */

.services-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(10, 76, 154, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 76, 154, 0.05) 1px, transparent 1px);

    background-size: 55px 55px;

    z-index: 1;
}

/* CONTAINER */

.services-section .container {

    position: relative;

    z-index: 2;
}

/* ================= SECTION TITLE ================= */

.section-title {

    max-width: 850px;

    margin: 0 auto 55px;
}

.section-tag {

    display: inline-block;

    background: rgba(10, 76, 154, 0.1);

    color: var(--primary-blue);

    padding: 10px 22px;

    border-radius: 40px;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 18px;
}

.section-title h2 {

    font-size: 42px;

    line-height: 1.3;

    font-weight: 800;

    color: var(--text-dark);

    margin-bottom: 20px;
}

.section-title p {

    font-size: 16px;

    line-height: 1.9;

    color: var(--text-light);
}

/* ================= SERVICE CARD ================= */

.service-card {

    background: var(--white);

    border-radius: 20px;

    padding: 28px 20px;

    text-align: center;

    height: 100%;

    transition: 0.4s;

    position: relative;

    overflow: hidden;

    border: 1px solid rgba(10, 76, 154, 0.08);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.05);
}

/* TOP BORDER */

.service-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(90deg,
            var(--primary-blue),
            var(--teal-green));
}

/* HOVER */

.service-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.1);
}

/* ================= ICON ================= */

.service-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            rgba(10, 76, 154, 0.12),
            rgba(15, 166, 166, 0.12));

    display: flex;

    align-items: center;

    justify-content: center;
}

.service-icon img {

    width: 42px;
}

/* ================= TITLE ================= */

.service-card h3 {

    font-size: 18px;

    line-height: 1.5;

    font-weight: 700;

    color: var(--text-dark);

    margin-bottom: 18px;

    min-height: 56px;
}

/* ================= BUTTON ================= */

.service-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(135deg,
            var(--primary-blue),
            var(--teal-green));

    color: var(--white);

    padding: 12px 24px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    transition: 0.4s;
}

.service-btn:hover {

    transform: translateY(-3px);

    color: var(--white);

    box-shadow:
        0 10px 24px rgba(10, 76, 154, 0.25);
}

/* ================= VIEW MORE BUTTON ================= */

.view-more-wrapper {

    text-align: center;

    margin-top: 55px;
}

.view-more-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background:
        linear-gradient(135deg,
            var(--primary-blue),
            var(--teal-green));

    color: var(--white);

    padding: 16px 36px;

    border-radius: 50px;

    font-size: 16px;

    font-weight: 700;

    transition: 0.4s;
}

.view-more-btn:hover {

    transform: translateY(-4px);

    color: var(--white);

    box-shadow:
        0 10px 24px rgba(10, 76, 154, 0.25);
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .services-section {

        padding: 75px 0;
    }

    .section-title h2 {

        font-size: 36px;
    }

    .service-card {

        padding: 24px 18px;
    }

    .service-card h3 {

        min-height: auto;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .services-section {

        padding: 65px 0;
    }

    .section-title {

        margin-bottom: 40px;
    }

    .section-title h2 {

        font-size: 28px;

        line-height: 1.4;
    }

    .section-title p {

        font-size: 15px;

        line-height: 1.8;
    }

    .service-card {

        padding: 22px 16px;

        border-radius: 18px;
    }

    .service-icon {

        width: 68px;

        height: 68px;
    }

    .service-icon img {

        width: 36px;
    }

    .service-card h3 {

        font-size: 17px;

        margin-bottom: 16px;
    }

    .service-btn {

        width: 100%;
    }

    .view-more-btn {

        width: 100%;
    }
}


/* ================= WHY CHOOSE SECTION ================= */

.why-choose-section {

    padding: 80px 0;

    background: #f8fbff;

    overflow: hidden;

    position: relative;
}

/* LEFT CONTENT */

.why-content {

    padding-right: 20px;
}

/* TAG */

.why-tag {

    display: inline-block;

    background: rgba(10, 76, 154, 0.08);

    color: var(--primary-blue);

    padding: 10px 20px;

    border-radius: 40px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 20px;
}

/* TITLE */

.why-content h2 {

    font-size: 35px;

    line-height: 1.25;

    font-weight: 800;

    color: var(--text-dark);

    margin-bottom: 22px;
}

/* TEXT */

.why-content p {

    font-size: 16px;

    line-height: 1.9;

    color: var(--text-light);

    margin-bottom: 28px;
}

/* ================= INFO BOX ================= */

.why-box {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    background: var(--white);

    padding: 22px;

    border-radius: 20px;

    margin-bottom: 18px;

    border: 1px solid rgba(10, 76, 154, 0.08);

    transition: 0.4s;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.04);
}

.why-box:hover {

    transform: translateY(-6px);

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.08);
}

/* ICON */

.why-icon {

    min-width: 62px;

    height: 62px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(135deg,
            var(--primary-blue),
            var(--teal-green));

    color: var(--white);

    font-size: 24px;
}

/* BOX CONTENT */

.why-text h4 {

    font-size: 20px;

    line-height: 1.4;

    font-weight: 700;

    margin-bottom: 10px;

    color: var(--text-dark);
}

.why-text p {

    margin: 0;

    font-size: 15px;

    line-height: 1.8;

    color: var(--text-light);
}

/* ================= RIGHT IMAGE ================= */

.why-image-wrapper {

    position: relative;

    padding-left: 40px;
}

/* MAIN IMAGE */

.why-main-img {

    width: 100%;

    max-width: 520px;

    border-radius: 30px;

    display: block;

    margin-left: auto;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}

/* SMALL IMAGE */

.why-small-img {

    position: absolute;

    left: 0;

    bottom: 40px;

    width: 240px;

    border-radius: 20px;

    border: 6px solid var(--white);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}

/* EXPERIENCE BADGE */

.experience-badge {

    position: absolute;

    top: 25px;

    left: 0;

    width: 130px;

    height: 130px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            var(--primary-blue),
            var(--teal-green));

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: var(--white);

    z-index: 3;

    box-shadow:
        0 10px 25px rgba(10, 76, 154, 0.25);

    animation: floatBadge 3s ease-in-out infinite;
}

.experience-badge h3 {

    font-size: 38px;

    font-weight: 800;

    line-height: 1;

    margin-bottom: 5px;
}

.experience-badge span {

    font-size: 13px;

    line-height: 1.5;

    text-align: center;

    font-weight: 600;
}

/* FLOAT */

@keyframes floatBadge {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ================= SCROLL ANIMATION ================= */

.scroll-up {

    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.scroll-up.show {

    opacity: 1;

    transform: translateY(0);
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .why-choose-section {

        padding: 70px 0;
    }

    .why-content {

        padding-right: 0;
    }

    .why-content h2 {

        font-size: 34px;
    }

    .why-image-wrapper {

        padding-left: 0;

        margin-top: 30px;
    }

    .why-main-img {

        max-width: 100%;
    }

    .why-small-img {

        width: 200px;

        left: 20px;

        bottom: 20px;
    }

    .experience-badge {

        width: 110px;

        height: 110px;
    }

    .experience-badge h3 {

        font-size: 30px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .why-choose-section {

        padding: 60px 0;
    }

    .why-tag {

        font-size: 12px;
    }

    .why-content h2 {

        font-size: 28px;

        line-height: 1.3;
    }

    .why-content p {

        font-size: 15px;

        line-height: 1.8;
    }

    .why-box {

        padding: 18px;

        gap: 14px;

        border-radius: 18px;
    }

    .why-icon {

        min-width: 52px;

        height: 52px;

        font-size: 20px;
    }

    .why-text h4 {

        font-size: 18px;
    }

    .why-text p {

        font-size: 14px;
    }

    .why-main-img {

        border-radius: 22px;
    }

    .why-small-img {

        position: relative;

        width: 100%;

        left: auto;

        bottom: auto;

        margin-top: 18px;
    }

    .experience-badge {

        width: 95px;

        height: 95px;

        top: -15px;

        left: 10px;
    }

    .experience-badge h3 {

        font-size: 26px;
    }

    .experience-badge span {

        font-size: 11px;
    }
}


/* ================= PATIENT GALLERY SECTION ================= */

.patient-gallery-section {

    padding: 90px 0;

    background:
        linear-gradient(135deg,
            #f8fbff 0%,
            #eef7ff 100%);

    overflow: hidden;

    position: relative;
}

/* BG EFFECT */

.patient-gallery-section::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    background:
        radial-gradient(rgba(10, 76, 154, 0.08),
            transparent);

    top: -120px;

    right: -100px;

    border-radius: 50%;
}

/* ================= LEFT CONTENT ================= */

.gallery-content {

    max-width: 520px;
}

/* TAG */

.gallery-tag {

    display: inline-block;

    background: rgba(10, 76, 154, 0.1);

    color: var(--primary-blue);

    padding: 10px 20px;

    border-radius: 40px;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 20px;
}

/* TITLE */

.gallery-content h2 {

    font-size: 35px;

    line-height: 1.3;

    font-weight: 800;

    color: var(--text-dark);

    margin-bottom: 24px;
}

/* TEXT */

.gallery-content p {

    font-size: 16px;

    line-height: 1.9;

    color: var(--text-light);

    margin-bottom: 20px;
}

/* BUTTON */

.gallery-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    background:
        linear-gradient(135deg,
            var(--primary-blue),
            var(--teal-green));

    color: var(--white);

    padding: 15px 30px;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 700;

    margin-top: 15px;

    transition: 0.4s;
}

.gallery-btn:hover {

    transform: translateY(-4px);

    color: var(--white);

    box-shadow:
        0 12px 25px rgba(10, 76, 154, 0.22);
}

/* ================= RIGHT GRID ================= */

.gallery-grid {

    display: flex;

    gap: 18px;

    height: 700px;

    overflow: hidden;
}

/* COLUMN */

.gallery-column {

    flex: 1;

    display: flex;

    flex-direction: column;

    gap: 18px;
}

/* CARD */

.gallery-card {

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);

    transition: 0.4s;
}

.gallery-card:hover {

    transform: translateY(-8px);
}

/* IMAGE */

.gallery-card img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    display: block;
}

/* ================= AUTO SCROLL ANIMATION ================= */

.scroll-column-up {

    animation: scrollUp 18s linear infinite;
}

.scroll-column-down {

    animation: scrollDown 18s linear infinite;
}

@keyframes scrollUp {

    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-220px);
    }
}

@keyframes scrollDown {

    0% {
        transform: translateY(-220px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ================= TABLET ================= */

@media (max-width: 991px) {

    .patient-gallery-section {

        padding: 75px 0;
    }

    .gallery-content {

        max-width: 100%;

        text-align: center;
    }

    .gallery-content h2 {

        font-size: 34px;
    }

    .gallery-grid {

        height: 550px;

        margin-top: 20px;
    }

    .gallery-card img {

        height: 220px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

    .patient-gallery-section {

        padding: 65px 0;
    }

    .gallery-content h2 {

        font-size: 28px;

        line-height: 1.4;
    }

    .gallery-content p {

        font-size: 15px;

        line-height: 1.8;
    }

    .gallery-btn {

        width: 100%;

        justify-content: center;
    }

    .gallery-grid {

        gap: 10px;

        height: 420px;
    }

    .gallery-column {

        gap: 10px;
    }

    .gallery-card {

        border-radius: 16px;
    }

    .gallery-card img {

        height: 160px;
    }
}


/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section{
    padding:80px 0;
    background:#f7fbff;
    overflow:hidden;
    position:relative;
}

/* LEFT SIDE */

.testimonial-left{
    padding-right:40px;
}

.testimonial-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:40px;
    background:rgba(14,76,154,0.08);
    color:var(--primary-blue);
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
}

.testimonial-left h2{
    font-size:35px;
    line-height:1.08;
    font-weight:800;
    color:var(--text-dark);
    margin-bottom:24px;
}

.testimonial-left p{
    font-size:15px;
    line-height:1.9;
    color:var(--text-light);
    max-width:460px;
}

/* ================= SLIDER ================= */

.testimonial-slider-wrap{
    overflow:hidden;
    width:100%;
    position:relative;
}

.testimonial-track{
    display:flex;
    width:max-content;
    animation:testimonialMove 18s linear infinite;
}

.testimonial-track:hover{
    animation-play-state:paused;
}

/* CARD */

.testimonial-card{
    width:520px;
    min-height:280px;

    background:#fff;

    border-radius:26px;

    padding:34px;

    margin-right:28px;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

    flex-shrink:0;
}

/* STARS */

.testimonial-stars{
    margin-bottom:20px;
}

.testimonial-stars i{
    color:#f6b63e;
    margin-right:4px;
    font-size:18px;
}

/* REVIEW */

.testimonial-text{
    font-size:17px;
    line-height:1.9;
    color:var(--text-light);
    margin-bottom:30px;
}

/* USER */

.testimonial-user{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
}

.testimonial-user h4{
    font-size:28px;
    font-weight:700;
    color:var(--primary-blue);
    margin-bottom:4px;
}

.testimonial-user span{
    font-size:15px;
    color:var(--text-light);
}

/* QUOTE */

.quote-icon{
    font-size:58px;
    color:rgba(14,76,154,0.25);
    line-height:1;
}

/* ================= AUTO SLIDE ================= */

@keyframes testimonialMove{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .testimonial-section{
        padding:70px 0;
    }

    .testimonial-left{
        padding-right:0;
        margin-bottom:40px;
        text-align:center;
    }

    .testimonial-left p{
        margin:auto;
    }

    .testimonial-left h2{
        font-size:42px;
    }

    .testimonial-card{
        width:420px;
        min-height:auto;
    }
}

@media(max-width:576px){

    .testimonial-section{
        padding:60px 0;
    }

    .testimonial-left h2{
        font-size:32px;
        line-height:1.25;
    }

    .testimonial-left p{
        font-size:15px;
    }

    .testimonial-card{
        width:300px;
        padding:24px;
        margin-right:16px;
        border-radius:18px;
    }

    .testimonial-text{
        font-size:15px;
        line-height:1.8;
    }

    .testimonial-user{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .testimonial-user h4{
        font-size:22px;
    }

    .quote-icon{
        font-size:42px;
    }
}

/* =======================================================
   VIDEO SECTION
======================================================= */

.video-section{
    position: relative;
    padding: 90px 0 80px;
    background: linear-gradient(135deg,#082c66 0%, #0f4fa7 100%);
    overflow: hidden;
}

.video-section::before{
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    top: -220px;
    left: -180px;
}

.video-section::after{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    bottom: -160px;
    right: -120px;
}

/* ================= HEADING ================= */

.video-heading{
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 55px;
}

.video-tag{
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.video-heading h2{
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.video-heading p{
    max-width: 760px;
    margin: auto;
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    line-height: 1.8;
}

/* ================= VIDEO CARD ================= */

.video-card{
    position: relative;
    background: rgba(255,255,255,0.08);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: 0.45s ease;
    height: 100%;
    box-shadow:
        0 12px 35px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.video-card:hover{
    transform: translateY(-8px);
    box-shadow:
        0 22px 50px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ================= VIDEO ================= */

.video-frame{
    position: relative;
    overflow: hidden;
}

.video-frame iframe{
    width: 100%;
    height: 280px;
    border: none;
    display: block;
}

/* overlay gradient */

.video-frame::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.05)
    );
    pointer-events: none;
}

/* ================= CONTENT ================= */

.video-content{
    padding: 26px 28px 30px;
}

.video-content h4{
    color: #fff;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
    margin-bottom: 16px;
}

.video-content p{
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* ================= BUTTON ================= */

.video-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.35s ease;
}

.video-btn:hover{
    background: var(--light-teal);
    color: #fff;
    transform: translateY(-2px);
}

/* ================= BOTTOM BUTTON ================= */

.video-bottom-btn{
    text-align: center;
    margin-top: 55px;
    position: relative;
    z-index: 2;
}

.all-video-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 42px;
    border-radius: 60px;
    background: #fff;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.all-video-btn:hover{
    background: var(--light-teal);
    color: #fff;
    transform: translateY(-3px);
}

/* =======================================================
   RESPONSIVE
======================================================= */

@media(max-width:1199px){

    .video-heading h2{
        font-size: 48px;
    }

    .video-content h4{
        font-size: 24px;
    }

    .video-frame iframe{
        height: 250px;
    }
}

@media(max-width:991px){

    .video-section{
        padding: 75px 0;
    }

    .video-heading{
        margin-bottom: 40px;
    }

    .video-heading h2{
        font-size: 40px;
    }

    .video-heading p{
        font-size: 16px;
    }

    .video-frame iframe{
        height: 240px;
    }

    .video-content{
        padding: 22px;
    }

    .video-content h4{
        font-size: 22px;
    }
}

@media(max-width:767px){

    .video-section{
        padding: 65px 0;
    }

    .video-heading h2{
        font-size: 32px;
    }

    .video-heading p{
        font-size: 15px;
        line-height: 1.7;
    }

    .video-card{
        border-radius: 22px;
    }

    .video-frame iframe{
        height: 220px;
    }

    .video-content h4{
        font-size: 20px;
    }
}

@media(max-width:576px){

    .video-section{
        padding: 55px 0;
    }

    .video-tag{
        font-size: 12px;
        padding: 8px 18px;
    }

    .video-heading h2{
        font-size: 27px;
        line-height: 1.3;
    }

    .video-heading p{
        font-size: 14px;
    }

    .video-frame iframe{
        height: 190px;
    }

    .video-content{
        padding: 18px;
    }

    .video-content h4{
        font-size: 18px;
        line-height: 1.5;
    }

    .video-content p{
        font-size: 13px;
    }

    .video-btn{
        width: 100%;
        justify-content: center;
    }

    .all-video-btn{
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}


/* ==========================================
   BLOG SECTION
========================================== */

.blogs-section{
    padding:80px 0;
    background:#f7fbff;
    position:relative;
}

.blogs-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(13,76,161,.08);
    color:var(--primary-blue);
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.blogs-heading h2{
    font-size:35px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.blogs-heading p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    font-size:16px;
    line-height:1.8;
}


.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 328px;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
    transition: .4s ease;
}

.blog-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 20px 45px rgba(15,23,42,.12);
}



.blog-img{
    overflow:hidden;
    position:relative;
}

.blog-img img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.5s;
    display:block;
}

.blog-card:hover .blog-img img{
    transform:scale(1.08);
}



.blog-content{
    padding:22px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.blog-content h4 {
    color: #0f172a;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 0px;
    min-height: 60px;
}
.blog-btn{
    margin-top:auto;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    width:160px;
    height:48px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--primary-blue),
        var(--light-teal)
    );

    color:#fff;
    font-size:15px;
    font-weight:600;

    transition:.3s;
}

.blog-card:hover .blog-btn{
    transform:translateY(-2px);
}

.blog-btn i{
    transition:.3s;
}

.blog-card:hover .blog-btn i{
    transform:translateX(4px);
}


.blog-bottom{
    text-align:center;
    margin-top:50px;
}

.all-blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    height: 58px;
    border-radius: 50px;
    background: #0a4c9a;
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(13, 76, 161, .20);
    transition: .4s;
}
.all-blog-btn:hover{
    transform:translateY(-3px);
    color:#fff;
    background: var(--teal-green);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1199px){

    .blog-content h4{
        font-size:20px;
        min-height:90px;
    }
}

@media(max-width:991px){

    .blogs-heading h2{
        font-size:38px;
    }

    .blog-card{
        min-height:400px;
    }

    .blog-content h4{
        min-height:auto;
    }
}

@media(max-width:767px){

    .blogs-section{
        padding:60px 0;
    }

    .blogs-heading{
        margin-bottom:35px;
    }

    .blogs-heading h2{
        font-size:30px;
    }

    .blogs-heading p{
        font-size:15px;
    }

    .blog-card{
        min-height:auto;
    }

    .blog-img img{
        height:200px;
    }

    .blog-content{
        padding:18px;
    }

    .blog-content h4{
        font-size:18px;
        min-height:auto;
    }

    .blog-btn{
        width:100%;
    }

    .all-blog-btn{
        width:100%;
        min-width:100%;
    }
}


/* =========================
   FAQ SECTION
========================= */

.faq-section{
    background: linear-gradient(135deg,#0d4ca1,#11458f);
    padding:80px 0;
    position:relative;
}

.faq-section .container{
    max-width:1200px;
    margin:auto;
    padding:0 15px;
}

/* =========================
   HEADING
========================= */

.faq-heading{
    text-align:center;
    margin-bottom:45px;
}

.faq-tag{
    display:inline-block;
    background:rgba(255,255,255,.12);
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.faq-heading h2{
    font-size:35px;
    font-weight:700;
    color:#fff;
    margin-bottom:12px;
    line-height:1.2;
}

.faq-heading p{
    color:rgba(255,255,255,.85);
    font-size:17px;
    margin:0;
}

/* =========================
   FAQ WRAPPER
========================= */

.faq-wrapper{
    max-width:1100px;
    margin:auto;
}

/* =========================
   FAQ CARD
========================= */

.faq-item{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    margin-bottom:14px;

    box-shadow:
    0 6px 20px rgba(0,0,0,.08);

    transition:.3s ease;
}

.faq-item:hover{
    transform:translateY(-2px);
    box-shadow:
    0 12px 30px rgba(0,0,0,.12);
}

/* =========================
   QUESTION
========================= */

.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 19px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: .3s;
}

.faq-question:hover{
    background:#f8fafc;
}

.faq-question span{
    font-size:28px;
    font-weight:700;
    color:#0d4ca1;
    transition:.3s;
    flex-shrink:0;
}

/* =========================
   ANSWER
========================= */

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    background:#fff;
}

.faq-answer p{
    margin:0;
    padding:0 24px 22px;

    font-size:15px;
    line-height:1.9;

    color:#475569;
}

/* =========================
   ACTIVE STATE
========================= */

.faq-item.active{
    box-shadow:
    0 15px 35px rgba(20,184,166,.15);
}

.faq-item.active .faq-question{
    background:#14b8a6;
    color:#fff;
}

.faq-item.active .faq-question span{
    color:#fff;
    transform:rotate(45deg);
}

.faq-item.active .faq-answer{
    background:#ffffff;
    border-top:1px solid rgba(20,184,166,.15);
}

.faq-item.active .faq-answer p{
    padding-top:20px;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .faq-section{
        padding:70px 0;
    }

    .faq-heading h2{
        font-size:38px;
    }

    .faq-question{
        font-size:17px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:767px){

    .faq-section{
        padding:60px 0;
    }

    .faq-heading{
        margin-bottom:35px;
    }

    .faq-heading h2{
        font-size:30px;
    }

    .faq-heading p{
        font-size:15px;
    }

    .faq-question{
        font-size:15px;
        padding:16px 18px;
        line-height:1.5;
    }

    .faq-question span{
        font-size:22px;
    }

    .faq-answer p{
        font-size:14px;
        line-height:1.8;
        padding:0 18px 18px;
    }

}

/* =========================
   EXTRA SMALL
========================= */

@media(max-width:480px){

    .faq-heading h2{
        font-size:26px;
    }

    .faq-tag{
        font-size:13px;
        padding:7px 16px;
    }

}


/* ===================================
FOOTER
=================================== */

.footer-area{
    background:#0b0b0b;
    padding:70px 0 25px;
    color:#fff;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.quick-links{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
}

.quick-links span{
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.quick-links a{
    color:#d6d6d6;
    font-size:16px;
    transition:.3s;
}

.quick-links a:hover{
    color:#ffffff;
}

/* SOCIAL */

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#fff;
    color:#002050;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    transition:.3s;
}

.footer-social a:hover{
    background:#002050;
    color:#fff;
    transform:translateY(-4px);
}

/* DIVIDER */

.footer-divider{
    border-color:rgba(255,255,255,.08);
    margin-bottom:50px;
}

/* LOGO */

.footer-logo img{
    max-width:250px;
    margin-bottom:25px;
}

.footer-about{
    color:#cfcfcf;
    font-size:15px;
    line-height:2;
    margin:0;
}

/* TITLES */

.footer-title{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}

.footer-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:50px;
    height:3px;
    background:#1d5db3;
}

/* LINKS */

.footer-links{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#d8d8d8;
    font-size:14px;
    line-height:1.7;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
    padding-left:6px;
}

/* CONTACT */

.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#d8d8d8;
    margin-bottom:18px;
    font-size:14px;
    line-height:1.8;
}

.footer-contact i{
    color:#1d5db3;
    font-size:18px;
    margin-top:4px;
}

/* BOTTOM */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:40px;
    padding-top:25px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom div{
    color:#d6d6d6;
    font-size:15px;
}

.developer-text{
    text-align:center;
}

.developer-text a{
    color:#5d9cff;
    font-weight:700;
    text-decoration:none;
}

.developer-text a:hover{
    color:#fff;
}

.privacy-link{
    color:#d6d6d6;
}

.privacy-link:hover{
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:991px){

    .footer-main{
        row-gap:40px;
    }

    .footer-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-title{
        margin-top:10px;
    }

}

@media(max-width:767px){

    .footer-area{
        padding:50px 0 20px;
    }

    .quick-links{
        gap:12px;
    }

    .quick-links span{
        width:100%;
    }

    .footer-social{
        margin-top:10px;
    }

    .footer-logo img{
        max-width:200px;
    }

    .footer-about{
        font-size:15px;
    }

    .footer-links a{
        font-size:14px;
    }

    .footer-contact li{
        font-size:14px;
    }

}