@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: "Montserrat",  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: #3c4049; /* 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: #002057; /* 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. */
}
/* --accent-color: #175cdd;  */
/* 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: #002057; /* 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: #007982; /* 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
--------------------------------------------------------------*/
.feature-box{
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    gap: 84px;
    flex-wrap: wrap;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.feature-item i{
    width: 32px;
    height: 32px;
    background: #eaf3ff;
    border-radius: 8px;
    display: inline-flexe;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 16px;
}

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);
  }
}



/* Mobile Navigation */
/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 1199px) {

    /* =========================================================
       MOBILE NAV TOGGLE
    ========================================================= */

    .mobile-nav-toggle {
        display: block;
        color: var(--nav-color);
        font-size: 28px;
        line-height: 1;
        margin-right: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10002;
        position: relative;
    }


    /* =========================================================
       NAV MENU WRAPPER
    ========================================================= */

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


    /* =========================================================
       MOBILE MENU LIST
    ========================================================= */

    .navmenu > ul {
        display: none;

        position: fixed;

        top: 70px;
        left: 15px;
        right: 15px;
        bottom: 20px;

        width: auto;
        height: auto;

        margin: 0;
        padding: 15px 0;

        list-style: none;

        border-radius: 14px;

        background-color: var(--nav-mobile-background-color);

        border: 1px solid color-mix(
            in srgb,
            var(--default-color),
            transparent 90%
        );

        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.20);

        overflow-y: auto;
        overflow-x: hidden;

        z-index: 10000;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }


    /* =========================================================
       SHOW MOBILE MENU
    ========================================================= */

    body.mobile-nav-active .navmenu > ul {

        display: block;

        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    /* =========================================================
       MENU LINKS
    ========================================================= */

    .navmenu a,
    .navmenu a:focus {

        color: var(--nav-dropdown-color);

        padding: 14px 20px;

        font-family: var(--nav-font);

        font-size: 16px;

        font-weight: 500;

        display: flex;

        align-items: center;

        justify-content: space-between;

        white-space: nowrap;

        text-decoration: none;

        border-radius: 8px;

        margin: 2px 8px;

        transition:
            color 0.25s ease,
            background-color 0.25s ease,
            transform 0.25s ease;
    }


    /* =========================================================
       LINK HOVER
    ========================================================= */

    .navmenu a:hover {

        color: var(--nav-dropdown-hover-color);

        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 92%
        );

        transform: translateX(3px);
    }


    /* =========================================================
       ACTIVE LINK
    ========================================================= */

    .navmenu > ul > li > a.active,
    .navmenu > ul > li > a.active:focus {

        color: var(--accent-color);

        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );

        font-weight: 600;
    }


    /* =========================================================
       DROPDOWN ICON
    ========================================================= */

    .navmenu a i,
    .navmenu a:focus i {

        font-size: 12px;

        line-height: 1;

        margin-left: 8px;

        width: 30px;
        height: 30px;

        display: flex;

        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        border-radius: 50%;

        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );

        transition: all 0.3s ease;
    }


    /* =========================================================
       DROPDOWN ICON HOVER
    ========================================================= */

    .navmenu a i:hover,
    .navmenu a:focus i:hover {

        background-color: var(--accent-color);

        color: var(--contrast-color);
    }


    /* =========================================================
       ACTIVE DROPDOWN ICON
    ========================================================= */

    .navmenu .active i,
    .navmenu .active:focus i {

        background-color: var(--accent-color);

        color: var(--contrast-color);

        transform: rotate(180deg);
    }


    /* =========================================================
       DROPDOWN
    ========================================================= */

    .navmenu .dropdown ul {

        position: static;

        display: none;

        z-index: 99;

        width: auto;

        padding: 8px 0;

        margin: 5px 15px 10px;

        border-radius: 8px;

        background-color: var(--nav-dropdown-background-color);

        box-shadow: none;

        transition: all 0.3s ease;
    }


    /* =========================================================
       NESTED DROPDOWN
    ========================================================= */

    .navmenu .dropdown ul ul {

        background-color: rgba(33, 37, 41, 0.05);

        margin-left: 20px;
    }


    /* =========================================================
       ACTIVE DROPDOWN
    ========================================================= */

    .navmenu .dropdown > .dropdown-active {

        display: block;

        background-color: rgba(33, 37, 41, 0.03);
    }


    /* =========================================================
       BODY WHEN MOBILE MENU OPEN
    ========================================================= */

    body.mobile-nav-active {

        overflow: hidden;
    }


    /* =========================================================
       DARK OVERLAY
    ========================================================= */

    body.mobile-nav-active .navmenu {

        position: fixed;

        inset: 0;

        width: 100%;
        height: 100%;

        overflow: hidden;

        background: rgba(0, 0, 0, 0.60);

        z-index: 9998;
    }


    /* =========================================================
       CLOSE BUTTON
    ========================================================= */

    body.mobile-nav-active .mobile-nav-toggle {

        color: #ffffff;

        position: fixed;

        top: 18px;

        right: 18px;

        margin: 0;

        width: 42px;
        height: 42px;

        display: flex;

        align-items: center;
        justify-content: center;

        font-size: 30px;

        line-height: 1;

        border-radius: 50%;

        background: rgba(255, 255, 255, 0.10);

        z-index: 10003;

        transition:
            background 0.25s ease,
            transform 0.25s ease;
    }


    /* =========================================================
       CLOSE BUTTON HOVER
    ========================================================= */

    body.mobile-nav-active .mobile-nav-toggle:hover {

        background: rgba(255, 255, 255, 0.20);

        transform: rotate(90deg);
    }


    /* =========================================================
       MENU SCROLLBAR
    ========================================================= */

    body.mobile-nav-active .navmenu > ul::-webkit-scrollbar {

        width: 5px;
    }


    body.mobile-nav-active .navmenu > ul::-webkit-scrollbar-thumb {

        background: color-mix(
            in srgb,
            var(--accent-color),
            transparent 40%
        );

        border-radius: 10px;
    }


    body.mobile-nav-active .navmenu > ul::-webkit-scrollbar-track {

        background: transparent;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 576px) {

    .navmenu > ul {

        top: 65px;

        left: 10px;
        right: 10px;

        bottom: 15px;

        border-radius: 12px;

        padding: 12px 0;
    }


    .navmenu a,
    .navmenu a:focus {

        padding: 12px 18px;

        font-size: 15px;

        margin: 2px 6px;
    }


    body.mobile-nav-active .mobile-nav-toggle {

        top: 15px;

        right: 15px;

        width: 40px;
        height: 40px;

        font-size: 28px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .navmenu > ul {

        top: 62px;

        left: 8px;
        right: 8px;

        bottom: 10px;

        padding: 10px 0;
    }


    .navmenu a,
    .navmenu a:focus {

        padding: 11px 15px;

        font-size: 14px;
    }


    body.mobile-nav-active .mobile-nav-toggle {

        top: 12px;

        right: 12px;

        width: 38px;
        height: 38px;

        font-size: 26px;
    }

}
 
*/




/* =========================================================
   PRODUCTS SECTION
========================================================= */

.products-section {
    padding: 10px 0;
    background: #FFFFFF;
    overflow: hidden;
}


/* =========================================================
   PRODUCTS HEADING
========================================================= */

.products-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.products-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;

    border-radius: 50px;

    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.products-heading h2 {
    margin: 18px 0 15px;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 800;

    color: #101828;
}

.products-heading h2 span {
    display: inline-block;
    color: #0d6efd;
}

.products-heading p {
    max-width: 720px;

    margin: auto;

    color: #667085;

    line-height: 1.8;

    font-size: 16px;
}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.products-slider-wrapper {
    position: relative;

    padding: 0 0;
}


/* =========================================================
   SLIDER
========================================================= */

.products-slider {
    width: 100%;

    overflow: hidden;

    cursor: grab;

    user-select: none;
    -webkit-user-select: none;

    touch-action: pan-y;
}

.products-slider.dragging {
    cursor: grabbing;
}


/* =========================================================
   TRACK
========================================================= */

.products-track {
    display: flex;

    width: max-content;

    will-change: transform;

    transform: translate3d(0, 0, 0);
}


/* =========================================================
   SLIDE
========================================================= */

.product-slide {
    width: 360px;

    flex: 0 0 360px;

    padding: 12px;

    box-sizing: border-box;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.products-slider .product-card {
    position: relative;

    flex: 0 0 300px;

    width: 300px;

    height: 385px;

    overflow: hidden;

    border-radius: 20px;

    background: #ffffff;

    border: 1px solid rgba(0, 32, 87, 0.075);

    box-shadow:
        0 8px 25px rgba(0, 32, 87, 0.07);

    scroll-snap-align: start;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

    isolation: isolate;
}


/* =========================================================
   CARD HOVER
========================================================= */

.products-slider .product-card:hover {
    transform: translateY(-7px);

    border-color: rgba(22, 136, 237, 0.22);

    box-shadow:
        0 18px 45px rgba(0, 32, 87, 0.13);
}


/* =========================================================
   CARD IMAGE
   IMPORTANT:
   contain = dashboard crop nahi hoga
========================================================= */

.products-slider .product-card > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    /*
       Dashboard image ko crop hone se bachata hai
    */
    object-fit: contain;

    object-position: center;

    /*
       Image ke around clean background
    */
    background: #f5f7fa;

    /*
       Proper opacity
       0 = invisible
       1 = fully visible
    */
    opacity: 0.85;

    display: block;

    transition:
        transform 0.7s ease,
        filter 0.5s ease,
        opacity 0.5s ease;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.products-slider .product-card:hover > img {
    transform: scale(1.02);

    filter: brightness(0.92);

    opacity: 0.9;
}


/* =========================================================
   DARK IMAGE OVERLAY
========================================================= */

.products-slider .product-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 32, 87, 0.02) 10%,
            rgba(0, 32, 87, 0.08) 32%,
            rgba(0, 16, 45, 0.58) 68%,
            rgba(0, 10, 30, 0.88) 100%
        );

    pointer-events: none;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.products-slider .product-content {
    position: absolute;

    left: 0;
    right: 0;

    bottom: 0;

    z-index: 3;

    padding: 22px 21px 20px;

    color: #ffffff;
}


/* =========================================================
   PRODUCT ICON
========================================================= */

.products-slider .product-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.14);

    border: 1px solid rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #ffffff;

    font-size: 18px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   ICON HOVER
========================================================= */

.products-slider .product-card:hover .product-icon {
    transform: translateY(-2px);

    background: rgba(22, 136, 237, 0.75);
}


/* =========================================================
   CATEGORY
========================================================= */

.products-slider .product-category {
    display: inline-block;

    margin-bottom: 7px;

    font-size: 10px;

    font-weight: 650;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   CARD TITLE
========================================================= */

.products-slider .product-content h3 {
    margin: 0 0 8px;

    font-size: 20px;

    line-height: 1.25;

    font-weight: 700;

    color: #ffffff;

    letter-spacing: -0.25px;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.products-slider .product-content p {
    margin: 0 0 14px;

    font-size: 12.5px;

    line-height: 1.55;

    color: rgba(255, 255, 255, 0.78);

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   PRODUCT LINK
========================================================= */

.products-slider .product-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 650;

    text-decoration: none;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.products-slider .product-link i {
    font-size: 11px;

    transition:
        transform 0.3s ease;
}

.products-slider .product-link:hover {
    gap: 10px;

    color: #7dc4ff;
}

.products-slider .product-link:hover i {
    transform: translateX(3px);
}


/* =========================================================
   SLIDER BUTTONS
========================================================= */

.product-slider-btn {
    width: 48px;
    height: 48px;

    position: absolute;

    top: 50%;

    z-index: 10;

    transform: translateY(-50%);

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(13, 110, 253, 0.18);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.92);

    color: #0d6efd;

    font-size: 17px;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(13, 110, 253, 0.12),
        0 0 0 5px rgba(13, 110, 253, 0.04);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.35s cubic-bezier(.22,.61,.36,1),
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* =========================================================
   PREVIOUS BUTTON
========================================================= */

.product-prev {
    left: 0;
}


/* =========================================================
   NEXT BUTTON
========================================================= */

.product-next {
    right: 0;
}


/* =========================================================
   BUTTON HOVER
========================================================= */

.product-slider-btn:hover {
    background: #0d6efd;

    color: #ffffff;

    border-color: #0d6efd;

    box-shadow:
        0 12px 30px rgba(13, 110, 253, 0.22);
}


/* =========================================================
   BUTTON ACTIVE
========================================================= */

.product-slider-btn:active {
    transform: translateY(-50%) scale(0.94);
}


/* =========================================================
   DOTS
========================================================= */

.products-slider-dots {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 7px;

    margin-top: 28px;
}

.product-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #cbd5e1;

    cursor: pointer;

    transition:
        all 0.3s ease;
}

.product-dot.active {
    width: 25px;

    border-radius: 20px;

    background: #0d6efd;
}


/* =========================================================
   CTA
========================================================= */

.products-cta {
    margin-top: 65px;

    padding: 32px 38px;

    display: flex;

    align-items: center;

    gap: 25px;

    border-radius: 24px;

    background: #101828;

    color: #ffffff;

    position: relative;

    overflow: hidden;
}


/* =========================================================
   CTA ICON
========================================================= */

.products-cta-icon {
    width: 60px;
    height: 60px;

    flex: 0 0 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.1);

    color: #ffffff;

    font-size: 25px;
}


/* =========================================================
   CTA CONTENT
========================================================= */

.products-cta-content {
    flex: 1;
}

.products-cta-content > span {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    opacity: 0.65;
}

.products-cta-content h3 {
    margin: 5px 0 7px;

    font-size: 25px;

    font-weight: 750;

    color: #0d6efd;
}

.products-cta-content p {
    margin: 0;

    max-width: 700px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.products-cta-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    flex-shrink: 0;

    border-radius: 10px;

    background: #ffffff;

    color: #101828;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        all 0.3s ease;
}

.products-cta-btn:hover {
    background: #0d6efd;

    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .products-section {
        padding: 80px 0;
    }


    .products-heading {
        padding: 0 20px;
    }


    .products-heading h2 {
        font-size: 36px;
    }


    .products-heading p {
        font-size: 15px;
    }


    .product-slide {
        width: 330px;

        flex-basis: 330px;
    }


    .products-slider .product-card {
        width: 300px;

        flex-basis: 300px;

        height: 385px;
    }


    .products-cta {
        align-items: flex-start;

        flex-wrap: wrap;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .products-section {
        padding: 65px 0;
    }


    .products-heading {
        margin-bottom: 35px;

        padding: 0 15px;
    }


    .products-heading h2 {
        font-size: 30px;
    }


    .products-heading p {
        font-size: 14px;

        line-height: 1.7;
    }


    /* -----------------------------------------
       MOBILE SLIDER
    ----------------------------------------- */

    .products-slider-wrapper {
        padding: 0 10px;
    }


    .product-slide {
        width: calc(100vw - 40px);

        max-width: 360px;

        flex-basis: calc(100vw - 40px);

        padding: 10px;
    }


    /* -----------------------------------------
       MOBILE CARD
    ----------------------------------------- */

    .products-slider .product-card {
        width: 100%;

        height: 385px;

        border-radius: 18px;
    }


    /* -----------------------------------------
       MOBILE IMAGE
    ----------------------------------------- */

    .products-slider .product-card > img {
        width: 100%;
        height: 100%;

        object-fit: contain;

        object-position: center;

        opacity: 0.85;

        background: #f5f7fa;
    }


    /* -----------------------------------------
       MOBILE CONTENT
    ----------------------------------------- */

    .products-slider .product-content {
        padding: 20px;
    }


    .products-slider .product-content h3 {
        font-size: 20px;
    }


    .products-slider .product-content p {
        font-size: 12px;

        line-height: 1.5;
    }


    /* -----------------------------------------
       MOBILE ICON
    ----------------------------------------- */

    .products-slider .product-icon {
        width: 40px;
        height: 40px;

        margin-bottom: 10px;
    }


    /* -----------------------------------------
       HIDE SLIDER BUTTONS
    ----------------------------------------- */

    .product-slider-btn {
        display: none;
    }


    /* -----------------------------------------
       DOTS
    ----------------------------------------- */

    .products-slider-dots {
        margin-top: 20px;
    }


    /* -----------------------------------------
       CTA
    ----------------------------------------- */

    .products-cta {
        margin: 45px 15px 0;

        padding: 25px;

        flex-direction: column;

        gap: 18px;
    }


    .products-cta-icon {
        width: 55px;
        height: 55px;

        flex-basis: 55px;
    }


    .products-cta-content {
        width: 100%;
    }


    .products-cta-content h3 {
        font-size: 22px;
    }


    .products-cta-content p {
        font-size: 13px;
    }


    .products-cta-btn {
        width: 100%;

        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .products-section {
        padding: 50px 0;
    }


    .products-heading h2 {
        font-size: 27px;
    }


    .products-heading p {
        font-size: 13px;
    }


    .product-slide {
        width: calc(100vw - 24px);

        flex-basis: calc(100vw - 24px);

        padding: 6px;
    }


    .products-slider .product-card {
        height: 360px;

        border-radius: 16px;
    }


    .products-slider .product-content {
        padding: 18px;
    }


    .products-slider .product-content h3 {
        font-size: 18px;
    }


    .products-slider .product-content p {
        font-size: 11.5px;
    }


    .products-cta {
        margin-left: 10px;
        margin-right: 10px;

        padding: 22px;
    }

}

/* =========================================
   PREMIUM HERO SECTION
========================================= */

#hero.hero {
    position: relative;
    overflow: hidden;
    padding: 50px 0 20px;
    

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(22, 136, 237, 0.10),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(22, 184, 212, 0.07),
            transparent 30%
        );
}


/* =========================================
   BACKGROUND GLOW
========================================= */

.hero-bg-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;

    opacity: 0.35;

    animation: heroGlowMove 8s ease-in-out infinite alternate;
}

