/**
* Template Name: Clinic
* Template URL: https://bootstrapmade.com/clinic-bootstrap-template/
* Updated: Jul 23 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Segoe UI", Helvetica, Arial, sans-serif;
    --nav-font: "Lato", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #28282b; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #112344; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #212a35; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #3c4049; /* The default color of the main navmenu links */
    --nav-hover-color: #175cdd; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #3c4049; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #175cdd; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f4f8ff;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #021418;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #11262a;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
    background-color: var(--accent-color);
    height: 40px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}

.header .topbar .contact-info i {
    font-style: normal;
    color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--contrast-color);
}

@media (max-width: 575px) {

    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }

}

.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.header .topbar .social-links a:hover {
    color: var(--contrast-color);
}

.header .branding {
    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 100px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 600;
    color: var(--heading-color);
}

.scrolled .header .topbar {
    height: 0;
    visibility: hidden;
    overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu > ul > li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu > ul > li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--accent-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover > a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-16 {
    background: var(--background-color);
    color: var(--default-color);
    font-size: 15px;
    padding: 50px 0 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.footer-16 .footer-main {
    margin-bottom: 20px;
}

.footer-16 .brand-section .logo {
    text-decoration: none;
}

.footer-16 .brand-section .logo .sitename {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 300;
    color: var(--heading-color);
    letter-spacing: -0.5px;
}

.footer-16 .brand-section .brand-description {
    font-size: 18px;
    line-height: 1.7;
    color: #0a3622;
    font-weight: 300;
    margin: 0;
}

.footer-16 .contact-info {
    margin-top: 10px !important;

}

.footer-16 .brand-section .contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer-16 .brand-section .contact-info .contact-item i {
    font-size: 16px;
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-16 .brand-section .contact-info .contact-item span {
    line-height: 1.6;
}

.footer-16 .footer-nav-wrapper {
    padding-left: 60px;
}

@media (max-width: 991px) {
    .footer-16 .footer-nav-wrapper {
        padding-left: 0;
        margin-top: 50px;
    }
}

.footer-16 .nav-column {
    margin-bottom: 40px;
}

.footer-16 .nav-column h6 {
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--heading-color);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.footer-16 .nav-column .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-16 .nav-column .footer-nav a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.footer-16 .nav-column .footer-nav a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer-16 .footer-social {
    padding: 50px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.footer-16 .footer-social .newsletter-section h5 {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 300;
    color: var(--heading-color);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.footer-16 .footer-social .newsletter-section p {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin: 0;
    line-height: 1.6;
    max-width: 340px;
}

.footer-16 .footer-social .social-section {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .footer-16 .footer-social .social-section {
        justify-content: flex-start;
        margin-top: 30px;
    }
}

.footer-16 .footer-social .social-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

@media (max-width: 576px) {
    .footer-16 .footer-social .social-links {
        gap: 20px;
        flex-wrap: wrap;
    }
}

.footer-16 .footer-social .social-links .social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link span {
    transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.footer-16 .footer-social .social-links .social-link:hover i {
    transform: scale(1.1);
}

.footer-16 .footer-bottom {
    padding: 30px 0;
}

.footer-16 .footer-bottom .copyright p {
    margin: 0;
    font-size: 14px;
    color: #0a3622;
    font-weight: 300;
}

.footer-16 .footer-bottom .copyright p .sitename {
    color: #000000;
    font-weight: 400;
}

.footer-16 .footer-bottom .legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

@media (max-width: 991px) {
    .footer-16 .footer-bottom .legal-links {
        justify-content: flex-start;
        margin-top: 20px;
        flex-wrap: wrap;
    }
}

.footer-16 .footer-bottom .legal-links a {
    font-size: 13px;
    color: #094297;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-16 .footer-bottom .legal-links a:hover {
    color: #0e69ef;
}

.footer-16 .footer-bottom .legal-links .credits {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-left: 8px;
    padding-left: 24px;
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
    .footer-16 .footer-bottom .legal-links .credits {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        width: 100%;
        margin-top: 12px;
    }
}

.footer-16 .footer-bottom .legal-links .credits a {
    color: var(--accent-color);
    font-size: 12px;
}

.footer-16 .footer-bottom .legal-links .credits a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-16 {
        padding: 70px 0 0;
    }

    .footer-16 .brand-section {
        text-align: center;
        margin-bottom: 50px;
    }

    .footer-16 .brand-section .brand-description {
        max-width: none;
    }

    .footer-16 .brand-section .contact-info {
        text-align: left;
        display: inline-block;
    }

    .footer-16 .footer-nav-wrapper .nav-column {
        text-align: left;
    }

    .footer-16 .footer-nav-wrapper .nav-column h6 {
        margin-bottom: 16px;
    }

    .footer-16 .footer-nav-wrapper .nav-column .footer-nav {
        gap: 10px;
    }

    .footer-16 .footer-social {
        text-align: center;
    }

    .footer-16 .footer-social .newsletter-section p {
        max-width: none;
    }

    .footer-16 .footer-social .social-links {
        justify-content: center;
    }

    .footer-16 .footer-bottom {
        text-align: center;
    }

    .footer-16 .footer-bottom .legal-links {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
    animation-delay: -0.5s;
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
    padding-top: 100px;
}

.page-title .heading {
    padding: 80px 0;
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 500;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title nav ol li + li {
    padding-left: 10px;
}

.page-title nav ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 50px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

#hero {
    padding: 180px 0 50px;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    z-index: 0;
}

.heroReview {
    min-height: 40vh;
    background: linear-gradient(135deg, #f7faff 0%, #eef5ff 100%);

}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero .hero-content {
    padding: 2rem 0;
}

.hero .hero-content .trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero .hero-content .trust-badges .badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero .hero-content .trust-badges .badge-item i {
    font-size: 1rem;
}

@media (max-width: 576px) {
    .hero .hero-content .trust-badges {
        gap: 0.75rem;
    }

    .hero .hero-content .trust-badges .badge-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

.hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 1.5rem 0;
    color: var(--heading-color);
}

.hero .hero-content h1 .highlight {
    color: var(--accent-color);
    position: relative;
}

.hero .hero-content h1 .highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

@media (max-width: 992px) {
    .hero .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero .hero-content h1 {
        font-size: 2rem;
    }
}

.hero .hero-content .hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero .hero-content .hero-stats {
    display: flex;
    gap: 2rem;
}

.hero .hero-content .hero-stats .stat-item {
    text-align: left;
}

.hero .hero-content .hero-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
    line-height: 1;
}

.hero .hero-content .hero-stats .stat-item p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0.25rem 0 0 0;
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 576px) {
    .hero .hero-content .hero-stats {
        gap: 1rem;
    }

    .hero .hero-content .hero-stats .stat-item h3 {
        font-size: 1.5rem;
    }
}

.hero .hero-content .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.hero .hero-content .hero-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero .hero-content .hero-actions .btn.btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.hero .hero-content .hero-actions .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
}

.hero .hero-content .hero-actions .btn.btn-outline {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: transparent;
}

.hero .hero-content .hero-actions .btn.btn-outline:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

@media (max-width: 576px) {
    .hero .hero-content .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero .hero-content .hero-actions .btn {
        text-align: center;
        justify-content: center;
    }
}

.hero .hero-content .emergency-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: color-mix(in srgb, var(--surface-color), transparent 50%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero .hero-content .emergency-contact .emergency-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.hero .hero-content .emergency-contact .emergency-info small {
    display: block;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.hero .hero-content .emergency-contact .emergency-info strong {
    color: var(--heading-color);
    font-size: 1.125rem;
    font-weight: 600;
}

.hero .hero-visual {
    position: relative;
    height: 600px;
}

.hero .hero-visual .main-image {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .hero-visual .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .hero-visual .main-image .floating-card {
    position: absolute;
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
    backdrop-filter: blur(10px);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-visual .main-image .floating-card.appointment-card {
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-icon {
    width: 50px;
    height: 50px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-content h6 {
    margin: 0 0 0.25rem 0;
    color: var(--heading-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-content p {
    margin: 0 0 0.25rem 0;
    color: var(--default-color);
    font-weight: 600;
    font-size: 1rem;
}

.hero .hero-visual .main-image .floating-card.appointment-card .card-content small {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.75rem;
}

.hero .hero-visual .main-image .floating-card.rating-card {
    bottom: 20px;
    left: 20px;
    text-align: center;
    min-width: 140px;
}

.hero .hero-visual .main-image .floating-card.rating-card .rating-stars {
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.hero .hero-visual .main-image .floating-card.rating-card .rating-stars i {
    font-size: 1rem;
}

.hero .hero-visual .main-image .floating-card.rating-card h6 {
    margin: 0 0 0.25rem 0;
    color: var(--heading-color);
    font-weight: 700;
    font-size: 1.125rem;
}

.hero .hero-visual .main-image .floating-card.rating-card small {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .hero .hero-visual .main-image .floating-card.appointment-card {
        right: 10px;
        top: 10px;
        padding: 1rem;
        min-width: 160px;
    }

    .hero .hero-visual .main-image .floating-card.rating-card {
        left: 10px;
        bottom: 10px;
        padding: 1rem;
        min-width: 120px;
    }
}

.hero .hero-visual .background-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero .hero-visual .background-elements .element {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.1;
}

.hero .hero-visual .background-elements .element.element-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation: float1 6s ease-in-out infinite;
}

.hero .hero-visual .background-elements .element.element-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    animation: float2 8s ease-in-out infinite;
}

.hero .hero-visual .background-elements .element.element-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    animation: float3 7s ease-in-out infinite;
}

@media (max-width: 992px) {
    .hero .hero-visual {
        height: 400px;
        margin-top: 2rem;
    }
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-180deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(-50%) rotate(0deg);
    }

    50% {
        transform: translateY(-70%) rotate(180deg);
    }
}


/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.error-404 .error-number {
    font-size: clamp(120px, 20vw, 280px);
    font-weight: 300;
    color: color-mix(in srgb, var(--heading-color), transparent 15%);
    line-height: 0.8;
    margin-bottom: 40px;
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
}

.error-404 .error-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    color: var(--heading-color);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.error-404 .error-description {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-404 .error-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 80px;
}

@media (min-width: 576px) {
    .error-404 .error-actions {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }
}

.error-404 .error-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
    font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--heading-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
    font-size: 18px;
}

.error-404 .helpful-links {
    text-align: center;
}

.error-404 .helpful-links h3 {
    font-size: 24px;
    font-weight: 300;
    color: var(--heading-color);
    margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .error-404 .helpful-links .links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.error-404 .helpful-links .link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 20px;
    background-color: var(--surface-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--default-color);
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--accent-color);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
    font-size: 24px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
    font-size: 16px;
    font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .error-404 {
        padding: 80px 0;
    }

    .error-404 .error-actions {
        margin-bottom: 60px;
    }

    .error-404 .helpful-links .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .error-404 .helpful-links .links-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    padding-top: 60px;
    padding-bottom: 60px;
    /* Add your styles here */
}


.reviews-section {
    background: #ffffff;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

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

.review-stars {
    color: #ffc107;
    font-size: 20px;
}

.review-card p {
    line-height: 1.8;
    color: #555;
}

.review-author {
    margin-top: 20px;
    color: #0d6efd;
}

#reviews .section-title {
    padding-bottom: 0px;
}


.video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    transition: all .35s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.08);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, .95);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #0d6efd;
    transition: .3s;
    cursor: pointer;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.15);
}

.video-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(
            transparent,
            rgba(0, 0, 0, .75)
    );
}

.video-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
}

.video-content {
    padding: 25px;
}

.video-content h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.video-content p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.result-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.result-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .5s;
}