.hero-glow-1 {
    top: -180px;
    right: 8%;

    background: rgba(22, 136, 237, 0.18);
}

.hero-glow-2 {
    bottom: -200px;
    left: 20%;

    background: rgba(22, 184, 212, 0.12);

    animation-delay: 2s;
}


@keyframes heroGlowMove {

    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(35px, 25px) scale(1.12);
    }

}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;
    z-index: 3;
}


/* =========================================
   BADGE
========================================= */

.trust-badges {
    display: inline-flex;
    margin-bottom: 25px;
}

.badge-item {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 8px 15px;

    border-radius: 50px;

    color: #1688ed;

    font-size: 12px;
    font-weight: 600;

    background: rgba(22, 136, 237, 0.07);

    border: 1px solid rgba(22, 136, 237, 0.14);

    box-shadow:
        0 8px 25px rgba(22, 136, 237, 0.06);

    backdrop-filter: blur(10px);
}


.badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #1688ed;

    box-shadow:
        0 0 0 5px rgba(22, 136, 237, 0.10);

    animation: badgePulse 2s infinite;
}


@keyframes badgePulse {

    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(22, 136, 237, 0.08);
    }

    50% {
        box-shadow:
            0 0 0 8px rgba(22, 136, 237, 0.02);
    }

}


/* =========================================
   HERO HEADING
========================================= */

.hero-content h1 {
    max-width: 720px;

    margin: 0 0 25px;

    color: #101828;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -2.5px;
}


/* Gradient text */

.gradient-text {
    display: inline-block;

    background:
        linear-gradient(
            90deg,
            #1688ed,
            #16b8d4
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;

    animation: gradientShift 4s ease infinite;
}


@keyframes gradientShift {

    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.12);
    }

    100% {
        filter: brightness(1);
    }

}


/* Brand name */

.brand-highlight {
    color: #002057;
}


/* =========================================
   DESCRIPTION
========================================= */

.hero-description {
    max-width: 650px;

    margin-bottom: 32px;

    color: #667085;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   BUTTONS
========================================= */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;
}


.hero-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    min-height: 52px;

    padding: 0 23px;

    border: 0;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #1688ed,
            #006fca
        );

    box-shadow:
        0 12px 28px rgba(22, 136, 237, 0.22);

    transition: all 0.35s ease;
}


.hero-btn i {
    transition: transform 0.3s ease;
}


.hero-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(22, 136, 237, 0.28);
}


.hero-btn:hover i {
    transform: translate(3px, -3px);
}


.hero-secondary-btn {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #002057;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.hero-secondary-btn i {
    transition: transform 0.3s ease;
}


.hero-secondary-btn:hover {
    color: #1688ed;
}


.hero-secondary-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 767px) {

    .hero-actions {
        justify-content: center;
        gap: 18px;
    }

    .hero-secondary-btn {
        justify-content: center;
        text-align: center;
    }
}
/* =========================================
   TRUST POINTS
========================================= */

.hero-trust {
    display: flex;

    align-items: center;

    gap: 22px;

    flex-wrap: wrap;

    margin-top: 32px;

    padding-top: 24px;

    border-top: 1px solid rgba(16, 24, 40, 0.08);
}


.trust-item {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #667085;

    font-size: 12px;

    font-weight: 600;
}


.trust-item i {
    color: #1688ed;

    font-size: 13px;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.hero-visual {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================
   BACKGROUND ELEMENTS
========================================= */

.background-elements {
    position: absolute;

    inset: 0;

    pointer-events: none;
}


.element {
    position: absolute;

    border-radius: 50%;

    filter: blur(1px);
}


.element-1 {
    width: 300px;
    height: 300px;

    top: 80px;
    left: 50%;

    transform: translateX(-50%);

    border: 1px solid rgba(22, 136, 237, 0.10);

    animation: rotateElement 15s linear infinite;
}


.element-2 {
    width: 220px;
    height: 220px;

    top: 120px;
    left: 50%;

    transform: translateX(-50%);

    border: 1px dashed rgba(22, 184, 212, 0.15);

    animation: rotateElement 12s linear infinite reverse;
}


.element-3 {
    width: 110px;
    height: 110px;

    top: 175px;
    left: 50%;

    transform: translateX(-50%);

    background: rgba(22, 136, 237, 0.05);

    filter: blur(25px);

    animation: elementPulse 4s ease-in-out infinite;
}


@keyframes rotateElement {

    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }

}


@keyframes elementPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.2);
    }

}


/* =========================================
   MAIN TECH CARD
========================================= */

.hero-tech-card {
    position: relative;

    z-index: 4;

    width: min(440px, 90%);

    min-height: 330px;

    padding: 25px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.95),
            rgba(247, 250, 253, 0.90)
        );

    border: 1px solid rgba(255, 255, 255, 0.9);

    box-shadow:
        0 30px 80px rgba(16, 24, 40, 0.14),
        0 0 50px rgba(22, 136, 237, 0.07);

    backdrop-filter: blur(20px);

    animation: heroCardFloat 5s ease-in-out infinite;
}


@keyframes heroCardFloat {

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

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================
   CARD TOP
========================================= */

.tech-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(16, 24, 40, 0.07);
}


.window-dots {
    display: flex;

    gap: 6px;
}


.window-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #d0d5dd;
}


.tech-status {
    color: #667085;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.5px;

    text-transform: uppercase;
}


/* =========================================
   CARD CONTENT
========================================= */

.tech-card-content {
    padding: 50px 10px 30px;

    text-align: center;
}


.tech-icon-main {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 68px;
    height: 68px;

    margin: 0 auto 20px;

    border-radius: 20px;

    color: #ffffff;

    font-size: 28px;

    background:
        linear-gradient(
            135deg,
            #1688ed,
            #16b8d4
        );

    box-shadow:
        0 12px 25px rgba(22, 136, 237, 0.22);

    animation: iconFloat 3s ease-in-out infinite;
}


@keyframes iconFloat {

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

    50% {
        transform: translateY(-6px);
    }

}


.tech-card-content h3 {
    margin-bottom: 10px;

    color: #002057;

    font-size: 25px;

    font-weight: 800;
}


.tech-card-content h3 span {
    color: #1688ed;
}


.tech-card-content p {
    max-width: 290px;

    margin: auto;

    color: #667085;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   FLOATING CARDS
========================================= */

.floating-tech-card {
    position: absolute;

    z-index: 8;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 15px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(16, 24, 40, 0.07);

    box-shadow:
        0 12px 30px rgba(16, 24, 40, 0.12);

    color: #002057;

    font-size: 11px;

    font-weight: 700;

    backdrop-filter: blur(15px);

    animation: floatingCard 4s ease-in-out infinite;
}


.floating-tech-card i {
    color: #1688ed;

    font-size: 16px;
}


.floating-card-1 {
    top: 115px;
    left: 0;

    animation-delay: 0s;
}


.floating-card-2 {
    right: -5px;
    top: 210px;

    animation-delay: 1s;
}


.floating-card-3 {
    bottom: 90px;
    left: 20px;

    animation-delay: 2s;
}


@keyframes floatingCard {

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

    50% {
        transform: translateY(-9px);
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    #hero.hero {
        padding: 80px 0 70px;
    }

    .hero-content {
        text-align: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-content h1 {
        margin-left: auto;
        margin-right: auto;

        font-size: 48px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 70px;

        min-height: 450px;
    }

}


@media (max-width: 575px) {

    #hero.hero {
        padding: 65px 0 55px;
    }

    .hero-content h1 {
        font-size: 36px;

        line-height: 1.12;

        letter-spacing: -1.4px;
    }

    .hero-description {
        font-size: 14px;

        line-height: 1.75;
    }

    .badge-item {
        font-size: 10px;

        padding: 7px 11px;
    }

    .hero-actions {
        flex-direction: column;

        gap: 18px;
    }

    .hero-btn {
        width: 100%;

        justify-content: center;
    }

    .hero-trust {
        gap: 12px;

        justify-content: center;
    }

    .hero-visual {
        min-height: 390px;

        margin-top: 45px;
    }

    .hero-tech-card {
        width: 92%;

        min-height: 290px;

        padding: 18px;

        border-radius: 20px;
    }

    .tech-card-content {
        padding-top: 35px;
    }

    .tech-card-content h3 {
        font-size: 21px;
    }

    .floating-tech-card {
        padding: 8px 10px;

        font-size: 9px;
    }

    .floating-card-1 {
        left: -3px;
        top: 75px;
    }

    .floating-card-2 {
        right: -3px;
        top: 175px;
    }

    .floating-card-3 {
        left: 0;
        bottom: 50px;
    }

}
/*--------------------------------------------------------------
# About us
--------------------------------------------------------------*/
.section-subtitle{
    color:#0d6efd;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
    display:inline-block;
}

.about-content .section-title{
    font-size:42px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:25px;
}

.about-content p{
    color:#6c757d;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

.about-visual{
    position:relative;
    overflow:hidden;
}

.main-image{
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.about-img{
    width:100%;
    transition:all .7s ease;
}

.about-visual:hover .about-img{
    transform:scale(1.08);
}

.floating-image{
    animation:floatImage 5s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

.btn-primary{
    transition:.35s;
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* .footer-16 {
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  padding: 100px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
} */
/* 
.brand-name {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    letter-spacing: -0.5px;
}

/* My Color */
.text-blue {
        color: #051E3C;

}

/* HealthSetu Color */
.text-cyan {
    background: linear-gradient(
        90deg,
        #051E3C 0%,
        #0066CC 35%,
        #00A9E8 70%,
        #0066CC 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}



/* Technologies */
.brand-tagline {
    margin-top: 5px;
    font-size: 15px;
    /* letter-spacing: 6px; */
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
}

.tech-text {
        color: #051E3C;

}


/* Optional Gold line effect like logo */
.brand-tagline::before,
/* .brand-tagline::after {
    content: "";
    display: inline-block;
    width: 55px;
    height: 1px;
    background: #D99A00;
    margin: 5 px;
    vertical-align: middle;
} */


.brand-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 420px;
}





/* =========================================================
   MYHEALTHSETU BLOG PAGE
========================================================= */

.mh-blog-hero {
    position: relative;
    min-height: 420px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(22, 136, 237, 0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(0, 183, 204, 0.12),
            transparent 30%
        ),
        #071a31;
}


.mh-blog-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin: auto;

    padding: 80px 20px;
}


.mh-blog-eyebrow,
.mh-section-label {
    display: inline-block;

    color: #1688ed;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.5px;
}


.mh-blog-hero h1 {
    margin: 16px 0;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 750;

    letter-spacing: -1.8px;
}


.mh-blog-hero h1 span {
    display: block;

    background: linear-gradient(
        90deg,
        #1688ed,
        #00b7cc
    );
    color: #1688ed;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.mh-blog-hero p {
    max-width: 700px;

    margin: auto;

    color: #a7b8ca;

    font-size: 16px;

    line-height: 1.8;
}


.mh-blog-hero-glow {
    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    filter: blur(70px);

    opacity: .22;

    animation: mhBlogGlow 7s ease-in-out infinite alternate;
}


.glow-one {
    top: -100px;
    left: 5%;

    background: #1688ed;
}


.glow-two {
    right: 5%;
    bottom: -120px;

    background: #00b7cc;

    animation-delay: 2s;
}


@keyframes mhBlogGlow {

    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, -20px) scale(1.15);
    }

}


/* =========================================================
   BLOG SECTION
========================================================= */

.mh-blog-section {
    padding: 50px 0;

    background: #f8fafc;
}


.mh-blog-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 40px;
}


.mh-blog-heading h2,
.mh-latest-heading h2 {
    margin: 10px 0 0;

    color: #101828;

    font-size: 40px;

    line-height: 1.15;

    font-weight: 750;

    letter-spacing: -1px;
}


.mh-blog-heading h2 span,
.mh-latest-heading h2 span {
    color: #1688ed;
}


.mh-blog-heading > p {
    max-width: 430px;

    margin: 0;

    color: #667085;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   TOOLBAR
========================================================= */

.mh-blog-toolbar {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 40px;
}


.mh-blog-search {
    position: relative;

    width: 280px;
}


.mh-blog-search i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #98a2b3;
}


.mh-blog-search input {
    width: 100%;

    height: 48px;

    padding: 0 16px 0 45px;

    border: 1px solid #e4e7ec;

    border-radius: 12px;

    outline: none;

    background: #ffffff;

    color: #101828;

    transition: all .3s ease;
}


.mh-blog-search input:focus {
    border-color: #1688ed;

    box-shadow: 0 0 0 4px rgba(22, 136, 237, .08);
}


.mh-blog-categories {
    display: flex;

    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 8px;
}


.mh-blog-categories button {
    border: 1px solid #e4e7ec;

    background: #ffffff;

    color: #667085;

    border-radius: 30px;

    padding: 9px 16px;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    transition: all .3s ease;
}


.mh-blog-categories button:hover,
.mh-blog-categories button.active {
    color: #ffffff;

    border-color: #1688ed;

    background: #1688ed;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(22, 136, 237, .18);
}


/* =========================================================
   FEATURED BLOG
========================================================= */

.mh-featured-blog {
    overflow: hidden;

    margin-bottom: 90px;

    border: 1px solid #e4e7ec;

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 20px 50px rgba(16, 24, 40, .07);
}


.mh-featured-image {
    position: relative;

    height: 100%;

    min-height: 390px;

    overflow: hidden;
}


.mh-featured-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;
}


.mh-featured-blog:hover .mh-featured-image img {
    transform: scale(1.06);
}


.mh-featured-badge {
    position: absolute;

    top: 20px;
    left: 20px;

    padding: 7px 13px;

    border-radius: 30px;

    color: #ffffff;

    background: #1688ed;

    font-size: 11px;

    font-weight: 700;
}


.mh-featured-content {
    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 50px;
}


.mh-blog-category {
    color: #1688ed;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.mh-featured-content h3 {
    margin: 14px 0;

    color: #101828;

    font-size: 31px;

    line-height: 1.25;

    font-weight: 750;
}


.mh-featured-content p {
    margin-bottom: 22px;

    color: #667085;

    font-size: 14px;

    line-height: 1.8;
}


.mh-blog-meta {
    display: flex;

    gap: 20px;

    margin-bottom: 25px;

    color: #98a2b3;

    font-size: 11px;
}


.mh-blog-meta i {
    margin-right: 5px;

    color: #1688ed;
}


.mh-read-more,
.mh-card-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    color: #1688ed;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}


.mh-read-more:hover,
.mh-card-link:hover {
    color: #0b6dcc;

    gap: 13px;
}


/* =========================================================
   LATEST
========================================================= */

.mh-latest-heading {
    margin-bottom: 35px;
}


.mh-latest-heading h2 {
    font-size: 34px;
}


/* =========================================================
   BLOG CARD
========================================================= */

.mh-blog-card {
    height: 100%;

    overflow: hidden;

    border: 1px solid #e7ebf0;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(16, 24, 40, .045);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


.mh-blog-card:hover {
    transform: translateY(-8px);

    border-color: rgba(22, 136, 237, .2);

    box-shadow:
        0 22px 45px rgba(16, 24, 40, .10);
}


.mh-blog-image {
    position: relative;

    height: 220px;

    overflow: hidden;
}


.mh-blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}


.mh-blog-card:hover .mh-blog-image img {
    transform: scale(1.08);
}


.mh-blog-image span {
    position: absolute;

    left: 15px;
    bottom: 15px;

    padding: 6px 10px;

    border-radius: 20px;

    color: #ffffff;

    background: rgba(7, 26, 49, .78);

    backdrop-filter: blur(8px);

    font-size: 10px;

    font-weight: 700;
}


.mh-blog-card-content {
    padding: 24px;
}


.mh-blog-date {
    margin-bottom: 10px;

    color: #98a2b3;

    font-size: 11px;
}


.mh-blog-date i {
    margin-right: 5px;

    color: #1688ed;
}


.mh-blog-card h3 {
    margin: 0 0 12px;

    color: #101828;

    font-size: 19px;

    line-height: 1.4;

    font-weight: 700;
}


.mh-blog-card p {
    min-height: 72px;

    margin-bottom: 20px;

    color: #667085;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   HIDDEN SEARCH RESULTS
========================================================= */

.blog-item.blog-hidden {
    display: none;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .mh-blog-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .mh-blog-toolbar {
        align-items: flex-start;

        flex-direction: column;
    }

    .mh-blog-search {
        width: 100%;
    }

    .mh-blog-categories {
        justify-content: flex-start;
    }

    .mh-featured-content {
        padding: 35px;
    }

}


@media (max-width: 767px) {
     .mh-blog-detail-hero {
        margin-top: 25px;
    }

    .mh-detail-hero-content {
        margin-top: 0 !important;
        padding-top: 20px;
    }

    .mh-blog-hero {
        min-height: 380px;
    }

    .mh-blog-hero-content {
        padding: 70px 15px;
    }

    .mh-blog-section {
        padding: 60px 0;
    }

    .mh-blog-heading h2,
    .mh-latest-heading h2 {
        font-size: 31px;
    }

    .mh-featured-image {
        min-height: 260px;
    }

    .mh-featured-content {
        padding: 28px;
    }

    .mh-featured-content h3 {
        font-size: 25px;
    }

}


@media (max-width: 480px) {
 .mh-blog-detail-hero {
        margin-top: 25px;
    }

    .mh-detail-hero-content {
        margin-top: 0 !important;
        padding-top: 20px;
    }
    .mh-detail-hero-content{
        display: inline-block;
        margin-top: 25px !important;
    }

    .mh-blog-hero h1 {
        font-size: 35px;
    }

    .mh-blog-hero p {
        font-size: 14px;
    }

    .mh-blog-categories button {
        padding: 8px 12px;
    }

    .mh-blog-image {
        height: 200px;
    }

}

/* =========================================================
   MYHEALTHSETU BLOG DETAIL PAGE
========================================================= */

.mh-blog-details-page {
    overflow: hidden;
}


/* =========================
   HERO
========================= */

.mh-blog-detail-hero {
    position: relative;
    overflow: hidden;

    padding: 100px 0 115px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(22, 136, 237, .12),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(0, 188, 212, .10),
            transparent 35%
        ),
        #f7fbff;
}


.mh-detail-glow {
    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

    animation: mhDetailFloat 7s ease-in-out infinite;
}


.detail-glow-one {
    top: -150px;
    left: -100px;

    background: rgba(22, 136, 237, .10);
}


.detail-glow-two {
    right: -100px;
    bottom: -160px;

    background: rgba(0, 188, 212, .09);

    animation-delay: -3s;
}


@keyframes mhDetailFloat {

    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(25px, -20px, 0);
    }

}


.mh-detail-hero-content {
    position: relative;

    z-index: 2;

    max-width: 950px;

    margin: auto;

    text-align: center;
}


/* Breadcrumb */

.mh-detail-breadcrumb {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 30px;

    color: #98a2b3;

    font-size: 12px;
}


.mh-detail-breadcrumb a {
    color: #667085;

    text-decoration: none;

    transition: .3s ease;
}


.mh-detail-breadcrumb a:hover {
    color: #1688ed;
}


.mh-detail-breadcrumb i {
    color: #b7c0cc;

    font-size: 9px;
}


/* Category */

.mh-detail-category {
    display: inline-flex;

    padding: 7px 13px;

    margin-bottom: 20px;

    border: 1px solid rgba(22, 136, 237, .15);

    border-radius: 30px;

    color: #1688ed;

    background: rgba(22, 136, 237, .06);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.mh-detail-hero h1 {
    max-width: 900px;

    margin: 0 auto 23px;

    color: #101828;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.08;

    font-weight: 750;

    letter-spacing: -2px;
}


.mh-detail-hero h1 span {
    display: inline;

    color: #1688ed;
}


.mh-detail-intro {
    max-width: 720px;

    margin: auto;

    color: #667085;

    font-size: 16px;

    line-height: 1.8;
}


/* Meta */

.mh-detail-meta {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 22px;

    margin-top: 30px;
}


.mh-detail-meta-item {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #667085;

    font-size: 12px;
}


.mh-detail-meta-item i {
    color: #1688ed;

    font-size: 14px;
}


/* =========================
   FEATURED IMAGE
========================= */

.mh-detail-image-section {
    position: relative;

    margin-top: -65px;

    z-index: 5;
}


.mh-detail-image-wrap {
    position: relative;

    overflow: hidden;

    height: 520px;

    border-radius: 24px;

    background: #e9eef4;

    box-shadow:
        0 30px 80px rgba(16, 24, 40, .14);
}


.mh-detail-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: fill;

    transition: transform 1s cubic-bezier(.2,.7,.2,1);
}


.mh-detail-image-wrap:hover img {
    transform: scale(1.04);
}


.mh-image-overlay {
    position: absolute;

    left: 25px;
    bottom: 25px;

    padding: 9px 14px;

    border: 1px solid rgba(255,255,255,.20);

    border-radius: 30px;

    color: #ffffff;

    background: rgba(10, 25, 45, .65);

    backdrop-filter: blur(12px);

    font-size: 11px;

    font-weight: 700;
}


/* =========================
   CONTENT
========================= */

.mh-blog-content-section {
    padding: 100px 0 80px;

    background: #ffffff;
}


.mh-blog-article {
    max-width: 800px;
}


.mh-blog-article .mh-lead {
    margin-bottom: 38px;

    color: #344054;

    font-size: 20px;

    line-height: 1.75;

    font-weight: 500;
}


.mh-blog-article h2 {
    margin: 48px 0 17px;

    color: #101828;

    font-size: 28px;

    line-height: 1.3;

    font-weight: 730;

    letter-spacing: -.5px;
}


.mh-blog-article p {
    margin-bottom: 18px;

    color: #667085;

    font-size: 15px;

    line-height: 1.9;
}


/* Highlight */

.mh-content-highlight {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin: 35px 0;

    padding: 25px;

    border: 1px solid rgba(22,136,237,.13);

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        #f5faff,
        #f9fcff
    );
}


.highlight-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #1688ed,
        #00b6ca
    );

    font-size: 18px;
}


.mh-content-highlight h4 {
    margin: 0 0 6px;

    color: #101828;

    font-size: 15px;

    font-weight: 700;
}


.mh-content-highlight p {
    margin: 0;

    font-size: 13px;
}


/* Feature points */

.mh-feature-points {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin: 30px 0 40px;
}


.mh-feature-point {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 19px;

    border: 1px solid #edf0f4;

    border-radius: 14px;

    background: #ffffff;

    transition: all .35s ease;
}


.mh-feature-point:hover {
    transform: translateY(-5px);

    border-color: rgba(22,136,237,.15);

    box-shadow: 0 15px 35px rgba(16,24,40,.07);
}


.point-icon {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: #1688ed;

    background: #f0f7ff;

    font-size: 16px;
}


.mh-feature-point h4 {
    margin: 1px 0 5px;

    color: #101828;

    font-size: 14px;

    font-weight: 700;
}


.mh-feature-point p {
    margin: 0;

    font-size: 12px;

    line-height: 1.65;
}


/* =========================
   TAKEAWAY
========================= */

.mh-takeaway-box {
    margin: 45px 0;

    padding: 28px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #071a31,
            #0c2947
        );

    box-shadow: 0 20px 45px rgba(7,26,49,.12);
}


.takeaway-header {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 22px;
}


.takeaway-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #ffffff;

    background: rgba(255,255,255,.09);

    font-size: 19px;
}


.takeaway-header span {
    display: block;

    margin-bottom: 3px;

    color: #5db4ff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.takeaway-header h3 {
    margin: 0;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;
}


.mh-takeaway-box ul {
    display: flex;

    flex-direction: column;

    gap: 11px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.mh-takeaway-box li {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #b6c5d5;

    font-size: 13px;

    line-height: 1.6;
}


.mh-takeaway-box li i {
    color: #55b8ff;

    margin-top: 2px;
}


/* =========================
   ARTICLE FOOTER
========================= */

.mh-article-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 55px;

    padding-top: 25px;

    border-top: 1px solid #edf0f4;
}


.mh-article-tags {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;
}


.mh-article-tags span {
    margin-right: 3px;

    color: #98a2b3;

    font-size: 11px;

    font-weight: 700;
}


.mh-article-tags a {
    padding: 6px 10px;

    border: 1px solid #e8edf3;

    border-radius: 30px;

    color: #667085;

    background: #ffffff;

    font-size: 10px;

    text-decoration: none;

    transition: .3s ease;
}


.mh-article-tags a:hover {
    color: #1688ed;

    border-color: rgba(22,136,237,.2);

    background: #f5faff;
}


.mh-back-blog {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    flex-shrink: 0;

    color: #1688ed;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}


.mh-back-blog:hover {
    gap: 11px;

    color: #0b6fc9;
}


/* =========================
   SIDEBAR
========================= */

.mh-blog-sidebar {
    position: sticky;

    top: 110px;

    display: flex;

    flex-direction: column;

    gap: 18px;
}


.mh-sidebar-card {
    padding: 25px;

    border: 1px solid #edf0f4;

    border-radius: 18px;

    background: #ffffff;

    box-shadow: 0 12px 35px rgba(16,24,40,.045);
}


.mh-author-card {
    text-align: center;
}


.mh-author-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 15px;

    border-radius: 16px;

    background: #f5faff;

    overflow: hidden;
}


.mh-author-icon img {
    width: 48px;
    height: 48px;

    object-fit: contain;
}


.mh-author-card > span,
.mh-sidebar-label {
    color: #1688ed;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.mh-author-card h3 {
    margin: 8px 0 10px;

    color: #101828;

    font-size: 17px;

    font-weight: 700;
}


.mh-author-card p {
    margin: 0 0 17px;

    color: #667085;

    font-size: 12px;

    line-height: 1.7;
}


.mh-author-card > a {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #1688ed;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;
}


/* Share */

.mh-share-buttons {
    display: flex;

    gap: 9px;

    margin-top: 15px;
}


.mh-share-buttons a {
    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #e8edf3;

    border-radius: 10px;

    color: #667085;

    background: #ffffff;

    text-decoration: none;

    transition: all .3s ease;
}


.mh-share-buttons a:hover {
    color: #ffffff;

    border-color: #1688ed;

    background: #1688ed;

    transform: translateY(-3px);
}


/* Sidebar CTA */

.mh-sidebar-cta {
    position: relative;

    overflow: hidden;

    padding: 28px;

    border-radius: 18px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(0,188,212,.16),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071a31,
            #0b2947
        );
}


.mh-sidebar-cta > span {
    color: #5db4ff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.mh-sidebar-cta h3 {
    margin: 10px 0;

    color: #ffffff;

    font-size: 22px;

    line-height: 1.3;
}


.mh-sidebar-cta h3 strong {
    color: #5db4ff;
}


.mh-sidebar-cta p {
    margin-bottom: 20px;

    color: #aab9c9;

    font-size: 12px;

    line-height: 1.7;
}


.mh-sidebar-cta a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    border-radius: 9px;

    color: #ffffff;

    background: rgba(255,255,255,.09);

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}


.mh-sidebar-cta a:hover {
    background: #1688ed;

    gap: 11px;
}


/* =========================
   RELATED
========================= */

.mh-related-section {
    padding: 80px 0 100px;

    background: #f8fafc;
}


.mh-related-heading {
    margin-bottom: 30px;
}


.mh-related-heading > span {
    color: #1688ed;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.mh-related-heading h2 {
    margin: 7px 0 0;

    color: #101828;

    font-size: 32px;

    font-weight: 750;
}


.mh-related-heading strong {
    color: #1688ed;
}


.mh-related-card {
    height: 100%;

    overflow: hidden;

    border: 1px solid #edf0f4;

    border-radius: 17px;

    background: #ffffff;

    box-shadow: 0 10px 30px rgba(16,24,40,.04);

    transition: all .4s cubic-bezier(.2,.7,.2,1);
}


.mh-related-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 20px 45px rgba(16,24,40,.09);
}


.mh-related-image {
    position: relative;

    height: 220px;

    overflow: hidden;
}


.mh-related-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}


.mh-related-card:hover .mh-related-image img {
    transform: scale(1.06);
}


.mh-related-image span {
    position: absolute;

    left: 15px;
    bottom: 15px;

    padding: 6px 10px;

    border-radius: 30px;

    color: #ffffff;

    background: rgba(10,25,45,.7);

    backdrop-filter: blur(8px);

    font-size: 9px;

    font-weight: 700;
}


.mh-related-content {
    padding: 22px;
}


.mh-related-content small {
    color: #98a2b3;

    font-size: 10px;
}


.mh-related-content h3 {
    min-height: 66px;

    margin: 10px 0 16px;

    color: #101828;

    font-size: 16px;

    line-height: 1.45;

    font-weight: 700;
}


.mh-related-content a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #1688ed;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}


.mh-related-content a:hover {
    gap: 11px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .mh-blog-detail-hero {
        padding: 75px 0 105px;
    }

    .mh-detail-image-wrap {
        height: 420px;
    }

    .mh-blog-sidebar {
        position: static;

        margin-top: 10px;
    }

}


@media (max-width: 767px) {
    

    .mh-blog-detail-hero {
        
        padding: 55px 0 90px;
    }

    .mh-detail-hero h1 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .mh-detail-intro {
        font-size: 14px;
    }

    .mh-detail-meta {
        gap: 12px 18px;
    }

    .mh-detail-image-section {
        margin-top: -45px;
    }

    .mh-detail-image-wrap {
        height: 300px;

        border-radius: 17px;
    }

    .mh-blog-content-section {
        padding: 65px 0;
    }

    .mh-blog-article .mh-lead {
        font-size: 17px;
    }

    .mh-blog-article h2 {
        margin-top: 38px;

        font-size: 23px;
    }

    .mh-feature-points {
        grid-template-columns: 1fr;
    }

    .mh-article-footer {
        align-items: flex-start;

        flex-direction: column;
    }

    .mh-related-section {
        padding: 60px 0 75px;
    }

}


@media (max-width: 480px) {
    

    .mh-detail-hero h1 {
        font-size: 32px;
    }

    .mh-detail-breadcrumb {
        margin-bottom: 22px;
    }

    .mh-detail-image-wrap {
        height: 235px;
    }

    .mh-image-overlay {
        left: 14px;
        bottom: 14px;
    }

    .mh-content-highlight {
        padding: 18px;

        gap: 12px;
    }

    .mh-takeaway-box {
        padding: 20px;
    }

    .mh-sidebar-card,
    .mh-sidebar-cta {
        padding: 21px;
    }

}

/* =========================================================
   MyHealthSetu - Premium Footer Upgrade
   Existing HTML / Laravel structure untouched
========================================================= */

footer {
    position: relative;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(23, 105, 224, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(0, 169, 199, 0.07),
            transparent 30%
        ),
        #071a31;

    color: #91a4ba;
    overflow: hidden;
}


/* Premium top line */

footer::before {
    content: "";
    display: block;
    height: 3px;
    width: 100%;

    background: linear-gradient(
        90deg,
        #1769e0,
        #00abc8,
        #1769e0
    );
}


/* Main footer */

footer .footer-main {
    padding: 65px 0 55px;
}


/* Brand section */

/* =========================================
   BRAND SECTION
========================================= */

footer .brand-section {
    padding-right: 30px;
}


/* =========================================
   COMPLETE LOGO = ONE BOX
========================================= */
footer .brand-section .logo {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    padding: 9px 16px 9px 9px;

    text-decoration: none;

    border-radius: 16px;

    /* White premium background */
background: rgba(255, 255, 255, 0.60);
    /* Soft navy border */
    border: 1px solid rgba(0, 32, 87, 0.10);

    /* Single premium shadow */
    box-shadow:
        0 10px 30px rgba(0, 32, 87, 0.14);

    position: relative;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
         margin-bottom: 15px;
}


/* Hover */
footer .brand-section .logo:hover {
    transform: translateY(-2px);

    background: #ffffff;

    box-shadow:
        0 16px 40px rgba(0, 32, 87, 0.20),
        0 0 24px rgba(0, 32, 87, 0.08);
}

/* =========================================
   LOGO IMAGE
========================================= */

footer .brand-section .logo img {
    width: 250px;
        height: 60px;

    object-fit: contain;

    padding: 3px;

    border-radius: 13px;

    /* NO SHADOW */
    box-shadow: none;

    /* NO BORDER */
    border: none;

    /* NO EXTRA BACKGROUND */
    background: transparent;

    flex-shrink: 0;
    
}


/* =========================================
   BRAND TEXT
========================================= */

footer .brand-text {
    display: flex;

    flex-direction: column;

    justify-content: center;

    margin: 0;
    padding: 0;

    /* NO BOX */
    background: transparent;

    /* NO BORDER */
    border: 0;

    /* NO SHADOW */
    box-shadow: none;
}


/* =========================================
   MY HEALTH SETU
========================================= */

footer .brand-name {
   font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.7px;
    white-space: nowrap;
    line-height: 1.1;
    margin: 0;
    white-space: nowrap;

    /* NO SHADOW */
    text-shadow: none;
}


footer .brand-name .text-blue {
    color: #002057;
}


footer .brand-name .text-cyan {
    color: #E6A530;
}


/* =========================================
   TECHNOLOGIES
========================================= */

footer .brand-tagline {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 400;
    /* letter-spacing: 1px; */
    color: #64748b;
    text-align: center;
    line-height: 1;
    white-space: nowrap;

    /* NO SHADOW */
    text-shadow: none;
}


/* =========================================
   HOVER
========================================= */

footer .brand-section .logo:hover {

    transform: translateY(-2px);

    background: rgba(255, 255, 255, 0.065);

    box-shadow:
        0 15px 38px rgba(0, 0, 0, 0.22),
        0 0 22px rgba(22, 136, 237, 0.07);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    footer .brand-section {
        padding-right: 0;
    }

    footer .brand-section .logo {
        gap: 9px;

        padding: 8px 13px 8px 8px;

        border-radius: 14px;
        
    }

    footer .brand-section .logo img {
        width: 50px;
        height: 50px;
    }

    footer .brand-name {
        font-size: 20px;
        
    }

    footer .brand-tagline {
        font-size: 7px;
        letter-spacing: 3px;
    }
}

/* =========================================================
   SOCIAL ICONS
========================================================= */

footer .social-links {
    display: flex !important;
    align-items: center;
    gap: 10px !important;
}


footer .social-links a {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: all 0.3s ease;
}


footer .social-links a img {
    width: 23px;
    height: 23px;

    object-fit: contain;

    transition: transform 0.3s ease;
}


footer .social-links a:hover {
    transform: translateY(-4px);

    background: rgba(255, 255, 255, 0.10);

    border-color: rgba(46, 139, 255, 0.45);

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.18);
}


footer .social-links a:hover img {
    transform: scale(1.08);
}


/* =========================================================
   FOOTER NAVIGATION
========================================================= */

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


footer .nav-column {
    position: relative;
}


footer .nav-column h6 {
    position: relative;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 18px;

    letter-spacing: 0.2px;
}


/* Small premium line */

footer .nav-column h6::after {
    content: "";

    display: block;

    width: 28px;
    height: 3px;

    margin-top: 9px;

    border-radius: 20px;

    background: linear-gradient(
        90deg,
        #1769e0,
        #00abc8
    );
}


/* Navigation */

footer .footer-nav {
    display: flex;

    flex-direction: column;

    gap: 9px;
}


footer .footer-nav a {
    position: relative;

    display: inline-flex;

    align-items: center;

    color: #8da1b8;

    font-size: 13px;

    text-decoration: none;

    transition: all 0.25s ease;
}


/* Arrow */