.result-card:hover img {
    transform: scale(1.08);
}

.result-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(
            transparent,
            rgba(0, 0, 0, .85)
    );
}

.result-info h5 {
    color: #fff;
    margin-bottom: 5px;
}

.result-info span {
    color: #ddd;
}


.feature-item {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    font-weight: 600;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-3px);
    transition: .3s;
}

.platform-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    transition: .3s;
}

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

.platform-card h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.stars {
    color: #ffc107;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


.story-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .3s;
}

.story-card:hover {
    transform: translateY(-6px);
}

.story-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.story-content {
    padding: 25px;
}

.story-content span {
    color: #0d6efd;
    font-weight: 600;
    font-size: 14px;
}

.story-content h4 {
    margin: 15px 0;
    line-height: 1.4;
}

.story-content a {
    font-weight: 600;
    text-decoration: none;
}

.cta-section {
    padding: 100px 0;
}

footer .cta-section {
    padding: 0px;
}

.cta-box {
    background: linear-gradient(
            135deg,
            #0d6efd,
            #0a58ca
    );

    color: #fff;
    padding: 60px 50px;
    border-radius: 30px;
    font-size: 110%;
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-box p {
    max-width: 700px;
    margin: 0 auto;
    opacity: .9;
}


/** home page 2  */


.heroReview .hero-box {

    max-width: 900px;

    margin: auto;

    text-align: center;

    background: #fff;

    border-radius: 20px;

    padding: 30px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);

}