footer .footer-nav a::before {
    content: "›";

    color: #2c82ed;

    font-size: 17px;

    margin-right: 5px;

    opacity: 0;

    transform: translateX(-5px);

    transition: all 0.25s ease;
}


footer .footer-nav a:hover {
    color: #ffffff;

    transform: translateX(3px);
}


footer .footer-nav a:hover::before {
    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   CONTACT
========================================================= */

footer .contact-info {
    margin-top: 18px !important;
}


footer .contact-item {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 16px !important;
}


footer .contact-item i {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    color: #4b94f5;

    font-size: 15px;

    border-radius: 10px;

    background: rgba(40, 125, 235, 0.09);

    border: 1px solid rgba(40, 125, 235, 0.14);
}


footer .contact-item span {
    color: #d2deec;

    font-size: 13px;

    transition: color 0.25s ease;
}


footer .contact-item:hover span {
    color: #4fa0ff;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */
/* =========================================================
   PREMIUM FOOTER BOTTOM
========================================================= */

footer .footer-bottom {
    position: relative;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(3, 13, 27, 0.45);

    padding: 18px 0;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


/* Copyright */

footer .copyright p {
    margin: 0;

    color: #8295aa;

    font-size: 12px;

    line-height: 1.6;

    letter-spacing: 0.1px;
}


footer .copyright .sitename {
    color: #d5e4f5;

    font-weight: 600;

    transition: color 0.25s ease;
}


footer .copyright .sitename:hover {
    color: #45a3ff;
}


/* Right Side */

footer .legal-links {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 8px;
}


footer .legal-links a {
    position: relative;

    color: #8295aa;

    font-size: 11px;

    font-weight: 500;

    text-decoration: none;

    letter-spacing: 0.2px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


footer .legal-links a:hover {
    color: #ffffff;

    transform: translateY(-1px);
}


/* Small premium indicator */

footer .legal-links a::before {
    content: "";

    display: inline-block;

    width: 5px;
    height: 5px;

    margin-right: 7px;

    vertical-align: middle;

    border-radius: 50%;

    background: #3d9cff;

    box-shadow: 0 0 8px rgba(61, 156, 255, 0.5);
}


/* Mobile */

@media (max-width: 991px) {

    footer .copyright {
        text-align: center;
    }

    footer .legal-links {
        justify-content: center;

        margin-top: 7px;
    }

}


@media (max-width: 575px) {

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

    footer .copyright p {
        font-size: 11px;
    }

    footer .legal-links a {
        font-size: 10.5px;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    footer .footer-main {
        padding: 50px 0 40px;
    }

    footer .brand-section {
        padding-right: 0;
    }
 footer .nav-column {
        padding-top: 25px;
    }
    footer .footer-nav-wrapper {
        padding-left: 0;
    }

}


@media (max-width: 767px) {

    footer .footer-main {
        padding: 45px 0 30px;
    }
     footer .brand-section .logo img {
        width: 220px;
        height: 55px;
    }

    footer .brand-description {
        max-width: 100%;
    }
 footer .nav-column {
        padding-top: 25px;
    }
    footer .legal-links {
        justify-content: flex-start;
        margin-top: 8px;
               

    }

}


@media (max-width: 575px) {

    footer .footer-main {
        padding: 40px 0 25px;
    }

    footer .brand-section .logo img {
        width: 220px;
        height: 55px;
    }

    footer .brand-description {
        font-size: 12.5px;
        line-height: 1.75;
    }

    /* Quick Links, Our Services & Contact Us */
    footer .nav-column {
        padding-top: 25px;
    }

    footer .nav-column h6 {
        font-size: 13px;
    }

    footer .footer-nav a {
        font-size: 12px;
    }

    footer .copyright {
        text-align: center;
    }

    footer .legal-links {
        justify-content: center;
        text-align: center;
    }

}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--background-color);

    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader::before {
    content: "";

    width: 65px;
    height: 65px;

    position: absolute;

    border-radius: 50%;

    border: 2px solid transparent;
    border-top-color: var(--accent-color);
    border-right-color: var(--accent-color);

    animation: loaderRotate 1s linear infinite;
}

#preloader::after {
    content: "";

    width: 42px;
    height: 42px;

    position: absolute;

    border-radius: 50%;

    border: 2px solid transparent;
    border-bottom-color: var(--accent-color);
    border-left-color: var(--accent-color);

    opacity: 0.7;

    animation: loaderRotateReverse 1.5s linear infinite;
}

/* Center Dot */
#preloader {
    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,0.03) 0,
            transparent 35%
        ),
        var(--background-color);
}

@keyframes loaderRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes loaderRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

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

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

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


.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: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  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: 100px;
  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;
  background: url("../img/health/beg1.png") center/cover;
    /* background: url("../img/bg/abstract-bg-3.webp") center/cover; */

  /* opacity: 0.08; */
  z-index: 0;
}

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

.hero .hero-content {
  padding: 4rem 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-title {
 font-size: 3rem;
  font-weight: 500;
  /* line-height: 1.2; */
  /* margin: 1.5rem 0; */
  color: var(--accent-color);
  position: relative;
}

@media (min-width: 1200px) {
    .hero-title {
        white-space: nowrap;
    }
}

@media (max-width: 1199px) {
    .hero-title {
        white-space: normal;
    }
}
.hero .hero-content h1 {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 1.5rem 0;
  color: var(--heading-color);
}

.hero .hero-content h1 .highlight {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 1.5rem 0;
  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-top: 2rem;
  margin-bottom: 1rem;
}

.hero .hero-content .hero-actions .btn {
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 10px;
  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: 500px;
}

.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;
  display: flex;
  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);
  }
}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about {
  padding: 50px 0;
  background-color: var(--surface-color);
}

.home-about .about-content .section-heading {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .home-about .about-content .section-heading {
    font-size: 2rem;
  }
}

.home-about .about-content .lead-text {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.home-about .about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.home-about .about-content .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 576px) {
  .home-about .about-content .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.home-about .about-content .stats-grid .stat-item {
  text-align: center;
}

.home-about .about-content .stats-grid .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  display: block;
  line-height: 1;
}

.home-about .about-content .stats-grid .stat-item .stat-number::after {
  content: "+";
  font-size: 1.5rem;
  margin-left: 2px;
}

.home-about .about-content .stats-grid .stat-item .stat-label {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 0.5rem;
  font-weight: 400;
}

.home-about .about-content .cta-section {
  display: flex;
  align-items: center;
  justify-content: center; /* Ye line add karein */
  gap: 2rem;
  flex-wrap: wrap;
}

.home-about .about-content .cta-section .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.home-about .about-content .cta-section .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.home-about .about-content .cta-section .btn-secondary {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.home-about .about-content .cta-section .btn-secondary i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.home-about .about-content .cta-section .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.home-about .about-visual {
  position: relative;
}

.home-about .about-visual .main-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.home-about .about-visual .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.home-about .about-visual .main-image:hover img {
  transform: scale(1.05);
}

.home-about .about-visual .floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

@media (max-width: 768px) {
  .home-about .about-visual .floating-card {
    position: static;
    margin-top: 2rem;
    left: auto;
    bottom: auto;
  }
}

.home-about .about-visual .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-about .about-visual .floating-card .card-content .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-about .about-visual .floating-card .card-content .icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.home-about .about-visual .floating-card .card-content .card-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.home-about .about-visual .floating-card .card-content .card-text p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.4;
}

.home-about .about-visual .experience-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.25rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 768px) {
  .home-about .about-visual .experience-badge {
    position: static;
    margin-bottom: 2rem;
    right: auto;
    top: auto;
    display: inline-block;
  }
}

.home-about .about-visual .experience-badge .badge-content .years {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.home-about .about-visual .experience-badge .badge-content .text {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 0.25rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .home-about {
    padding: 80px 0;
  }

  .home-about .row {
    text-align: center;
  }

  .home-about .about-content .stats-grid {
    margin: 2rem 0;
  }
}

/* =========================================================
   MYHEALTHSETU TECHNOLOGIES
   PROFESSIONAL SOLUTIONS PAGE
========================================================= */


/* =========================================================
   COMMON
========================================================= */

.section-padding {
    padding: 30px 0;
}

.section-small-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 15px;

    color: #087df0;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.section-small-title i {
    font-size: 14px;
}


/* =========================================================
   HERO
========================================================= */

.solution-hero {

    position: relative;

    padding: 110px 0 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(13,110,253,.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #ffffff 55%,
            #f5f9ff 100%
        );
}


.solution-hero-shape {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.shape-one {

    width: 300px;
    height: 300px;

    right: -150px;
    top: -100px;

    border: 1px solid rgba(13,110,253,.12);
}


.shape-two {

    width: 200px;
    height: 200px;

    left: -100px;
    bottom: -100px;

    background: rgba(13,110,253,.04);
}


.solution-hero-content {
    position: relative;
    z-index: 2;
}


.solution-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    margin-bottom: 20px;

    border: 1px solid #d7e7fa;

    border-radius: 30px;

    background: #f1f7ff;

    color: #087df0;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.solution-hero h1 {

    max-width: 760px;

    margin: 0 0 22px;

    color: #101828;

    font-size: 54px;

    line-height: 1.1;

    font-weight: 750;

    letter-spacing: -1.5px;
}


.solution-hero h1 span {

    display: block;

    color: #087df0;
}


.solution-hero p {

    max-width: 680px;

    margin-bottom: 30px;

    color: #667085;

    font-size: 16px;

    line-height: 1.8;
}


.solution-hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.solution-primary-btn,
.solution-secondary-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 22px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: all .35s ease;
}


.solution-primary-btn {

    background: #087df0;

    color: #fff;

    box-shadow: 0 10px 25px rgba(8,125,240,.18);
}


.solution-primary-btn:hover {

    background: #0668ca;

    color: #fff;

    transform: translateY(-3px);
}


.solution-secondary-btn {

    background: #fff;

    color: #182230;

    border: 1px solid #dce3eb;
}


.solution-secondary-btn:hover {

    color: #087df0;

    border-color: #087df0;

    transform: translateY(-3px);
}


.solution-hero-points {

    display: flex;

    flex-wrap: wrap;

    gap: 22px;

    margin-top: 28px;
}


.solution-hero-points span {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #667085;

    font-size: 12px;
}


.solution-hero-points i {

    color: #087df0;

    font-size: 14px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.solution-hero-visual {

    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.hero-main-circle {

    width: 330px;
    height: 330px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #ffffff 20%,
            #eaf4ff 60%,
            #d8eaff 100%
        );

    border: 1px solid #d5e7fa;

    box-shadow:
        0 30px 70px rgba(20,70,130,.12);

    animation: solutionPulse 5s ease-in-out infinite;
}


@keyframes solutionPulse {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}


.hero-center-icon {

    width: 110px;
    height: 110px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 25px;

    background: #087df0;

    box-shadow:
        0 20px 40px rgba(8,125,240,.25);

    transform: rotate(-5deg);
}


.hero-center-icon i {

    color: #fff;

    font-size: 52px;
}


/* FLOATING CARDS */

.hero-floating-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 17px;

    min-width: 190px;

    border: 1px solid rgba(220,228,238,.9);

    border-radius: 12px;

    background: rgba(255,255,255,.94);

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

    backdrop-filter: blur(10px);

    animation: floatingCard 4s ease-in-out infinite;
}


.hero-floating-card strong,
.hero-floating-card small {

    display: block;
}


.hero-floating-card strong {

    margin-bottom: 3px;

    color: #182230;

    font-size: 12px;
}


.hero-floating-card small {

    color: #98a2b3;

    font-size: 10px;
}


.floating-icon {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #edf6ff;

    color: #087df0;

    font-size: 18px;
}


.card-top {

    top: 35px;
    left: 0;

    animation-delay: .2s;
}


.card-right {

    right: -5px;
    top: 190px;

    animation-delay: .8s;
}


.card-bottom {

    left: 30px;
    bottom: 30px;

    animation-delay: 1.2s;
}


@keyframes floatingCard {

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

    50% {
        transform: translateY(-9px);
    }
}


/* =========================================================
   INTRO
========================================================= */

.solution-intro {
    background: #fff;
}


.solution-intro-image {

    position: relative;

    padding-right: 25px;
}


.solution-intro-image > img {

    width: 100%;

    height: 470px;

    object-fit: cover;

    border-radius: 15px;

    box-shadow:
        0 25px 60px rgba(30,50,80,.13);
}


.intro-experience-card {

    position: absolute;

    right: 0;
    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 15px 35px rgba(20,50,90,.13);
}


.experience-icon {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #edf6ff;

    color: #087df0;
}


.intro-experience-card strong,
.intro-experience-card span {

    display: block;
}


.intro-experience-card strong {

    color: #182230;

    font-size: 12px;
}


.intro-experience-card span {

    margin-top: 3px;

    color: #98a2b3;

    font-size: 10px;
}


.solution-intro-content h2,
.solution-section-heading h2,
.technology-approach h2,
.why-solutions h2 {

    margin: 0 0 20px;

    color: #101828;

    font-size: 40px;

    line-height: 1.2;

    font-weight: 750;

    letter-spacing: -.8px;
}


.solution-intro-content h2 span,
.solution-section-heading h2 span,
.technology-approach h2 span,
.why-solutions h2 span {

    color: #087df0;
}


.solution-intro-content > p {

    color: #667085;

    font-size: 14px;

    line-height: 1.8;
}


.intro-features {

    margin-top: 25px;
}


.intro-feature {

    display: flex;

    gap: 13px;

    margin-bottom: 17px;
}


.intro-feature > i {

    margin-top: 3px;

    color: #087df0;

    font-size: 18px;
}


.intro-feature h4 {

    margin: 0 0 4px;

    color: #182230;

    font-size: 14px;
}


.intro-feature p {

    margin: 0;

    color: #667085;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.our-solutions {

    background: #f7f9fc;
}


.solution-section-heading {

    max-width: 800px;

    margin: 0 auto;
}


.solution-section-heading > p {

    max-width: 720px;

    margin: 0 auto;

    color: #667085;

    font-size: 14px;

    line-height: 1.8;
}


/* CARD */

.professional-solution-card {

    position: relative;

    height: 100%;

    min-height: 340px;

    padding: 30px;

    overflow: hidden;

    border: 1px solid #e4e9ef;

    border-radius: 14px;

    background: #fff;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


.professional-solution-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #087df0;

    transition: width .4s ease;
}


.professional-solution-card:hover {

    transform: translateY(-8px);

    border-color: #cfe2f8;

    box-shadow:
        0 20px 45px rgba(25,60,100,.09);
}


.professional-solution-card:hover::before {

    width: 100%;
}


.solution-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;
}


.professional-solution-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #edf6ff;

    color: #087df0;

    font-size: 25px;

    transition: all .4s ease;
}


.professional-solution-card:hover
.professional-solution-icon {

    background: #087df0;

    color: #fff;

    transform: translateY(-4px) rotate(-3deg);
}


.solution-card-top > span {

    color: #d1d8e0;

    font-size: 12px;

    font-weight: 700;
}


.professional-solution-card h3 {

    margin-bottom: 12px;

    color: #182230;

    font-size: 19px;

    font-weight: 650;
}


.professional-solution-card > p {

    min-height: 88px;

    margin-bottom: 18px;

    color: #667085;

    font-size: 12px;

    line-height: 1.75;
}


.solution-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 23px;
}


.solution-tags span {

    padding: 5px 8px;

    border-radius: 5px;

    background: #f4f7fa;

    color: #667085;

    font-size: 9px;

    font-weight: 600;
}


.solution-learn-more {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #087df0;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    transition: all .3s ease;
}


.solution-learn-more i {

    transition: transform .3s ease;
}


.solution-learn-more:hover {

    color: #055fb8;
}


.solution-learn-more:hover i {

    transform: translate(3px,-3px);
}


/* =========================================================
   TECHNOLOGY APPROACH
========================================================= */

.technology-approach {

    background: #fff;
}


.technology-approach > .container > .row {

    min-height: 400px;
}


.technology-approach h2 {

    max-width: 600px;
}


.technology-approach p {

    max-width: 600px;

    color: #667085;

    font-size: 14px;

    line-height: 1.8;
}


.technology-progress-list {

    max-width: 600px;

    margin-top: 30px;
}


.technology-progress-item {

    margin-bottom: 20px;
}


.progress-heading {

    display: flex;

    justify-content: space-between;

    margin-bottom: 7px;

    color: #475467;

    font-size: 11px;

    font-weight: 600;
}


.progress-heading strong {

    color: #087df0;
}


.progress-line {

    width: 100%;

    height: 6px;

    overflow: hidden;

    border-radius: 20px;

    background: #edf1f5;
}


.progress-line span {

    display: block;

    height: 100%;

    border-radius: 20px;

    background: #087df0;
}


/* TECHNOLOGY GRID */

.technology-stack {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 15px;

    padding: 20px;
}


.technology-stack-card {

    min-height: 130px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 1px solid #e5eaf0;

    border-radius: 12px;

    background: #f9fbfd;

    transition: all .35s ease;
}


.technology-stack-card i {

    color: #087df0;

    font-size: 30px;
}


.technology-stack-card span {

    color: #475467;

    font-size: 12px;

    font-weight: 600;
}


.technology-stack-card:hover {

    background: #fff;

    transform: translateY(-6px);

    border-color: #cfe2f8;

    box-shadow:
        0 15px 35px rgba(30,60,100,.08);
}


/* =========================================================
   WHY CHOOSE
========================================================= */

.why-solutions {

    background: #f7f9fc;
}


.why-solution-card {

    height: 100%;

    padding: 30px 25px;

    text-align: center;

    border: 1px solid #e5eaf0;

    border-radius: 13px;

    background: #fff;

    transition: all .35s ease;
}


.why-solution-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(30,60,100,.08);
}


.why-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #edf6ff;

    color: #087df0;

    font-size: 23px;

    transition: all .35s ease;
}


.why-solution-card:hover .why-icon {

    background: #087df0;

    color: #fff;

    transform: scale(1.08);
}


.why-solution-card h3 {

    margin-bottom: 10px;

    color: #182230;

    font-size: 16px;
}


.why-solution-card p {

    margin: 0;

    color: #667085;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.solution-process {

    background: #fff;
}


.process-line {

    position: relative;

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

    margin-top: 60px;
}


.process-line::before {

    content: "";

    position: absolute;

    top: 31px;

    left: 10%;

    right: 10%;

    height: 1px;

    background: #dce5ee;

    z-index: 0;
}


.process-item {

    position: relative;

    z-index: 2;

    text-align: center;
}


.process-number {

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border-radius: 50%;

    background: #087df0;

    border: 7px solid #edf6ff;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    box-shadow: 0 8px 20px rgba(8,125,240,.18);
}


.process-item h3 {

    margin-bottom: 10px;

    color: #182230;

    font-size: 17px;
}


.process-item p {

    margin: 0 auto;

    max-width: 230px;

    color: #667085;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.solution-final-cta {

    padding: 0 0 100px;

    background: #fff;
}


.solution-final-box {

    position: relative;

    overflow: hidden;

    padding: 75px 25px;

    border-radius: 20px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #061a35,
            #0a3973
        );
}


.solution-final-box::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -120px;
    top: -170px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);
}


.solution-final-box::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -120px;
    bottom: -160px;

    border-radius: 50%;

    background: rgba(255,255,255,.04);
}


.final-cta-content {

    position: relative;

    z-index: 2;
}


.final-cta-content > span {

    color: rgba(255,255,255,.6);

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 700;
}


.final-cta-content h2 {

    max-width: 750px;

    margin: 15px auto;

    color: #fff;

    font-size: 40px;

    line-height: 1.2;

    font-weight: 750;
}


.final-cta-content h2 strong {

    color: #59a6ff;
}


.final-cta-content p {

    max-width: 650px;

    margin: 0 auto 28px;

    color: rgba(255,255,255,.68);

    font-size: 14px;

    line-height: 1.8;
}


.final-cta-content a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 23px;

    border-radius: 7px;

    background: #fff;

    color: #102a4a;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: all .35s ease;
}


.final-cta-content a:hover {

    color: #fff;

    background: #087df0;

    transform: translateY(-3px);

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


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .solution-hero h1 {
        font-size: 48px;
    }

    .hero-main-circle {
        width: 290px;
        height: 290px;
    }

    .hero-floating-card {
        min-width: 175px;
    }

}


@media (max-width: 991px) {

    .section-padding {
        padding: 50px 0;
    }

    .solution-hero {
        padding: 80px 0;
    }

    .solution-hero h1 {
        font-size: 43px;
    }

    .solution-hero-visual {
        min-height: 430px;
    }

    .solution-intro-content h2,
    .solution-section-heading h2,
    .technology-approach h2,
    .why-solutions h2 {
        font-size: 34px;
    }

    .process-line {
        grid-template-columns: repeat(2,1fr);
        gap: 45px 25px;
    }

    .process-line::before {
        display: none;
    }

}


@media (max-width: 767px) {

    .section-padding {
        padding: 50px 0;
    }

    .solution-hero {
        padding: 65px 0;
    }

    .solution-hero h1 {
        font-size: 35px;
        letter-spacing: -.7px;
    }

    .solution-hero p {
        font-size: 14px;
    }

    .solution-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .solution-hero-points {
        gap: 12px;
    }

    .solution-hero-visual {
        min-height: 400px;
    }

    .hero-main-circle {
        width: 250px;
        height: 250px;
    }

    .hero-center-icon {
        width: 85px;
        height: 85px;
    }

    .hero-center-icon i {
        font-size: 40px;
    }

    .hero-floating-card {
        min-width: 155px;
        padding: 10px;
    }

    .card-top {
        left: 0;
        top: 25px;
    }

    .card-right {
        right: 0;
        top: 175px;
    }

    .card-bottom {
        left: 0;
        bottom: 15px;
    }

    .solution-intro-image {
        padding-right: 0;
    }

    .solution-intro-image > img {
        height: 350px;
    }

    .intro-experience-card {
        right: 15px;
    }

    .solution-intro-content h2,
    .solution-section-heading h2,
    .technology-approach h2,
    .why-solutions h2 {
        font-size: 29px;
    }

    .professional-solution-card {
        min-height: auto;
    }

    .professional-solution-card > p {
        min-height: auto;
    }

    .technology-stack {
        padding: 0;
    }

    .technology-stack-card {
        min-height: 110px;
    }

    .process-line {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .final-cta-content h2 {
        font-size: 30px;
    }

}

/* =========================================================
   MYHEALTHSETU PREMIUM HEADER
========================================================= */

/* Header */
#header.header {
    background: #ffffff;
    box-shadow: 0 4px 22px rgba(5, 30, 60, 0.08);
    z-index: 9999;
}

#header .branding {
    min-height: 82px;
    display: flex;
    align-items: center;
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

#header .logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}

#header .logo-image-wrapper {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#header .logo-image-wrapper img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
}


/* =========================================================
   BRAND TEXT
========================================================= */

#header .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

#header .brand-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.7px;
    white-space: nowrap;
    line-height: 1.1;
    margin: 0;
}

#header .my-text {
    color:#002057;
}


#header .health-text {
 background: linear-gradient(
        to top,
        #051E3C 0%,
        #0066CC 45%,
        #00A9E8 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

#header .setu-text {
    color:#002057;
}

#header .brand-tagline {
    margin-top: 3px;
    font-size: 10px;
    font-weight: 700;
    /* letter-spacing: 1px; */
    color: #051E3C;
    text-align: center;
    line-height: 1;
}


/* =========================================================
   NAVIGATION
========================================================= */

#header .navmenu {
    display: flex;
    align-items: center;
    margin-left: auto;
}

#header .navmenu > ul {
    display: flex;
    align-items: center;
    gap: 3px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#header .navmenu > ul > li {
    position: relative;
    list-style: none;
}

#header .navmenu > ul > li > a {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 14px;

    color: #1e293b;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.3s ease;
}


/* Hover */

#header .navmenu > ul > li > a:hover {
    color: #00a9e8;
}


/* Active */

#header .navmenu > ul > li > a.active {
    color: #00a9e8;
}


/* Active underline */

#header .navmenu > ul > li > a.active::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 2px;

    height: 2px;

    background: #00a9e8;

    border-radius: 20px;
}


/* =========================================================
   HEADER CTA
========================================================= */

#header .header-cta {
    display: flex;
    align-items: center;

    margin-left: 18px;

    flex-shrink: 0;
}

#header .premium-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 12px 19px;

    background: #051e3c;
    color: #ffffff;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.3s ease;
}

#header .premium-cta i {
    font-size: 15px;

    transition: transform 0.3s ease;
}

#header .premium-cta:hover {
   background : #00a9e8;
    color: #ffffff;

    transform: translateY(-2px);
}

#header .premium-cta:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   MOBILE MENU ICON
========================================================= */

#header .mobile-nav-toggle {
    color: #6292cd;
    font-size: 28px;
    cursor: pointer;
}


/* =========================================================
   TABLET / LAPTOP
========================================================= */

@media (max-width: 1399px) {

    #header .navmenu > ul {
        gap: 0;
    }

    #header .navmenu > ul > li > a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px;
    }

    #header .header-cta {
        margin-left: 10px;
    }

    #header .premium-cta {
        padding: 11px 16px;
        font-size: 13px;
    }
}


/* =========================================================
   MOBILE / COLLAPSED NAV
========================================================= */

@media (max-width: 1199px) {

    #header .branding {
        min-height: 72px;
    }

    #header .logo-image-wrapper {
        width: 52px;
        height: 52px;
    }

    #header .logo-image-wrapper img {
        width: 52px;
        height: 52px;
    }

    #header .brand-name {
        font-size: 24px;
    }

    #header .brand-tagline {
        font-size: 9px;
        letter-spacing: 2.5px;
    }

    /*
     * Mobile navigation is handled by the template's
     * existing navmenu JavaScript/CSS.
     */

    #header .header-cta {
        display: none !important;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

/* =========================================================
   PROFESSIONAL MOBILE HEADER
========================================================= */

/* =========================================================
   COMPACT MOBILE NAV MENU
========================================================= */

/* =========================================================
   MOBILE NAV TOGGLE - PROFESSIONAL
========================================================= */

@media (max-width: 575px) {

    #header .mobile-nav-toggle {

        width: 40px;
        height: 40px;

        min-width: 40px;
        min-height: 40px;

        margin: 0;

        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 23px;
        line-height: 1;

        color: #000;

        background: rgba(0, 0, 0, 0.04);

        border: 1px solid rgba(0, 0, 0, 0.10);

        border-radius: 10px;

        cursor: pointer;

        z-index: 10005;

        transition:
            color 0.25s ease,
            background-color 0.25s ease,
            border-color 0.25s ease,
            transform 0.2s ease,
            box-shadow 0.25s ease;

        -webkit-tap-highlight-color: transparent;
    }


    /* =====================================================
       HOVER
    ===================================================== */

    #header .mobile-nav-toggle:hover {

        color: var(--accent-color);

        background: color-mix(
            in srgb,
            var(--accent-color),
            transparent 92%
        );

        border-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 70%
        );
    }


    /* =====================================================
       CLICK / PRESS
    ===================================================== */

    #header .mobile-nav-toggle:active {

        transform: scale(0.92);
    }


    /* =====================================================
       MENU OPEN - CLOSE BUTTON
    ===================================================== */

    body.mobile-nav-active #header .mobile-nav-toggle {

        position: fixed;

        top: 14px;
        right: 14px;

        width: 40px;
        height: 40px;

        min-width: 40px;
        min-height: 40px;

        margin: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        color: #ffffff;

        background: var(--accent-color);

        border: 1px solid var(--accent-color);

        border-radius: 10px;

        font-size: 24px;

        line-height: 1;

        z-index: 10006;

        box-shadow:
            0 5px 16px rgba(0, 0, 0, 0.20);
    }


    /* =====================================================
       CLOSE BUTTON HOVER
    ===================================================== */

    body.mobile-nav-active #header .mobile-nav-toggle:hover {

        color: #ffffff;

        background: color-mix(
            in srgb,
            var(--accent-color),
            black 10%
        );

        border-color: var(--accent-color);

        transform: none;
    }


    /* =====================================================
       CLOSE BUTTON ICON
    ===================================================== */

    body.mobile-nav-active #header .mobile-nav-toggle.bi-x::before {

        font-size: 24px;

        line-height: 1;
    }


    /* =====================================================
       MOBILE MENU POSITION
    ===================================================== */

    body.mobile-nav-active #header .navmenu > ul {

        top: 67px;

        left: auto;
        right: 12px;

        width: max-content;

        min-width: 190px;

        max-width: calc(100vw - 24px);

        height: auto;

        max-height: calc(100vh - 85px);

        bottom: auto;

        margin: 0;

        padding: 8px;

        display: block;

        overflow-y: auto;
        overflow-x: hidden;

        border-radius: 14px;

        background: var(--nav-mobile-background-color);

        border: 1px solid color-mix(
            in srgb,
            var(--default-color),
            transparent 88%
        );

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

        z-index: 10001;

        animation: mobileMenuOpen 0.22s ease;
    }


    /* =====================================================
       MENU ITEMS
    ===================================================== */

    body.mobile-nav-active #header .navmenu > ul > li {

        width: 100%;

        margin: 0;
        padding: 0;
    }


    /* =====================================================
       MENU LINKS
    ===================================================== */

    body.mobile-nav-active #header .navmenu > ul > li > a {

        width: 100%;

        min-height: 44px;

        margin: 2px 0;

        padding: 11px 14px;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        white-space: nowrap;

        font-size: 15px;

        font-weight: 500;

        line-height: 1.2;

        border-radius: 9px;

        box-sizing: border-box;

        transition:
            color 0.2s ease,
            background-color 0.2s ease;
    }


    /* =====================================================
       ACTIVE
    ===================================================== */

    body.mobile-nav-active #header .navmenu > ul > li > a.active {

        color: var(--accent-color);

        background: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );

        font-weight: 600;
    }


    /* =====================================================
       HOVER
    ===================================================== */

    body.mobile-nav-active #header .navmenu > ul > li > a:hover {

        color: var(--accent-color);

        background: color-mix(
            in srgb,
            var(--accent-color),
            transparent 92%
        );
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    #header .mobile-nav-toggle {

        width: 38px;
        height: 38px;

        min-width: 38px;
        min-height: 38px;

        font-size: 22px;

        border-radius: 9px;
    }


    body.mobile-nav-active #header .mobile-nav-toggle {

        top: 12px;
        right: 10px;

        width: 38px;
        height: 38px;

        min-width: 38px;
        min-height: 38px;

        font-size: 23px;
    }


    body.mobile-nav-active #header .navmenu > ul {

        top: 62px;

        right: 10px;

        min-width: 175px;

        max-width: calc(100vw - 20px);

        padding: 7px;

        border-radius: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

/* @media (max-width: 380px) {

    body.mobile-nav-active #header .navmenu > ul {

        right: 10px;

        min-width: 175px;

        max-width: calc(100vw - 20px);

        top: 62px;

        padding: 7px;

        border-radius: 12px;
    }


    body.mobile-nav-active #header .navmenu > ul > li > a {

        min-height: 42px;

        padding: 10px 12px;

        font-size: 14px;
    }

} */


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

/* @media (max-width: 380px) {

    #header .container {

        padding-left: 11px;
        padding-right: 11px;
    }


    #header .logo {

        gap: 7px;
    }


    #header .logo-image-wrapper,
    #header .logo-image-wrapper img {

        width: 40px;
        height: 40px;
    }


    #header .logo-image-wrapper {

        min-width: 40px;

        border-radius: 9px;
    }


    #header .brand-name {

        font-size: 18px;
    }


    #header .brand-tagline {

        margin-top: 4px;

        font-size: 6px;

        letter-spacing: 1.7px;
    }


    #header .mobile-nav-toggle {

        width: 40px;
        height: 40px;

        min-width: 40px;

        font-size: 23px;

        border-radius: 10px;
    }

} */

/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
    background: #ffffff;
    position: relative;
}

.services-section-title {
    max-width: 850px;
    margin: 0 auto;
}

.service-subtitle {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.services-section-title h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
    margin-bottom: 18px;
}

.services-section-title h2 span {
    color: #2563eb;
}

.services-section-title p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin: auto;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {
    position: relative;
    height: 100%;
    min-height: 365px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 18px;

    overflow: hidden;

    padding: 35px 30px;

    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}


/* Background Image */

.service-bg {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    opacity: 0;

    transform: scale(1.12);

    transition:
        opacity .5s ease,
        transform .7s ease;

    z-index: 0;
}


/* Dark Overlay */

.service-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(5, 30, 60, .94),
        rgba(15, 23, 42, .88)
    );

    opacity: 0;

    transition: opacity .45s ease;

    z-index: 1;
}


/* Hover */

.service-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 55px rgba(15, 23, 42, .18);

    border-color: transparent;
}

.service-card:hover .service-bg {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover::after {
    opacity: 1;
}

 /* ================================
    technology CSS
================================  */


.technology-section {
    padding: 50px 0;
    background: #ffffff;
    overflow: hidden;
}


/* Heading */

.tech-heading {
    margin-bottom: 40px;
}

.tech-subtitle {
    display: inline-block;
    color: #1688ed;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.tech-heading h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #101828;
    margin-bottom: 15px;
}

.tech-heading h2 span {
    color: #1688ed;
}

.tech-heading p {
    max-width: 650px;
    margin: auto;
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}


/* Tabs */

.tech-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

.tab-btn {
    position: relative;
    border: 1px solid #e4e7ec;
    background: #ffffff;
    color: #475467;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .35s ease;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.tab-btn i {
    font-size: 15px;
    transition: transform .35s ease;
}

.tab-btn:hover {
    color: #1688ed;
    border-color: #1688ed;
    transform: translateY(-2px);
}

.tab-btn:hover i {
    transform: rotate(8deg) scale(1.1);
}

.tab-btn.active {
    color: #ffffff;
    background: #101828;
    border-color: #101828;
    box-shadow: 0 8px 25px rgba(16, 24, 40, .15);
}

.tab-btn.active i {
    color: #ffffff;
}


/* Grid */

.technology-grid {
    min-height: 190px;
}


/* Category */

.tech-category {
    display: none;
    width: 100%;
    flex-wrap: wrap;
    animation: techFadeIn .55s ease forwards;
}

.tech-category.active {
    display: flex;
}


/* Technology Card */

.technology-card {
    position: relative;
    min-height: 175px;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    background: #ffffff;
    padding: 25px 10px 20px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform .4s cubic-bezier(.2,.8,.2,1),
        box-shadow .4s ease,
        border-color .4s ease;
}


/* Top Glow */

.technology-card::before {
    content: "";
    position: absolute;
    top: -70px;
    left: 50%;
    width: 140px;
    height: 140px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: currentColor;
    opacity: .035;
    transition: all .4s ease;
}

.technology-card:hover::before {
    width: 220px;
    height: 220px;
    opacity: .07;
}


/* Card Hover */

.technology-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 18px 40px rgba(16, 24, 40, .10);
}


/* Icon */

.technology-icon-circle {
    width: 68px;
    height: 68px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    transition: all .4s ease;
}

.technology-icon-circle i {
    font-size: 34px;
    transition: all .4s ease;
}

.technology-card:hover .technology-icon-circle {
    transform: translateY(-4px) scale(1.08);
}

.technology-card:hover .technology-icon-circle i {
    transform: scale(1.1);
}


/* Text */

.technology-card h5 {
    margin: 0 0 5px;
    color: #101828;
    font-size: 16px;
    font-weight: 700;
}

.technology-card span {
    color: #98a2b3;
    font-size: 12px;
}