.heroReview .hero-box h1 {


    font-weight: 800;

    color: #0f2851;


}

.heroReview .hero-box .hero-description {

    max-width: 700px;

    margin: 0 auto 10px;


    color: #6b7280;

    line-height: 1.8;

}

.heroReview .hero-box .review-summary {

    display: inline-block;

    border-top: 1px solid #ececec;

    padding-top: 5px;

}

.heroReview .hero-box .stars {

    color: #ffc107;


    letter-spacing: 5px;

    margin-bottom: 15px;

}

.heroReview .hero-box .review-summary h2 {


    color: #17315f;

    font-weight: 700;

    margin-bottom: 10px;

}

.heroReview .hero-box .review-summary p {

    font-size: 20px;

    color: #555;

}

.heroReview .hero-box .review-summary strong {

    color: #0d6efd;

}

.paddingTop10 {
    padding-top: 20px;
}

.padding20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.review-page .review-item {

    background: #fff;

    border-radius: 18px;

    padding: 35px;

    margin-bottom: 35px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);

    transition: .3s;

}

.review-page .review-item:nth-child(odd) {

    background: #ffffff;

}

.review-page .review-item:nth-child(even) {

    background: #f8fbff;

}

.review-page .review-item:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.review-page .review-stars {

    color: #ffc107;

    font-size: 22px;

    margin-bottom: 15px;

}