/* ==========================
   TECHNOLOGY COLORS
========================== */

.tech-html {
    color: #e34f26;
}

.tech-html .technology-icon-circle {
    background: #e34f2612;
}

.tech-html .technology-icon-circle i {
    color: #e34f26;
}


.tech-css {
    color: #1572b6;
}

.tech-css .technology-icon-circle {
    background: #1572b612;
}

.tech-css .technology-icon-circle i {
    color: #1572b6;
}


.tech-bootstrap {
    color: #7952b3;
}

.tech-bootstrap .technology-icon-circle {
    background: #7952b312;
}

.tech-bootstrap .technology-icon-circle i {
    color: #7952b3;
}


.tech-js {
    color: #f7df1e;
}

.tech-js .technology-icon-circle {
    background: #f7df1e18;
}

.tech-js .technology-icon-circle i {
    color: #e6c900;
}


.tech-react {
    color: #61dafb;
}

.tech-react .technology-icon-circle {
    background: #61dafb15;
}

.tech-react .technology-icon-circle i {
    color: #08a8d0;
}


.tech-angular {
    color: #dd0031;
}

.tech-angular .technology-icon-circle {
    background: #dd003112;
}

.tech-angular .technology-icon-circle i {
    color: #dd0031;
}


.tech-php {
    color: #777bb4;
}

.tech-php .technology-icon-circle {
    background: #777bb412;
}

.tech-php .technology-icon-circle i {
    color: #777bb4;
}


.tech-laravel {
    color: #ff2d20;
}

.tech-laravel .technology-icon-circle {
    background: #ff2d2012;
}

.tech-laravel .technology-icon-circle i {
    color: #ff2d20;
}


.tech-node {
    color: #339933;
}

.tech-node .technology-icon-circle {
    background: #33993312;
}

.tech-node .technology-icon-circle i {
    color: #339933;
}


.tech-python {
    color: #3776ab;
}

.tech-python .technology-icon-circle {
    background: #3776ab12;
}

.tech-python .technology-icon-circle i {
    color: #3776ab;
}


.tech-java {
    color: #e76f00;
}

.tech-java .technology-icon-circle {
    background: #e76f0012;
}

.tech-java .technology-icon-circle i {
    color: #e76f00;
}


.tech-api {
    color: #1688ed;
}

.tech-api .technology-icon-circle {
    background: #1688ed12;
}

.tech-api .technology-icon-circle i {
    color: #1688ed;
}


.tech-mysql {
    color: #00758f;
}

.tech-mysql .technology-icon-circle {
    background: #00758f12;
}

.tech-mysql .technology-icon-circle i {
    color: #00758f;
}


.tech-mongo {
    color: #47a248;
}

.tech-mongo .technology-icon-circle {
    background: #47a24812;
}

.tech-mongo .technology-icon-circle i {
    color: #47a248;
}


.tech-firebase {
    color: #ffca28;
}

.tech-firebase .technology-icon-circle {
    background: #ffca2818;
}

.tech-firebase .technology-icon-circle i {
    color: #f5a800;
}


.tech-postgres {
    color: #336791;
}

.tech-postgres .technology-icon-circle {
    background: #33679112;
}

.tech-postgres .technology-icon-circle i {
    color: #336791;
}


.tech-wordpress {
    color: #21759b;
}

.tech-wordpress .technology-icon-circle {
    background: #21759b12;
}

.tech-wordpress .technology-icon-circle i {
    color: #21759b;
}


.tech-shopify {
    color: #95bf47;
}

.tech-shopify .technology-icon-circle {
    background: #95bf4712;
}

.tech-shopify .technology-icon-circle i {
    color: #75a52e;
}


.tech-cms {
    color: #1688ed;
}

.tech-cms .technology-icon-circle {
    background: #1688ed12;
}

.tech-cms .technology-icon-circle i {
    color: #1688ed;
}


.tech-flutter {
    color: #02569b;
}

.tech-flutter .technology-icon-circle {
    background: #02569b12;
}

.tech-flutter .technology-icon-circle i {
    color: #02569b;
}


.tech-android {
    color: #3ddc84;
}

.tech-android .technology-icon-circle {
    background: #3ddc8412;
}

.tech-android .technology-icon-circle i {
    color: #3ddc84;
}


.tech-ios {
    color: #111111;
}

.tech-ios .technology-icon-circle {
    background: #1111110c;
}

.tech-ios .technology-icon-circle i {
    color: #111111;
}


.tech-reactnative {
    color: #61dafb;
}

.tech-reactnative .technology-icon-circle {
    background: #61dafb12;
}

.tech-reactnative .technology-icon-circle i {
    color: #08a8d0;
}


.tech-aws {
    color: #ff9900;
}

.tech-aws .technology-icon-circle {
    background: #ff990012;
}

.tech-aws .technology-icon-circle i {
    color: #ff9900;
}


.tech-docker {
    color: #2496ed;
}

.tech-docker .technology-icon-circle {
    background: #2496ed12;
}

.tech-docker .technology-icon-circle i {
    color: #2496ed;
}


.tech-github {
    color: #24292f;
}

.tech-github .technology-icon-circle {
    background: #24292f0c;
}

.tech-github .technology-icon-circle i {
    color: #24292f;
}


.tech-cloud {
    color: #1688ed;
}

.tech-cloud .technology-icon-circle {
    background: #1688ed12;
}

.tech-cloud .technology-icon-circle i {
    color: #1688ed;
}


.tech-ai {
    color: #7c3aed;
}

.tech-ai .technology-icon-circle {
    background: #7c3aed12;
}

.tech-ai .technology-icon-circle i {
    color: #7c3aed;
}


.tech-ml {
    color: #ec4899;
}

.tech-ml .technology-icon-circle {
    background: #ec489912;
}

.tech-ml .technology-icon-circle i {
    color: #ec4899;
}


.tech-chat {
    color: #06b6d4;
}

.tech-chat .technology-icon-circle {
    background: #06b6d412;
}

.tech-chat .technology-icon-circle i {
    color: #06b6d4;
}


.tech-api-ai {
    color: #8b5cf6;
}

.tech-api-ai .technology-icon-circle {
    background: #8b5cf612;
}

.tech-api-ai .technology-icon-circle i {
    color: #8b5cf6;
}


/* ==========================
   ANIMATION
========================== */

@keyframes techFadeIn {

    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Individual cards animation */

.tech-category.active .technology-card {
    animation: cardReveal .55s ease both;
}

.tech-category.active .col-md-2:nth-child(1) .technology-card {
    animation-delay: .05s;
}

.tech-category.active .col-md-2:nth-child(2) .technology-card {
    animation-delay: .10s;
}

.tech-category.active .col-md-2:nth-child(3) .technology-card {
    animation-delay: .15s;
}

.tech-category.active .col-md-2:nth-child(4) .technology-card {
    animation-delay: .20s;
}

.tech-category.active .col-md-2:nth-child(5) .technology-card {
    animation-delay: .25s;
}

.tech-category.active .col-md-2:nth-child(6) .technology-card {
    animation-delay: .30s;
}


@keyframes cardReveal {

    from {
        opacity: 0;
        transform: translateY(25px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {

    .tech-heading h2 {
        font-size: 36px;
    }

    .tech-tabs {
        gap: 8px;
    }

    .tab-btn {
        padding: 10px 15px;
    }

}


@media (max-width: 575px) {

    .technology-section {
        padding: 65px 0;
    }

    .tech-heading h2 {
        font-size: 30px;
    }

    .tech-heading p {
        font-size: 14px;
    }

    .tech-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 5px 2px 15px;
        scrollbar-width: none;
    }

    .tech-tabs::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        flex-shrink: 0;
        padding: 9px 14px;
        font-size: 13px;
    }

    .technology-card {
        min-height: 155px;
        padding: 20px 5px 15px;
    }

    .technology-icon-circle {
        width: 58px;
        height: 58px;
    }

    .technology-icon-circle i {
        font-size: 28px;
    }

    .technology-card h5 {
        font-size: 14px;
    }

}



/* <!-- ==========================================
    products CSS
=========================================== --> */


.products-showcase-section {
    position: relative;
    padding: 100px 0;
    background: #f8fafc;
    overflow: hidden;
}


/* ===============================
   HEADING
================================ */

.products-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 45px;
}

.products-small-title {
    display: inline-block;
    margin-bottom: 12px;
    color: #1688ed;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.products-heading h2 {
    margin: 0;
    color: #101828;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
}

.products-heading h2 span {
    color: #1688ed;
}

.products-heading p {
    max-width: 460px;
    margin: 0 0 4px;
    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}


/* ===============================
   SLIDER
================================ */

.products-slider-wrapper {
    position: relative;
}

.products-slider {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 5px 25px;
}

.products-slider::-webkit-scrollbar {
    display: none;
}


/* ===============================
   PRODUCT CARD
================================ */

.product-card {
    position: relative;
    flex: 0 0 380px;
    height: 510px;
    border-radius: 20px;
    overflow: hidden;
    background: #101828;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(16, 24, 40, .12);

    transition:
        transform .5s cubic-bezier(.2,.8,.2,1),
        box-shadow .5s ease;
}

.product-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.2,.8,.2,1),
        filter .5s ease;
}


/* ===============================
   DARK GRADIENT
================================ */

.product-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 15, 35, .97) 0%,
            rgba(5, 15, 35, .78) 35%,
            rgba(5, 15, 35, .15) 75%,
            rgba(5, 15, 35, .05) 100%
        );

    transition: .5s ease;
}


/* ===============================
   CARD HOVER
================================ */

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(16, 24, 40, .22);
}

.product-card:hover img {
    transform: scale(1.09);
}

.product-card:hover .product-overlay {
    background:
        linear-gradient(
            to top,
            rgba(5, 15, 35, 1) 0%,
            rgba(5, 15, 35, .75) 45%,
            rgba(5, 15, 35, .12) 100%
        );
}


/* ===============================
   CONTENT
================================ */

.product-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 2;

    transform: translateY(5px);

    transition: transform .5s ease;
}

.product-card:hover .product-content {
    transform: translateY(0);
}


/* ===============================
   ICON
================================ */

.product-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    margin-bottom: 17px;

    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(10px);

    color: #ffffff;
    font-size: 19px;

    transition: all .4s ease;
}

.product-card:hover .product-icon {
    background: #1688ed;
    transform: translateY(-4px) rotate(-3deg);
}


/* ===============================
   CATEGORY
================================ */

.product-category {
    display: block;

    margin-bottom: 7px;

    color: #8fcaff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ===============================
   TITLE
================================ */

.product-content h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}


/* ===============================
   DESCRIPTION
================================ */

.product-content p {
    margin: 0 0 18px;

    color: rgba(255,255,255,.82);

    font-size: 14px;
    line-height: 1.65;

    max-width: 330px;
}


/* ===============================
   LINK
================================ */

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all .3s ease;
}

.product-link i {
    transition: transform .3s ease;
}

.product-link:hover {
    color: #8fcaff;
}

.product-link:hover i {
    transform: translateX(6px);
}


/* ===============================
   ARROWS
================================ */

.product-arrow {
    position: absolute;

    top: 50%;
    z-index: 10;

    width: 52px;
    height: 52px;

    border: 1px solid #e4e7ec;
    border-radius: 50%;

    background: #ffffff;

    color: #101828;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(16,24,40,.12);

    transition: all .3s ease;
}

.product-arrow:hover {
    color: #ffffff;
    background: #1688ed;
    border-color: #1688ed;

    transform: translateY(-50%) scale(1.08);
}

.product-prev {
    left: -26px;
    transform: translateY(-50%);
}

.product-next {
    right: -26px;
    transform: translateY(-50%);
}


/* ===============================
   BOTTOM
================================ */

.products-bottom {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-top: 15px;
}

.products-progress {
    flex: 1;
    height: 3px;
    background: #e4e7ec;
    border-radius: 20px;
    overflow: hidden;
}

.products-progress span {
    display: block;

    width: 16.66%;
    height: 100%;

    background: #1688ed;

    border-radius: 20px;

    transition: width .5s ease;
}

.products-counter {
    min-width: 50px;

    color: #98a2b3;

    font-size: 13px;
    font-weight: 600;
}

.products-counter #productCurrent {
    color: #101828;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .products-heading {
        display: block;
    }

    .products-heading p {
        margin-top: 18px;
    }

    .product-card {
        flex-basis: 340px;
        height: 480px;
    }

    .product-prev {
        left: 10px;
    }

    .product-next {
        right: 10px;
    }

}


@media (max-width: 575px) {

    .products-showcase-section {
        padding: 70px 0;
    }

    .products-heading h2 {
        font-size: 32px;
    }

    .products-heading p {
        font-size: 14px;
    }

    .products-slider {
        gap: 15px;
    }

    .product-card {
        flex: 0 0 calc(100vw - 45px);
        height: 450px;
        border-radius: 17px;
    }

    .product-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .product-content h3 {
        font-size: 25px;
    }

    .product-arrow {
        display: none;
    }

}




/* =========================================
   ICON
========================================= */

.service-icon {
    position: relative;
    z-index: 3;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    margin-bottom: 28px;

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}

.service-icon i {
    color: #ffffff;
    font-size: 25px;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) rotate(-3deg);
}


/* Icon Colors */

.icon-purple {
    background: linear-gradient(135deg, #9575cd, #673ab7);
    box-shadow: 0 8px 25px rgba(103, 58, 183, .25);
}

.icon-blue {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    box-shadow: 0 8px 25px rgba(37, 99, 235, .25);
}

.icon-pink {
    background: linear-gradient(135deg, #f472b6, #db2777);
    box-shadow: 0 8px 25px rgba(219, 39, 119, .25);
}

.icon-orange {
    background: linear-gradient(135deg, #fb923c, #ea580c);
    box-shadow: 0 8px 25px rgba(234, 88, 12, .25);
}

.icon-green {
    background: linear-gradient(135deg, #84cc16, #4d7c0f);
    box-shadow: 0 8px 25px rgba(77, 124, 15, .25);
}

.icon-cyan {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    box-shadow: 0 8px 25px rgba(8, 145, 178, .25);
}


/* =========================================
   CONTENT
========================================= */

.service-content {
    position: relative;
    z-index: 3;
}

.service-content h3 {
    color: #0f172a;

    font-size: 23px;
    font-weight: 700;

    margin-bottom: 15px;

    transition: color .35s ease;
}

.service-content p {
    color: #64748b;

    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 22px;

    transition: color .35s ease;
}


/* Hover Text */

.service-card:hover .service-content h3 {
    color: #ffffff;
}

.service-card:hover .service-content p {
    color: rgba(255,255,255,.82);
}


/* =========================================
   READ MORE
========================================= */

.service-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #2563eb;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: all .35s ease;
}

.service-content a i {
    transition: transform .35s ease;
}

.service-content a:hover {
    color: #ffffff;
}

.service-content a:hover i {
    transform: translateX(6px);
}


/* =========================================
   VIEW ALL
========================================= */

.services-view-all {
    margin-top: 45px;
}

.services-view-all p {
    color: #64748b;
    font-size: 15px;
}

.services-view-all a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;

    transition: all .3s ease;
}

.services-view-all a i {
    transition: transform .3s ease;
}

.services-view-all a:hover {
    color: #0f172a;
}

.services-view-all a:hover i {
    transform: translateX(5px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .services-section-title h2 {
        font-size: 36px;
    }

    .service-card {
        min-height: 350px;
    }

}


@media (max-width: 576px) {

    .services-section-title h2 {
        font-size: 30px;
    }

    .services-section-title p {
        font-size: 15px;
    }

    .service-card {
        min-height: 330px;
        padding: 28px 24px;
    }

    .service-content h3 {
        font-size: 21px;
    }

}

/*--------------------------------------------------------------
# Featured Departments Section
--------------------------------------------------------------*/
.featured-departments .specialty-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-departments .specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.featured-departments .specialty-content {
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-departments .specialty-meta {
  margin-bottom: 15px;
}

.featured-departments .specialty-meta .specialty-label {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 20px;
}

.featured-departments h3 {
  font-size: 28px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.featured-departments .specialty-card p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  flex: 1;
}

.featured-departments .specialty-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.featured-departments .specialty-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.featured-departments .specialty-features span i {
  color: var(--accent-color);
  font-size: 16px;
}

.featured-departments .specialty-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.featured-departments .specialty-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateX(5px);
}

.featured-departments .specialty-link i {
  transition: transform 0.3s ease;
}

.featured-departments .specialty-link:hover i {
  transform: translateX(3px);
}

.featured-departments .specialty-visual {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.featured-departments .specialty-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-departments .specialty-visual .visual-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.featured-departments .specialty-visual .visual-overlay i {
  color: var(--accent-color);
  font-size: 24px;
}

.featured-departments .specialty-card:hover .specialty-visual img {
  transform: scale(1.08);
}

.featured-departments .department-highlight {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.featured-departments .department-highlight:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  transform: translateY(-3px);
}

.featured-departments .highlight-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea 30%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.featured-departments .highlight-icon i {
  color: var(--contrast-color);
  font-size: 32px;
}

.featured-departments h4 {
  font-size: 22px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.featured-departments .department-highlight p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.featured-departments .highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.featured-departments .highlight-list li {
  padding: 8px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  position: relative;
}

.featured-departments .highlight-list li:before {
  content: "→";
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 10px;
}

.featured-departments .highlight-cta {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-departments .highlight-cta:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.featured-departments .emergency-banner {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #667eea 30%));
  border-radius: 20px;
  padding: 40px;
  margin-top: 60px;
  color: var(--contrast-color);
}

.featured-departments .emergency-banner h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.featured-departments .emergency-banner p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.featured-departments .emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 16px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.featured-departments .emergency-btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
  color: var(--accent-color);
}

.featured-departments .emergency-btn i {
  font-size: 18px;
}

@media (max-width: 992px) {
  .featured-departments .specialty-card {
    flex-direction: column;
  }

  .featured-departments .specialty-visual {
    height: 200px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .featured-departments .specialty-content {
    padding: 30px 25px;
  }

  .featured-departments h3 {
    font-size: 24px;
  }

  .featured-departments .department-highlight {
    padding: 30px 20px;
    text-align: center;
  }

  .featured-departments .highlight-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .featured-departments .highlight-icon i {
    font-size: 24px;
  }

  .featured-departments h4 {
    font-size: 20px;
  }

  .featured-departments .emergency-banner {
    padding: 30px 25px;
    text-align: center;
  }

  .featured-departments .emergency-banner h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .featured-departments .emergency-banner .emergency-btn {
    margin-top: 20px;
    padding: 14px 25px;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 0px 0;
}

.featured-services .featured-service-main {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-services .service-image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.featured-services .service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-services .service-image-wrapper:hover img {
  transform: scale(1.02);
}

.featured-services .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 20%) 0%, transparent 70%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px;
}

.featured-services .service-badge {
  background: var(--surface-color);
  padding: 16px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.featured-services .service-badge i {
  font-size: 20px;
  color: var(--accent-color);
}

.featured-services .service-badge span {
  font-weight: 500;
  color: var(--heading-color);
  font-size: 14px;
}

.featured-services .service-details {
  padding: 40px 0 0 0;
}

.featured-services .service-details h2 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.featured-services .service-details p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 32px;
}

.featured-services .main-cta {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.featured-services .main-cta::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent-color);
  transition: transform 0.3s ease;
}

.featured-services .main-cta:hover {
  color: var(--heading-color);
}

.featured-services .main-cta:hover::after {
  transform: scaleX(1.1);
}

.featured-services .services-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 60px;
}

.featured-services .service-item {
  padding: 32px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.featured-services .service-item:last-child {
  border-bottom: none;
}

.featured-services .service-item:hover {
  transform: translateX(8px);
}

.featured-services .service-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.featured-services .service-icon-wrapper i {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-item:hover .featured-services .service-icon-wrapper {
  background: var(--accent-color);
  transform: scale(1.1);
}

.service-item:hover .featured-services .service-icon-wrapper i {
  color: var(--contrast-color);
}

.featured-services .service-info {
  flex: 1;
}

.featured-services .service-info h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.4;
}

.featured-services .service-info p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 12px;
}

.featured-services .service-link {
  font-size: 13px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.featured-services .service-link:hover {
  color: var(--heading-color);
}

.featured-services .specialties-grid {
  margin-top: 80px;
}

.featured-services .specialty-card {
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 50px;
}

.featured-services .specialty-card:hover {
  transform: translateY(-5px);
}

.featured-services .specialty-card:hover .specialty-image img {
  transform: scale(1.05);
}

.featured-services .specialty-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  position: relative;
}

.featured-services .specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-services .specialty-content h5 {
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.featured-services .specialty-content span {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .featured-services .services-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }

  .featured-services .service-details h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .featured-services {
    padding: 60px 0;
  }

  .featured-services .service-image-wrapper {
    height: 280px;
  }

  .featured-services .service-overlay {
    padding: 24px;
  }

  .featured-services .service-details {
    padding-top: 24px;
  }

  .featured-services .service-details h2 {
    font-size: 24px;
  }

  .featured-services .service-details p {
    font-size: 15px;
  }

  .featured-services .service-item {
    padding: 24px 0;
  }

  .featured-services .specialties-grid {
    margin-top: 50px;
  }

  .featured-services .specialty-image {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .featured-services .specialty-content h5 {
    font-size: 14px;
  }

  .featured-services .specialty-content span {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Find A Doctor Section
--------------------------------------------------------------*/
.find-a-doctor .search-section {
  max-width: 100%;
  margin: 0 auto;
}

.find-a-doctor .search-section .search-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.find-a-doctor .search-section .search-subtitle {
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 300;
}

.find-a-doctor .search-section .search-form .search-input-group {
  display: flex;
  align-items: stretch;
  background: var(--surface-color);
  border-radius: 60px;
  padding: 8px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 94%);
  transition: all 0.4s ease;
}

.find-a-doctor .search-section .search-form .search-input-group:focus-within {
  box-shadow: 0 25px 80px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.find-a-doctor .search-section .search-form .input-wrapper,
.find-a-doctor .search-section .search-form .select-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.find-a-doctor .search-section .search-form .input-wrapper i,
.find-a-doctor .search-section .search-form .select-wrapper i {
  position: absolute;
  left: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 1.1rem;
  z-index: 2;
}

.find-a-doctor .search-section .search-form .form-control,
.find-a-doctor .search-section .search-form .form-select {
  border: none;
  background: transparent;
  padding: 20px 20px 20px 50px;
  font-size: 1rem;
  color: var(--default-color);
  border-radius: 0;
}

.find-a-doctor .search-section .search-form .form-control:focus,
.find-a-doctor .search-section .search-form .form-select:focus {
  box-shadow: none;
  background: transparent;
}

.find-a-doctor .search-section .search-form .form-control::placeholder,
.find-a-doctor .search-section .search-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: 300;
}

.find-a-doctor .search-section .search-form .search-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  padding: 18px 32px;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.find-a-doctor .search-section .search-form .search-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.find-a-doctor .search-section .search-form .search-btn i {
  font-size: 1.1rem;
}

.find-a-doctor .doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.find-a-doctor .doctor-profile {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.find-a-doctor .doctor-profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.find-a-doctor .doctor-profile .profile-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.find-a-doctor .doctor-profile .profile-header .doctor-avatar {
  position: relative;
  flex-shrink: 0;
}

.find-a-doctor .doctor-profile .profile-header .doctor-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
}

.find-a-doctor .doctor-profile .profile-header .doctor-avatar .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid var(--surface-color);
}

.find-a-doctor .doctor-profile .profile-header .doctor-avatar .status-indicator.available {
  background: #10b981;
}

.find-a-doctor .doctor-profile .profile-header .doctor-avatar .status-indicator.busy {
  background: #f59e0b;
}

.find-a-doctor .doctor-profile .profile-header .doctor-avatar .status-indicator.offline {
  background: color-mix(in srgb, var(--default-color), transparent 40%);
}

.find-a-doctor .doctor-profile .profile-header .doctor-details {
  flex: 1;
}

.find-a-doctor .doctor-profile .profile-header .doctor-details h4 {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.find-a-doctor .doctor-profile .profile-header .doctor-details .specialty-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.find-a-doctor .doctor-profile .profile-header .doctor-details .experience-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.find-a-doctor .doctor-profile .profile-header .doctor-details .experience-info i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  font-size: 1rem;
}

.find-a-doctor .doctor-profile .rating-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.find-a-doctor .doctor-profile .rating-section .stars {
  display: flex;
  gap: 2px;
}

.find-a-doctor .doctor-profile .rating-section .stars i {
  color: #fbbf24;
  font-size: 1rem;
}

.find-a-doctor .doctor-profile .rating-section .rating-score {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--heading-color);
}

.find-a-doctor .doctor-profile .rating-section .review-count {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
}

.find-a-doctor .doctor-profile .action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.find-a-doctor .doctor-profile .action-buttons .btn-secondary,
.find-a-doctor .doctor-profile .action-buttons .btn-primary {
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid;
}

.find-a-doctor .doctor-profile .action-buttons .btn-secondary:hover,
.find-a-doctor .doctor-profile .action-buttons .btn-primary:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.find-a-doctor .doctor-profile .action-buttons .btn-secondary {
  background: transparent;
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.find-a-doctor .doctor-profile .action-buttons .btn-secondary:hover {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.find-a-doctor .doctor-profile .action-buttons .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.find-a-doctor .doctor-profile .action-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
}

.find-a-doctor .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 16px 32px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.find-a-doctor .btn-view-all:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.find-a-doctor .btn-view-all i {
  transition: transform 0.3s ease;
}

.find-a-doctor .btn-view-all:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .find-a-doctor .search-section .search-title {
    font-size: 2rem;
  }

  .find-a-doctor .search-section .search-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .find-a-doctor .search-section .search-input-group {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 24px;
  }

  .find-a-doctor .search-section .search-input-group .search-btn {
    border-radius: 16px;
    justify-content: center;
  }

  .find-a-doctor .search-section .search-input-group .form-control,
  .find-a-doctor .search-section .search-input-group .form-select {
    padding: 16px 20px;
  }

  .find-a-doctor .search-section .search-input-group .input-wrapper i,
  .find-a-doctor .search-section .search-input-group .select-wrapper i {
    display: none;
  }

  .find-a-doctor .doctors-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .find-a-doctor .doctor-profile {
    padding: 1.5rem;
  }

  .find-a-doctor .doctor-profile .profile-header {
    gap: 1rem;
  }

  .find-a-doctor .doctor-profile .profile-header .doctor-avatar img {
    width: 60px;
    height: 60px;
  }

  .find-a-doctor .doctor-profile .profile-header .doctor-details h4 {
    font-size: 1.25rem;
  }

  .find-a-doctor .doctor-profile .action-buttons {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .find-a-doctor .search-section .search-title {
    font-size: 1.75rem;
  }

  .find-a-doctor .doctor-profile {
    border-radius: 16px;
    padding: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0 100px;
}

.call-to-action .hero-content {
  margin-bottom: 120px;
}

.call-to-action .hero-content .content-wrapper {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .call-to-action .hero-content .content-wrapper {
    padding-right: 0;
    margin-bottom: 60px;
    text-align: center;
  }
}

.call-to-action .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--heading-color);
}

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

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

.call-to-action .hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 50px;
}

.call-to-action .hero-content .cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 992px) {
  .call-to-action .hero-content .cta-wrapper {
    align-items: center;
  }
}

.call-to-action .hero-content .cta-wrapper .primary-cta,
.call-to-action .hero-content .cta-wrapper .secondary-cta {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  width: fit-content;
}

.call-to-action .hero-content .cta-wrapper .primary-cta span,
.call-to-action .hero-content .cta-wrapper .secondary-cta span {
  margin-right: 8px;
}

.call-to-action .hero-content .cta-wrapper .primary-cta i,
.call-to-action .hero-content .cta-wrapper .secondary-cta i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.call-to-action .hero-content .cta-wrapper .primary-cta:hover i,
.call-to-action .hero-content .cta-wrapper .secondary-cta:hover i {
  transform: translateX(4px);
}

.call-to-action .hero-content .cta-wrapper .primary-cta {
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 2px;
}

.call-to-action .hero-content .cta-wrapper .primary-cta:hover {
  color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.call-to-action .hero-content .cta-wrapper .secondary-cta {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.call-to-action .hero-content .cta-wrapper .secondary-cta:hover {
  color: var(--default-color);
}

.call-to-action .hero-content .image-container {
  position: relative;
}

.call-to-action .hero-content .image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .call-to-action .hero-content .image-container img {
    height: 300px;
  }
}

.call-to-action .features-section {
  margin-bottom: 120px;
}

.call-to-action .features-section .feature-block {
  padding: 60px 40px;
  text-align: left;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
}

@media (max-width: 992px) {
  .call-to-action .features-section .feature-block {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    text-align: center;
  }
}

.call-to-action .features-section .feature-block:last-child {
  border-right: none;
}

@media (max-width: 992px) {
  .call-to-action .features-section .feature-block:last-child {
    border-bottom: none;
  }
}

.call-to-action .features-section .feature-block .feature-icon {
  margin-bottom: 30px;
}

.call-to-action .features-section .feature-block .feature-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.call-to-action .features-section .feature-block h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.call-to-action .features-section .feature-block p {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.call-to-action .contact-block {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 60px 40px;
  border-radius: 4px;
}

.call-to-action .contact-block .contact-content h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .call-to-action .contact-block .contact-content h2 {
    font-size: 1.6rem;
  }
}

.call-to-action .contact-block .contact-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .call-to-action .contact-block .contact-content p {
    margin-bottom: 30px;
  }
}

.call-to-action .contact-block .contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

@media (max-width: 992px) {
  .call-to-action .contact-block .contact-actions {
    align-items: center;
  }
}

.call-to-action .contact-block .contact-actions .emergency-call {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.call-to-action .contact-block .contact-actions .emergency-call i {
  margin-right: 10px;
  font-size: 16px;
}

.call-to-action .contact-block .contact-actions .emergency-call:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.call-to-action .contact-block .contact-actions .contact-link {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.call-to-action .contact-block .contact-actions .contact-link:hover {
  color: var(--default-color);
}

@media (max-width: 992px) {
  .call-to-action .contact-block {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
}

.about .about-content h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.about .about-content p.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about .about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 576px) {
  .about .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.about .stats-grid .stat-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  transition: transform 0.3s ease;
}

.about .stats-grid .stat-item:hover {
  transform: translateY(-5px);
}

.about .stats-grid .stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.about .stats-grid .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.about .image-wrapper {
  position: relative;
}

.about .image-wrapper .main-image {
  border-radius: 12px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-wrapper .floating-image {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid var(--surface-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 768px) {
  .about .image-wrapper .floating-image {
    width: 150px;
    height: 150px;
    bottom: -20px;
    right: -20px;
    border-width: 6px;
  }
}

.about .image-wrapper .floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .values-section {
  margin-top: 120px;
}

.about .values-section h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.about .values-section .section-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.about .values-section .value-item {
  text-align: center;
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.about .values-section .value-item:hover {
  transform: translateY(-5px);
}

.about .values-section .value-item .value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.about .values-section .value-item .value-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.about .values-section .value-item h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.about .values-section .value-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.about .values-section .value-item:hover .value-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

.about .values-section .value-item:hover .value-icon i {
  color: var(--contrast-color);
}

.about .certifications-section {
  margin-top: 80px;
  padding: 4rem 0;
  background: color-mix(in srgb, var(--accent-color), transparent 98%);
  border-radius: 16px;
}

.about .certifications-section h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.about .certifications-section .section-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.about .certifications-section .certification-item {
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.about .certifications-section .certification-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .certifications-section .certification-item img {
  max-height: 60px;
  max-width: 100%;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.about .certifications-section .certification-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .about {
    padding: 80px 0;
  }

  .about .about-content {
    margin-bottom: 3rem;
  }

  .about .about-content h2 {
    font-size: 2.4rem;
  }

  .about .values-section {
    margin-top: 80px;
  }

  .about .image-wrapper .floating-image {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 2rem auto 0;
    display: block;
  }
}

@media (max-width: 768px) {
  .about .about-content h2 {
    font-size: 2rem;
  }

  .about .stats-grid .stat-item .stat-number {
    font-size: 2rem;
  }

  .about .values-section .value-item {
    margin-bottom: 2rem;
  }

  .about .certifications-section {
    margin-top: 60px;
    padding: 3rem 1rem;
  }
}

/*--------------------------------------------------------------
# Departments Tabs Section
--------------------------------------------------------------*/
.departments-tabs .section-label {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
  display: block;
}

.departments-tabs .medical-specialties {
  margin-top: 3rem;
}

.departments-tabs .specialty-navigation {
  margin-bottom: 2rem;
}

.departments-tabs .specialty-navigation .nav-pills {
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}

@media (max-width: 768px) {
  .departments-tabs .specialty-navigation .nav-pills {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.departments-tabs .specialty-navigation .department-tab {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border: none;
  border-radius: 0;
  color: var(--default-color);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

@media (max-width: 992px) {
  .departments-tabs .specialty-navigation .department-tab {
    font-size: 1rem;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .departments-tabs .specialty-navigation .department-tab {
    width: 100%;
    margin-bottom: 0;
  }
}

.departments-tabs .specialty-navigation .department-tab:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.departments-tabs .specialty-navigation .department-tab.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.departments-tabs .specialty-navigation .department-tab.active::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--accent-color);
}

@media (max-width: 768px) {
  .departments-tabs .specialty-navigation .department-tab.active::after {
    display: none;
  }
}

.departments-tabs .department-content {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 3rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .departments-tabs .department-content {
    padding: 2rem 1.5rem;
  }
}

.departments-tabs .department-layout {
  align-items: stretch;
}

.departments-tabs .department-image {
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.departments-tabs .department-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.departments-tabs .department-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .departments-tabs .department-image {
    height: 300px;
    margin-bottom: 2rem;
  }
}

.departments-tabs .department-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 992px) {
  .departments-tabs .department-info {
    height: auto;
  }
}

.departments-tabs .department-title {
  color: var(--heading-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .departments-tabs .department-title {
    font-size: 1.8rem;
  }
}

.departments-tabs .department-description {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.departments-tabs .service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.departments-tabs .service-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  transform: translateY(-2px);
}

.departments-tabs .service-icon {
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.departments-tabs .service-icon i {
  color: var(--contrast-color);
  font-size: 1.5rem;
}

.departments-tabs .service-content {
  flex: 1;
}

.departments-tabs .service-content h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.departments-tabs .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.departments-tabs .tab-pane {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.departments-tabs .tab-pane.show.active {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Departments Section
--------------------------------------------------------------*/
.departments .department-card {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.departments .department-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.departments .department-card:hover .department-image img {
  transform: scale(1.05);
}

.departments .department-card:hover .department-icon {
  transform: scale(1.1);
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
}

.departments .department-card:hover .learn-more {
  color: var(--accent-color);
}

.departments .department-card:hover .learn-more i {
  transform: translateX(5px);
}

.departments .department-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 24px;
  transition: all 0.4s ease;
  z-index: 2;
}

.departments .department-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.departments .department-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.departments .department-content {
  padding: 30px 25px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.departments .department-content h3 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1.3;
}

.departments .department-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.departments .department-content .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.departments .department-content .learn-more span {
  font-family: var(--heading-font);
}

.departments .department-content .learn-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .departments .department-card {
    margin-bottom: 20px;
  }

  .departments .department-image {
    height: 200px;
  }

  .departments .department-content {
    padding: 25px 20px 20px;
  }

  .departments .department-content h3 {
    font-size: 20px;
  }

  .departments .department-content p {
    font-size: 14px;
  }

  .departments .department-icon {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 15px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Department Details Section
--------------------------------------------------------------*/
.department-details .department-hero {
  padding: 2rem 0;
}

.department-details .department-hero .badge-wrap {
  margin-bottom: 1.5rem;
}

.department-details .department-hero .badge-wrap .specialty-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.department-details .department-hero .department-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.department-details .department-hero .department-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
  max-width: 90%;
}

.department-details .department-hero .key-highlights {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.department-details .department-hero .key-highlights .highlight-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.department-details .department-hero .key-highlights .highlight-item .highlight-number {
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.department-details .department-hero .key-highlights .highlight-item .highlight-text {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.department-details .department-hero .action-group {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.department-details .department-hero .action-group .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  border-radius: 0;
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--accent-color);
}

.department-details .department-hero .action-group .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateX(5px);
}

.department-details .department-hero .action-group .btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.department-details .department-hero .action-group .btn-secondary i {
  transition: transform 0.3s ease;
}

.department-details .department-hero .action-group .btn-secondary:hover {
  color: var(--accent-color);
}

.department-details .department-hero .action-group .btn-secondary:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .department-details .department-hero .department-title {
    font-size: 2.5rem;
  }

  .department-details .department-hero .key-highlights {
    gap: 1.5rem;
  }

  .department-details .department-hero .action-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.department-details .department-visual .image-container {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.department-details .department-visual .image-container .primary-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.department-details .department-visual .image-container .floating-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 280px;
}

.department-details .department-visual .image-container .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.department-details .department-visual .image-container .floating-card .card-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.department-details .department-visual .image-container .floating-card .card-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.department-details .department-visual .image-container .floating-card .card-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .department-details .department-visual {
    margin-top: 3rem;
  }

  .department-details .department-visual .image-container {
    min-height: 400px;
  }

  .department-details .department-visual .image-container .floating-card {
    bottom: 1rem;
    left: 1rem;
    max-width: 250px;
  }
}

.department-details .services-overview {
  margin-top: 8rem;
  margin-bottom: 6rem;
}

.department-details .services-overview .overview-header {
  text-align: center;
  margin-bottom: 4rem;
}

.department-details .services-overview .overview-header h3 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.department-details .services-overview .overview-header p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 600px;
  margin: 0 auto;
}

.department-details .services-overview .services-grid .service-item {
  text-align: left;
  padding: 2rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.department-details .services-overview .services-grid .service-item:hover {
  padding-left: 1rem;
}

.department-details .services-overview .services-grid .service-item:hover .service-icon {
  background-color: var(--accent-color);
}

.department-details .services-overview .services-grid .service-item:hover .service-icon i {
  color: var(--contrast-color);
}

.department-details .services-overview .services-grid .service-item .service-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.department-details .services-overview .services-grid .service-item .service-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.department-details .services-overview .services-grid .service-item h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.department-details .services-overview .services-grid .service-item p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 0;
}

.department-details .expert-care-section {
  margin-top: 6rem;
}

.department-details .expert-care-section .expert-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.department-details .expert-care-section .expert-content {
  padding-left: 3rem;
}

.department-details .expert-care-section .expert-content h3 {
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.department-details .expert-care-section .expert-content .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.department-details .expert-care-section .expert-content .expertise-list {
  margin-bottom: 3rem;
}

.department-details .expert-care-section .expert-content .expertise-list .expertise-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.department-details .expert-care-section .expert-content .expertise-list .expertise-item i {
  color: var(--accent-color);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.department-details .expert-care-section .expert-content .expertise-list .expertise-item span {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.6;
}

.department-details .expert-care-section .expert-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.department-details .expert-care-section .expert-content .contact-info .contact-item i {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.department-details .expert-care-section .expert-content .contact-info .contact-item div {
  display: flex;
  flex-direction: column;
}

.department-details .expert-care-section .expert-content .contact-info .contact-item div .contact-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.25rem;
}

.department-details .expert-care-section .expert-content .contact-info .contact-item div .contact-value {
  font-weight: 500;
  color: var(--default-color);
}

@media (max-width: 991px) {
  .department-details .expert-care-section .expert-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .department-details .expert-care-section .expert-content h3 {
    font-size: 1.875rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .service-item {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services .service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.services .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.services .service-image .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.services .service-image .service-overlay i {
  font-size: 3rem;
  color: var(--contrast-color);
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.services .service-image:hover img {
  transform: scale(1.05);
}

.services .service-image:hover .service-overlay {
  opacity: 0.9;
}

.services .service-image:hover .service-overlay i {
  transform: scale(1);
}

.services .service-content {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services .service-content h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.services .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.services .service-content .service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.services .service-content .service-features .feature-item {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--default-color);
}

.services .service-content .service-features .feature-item i {
  color: var(--accent-color);
  font-size: 0.75rem;
  margin-right: 8px;
}

.services .service-content .service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 5%);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.services .service-content .service-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.services .service-content .service-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-content .service-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .service-image {
    height: 200px;
  }

  .services .service-content {
    padding: 25px 20px;
  }

  .services .service-content h3 {
    font-size: 1.3rem;
  }

  .services .service-content p {
    font-size: 0.9rem;
  }

  .services .service-content .service-features .feature-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .services .service-features {
    flex-direction: column;
    gap: 10px;
  }

  .services .service-features .feature-item {
    justify-content: flex-start;
  }
}

/*--------------------------------------------------------------
# Service Details 2 Section
--------------------------------------------------------------*/
.service-details-2 .service-header .service-category span {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

.service-details-2 .service-header h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
}

@media (max-width: 768px) {
  .service-details-2 .service-header h2 {
    font-size: 2.2rem;
  }
}

.service-details-2 .service-header .lead {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 400;
  line-height: 1.5;
}

.service-details-2 .service-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-details-2 .service-details .detail-item .icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details-2 .service-details .detail-item .icon-wrapper i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.service-details-2 .service-details .detail-item .content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: var(--heading-color);
}

.service-details-2 .service-details .detail-item .content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin: 0;
}

.service-details-2 .service-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.service-details-2 .service-visual img {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-details-2 .service-visual .visual-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.service-details-2 .service-visual .stats-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details-2 .service-visual .stats-card .stat {
  text-align: center;
}

.service-details-2 .service-visual .stats-card .stat .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.service-details-2 .service-visual .stats-card .stat .label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  margin-top: 0.3rem;
}

.service-details-2 .service-overview {
  background: var(--surface-color);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.service-details-2 .service-overview h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .service-details-2 .service-overview h3 {
    font-size: 1.6rem;
  }
}

.service-details-2 .service-overview p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
}

.service-details-2 .service-overview .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 576px) {
  .service-details-2 .service-overview .features-grid {
    grid-template-columns: 1fr;
  }
}

.service-details-2 .service-overview .features-grid .feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
}

.service-details-2 .service-overview .features-grid .feature i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.service-details-2 .service-overview .features-grid .feature span {
  font-weight: 500;
  color: var(--heading-color);
}

.service-details-2 .service-overview .treatment-areas {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 2rem;
  border-radius: 16px;
}

.service-details-2 .service-overview .treatment-areas h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 600;
}

.service-details-2 .service-overview .treatment-areas .condition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.service-details-2 .service-overview .treatment-areas .condition-tags .tag {
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details-2 .service-overview .treatment-areas .condition-tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .service-details-2 .service-overview {
    padding: 2rem;
  }

  .service-details-2 .service-overview .treatment-areas {
    margin-top: 2rem;
  }
}

.service-details-2 .action-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-details-2 .action-card.primary {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 97%));
}

.service-details-2 .action-card.primary .card-header i {
  color: var(--accent-color);
}

.service-details-2 .action-card.primary .btn-action {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.service-details-2 .action-card.primary .btn-action:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-3px);
}

.service-details-2 .action-card.secondary {
  border-color: color-mix(in srgb, var(--heading-color), transparent 70%);
}

.service-details-2 .action-card.secondary .card-header i {
  color: var(--heading-color);
}

.service-details-2 .action-card.secondary .btn-action {
  background: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details-2 .action-card.secondary .btn-action:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.service-details-2 .action-card.tertiary {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.service-details-2 .action-card.tertiary .card-header i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details-2 .action-card.tertiary .btn-action {
  background: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details-2 .action-card.tertiary .btn-action:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.service-details-2 .action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-details-2 .action-card .card-header {
  margin-bottom: 1rem;
}

.service-details-2 .action-card .card-header i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-details-2 .action-card .card-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.service-details-2 .action-card p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.service-details-2 .action-card .card-footer .btn-action {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  width: 100%;
}

.service-details-2 .action-card .card-footer .availability {
  display: block;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 768px) {
  .service-details-2 .service-header {
    margin-bottom: 3rem;
  }

  .service-details-2 .service-header .service-category span {
    margin-bottom: 1rem;
  }

  .service-details-2 .service-details {
    margin-bottom: 3rem;
  }

  .service-details-2 .service-details .detail-item {
    margin-bottom: 2rem;
  }

  .service-details-2 .visual-overlay {
    position: static !important;
    margin-top: 1rem;
  }

  .service-details-2 .visual-overlay .stats-card {
    background: var(--surface-color);
    backdrop-filter: none;
  }
}

/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
.doctors .doctor-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.doctors .doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.doctors .doctor-card:hover .doctor-overlay {
  opacity: 1;
}

.doctors .doctor-image {
  position: relative;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
}

.doctors .doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.doctors .doctor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.doctors .doctor-overlay .social-links {
  display: flex;
  gap: 10px;
}

.doctors .doctor-overlay .social-links a {
  width: 35px;
  height: 35px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.doctors .doctor-overlay .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.doctors .doctor-overlay .social-links a i {
  font-size: 16px;
}

.doctors .doctor-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.doctors .doctor-content .specialty {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
}

.doctors .doctor-content-solution p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.doctors .doctor-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);

  /* 4 लाइन तक टेक्स्ट दिखे */
  /* display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.doctors .doctor-meta {
  margin-bottom: 20px;
}

.doctors .doctor-meta .experience,
.doctors .doctor-meta .department {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 8px;
}

.doctors .doctor-meta .experience i,
.doctors .doctor-meta .department i {
  color: var(--accent-color);
  font-size: 14px;
}

.doctors .doctor-meta .department {
  margin-bottom: 0;
}

.doctors .btn-appointment {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.doctors .btn-appointment:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .doctors .doctor-card {
    padding: 20px;
  }

  .doctors .doctor-image {
    width: 120px;
    height: 120px;
  }

  .doctors .doctor-content h4 {
    font-size: 20px;
  }

  .doctors .doctor-content .specialty {
    font-size: 14px;
  }

  .doctors .doctor-content p {
    font-size: 13px;
  }

  .doctors .btn-appointment {
    padding: 10px 25px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Appointmnet Section
--------------------------------------------------------------*/
.appointmnet .booking-wrapper {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 60px 40px;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.appointmnet .booking-header {
  margin-bottom: 50px;
}

.appointmnet .booking-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.appointmnet .booking-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.appointmnet .booking-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  padding: 30px 0;
}

.appointmnet .booking-steps .step {
  text-align: center;
  flex: 1;
  max-width: 200px;
  position: relative;
}

.appointmnet .booking-steps .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -15px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
  z-index: 1;
}

.appointmnet .booking-steps .step .step-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  position: relative;
  z-index: 2;
}

.appointmnet .booking-steps .step .step-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.appointmnet .booking-steps .step .step-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.appointmnet .booking-steps .step .step-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

@media (max-width: 768px) {
  .appointmnet .booking-steps {
    flex-direction: column;
    gap: 20px;
  }

  .appointmnet .booking-steps .step {
    max-width: none;
  }

  .appointmnet .booking-steps .step:not(:last-child)::after {
    display: none;
  }
}

.appointmnet .appointment-form .php-email-form input[type=text],
.appointmnet .appointment-form .php-email-form input[type=email],
.appointmnet .appointment-form .php-email-form input[type=tel],
.appointmnet .appointment-form .php-email-form input[type=date],
.appointmnet .appointment-form .php-email-form select,
.appointmnet .appointment-form .php-email-form textarea {
  color: var(--default-color);
  background-color: transparent;
  font-size: 14px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 15px;
  transition: all 0.3s ease;
}

.appointmnet .appointment-form .php-email-form input[type=text]:focus,
.appointmnet .appointment-form .php-email-form input[type=email]:focus,
.appointmnet .appointment-form .php-email-form input[type=tel]:focus,
.appointmnet .appointment-form .php-email-form input[type=date]:focus,
.appointmnet .appointment-form .php-email-form select:focus,
.appointmnet .appointment-form .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
  outline: none;
}

.appointmnet .appointment-form .php-email-form input[type=text]::placeholder,
.appointmnet .appointment-form .php-email-form input[type=email]::placeholder,
.appointmnet .appointment-form .php-email-form input[type=tel]::placeholder,
.appointmnet .appointment-form .php-email-form input[type=date]::placeholder,
.appointmnet .appointment-form .php-email-form select::placeholder,
.appointmnet .appointment-form .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointmnet .appointment-form .php-email-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.appointmnet .appointment-form .php-email-form .btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
}

.appointmnet .appointment-form .php-email-form .btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.appointmnet .appointment-form .php-email-form .btn-book:active {
  transform: translateY(0);
}

.appointmnet .emergency-info {
  margin-top: 30px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  text-align: center;
}

.appointmnet .emergency-info p {
  margin: 0;
  color: var(--heading-color);
  font-size: 0.9rem;
}

.appointmnet .emergency-info p i {
  color: #dc3545;
  margin-right: 8px;
}

.appointmnet .emergency-info p strong {
  color: #dc3545;
  font-weight: 700;
}

@media (max-width: 768px) {
  .appointmnet .booking-wrapper {
    padding: 40px 25px;
  }

  .appointmnet .booking-header h2 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Featured Testimonials Section
--------------------------------------------------------------*/
.featured-testimonials .testimonial-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s;
}

.featured-testimonials .testimonial-item .stars {
  margin-bottom: 16px;
  color: #f7b50d;
}

.featured-testimonials .testimonial-item .stars i {
  font-size: 18px;
  margin: 0 2px;
}

.featured-testimonials .testimonial-item p {
  font-size: 15px;
  font-style: italic;
  margin: 0 0 20px 0;
}

.featured-testimonials .testimonial-item .profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.featured-testimonials .testimonial-item .profile .testimonial-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.featured-testimonials .testimonial-item .profile .info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.featured-testimonials .testimonial-item .profile .info h4 i {
  font-size: 14px;
  color: var(--accent-color);
  margin-left: 4px;
}

.featured-testimonials .testimonial-item .profile .info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.featured-testimonials .swiper-wrapper {
  height: auto !important;
}

.featured-testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.featured-testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
}

.featured-testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 1199.98px) {
  .featured-testimonials .testimonial-item {
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  color: #FFD700;
}

.testimonials .testimonial-item .stars i {
  margin-right: 2px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
    font-size: 16px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author div span {
    font-size: 13px;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  margin-bottom: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item:last-child {
  border-bottom: none;
}

.faq .faq-item.faq-active .faq-header .faq-number {
  color: var(--accent-color);
  font-weight: 500;
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  color: var(--accent-color);
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  opacity: 0;
  transform: rotate(-90deg);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 40px 0;
  cursor: pointer;
  gap: 0;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
  transform: scale(1.1);
}

.faq .faq-item .faq-header:hover .faq-toggle {
  transform: scale(1.1);
}

.faq .faq-item .faq-header .faq-number {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 300;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--heading-color);
  transition: all 0.3s ease;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-right: 20px;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 80px 40px 80px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 30px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 60px;
    font-size: 1rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1.1rem;
    margin-right: 15px;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 20px;
    height: 20px;
    font-size: 16px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 60px 30px 60px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .faq .faq-item .faq-header {
    padding: 25px 0;
  }

  .faq .faq-item .faq-header .faq-number {
    width: 50px;
    font-size: 0.9rem;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
    margin-right: 10px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 50px 25px 50px;
  }

  .faq .faq-item .faq-content .content-inner p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact .contact-info-item .info-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .contact-info-item .info-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-item .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.contact .contact-info-item .info-content p:last-child {
  margin-bottom: 0;
}

.contact .contact-form-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 0px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.contact .contact-form-card h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-form-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact .contact-form-card .form-control {
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 15px 20px;
  height: calc(3.5rem + 2px);
  background-color: var(--surface-color);
  color: var(--default-color);
  margin-bottom: 20px;
}

.contact .contact-form-card .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-card .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-card textarea.form-control {
  min-height: 150px;
  margin-bottom: 25px;
}

.contact .btn-submit {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
}

.contact .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact .map-container {
  position: relative;
  margin-top: 50px;
  padding: 0;
}

.contact .map-container .map-overlay {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--background-color), transparent);
  z-index: 10;
}

.contact .map-container iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form-card {
    padding: 30px;
  }

  .contact .map-container {
    margin-top: 40px;
  }

  .contact .map-container .map-overlay {
    top: -25px;
    height: 50px;
  }

  .contact .map-container iframe {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-wrapper {
    gap: 25px;
  }

  .contact .contact-info-item {
    gap: 15px;
  }

  .contact .contact-info-item .info-icon {
    width: 50px;
    height: 50px;
  }

  .contact .contact-form-card {
    padding: 25px;
  }

  .contact .contact-form-card h2 {
    font-size: 24px;
  }

  .contact .map-container {
    margin-top: 30px;
  }

  .contact .map-container .map-overlay {
    top: -20px;
    height: 40px;
  }

  .contact .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .contact .contact-form-card {
    padding: 20px;
  }

  .contact .map-container {
    margin-top: 25px;
  }

  .contact .map-container .map-overlay {
    top: -15px;
    height: 30px;
  }

  .contact .map-container iframe {
    height: 350px;
    border-radius: 8px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# 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 */
}