.review-page .review-item h2 {

    font-size: 28px;

    margin-bottom: 18px;

    color: #17315f;

}

.review-page .review-description {

    font-size: 18px;

    line-height: 1.8;

    color: #555;

}

.review-page .read-review {

    display: inline-block;

    margin-top: 20px;

    font-weight: 600;

    text-decoration: none;

}

.review-page .review-meta {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 25px;

}

.review-page .review-meta span {

    display: block;

    color: #777;

}

.breadcrumb-wrapper {

    background: #fff;

    padding: 12px 0;

}

.breadcrumb {

    margin: 0;

    font-size: 15px;

}

.breadcrumb-item a {

    color: #0d6efd;

    text-decoration: none;

}

.breadcrumb-item.active {

    color: #6c757d;

}


.review-stars {

    color: #ffb400;

    font-size: 26px;


}

.review-title {

    font-weight: 700;

    color: #17315f;

    line-height: 1.3;


}

.review-meta {

    color: #6c757d;

    font-size: 16px;

    margin-bottom: 30px;

}

.review-body {

    font-size: 20px;

    line-height: 2;

    color: #444;

}

.review-body p {

    margin-bottom: 25px;

}

#review {
    padding: 150px 0 50px;
}

.review-nav {

    display: inline-block;

    background: #fff;

    padding: 18px 25px;

    border-radius: 12px;

    text-decoration: none;

    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);

    transition: .3s;

    min-width: 220px;

}

.review-nav:hover {

    transform: translateY(-3px);

}

.review-nav small {

    display: block;

    color: #6c757d;

    margin-bottom: 6px;

}

.review-nav strong {

    color: #17315f;

    font-size: 18px;

}

.btn-consultation {

    background: linear-gradient(135deg, #0d6efd, #0b5ed7);

    border: none;

    color: #fff !important;

    font-size: 18px;

    font-weight: 700;

    padding: 16px 34px;

    border-radius: 50px;

    box-shadow: 0 10px 25px rgba(13, 110, 253, .30);

    transition: all .3s ease;
    margin-right: 10px;

}

.btn-consultation:hover {

    background: linear-gradient(135deg, #0b5ed7, #084298);

    color: #fff;

    transform: translateY(-3px);

    box-shadow: 0 18px 35px rgba(13, 110, 253, .40);

}

.btn-reviews {

    font-size: 17px;

    font-weight: 600;

    padding: 16px 28px;

    border-radius: 50px;

    border: 2px solid #0d6efd;

    transition: all .3s ease;

}

.btn-reviews:hover {

    background: #0d6efd;

    color: #fff;

}

.hero-trust {

    margin-top: 18px;

    color: #6c757d;

    font-size: 15px;

    font-weight: 500;
    text-align: center;

}

.review-trust {

    padding: 50px 0;

}

.trust-box {

    max-width: 850px;

    margin: auto;

    background: #fff;

    border-radius: 18px;

    padding: 40px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);

}

.trust-stars {

    font-size: 28px;

    color: #ffb400;

    letter-spacing: 3px;

}

.trust-box h4 {

    color: #17315f;

    font-size: 30px;

    font-weight: 700;

}

.trust-box p {

    color: #6c757d;

    font-size: 17px;

    max-width: 650px;

    margin: 0 auto 25px;

    line-height: 1.8;

}

.trust-items {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 30px;

}

.trust-items span {

    color: #17315f;

    font-weight: 600;

    font-size: 16px;

}

.trust-items i {

    color: #0d6efd;

    margin-right: 8px;

}


.review-highlights-box {

    background: #fff;

    border-radius: 20px;

    padding: 60px 40px;

    text-align: center;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);

}

.review-highlights h2 {

    color: #17315f;

    font-weight: 700;

    margin-bottom: 15px;

}

.review-highlights .lead {

    color: #6c757d;

    max-width: 700px;

    margin: 0 auto 40px;

    font-size: 18px;

}

.highlight-item {

    padding: 20px;

}

.highlight-item i {

    font-size: 34px;

    color: #0d6efd;

    margin-bottom: 15px;

}

.highlight-item h3 {

    font-size: 34px;

    color: #17315f;

    font-weight: 700;

    margin-bottom: 8px;

}

.highlight-item p {

    color: #6c757d;

    margin: 0;

    font-weight: 500;

}

.error-404 {

    padding: 120px 0 80px;

}

.error-code {

    font-size: 120px;

    font-weight: 800;

    color: #0d6efd;

    line-height: 1;

}

.error-404 h1 {

    margin: 25px 0;

    color: #17315f;

    font-size: 48px;

    font-weight: 700;

}

.error-404 .lead {

    max-width: 650px;

    margin: auto;

    color: #6c757d;

    font-size: 20px;

    line-height: 1.8;

}

.video-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

    transition: .3s;

    height: 100%;

}

.video-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .15);

}

.video-thumb {

    position: relative;

    display: block;

    overflow: hidden;

}

.video-thumb img {

    width: 100%;

    display: block;

    transition: .4s;

}

.video-card:hover img {

    transform: scale(1.05);

}

.video-thumb:before {

    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .20);
    transition: .3s;

}

.video-card:hover .video-thumb:before {

    background: rgba(0, 0, 0, .35);
}

.play-button {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: #0d6efd;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    transition: .3s;
    box-shadow: 0 10px 25px rgba(13, 110, 253, .35);

}

.video-card:hover .play-button {

    transform: translate(-50%, -50%) scale(1.15);

}

.video-duration {

    position: absolute;

    right: 15px;

    bottom: 15px;

    background: #000;

    color: #fff;

    padding: 4px 8px;

    border-radius: 4px;

    font-size: 13px;

}

.video-body {

    padding: 25px;

}

.video-body h3 {

    color: #17315f;

    font-size: 24px;

    font-weight: 700;

    min-height: 65px;

}

.video-body p {

    color: #6c757d;

    margin: 15px 0;

}

.video-link {

    color: #0d6efd;

    font-weight: 600;

    text-decoration: none;

}

.video-link:hover {

    text-decoration: none;

}

.video-card {

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

    transition: .3s;

    height: 100%;

}

.video-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);

}

.video-thumbnail {

    display: block;

    position: relative;

    overflow: hidden;

}

.video-thumbnail img {

    width: 100%;

    aspect-ratio: 16/9;

    object-fit: cover;

    transition: .35s;

}

.video-card:hover img {

    transform: scale(1.06);

}

.video-thumbnail:before {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .18);

    transition: .3s;

}

.video-card:hover .video-thumbnail:before {

    background: rgba(0, 0, 0, .35);

}

.video-play {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 64px;

    height: 64px;

    border-radius: 50%;

    background: #0d6efd;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    box-shadow: 0 12px 25px rgba(13, 110, 253, .35);

    transition: .3s;

}

.video-card:hover .video-play {

    transform: translate(-50%, -50%) scale(1.1);

}

.video-duration {

    position: absolute;

    right: 15px;

    bottom: 15px;

    background: rgba(0, 0, 0, .85);

    color: #fff;

    padding: 4px 8px;

    border-radius: 4px;

    font-size: 12px;

}

.video-content {

    padding: 24px;

}

.video-rating {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    font-size: 14px;

}

.video-rating .stars {

    color: #f4b400;

    font-size: 18px;

}

.video-content h3 {

    font-size: 24px;

    font-weight: 700;

    line-height: 1.45;

    min-height: 70px;

    margin-bottom: 15px;

}

.video-content h3 a {

    color: #17315f;

    text-decoration: none;

}

.video-content p {

    color: #6c757d;

    line-height: 1.8;

    margin-bottom: 20px;

}

.read-more {

    font-weight: 600;

    color: #0d6efd;

    text-decoration: none;

}

.read-more:hover {

    color: #084298;

}


.trust-marquee {
    background: #17315f;
    color: #fff;
    overflow: hidden;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee 180s linear infinite;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 22px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.divider {
    color: #f4b400;
    margin-right: 22px;
    font-size: 9px;
}

.trust-marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {

    .marquee-content span {
        font-size: 14px;
        margin-right: 18px;
    }

}

.timeline-box {
    background: #fff;
    border-radius: 16px;
    padding: 25px 18px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.timeline-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.timeline-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.timeline-box h5 {
    font-weight: 700;
}

.timeline-box p {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 0;
}

/* ==========================================================
   Ryan Hair Transplant Success Story
   Custom Bootstrap 5 Styling
========================================================== */


/* Main Wrapper */

#ryan-case-study {
    color: #1c2b39;
}


/* Typography */

#ryan-case-study h1,
#ryan-case-study h2,
#ryan-case-study h3 {
    letter-spacing: -0.02em;
}


#ryan-case-study p {
    line-height: 1.7;
    color: #5b6770;
}


/* Hero */

#ryan-case-study .display-5 {
    color: #102a43;
    font-weight: 700;
}


#ryan-case-study .badge {
    background-color: #0d6efd !important;
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: .5px;
}


#ryan-case-study figure img {
    max-width: 100%;
    height: auto;
}


/* Recovery Summary Cards */

#ryan-case-study .border.rounded {
    border-color: #e5e9ef !important;
}


#ryan-case-study .text-center.p-4.border.rounded {
    transition: all .25s ease;
    background: #fff;
}


#ryan-case-study .text-center.p-4.border.rounded:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}


/* Gallery Area */

#ryan-case-study figure {
    margin-bottom: 25px;
}


#ryan-case-study figure img {

    display: block;

    margin: auto;

    background: #fff;

}


#ryan-case-study figcaption {

    font-size: 12px;

    font-weight: 500;

    color: #7a8793 !important;

}


/* Timeline Images */

#ryan-case-study .col-lg-3.col-md-6.col-6 {

    padding-left: 12px;
    padding-right: 12px;

}


#ryan-case-study .col-lg-3.col-md-6.col-6 img {

    border: 1px solid #e6e6e6 !important;

}


/* Section Headings */

#ryan-case-study .text-uppercase {

    letter-spacing: 1.5px;

    font-size: 11px;

}


/* Before After Section */


#ryan-case-study .mb-5 h3 {

    color: #102a43;

    margin-bottom: 30px;

}


#ryan-case-study .mb-5 .row.g-4 img {

    box-shadow: 0 4px 15px rgba(0, 0, 0, .06);

}


/* Shaving Information Card */


#ryan-case-study .card {

    border-radius: 18px;

    overflow: hidden;

}


#ryan-case-study .card-body {

    background: #ffffff;

}


#ryan-case-study .card img {

    max-height: 180px;

    width: auto;

}


/* CTA Section */


#ryan-case-study .bg-light {

    background: #f7f9fb !important;

    border-radius: 20px !important;

}


#ryan-case-study .btn-primary {

    background: #0d6efd;

    border: none;

    border-radius: 30px;

    padding: 12px 35px;

    font-weight: 600;

}


#ryan-case-study .btn-primary:hover {

    background: #084298;

}


/* Mobile */

@media (max-width: 767px) {

    .btn {
        margin-bottom: 10px;
    }

    .badgeSrini {
        text-wrap: auto;
        min-height: 50px;
    }

    #ryan-case-study h1 {

        font-size: 32px;

    }

    .mobile-patient-nav {
        position: sticky;
        top: 130px; /* height of your main sticky header */
        z-index: 1020;
        background: #fff;
    }

    #josh h5 {
        font-size: 100%;
        font-weight: normal;
    }

    #ryan-case-study .display-5 {

        font-size: 2rem;

    }


    #ryan-case-study .col-4 {

        padding-left: 6px;

        padding-right: 6px;

    }


    #ryan-case-study figcaption {

        font-size: 10px;

    }

    .header .logo img {
        max-height: 50px;
    }
    #hero , #review   {
        padding: 120px 0 50px;
        padding-bottom: 50px;
    }
}

.tab-content {

    background: #f8fafc;

    border: 1px solid #e5e7eb;

    border-radius: 24px;

    padding: 40px 30px;

    margin-top: 20px;

}


/* Individual patient page */

.tab-pane {

    background: #ffffff;

    border-radius: 18px;

    padding: 20px;

}

.youtube-facade {

    position: relative;

    cursor: pointer;

    overflow: hidden;

    border-radius: 12px;

}


.youtube-facade img {

    width: 100%;

    display: block;

}


.youtube-facade .video-play-button {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 70px;

    height: 70px;

    border-radius: 50%;


    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 32px;

    padding-left: 5px;


}


.youtube-facade:hover .video-play-button {

    transform: translate(-50%, -50%) scale(1.1);

}

.comparison-photo {

    text-align: center;

}

.comparison-photo img {

    border-radius: 18px;

    border: 1px solid #dee2e6;

    transition: .3s;

}

.comparison-photo img:hover {

    transform: translateY(-6px);

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

}

.comparison-photo figcaption {

    margin-top: 16px;

    font-weight: 600;

    color: #495057;

}

.accordion, .accordion-button {
    font-size: 1.15rem;
    font-weight: 600;
}

.accordion-body a {
    color: #0a53be;
}

.accordion-body .btn-primary {
    color: #ffffff;
}