@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,600&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap");
@import url("animate.css");
@import url("swiper.min.css");
@import url("linear.css");
@import url("fontawesome.css");

:root {
    --theme-color1: #213555;
    --theme-color2: #3E5879;
    /* --theme-color3: #FDF6F3; */
    --theme-color3: #fff4ee;
    /*     --theme-color3: #fff8f0; */
    --theme-color4: #fcede2;
    --theme-color5: #fff7f2db;           /* #F5EFE7 */
    --theme-color-dark: #213555;
    --theme-color-dark-rgb: 33, 53, 85;
    --theme-color-light: #FFFFFF;
    --text-color: #000000;
    --headings-color: #213555;
    --text-font: "Plus Jakarta Sans", sans-serif;
    --title-font: "Cormorant", serif;
    --style-font: "Alex Brush", cursive;
    --body-font-size: 16px;
    --body-line-height: 1.875;
    --body-font-weight: 400;
    --container-width: 1320px;
    --ll-brand-strip-bg: #3E5879;
    --light-blue:#b2cfe7;
    --bg-blue-theme:#37779B;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--theme-color4);
}

::-webkit-scrollbar-thumb {
    background: var(--theme-color1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--theme-color2);
}

body {
    margin: 0;
    background-color: #fff;
    color: var(--text-color);
    font-size: var(--body-font-size);
    font-family: var(--text-font);
    font-weight: var(--body-font-weight);
    line-height: var(--body-line-height);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

p,
li {
    margin-top: 0;
    color: #000;
    font-size: 18px;
}

img {
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--headings-color);
    font-family: var(--title-font);
}

.auto-container {
    position: static;
    max-width: var(--container-width);
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    font-size: 16px;
    line-height: 40px;
    color: var(--theme-color-light);
    text-align: center;
    cursor: pointer;
    background: var(--theme-color1);
    z-index: 100;
    display: none;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.scroll-to-top:hover {
    background: var(--theme-color-dark);
    color: #ffffff;
}

.theme-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-family: var(--title-font);
}

.theme-btn .btn-title {
    display: flex;
    align-items: center;
}

.btn-style-two {
    background: var(--theme-color4);
    border-radius: 3px;
    border: none;
    color: var(--theme-color-dark);
    font-family: var(--text-font);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 15px;
    overflow: hidden;
    padding: 17px 20px;
    position: relative;
    text-transform: uppercase;
    z-index: 0;
    margin: 0 8px;
}

.btn-style-two::before {
    position: absolute;
    inset: 0;
    content: "";
    background-color: var(--theme-color3);
    transform: scale(0, 1);
    transform-origin: top right;
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    z-index: -1;
}

.btn-style-two:hover::before {
    transform: scale(1, 1);
    transform-origin: bottom left;
}

.btn-style-two:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--theme-color1);
}

.main-header {
    position: relative;
    width: 100%;
    z-index: 999;
    background: var(--theme-color3);
    /* border-bottom: 1px solid rgba(33, 53, 85, 0.08); */
}

.main-header .auto-container,
.sticky-header .auto-container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
}



@media (min-width: 1400px) {
    .main-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        /* box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
    }
    .sticky-header {
        display: none !important;
    }
}

.main-header .outer-box {
    max-width: 100%;
    margin: 0 auto;
}

.main-header .header-lower {
    background: var(--theme-color3);
    padding:10px 0 10px;
}

.main-header .logo {
    display: block;
}

.main-header .logo a,
.mobile-menu .nav-logo a,
.sticky-header .logo a,
.ll-footer-logo {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.main-header .logo a img,
.mobile-menu .nav-logo a img,
.sticky-header .logo a img,
.ll-footer-logo img {
    height: 120px !important; /* Desktop Default */
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 1199px) {
    .mobile-menu .upper-box{
        padding: 14px !important;
    }
    .main-header .logo a img,
    .mobile-menu .nav-logo a img,
    .sticky-header .logo a img {
        height: 100px !important; /* iPad Size */
    }
}

@media (max-width: 767px) {
    .main-header .logo a img,
    .mobile-menu .nav-logo a img,
    .sticky-header .logo a img {
        height: 100px !important
        ; /* Mobile Size */
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.site-text-logo,
.site-text-tagline {
    display: block;
}

.site-text-logo {
    display: inline-block;
    color: var(--headings-color);
    font-family: var(--title-font);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.01em;
}

.site-text-tagline {
    display: inline-block;
    color: var(--bg-blue-theme);
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.main-header .main-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative; /* Anchor for mega menu */
}

.main-header .main-box .nav-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    position: relative;
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 50px;
}

.navigation.nav-left,
.navigation.nav-right {
    display: flex;
    align-items: center;
    gap: 50px;
    flex: 1;
    padding: 0;
    margin: 0;
}

@media (max-width: 1400px) {
    .navigation.nav-left,
    .navigation.nav-right {
        gap: 25px;
    }
}

.navigation.nav-left {
    justify-content: flex-start;
}

.navigation.nav-right {
    justify-content: flex-end;
}

.logo-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.logo-center img {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

@media (max-width: 1199px) {
    .logo-center {
        display: none;
    }
    .navigation-wrapper {
        gap: 0;
        display: block;
    }
}

/* Mobile Logo logic */
.main-header .nav-logo,
.sticky-header .nav-logo {
    display: none;
}

@media (max-width: 1199px) {
    .main-header .nav-logo,
    .sticky-header .nav-logo {
        display: block;
        margin-right: auto;
    }
    .nav-logo img{
        height: 100px;
    }
    
    .main-header .main-box,
    .sticky-header .inner-container {
        justify-content: space-between;
    }
    
    .main-menu .navigation .logo-item {
        display: none !important;
    }
}

.main-menu .navigation {
    display: flex;
    align-items: center;
    gap: 55px;
    margin: 0;
}

@media (max-width: 1400px) {
    .main-menu .navigation {
        gap: 30px;
    }
}

@media (max-width: 1280px) {
    .main-menu .navigation {
        gap: 20px;
    }
}

/* Response/Mobile logic */
.mobile-menu .navigation .logo-item,
.mobile-menu .navigation .logo-center {
    display: none !important;
}



.main-menu .navigation > li {
    position: relative;
    float: none;
    padding: 0;
    margin-right: 0;
}

.main-menu .navigation > li.mega-dropdown {
    position: static !important;
}

.main-menu .navigation > li > a {
    display: flex;
    align-items: center;
    color: var(--theme-color-dark);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.main-menu .navigation > li > a:hover {
    color: var(--theme-color1);
}

.main-menu .navigation > li.dropdown > a {
    gap: 8px;
    padding-right: 0;
}



.main-menu .navigation > li.dropdown > a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    position: static;
    transform: none;
}



.main-menu .navigation > li > ul {
    position: absolute;
    left: 50%;
    top: calc(100% + 24px);
    width: 220px;
    z-index: 100;
    padding: 0;
    background-color: #ffffff;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0 5px 1px rgba(0, 0, 0, 0.05);
    transition: all 300ms ease;
}

.main-menu .navigation > li.dropdown:hover > ul,
.main-menu .navigation > li.dropdown:focus-within > ul {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 18px);
}

.main-menu .navigation > li > ul > li {
    border-bottom: 1px solid #ebf1f5;
    transition: background 0.3s ease;
}

.main-menu .navigation > li > ul > li:last-child {
    border-bottom: none;
}

.main-menu .navigation > li > ul > li > a {
    display: block;
    padding: 10px 0;
    line-height: 29px;
    font-weight: 500;
    font-size: 18px;
    color: var(--theme-color-dark);
    margin: 0 30px;
}

.main-menu .navigation > li > ul > li:hover {
    background: #7f98c03d;
    color: black !important;
}

.main-menu .navigation > li > ul > li:hover > a {
    color: black !important;
}

.main-menu .navigation > li.treatments-dropdown > ul {
    width: 220px;
}

  .main-menu .navigation > li.mega-dropdown > .mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    z-index: 100;
    padding: 0;
    background: #ffffff;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 30px 70px rgba(33, 53, 85, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.main-menu .navigation > li.mega-dropdown:hover > .mega-menu,
.main-menu .navigation > li.mega-dropdown.open > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

@media (max-width: 1600px) {
    .main-menu .navigation > li.mega-dropdown > .mega-menu {
        max-width: 100%;
    }
}

@media (max-width: 1400px) {
    .main-menu .navigation > li.mega-dropdown > .mega-menu {
        max-width: 100%;
    }
    .ent-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 1280px) {
    .main-menu .navigation > li.mega-dropdown > .mega-menu {
        max-width: 100%;
    }
    .mega-menu-sidebar {
        flex: 0 0 220px !important;
    }
    .mega-menu-content {
        padding: 30px 40px !important;
    }
    .service-links li a {
        font-size: 15px !important;
    }
    .mega-menu-pane h3 {
        font-size: 18px !important;
    }
    .ent-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}


    .mega-menu-inner {
        display: flex;
        min-height: auto;
    }

    /* Sidebar Styles */
    .mega-menu-sidebar {
        flex: 0 0 280px;
        background: #fdf1eae0; /* Updated semi-transparent peach */
        padding: 20px 0;
        border-right: 1px solid rgba(33, 53, 85, 0.05);
    }

    .mega-menu-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mega-menu-nav li {
        padding: 14px 25px;
        margin: 4px 15px;
        border-radius: 12px; /* Rounded pill style from image */
        font-size: 17px;
        font-weight: 600;
        color: var(--theme-color1);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-family: var(--text-font);
    }

    .mega-menu-nav li::after {
        content: "\f178"; /* long-arrow-right like in image */
        font-family: "Font Awesome 6 Pro";
        font-size: 13px;
        font-weight: 400;
        line-height: 1;
        opacity: 0.5;
        transition: all 0.3s ease;
    }

    .mega-menu-nav li:hover {
        background: rgba(33, 53, 85, 0.08); /* Light transparent dark blue shade */
        color: var(--theme-color1);
    }

    .mega-menu-nav li.active {
        background: #ffffff;
        color: var(--theme-color1);
        border-left: 5px solid var(--theme-color1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .mega-menu-nav li:hover::after,
    .mega-menu-nav li.active::after {
        opacity: 1;
        transform: translateX(5px);
    }

    /* Content Area Styles */
    .mega-menu-content {
        flex: 1;
        padding: 30px 20px;
        background: #fffaf7; /* Very light peach tint */
        position: relative;
    }

    .mega-menu-pane {
        display: none;
        animation: fadeIn 0.4s ease;
    }

    .mega-menu-pane.active {
        display: block;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(4px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .ent-services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 45px;
    }

    .service-group {
        display: flex;
        flex-direction: column;
    }
.mega-menu-pane h3 {
    background: transparent;
    padding: 0 0 10px 0;
    border-radius: 0;
    font-size: 19px;
    font-weight: 700;
    color: var(--theme-color1);
    /* margin-bottom: 20px; */
    border: none;
    border-bottom: 1px solid rgba(33, 53, 85, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mega-menu-pane h3 i {
    font-size: 24px;
    color: var(--theme-color1);
    opacity: 0.8;
}

    .service-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .service-links li {
        margin-bottom: 5px;
        /* padding: 8px 12px; */
        border-radius: 8px;
        position: relative;
        transition: all 0.3s ease;
    }

    .service-links li:hover {
        background: rgba(33, 53, 85, 0.08); /* Transparent blue background on hover */
    }
    

    .service-links li a {
        color: black;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        line-height: 1.4;
        padding: 5px 0;
    }

    .service-links li a::before {
        content: "\f105";
        font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", "Font Awesome 5 Pro", "Font Awesome 5 Free", "FontAwesome", sans-serif;
        font-weight: 900;
        width: 26px;
        height: 26px;
        background: #f5f5f5; /* Light grey circle */
        color: #213555; /* Dark blue arrow */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        font-size: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        flex-shrink: 0; /* Prevent shrinking */
    }

    .service-links li a:hover {
        color: var(--theme-color1);
        transform: translateX(5px);
    }

    .service-links li a:hover::before {
        background: var(--theme-color1);
        color: #fff;
    }

    /* Responsiveness */
    @media (max-width: 1100px) {
        .main-menu .navigation > li.mega-dropdown > .mega-menu {
            width: calc(100vw - 30px);
            left: 50%;
            transform: translateX(-50%) translateY(-12px);
        }
    }

    @media (max-width: 980px) {
        .mega-menu-inner {
            flex-direction: column;
            min-height: auto;
        }

        .mega-menu-sidebar {
            flex: 0 0 auto;
            width: 100%;
            padding: 20px 15px;
            border-right: none;
            background: #fafafa;
        }

        .mega-menu-nav li {
            padding: 15px 20px;
            font-size: 18px;
            background: #ffffff;
            margin-bottom: 15px;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.05);
            border-left: 6px solid var(--theme-color1); /* Thick blue bar on left */
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            font-weight: 500;
        }

        .mega-menu-nav li::after {
            content: "\f178"; /* arrow-right */
            font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free", "FontAwesome";
            font-weight: 900;
            font-size: 16px;
            color: var(--theme-color1);
            opacity: 1;
            transform: none;
        }

        .mega-menu-content {
            padding: 20px;
        }

        .ent-services-grid {
            grid-template-columns: 1fr; /* 1 row 1 service on mobile */
            gap: 0px;
        }

        .mega-menu-pane h3 {
            text-align: left; /* Left align on mobile */
            font-size: 20px;
            padding: 10px 15px;
        }
        
        .service-links li a {
            font-size: 16px;
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            text-align: left !important;
            white-space: nowrap; /* Prevent wrapping if desired, but flex usually handles it */
            padding: 0px !important;
        }
        
        .service-links li a::before {
            margin-bottom: 0 !important; /* Remove any bottom margin that causes stacking */
        }
    }


.main-header .header-lower .outer-box {
    display: flex;
    align-items: center;
    margin-left: 25px;
    position: relative;
}

.main-header .header-lower .outer-box::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    width: 1px;
    height: 42px;
    border-left: 1px solid rgba(47, 33, 27, 0.12);
    transform: translateY(-50%);
}

.sticky-header {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99999;
    background: var(--theme-color3);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.sticky-header.fixed-header {
    opacity: 1;
    visibility: visible;
}

.sticky-header .inner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 10px; /* Synchronized with main header */
    position: relative;
}

.sticky-header .nav-outer {
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
}

/* Perfectly Synchronized Sticky Navbar Gaps */
.sticky-header .main-menu .navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
}


.main-menu .navigation > li.logo-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    z-index: 100;
}

.main-menu .navigation > li.logo-item img {
    height: 90px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

.main-menu .navigation > li.logo-item a {
    padding: 0 !important;
}

.main-menu .navigation > li.logo-item a:hover {
    background: transparent !important;
}

/* Edge-to-edge alignment logic (Reference: Organico) */

/* Hide centered logo in mobile menu list */
.mobile-menu .navigation .logo-item {
    display: none !important;
}


.sticky-header .main-menu .navigation > li {
    margin: 0;
    padding: 0;
}

@media (max-width: 1400px) and (min-width: 1201px) {
    .main-header .auto-container,
    .sticky-header .auto-container {
        max-width: 100%;
        width: 100%;
        padding: 0 40px;
    }
    .navigation-wrapper,
    .navigation.nav-left,
    .navigation.nav-right,
    .main-menu .navigation {
        gap: 40px;
    }
    .main-menu .navigation > li > a {
        font-size: 20px;
    }
    .logo-center img {
        height: 100px;
    }
}

.sticky-header .outer-box,
.sticky-header .navbar-header {
    display: none;
}

.mobile-nav-toggler {
    position: relative;
    width: 52px;
    height: 52px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: var(--theme-color2);
    display: none;
    margin-left: 20px;
    border-radius: 16px;
    border: 1px solid rgba(140, 95, 77, 0.14);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 28px rgba(89, 59, 46, 0.08);
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 360px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: all 500ms ease;
}

@media (min-width: 768px) and (max-width: 991px) {
    .mobile-menu {
        width: 507px; /* Increased for iPad as requested */
    }
}

.mobile-menu .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
}

.mobile-menu .menu-box {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: linear-gradient(180deg, #fdf6f3 0%, #fffdfc 100%);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transform: translateX(101%);
    transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu .upper-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 22px 18px;
    border-bottom: 1px solid rgba(140, 95, 77, 0.1);
}

.mobile-menu .nav-logo {
    text-align: left;
    width: 100%;
}

.mobile-menu .nav-logo .site-text-logo {
    font-size: 38px;
}

.mobile-menu .nav-logo .site-text-tagline {
    color: var(--bg-blue-theme);
    font-size: 14px;
    letter-spacing: 0.14em;
}

.mobile-menu .close-btn {
    position: relative;
    top: 0;
    text-align: center;
    width: 44px;
    height: 44px;
    font-size: 16px;
    line-height: 44px;
    color: var(--theme-color2);
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50px);
    transition: all 0.5s ease;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 24px rgba(89, 59, 46, 0.08);
}

.mobile-menu .navigation {
    display: block;
    width: 100%;
    padding: 14px 18px 20px;
    border-top: none;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(140, 95, 77, 0.1);
}

.mobile-menu .navigation li > ul {
    display: none;
}

.mobile-menu .navigation li > ul > li {
    padding-left: 20px;
}


.mobile-menu .navigation li > a {
    display: block;
    line-height: 24px;
    padding: 14px 16px;
    font-size: 17px;
    color: var(--theme-color2);
    font-weight: 600;
    border-radius: 14px;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 16px;
    line-height: 44px;
    color: var(--theme-color2);
    cursor: pointer;
    z-index: 5;
    border-radius: 12px;
    background: rgba(253, 231, 218, 0.5);
    transition: all 0.3s ease;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.active span {
    transform: rotate(90deg);
}

/* Mobile Mega Menu Flattening */
.mobile-menu .navigation li > .mega-menu {
    display: none;
    position: relative;
    width: 100%;
    left: 0 !important;
    top: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 10px 0;
}

.mobile-menu .mega-menu-inner {
    display: block !important;
}

.mobile-menu .mega-menu-sidebar {
    display: none !important;
}

.mobile-menu .mega-menu-content {
    flex: none !important;
    padding: 10px 20px !important;
    background: transparent !important;
}

.mobile-menu .ent-services-grid {
    display: block !important;
}

.mobile-menu .service-group {
    margin-bottom: 10px;
}

.mobile-menu .mega-menu-pane {
    display: block !important;
    margin-bottom: 10px;
}

.mobile-menu .mega-menu-pane h3 {
    font-size: 17px !important;
    /* margin: 10px 0 !important; */
    padding: 10px 15px !important;
    color: var(--theme-color1);
    /* background: #ffffff !important; */
    border-left: 3px solid var(--theme-color1) !important;
    border-radius: 9px;
    box-shadow: 0 4px 15px rgba(33, 53, 85, 0.08);
    cursor: pointer;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--text-font);
    font-weight: 600;
}

.mobile-menu .mega-menu-pane h3::after {
    content: "\f178"; /* long-arrow-right */
    font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "FontAwesome";
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--theme-color1);
    position: static;
    width: auto;
    height: auto;
    background: transparent;
}



.mobile-menu .mega-menu-pane h3.active {
    background: #ffffff !important;
}



.mobile-menu .service-links {
    display: none;
    padding: 10px 15px 20px;
}

.mobile-menu .service-links li {
    padding-left: 0 !important;
    border-bottom: none !important;
}

.mobile-menu .service-links li a {
    padding: 5px 0px !important;
    font-size: 16px !important;
    color: var(--theme-color2);
    display: block;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu,
.mobile-menu-visible .mobile-menu .menu-backdrop,
.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-visible .mobile-menu .menu-box {
    transform: translateX(0%);
}

.mobile-menu-visible .mobile-menu .close-btn {
    transform: translateY(0);
}

.main-footer {
    background: #FDE7DA;
}

.ll-theme-footer {
    position: relative;
    background: var(--theme-color3);
    color: var(--theme-color-dark);
}

.ll-theme-footer .widgets-section {
    padding: 70px 0 40px;
}

.ll-theme-footer .footer-bottom {
    background: transparent;
    border-top: 1px solid rgba(33, 53, 85, 0.08);
}

.ll-theme-footer .footer-bottom .inner-container {
    padding: 22px 0;
}
.ll-footer-logo {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    min-width: auto;
}

.ll-footer-logo a {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.ll-footer-logo img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
}

.ll-footer-logo .logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.ll-footer-logo .site-text-logo {
    font-size: 38px;
}

.ll-footer-logo .site-text-tagline {
    color: var(--bg-blue-theme);
    font-size: 14px;
}

.ll-footer-copy {
    margin: 0  18px;
    color: #000;
    /* font-size: 18px; */
    line-height: 1.8;
    text-align: justify;
}

.ll-footer-contact-block,
.ll-footer-map-block {
    height: 100%;
}

.ll-theme-footer .widget-title {
    margin-bottom: 18px;
    color: var(--theme-color-dark);
    font-family: var(--title-font);
    font-size: 30px;
}

.ll-footer-contact,
.ll-footer-list,
.ll-footer-social {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ll-footer-contact li {
    display: flex;
    align-items: flex-start;
    text-align: justify !important;
    gap: 12px;
    margin-bottom: 14px;
    color: #000;
    font-size: 18px;
    line-height: 1.7;
}

.ll-footer-contact i {
    color: var(--theme-color1);
    /* margin-top: 6px; */
}

.ll-footer-map {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(89, 59, 46, 0.1);
    border: 1px solid rgba(140, 95, 77, 0.1);
    background: #fff;
}

.ll-footer-map iframe {
    width: 100%;
    height: 240px;
    border: 0;
    display: block;
}

.ll-footer-list li {
    margin-bottom: 12px;
}

.ll-footer-list a,
.ll-footer-contact a,
.ll-footer-logo:hover {
    color: #000;
    font-size: 18px;
}

.ll-footer-list a:hover,
.ll-footer-contact a:hover,
.ll-footer-logo:hover {
    color: var(--theme-color1);
}

.ll-footer-form {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 20px;
}

.ll-footer-form input {
    flex: 1;
    min-width: 0;
    height: 54px;
    border: 1px solid rgba(33, 53, 85, 0.12);
    background: rgba(255, 255, 255, 0.8);
    padding: 0 16px;
    color: var(--theme-color-dark);
    border-radius: 999px;
}

.ll-footer-form button {
    border: 0;
    height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--theme-color1);
    color: #fff;
    font-weight: 700;
}

.ll-footer-form button:hover {
    background: var(--theme-color-dark);
}

.ll-footer-social {
    display: flex;
    gap: 12px;
}

.ll-footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
    color: var(--theme-color1);
}

.ll-footer-social a:hover {
    background: var(--theme-color1);
    color: #fff;
}

.ll-footer-bottom-bar,
.ll-footer-bottom-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ll-footer-bottom-copy {
    color: #000;
    font-size: 18px;
    text-align: center;
}

/* .ll-footer-bottom-line {
    width: 70px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
} */

.ll-footer-bottom-text {
    color: #000;
    font-size: 18px;
    letter-spacing: 0.04em;
}

.ll-home {
    background: var(--theme-color3);
    color: var(--text-color);
}

.ll-home section {
    position: relative;
    overflow: hidden;
}

.ll-home .ll-section {
    padding: 40px 0;
}

.ll-home .ll-alt {
    background: var(--theme-color3);
}

.ll-home .ll-section-intro {
    max-width: 760px;
}

.ll-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 999px;
    background: rgba(253, 231, 218, 0.7);
    color: var(--theme-color1);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 8px;
}

.ll-home .ll-kicker-light {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.ll-home .ll-title {
    color: var(--theme-color-dark);
    font-family: var(--title-font);
    font-size: clamp(38px, 4.4vw, 66px);
    line-height: 0.95;
    margin: 22px 0 24px;
}

.ll-home .ll-title span,
.ll-home .ll-sec-title span {
    color: var(--theme-color1);
}

.ll-home .ll-copy,
.ll-home .ll-blog p,
.ll-home .ll-showcase-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #000;
    text-align: justify;
}

.ll-home .ll-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.ll-home .ll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 16px 28px;
    border-radius: 999px;
    border: 1px solid var(--theme-color1);
    background: var(--theme-color1);
    color: #fff;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ll-home .ll-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: all 0.6s ease;
    z-index: -1;
}

.ll-home .ll-btn:hover {
    background: var(--theme-color1);
    border-color: var(--theme-color1);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(33, 53, 85, 0.15);
}

.ll-home .ll-btn:hover::after {
    left: 100%;
}

.ll-home .ll-btn.is-light {
    background: transparent;
    color: var(--theme-color-dark);
    border-color: rgba(33, 53, 85, 0.2);
}

.ll-home .ll-btn.is-light:hover {
    background: var(--theme-color4);
    color: var(--theme-color-dark);
    border-color: var(--theme-color4);
}

.ll-home .ll-hero {
    padding: 0px 0 40px;
  background-color: #fcece4;/* Base Cream from Image */
    position: relative;
    overflow: hidden;
}

.ll-hero .auto-container {
    position: relative;
    z-index: 10; /* Ensure content is above the waves */
}

.ll-hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Below the content */
    pointer-events: none;
}

.ll-wave-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% auto;
}

.ll-wave-1 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23fdf6f3' fill-opacity='1' d='M0,160L48,154.7C96,149,192,139,288,154.7C384,171,480,213,576,213.3C672,213,768,171,864,138.7C960,107,1056,85,1152,96C1248,107,1344,149,1392,170.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
}

.ll-wave-2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23efe2db' fill-opacity='0.5' d='M0,224L60,229.3C120,235,240,245,360,224C480,203,600,149,720,128C840,107,960,117,1080,149.3C1200,181,1320,235,1380,261.3L1440,288L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    bottom: -20px;
}

.ll-home .ll-hero-swiper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ll-home .ll-hero-slide {
    width: 100% !important;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    cursor: pointer; /* Changed from grab to pointer */
}

.ll-home .ll-hero-photo img {
    transition: transform 6s ease-out;
}

.swiper-slide-active .ll-home .ll-hero-photo img {
    transform: scale(1.1);
}

.ll-home .ll-hero-slide .row {
    --bs-gutter-x: 24px;
}

.ll-home .ll-hero-copy-col,
.ll-home .ll-hero-media-col {
    display: flex;
    align-items: center;
}

.ll-home .ll-hero-copy-wrap {
    width: 100%;
    /* max-width: 620px; */
    padding: 30px 34px 30px 14px;
    position: relative;
}
/* 
.ll-home .ll-hero-copy-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 38px;
    width: 3px;
    height: 110px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(140, 95, 77, 0.95), rgba(253, 231, 218, 0.25));
} */

.ll-home .ll-title {
    /* max-width: 11ch; */
    margin-bottom: 20px;
    font-size: clamp(50px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.ll-home .ll-copy {
    /* max-width: 520px; */
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
}

.ll-home .ll-hero .ll-copy {
    color: black;
    /* border-left: 4px solid var(--theme-color1); */
    /* padding-left: 15px; */
}

/* New Hero Redesign Elements */
.ll-hero-nav {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.ll-hero-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(33, 53, 85, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: var(--theme-color1);
}

.ll-hero-next:hover {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.ll-home .ll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 30px;
    background: var(--theme-color1);
    color: #fff;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    border: 1px solid var(--theme-color1);
    text-align: center;
}

.ll-btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.4s ease;
}

.ll-home .ll-btn:hover {
    background: var(--theme-color2);
    border-color: var(--theme-color2);
    transform: translateY(-2px);
}

.ll-home .ll-btn:hover .ll-btn-icon {
    background: #fff;
    color: var(--theme-color1);
}

.ll-home .ll-hero-media {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.ll-hero-blobs {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ll-blob {
    position: absolute;
    transition: all 0.5s ease;
}

.ll-blob-1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(198, 135, 103, 0.25) 0%, transparent 70%);
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    left: -10%;
    top: -5%;
    z-index: 1;
}

.ll-blob-2 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(239, 226, 219, 0.35) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    right: -5%;
    bottom: 0;
    z-index: 0;
}

.ll-blob-3 {
    width: 250px;
    height: 250px;
    background: #fcece4;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
    left: 20%;
    bottom: 10%;
    opacity: 0.5;
    z-index: 0;
}

.ll-hero-orbit-line {
    position: absolute;
    width: 550px;
    height: 550px;
    /* border: 1px solid rgba(198, 135, 103, 0.3); */
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.ll-hero-photo-wrap {
    position: relative;
    padding: 20px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ll-hero-photo-oval {
    position: relative;
    width: 440px;
    height: 600px;
    border-radius: 220px; /* Modern Oval Shape */
    overflow: hidden;
    background: transparent;
    z-index: 2;
    border: none;
    box-shadow: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .ll-home .ll-about-photo{
        width: 400px !important;
    }
    .ll-home .ll-about-blob {
        position: absolute !important;
        left: 52px !important;
        top: 55px !important;
        width: 300px !important;
        height: 300px !important;
    }
.ll-home .ll-about-stripes {
    position: absolute !important;
    right: 39px !important;
    bottom: 50px !important;

}
.ll-home .ll-cta-image img{
    max-width:415px !important;
}
.ll-home .ll-cta-orbit {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0% !important;
    left: 0% !important;
}
.ll-home .ll-cta-card{
        padding: 25px 40px !important;
}
.ll-home .ll-testi-slider{
    margin-top: 20px !important;
}
.ll-home .ll-why-split-layout{
    padding: 20px 0 !important;
}
.ll-home .ll-why-item{
    margin-bottom: 10px !important;
}
.ll-home .ll-flourish{
    margin: 0 auto 0px;
}
.ll-home .ll-why-main-media img {
    width: 100% !important;
    max-width: 296px !important;
}
    .auto-container {
        padding: 0 80px !important;
    }
    .ll-hero-photo-oval {
        width: 420px;
        height: 550px;
    }
    .ll-home .ll-why-split-layout{
        padding: 10px 0;
    }
    .ll-home .ll-title {
    font-size: 60px;
    line-height: 1.0;

}
}

.ll-hero-seal {
    position: absolute;
    bottom: 60px;
    right: -30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(33, 53, 85, 0.08);
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: llFloatSeal 6s infinite ease-in-out;
}

.ll-seal-icon {
    width: 44px;
    height: 44px;
    background: var(--theme-color1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.ll-seal-text {
    display: flex;
    flex-direction: column;
}

.ll-seal-text strong {
    font-size: 18px;
    color: var(--theme-color-dark);
    line-height: 1.1;
}

.ll-seal-text span {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

@keyframes llFloatSeal {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.ll-hero-photo-oval img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease-out;
}

.swiper-slide-active .ll-hero-photo-oval img {
    transform: scale(1.1);
}

.ll-blob {
    animation: llFloat 10s infinite alternate ease-in-out;
}

.ll-blob-2 {
    animation-delay: -2s;
    animation-duration: 12s;
}

.ll-blob-3 {
    animation-delay: -5s;
    animation-duration: 8s;
}

@keyframes llFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10px, -15px) rotate(2deg); }
    66% { transform: translate(-15px, 10px) rotate(-1deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.ll-home .ll-about-photo,
.ll-home .ll-doctor-photo {
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(89, 59, 46, 0.12);
}

.ll-home .ll-about-photo img,
.ll-home .ll-doctor-photo img,
.ll-home .ll-blog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ll-home .ll-step h4,
.ll-home .ll-blog h4,
.ll-home .ll-showcase-card h4 {
    font-family: var(--title-font);
    color: var(--theme-color-dark);
}

.ll-home .ll-hero-main-wrap::after {
    display: none;
}

.ll-home .ll-hero-main-shape {
    position: absolute;
    inset: 16px -6px -6px 16px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(253, 231, 218, 0.82), rgba(253, 231, 218, 0.34));
    box-shadow: 0 16px 36px rgba(89, 59, 46, 0.07);
    transform: none;
}

.ll-home .ll-hero-photo-main {
    position: relative;
    width: 100%;
    /* aspect-ratio: 1 / 0.9; */
    /* border-radius: 28px; */
    border: none;
    /* background: transparent; */
    /* box-shadow:
        0 24px 54px rgba(89, 59, 46, 0.13); */
    transform: none;
}

.ll-home .ll-hero-photo-main img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    object-position: center;
    transform: scale(1.01);
}

.ll-home .ll-hero-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.ll-home .ll-hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 8px !important;
    background: var(--theme-color1);
    opacity: 0.2;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.ll-home .ll-hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 35px;
    border-radius: 20px;
    background: var(--theme-color1);
}

.ll-home .ll-hero-wash {
    position: absolute;
    left: 50%;
    bottom: 13px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(253 231 218) 0%, rgba(253, 231, 218, 0) 72%);
    z-index: 1;
}

.ll-home .ll-hero-accent-grid {
    position: absolute;
    right: 8px;
    top: 48px;
    width: 124px;
    height: 124px;
    border-radius: 28px;
    background-image:
        radial-gradient(circle, rgba(140, 95, 77, 0.45) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.8;
    z-index: 1;
}

.ll-home .ll-hero-orbit {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 1;
}

.ll-home .ll-hero-orbit-one {
    width: 210px;
    height: 210px;
    top: -6px;
    right: 24px;
    background: radial-gradient(circle, rgba(253, 231, 218, 0.8) 0%, rgba(253, 231, 218, 0) 72%);
}

.ll-home .ll-hero-orbit-two {
    width: 160px;
    height: 160px;
    right: 492px;
    bottom: 0;
    border: 1px dashed rgba(140, 95, 77, 0.28);
}


.ll-home .ll-brand-strip {
    margin-top: -1px;
    padding: 46px 0;
    background: var(--ll-brand-strip-bg);
}

.ll-home .ll-brand-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
}

.ll-home .ll-brand-item {
    text-align: center;
    color: #fff;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ll-home .ll-brand-mark {
    color: #fff;
    font-size: 42px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
}

.ll-home .ll-brand-script {
    font-family: var(--style-font);
    font-size: 62px;
    font-weight: 400;
}

.ll-home .ll-brand-letter {
    font-family: var(--title-font);
    font-size: 86px;
    line-height: 0.8;
}

.ll-home .ll-brand-item h4 {
    margin: 0;
    color: #fff;
    font-family: var(--title-font);
    font-size: 28px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ll-home .ll-brand-item span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ll-home .ll-sec-title {
    color: var(--theme-color-dark);
    font-family: var(--title-font);
    font-size: 42px;
    line-height: 1;
    /* margin: 18px 0; */
}

.ll-home .ll-flourish {
    width: 220px;
    height: 24px;
    margin: 0px auto 26px;
    position: relative;
    border-top: 1px solid rgba(33, 53, 85, 0.45);
    border-bottom: 1px solid rgba(140, 95, 77, 0.45);
    border-radius: 100%;
    transform: scaleY(0.35);
}

.ll-home .ll-flourish::before,
.ll-home .ll-flourish::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: rgba(140, 95, 77, 0.45);
}

.ll-home .ll-flourish::before {
    left: 0;
}

.ll-home .ll-flourish::after {
    right: 0;
}

.ll-home .ll-treatment-carousel {
    background:  var(--theme-color5);
}

.ll-home .ll-marquee-shell {
    position: relative;
    overflow: visible;
}

.ll-home .ll-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 20px;
    align-items: stretch;
    padding-top: 30px;
}

.ll-home .ll-showcase-card {
    position: relative;
    width: 100%;
    min-width: 0;
    padding: 112px 24px 30px;
    background: linear-gradient(180deg, #fffefd 0%, #ffffff 100%);
    text-align: center;
    box-shadow: 0 18px 35px rgba(89, 59, 46, 0.08);
    height: 100%;
    border-radius: 34px;
    display: flex;
    flex-direction: column;
}

.ll-home .ll-showcase-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px dashed var(--bg-blue-theme);
    border-radius: 28px;
    pointer-events: none;
}

.ll-home .ll-showcase-media {
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    width: 168px;
    height: 168px;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 50%;
    background: #f7dfd1;
    border: 2px solid var(--theme-color2);
    box-shadow: 0 0 0 2px rgba(62, 88, 121, 0.32), 0 0 0 10px rgba(62, 88, 121, 0.12);
    transition: transform 0.7s ease;
}

.ll-home .ll-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.ll-home .ll-showcase-card:hover .ll-showcase-media img {
    transform: scale(1.06);
}

.ll-home .ll-showcase-card:hover .ll-showcase-media {
    transform: translateX(-50%) rotateY(180deg);
}

.ll-home .ll-showcase-card h4 {
    padding-top: 55px;
    font-size: 32px;
    margin-bottom: 18px;
}

.ll-home .ll-showcase-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.ll-home .ll-showcase-stars span {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid #d0aa97;
}

.ll-home .ll-showcase-points {
    margin: 0 0 18px;
    padding: 18px 0 0;
    list-style: none;
    border-top: 1px solid rgba(140, 95, 77, 0.14);
    text-align: left;
    flex-grow: 1;
}

.ll-home .ll-showcase-points li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    color: var(--theme-color-dark);
    font-size: 18px;
    line-height: 1.5;
}

.ll-home .ll-showcase-points li a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.ll-home .ll-showcase-points li a:hover {
    transform: translateX(5px);
}

.ll-home .ll-showcase-points li:last-child {
    margin-bottom: 0;
}

.ll-home .ll-showcase-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(253, 231, 218, 0.7);
    border: 1px solid rgba(140, 95, 77, 0.14);
}

.ll-home .ll-showcase-points li::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--theme-color1);
    border-right: 2px solid var(--theme-color1);
    transform: rotate(45deg);
}

.ll-home .ll-showcase-card .ll-link,
.ll-home .ll-blog .ll-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    font-weight: 700;
    color: var(--theme-color1);
}

/* Surgery Section Styles - Arched Tab Layout */
.ll-home .ll-surgeries-section {
    background: #ffffff !important;
    padding: 55px 0;
    position: relative;
}

.ll-home .ll-surgeries-row {
    align-items: center;
    gap: 0;
}

.ll-home .ll-surgery-selectors {
    display: flex;
    gap: 25px;
    justify-content: flex-start;
}

.ll-home .ll-surgery-tab {
    flex: 1;
    max-width: 200px;
    cursor: pointer;
    text-align: center;
    transition: all 0.4s ease;
}

.ll-home .ll-surgery-arch-frame {
    width: 100%;
    aspect-ratio: 0.7 / 1;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    background: #fdf6f3;
    margin-bottom: 20px;
    border: 1px solid rgba(89, 59, 46, 0.08);
    transition: all 0.4s ease;
}

.ll-home .ll-surgery-arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: all 0.4s ease;
    mix-blend-mode: multiply; /* Optional: for that vintage/theme look if background matches */
}

.ll-home .ll-surgery-tab h3 {
    font-family: var(--title-font);
    font-size: 20px;
    color: var(--theme-color-dark);
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    transition: all 0.4s ease;
}

/* Active State */
.ll-home .ll-surgery-tab.active .ll-surgery-arch-frame {
    transform: translateY(-15px);
    box-shadow: 0 20px 45px rgba(33, 53, 85, 0.2);
    border: 3px solid var(--theme-color1);
    background: #ffffff;
}

.ll-home .ll-surgery-tab.active .ll-surgery-arch-frame img {
    opacity: 1;
    mix-blend-mode: normal;
    transform: scale(1.1);
}

.ll-home .ll-surgery-tab.active h3 {
    opacity: 1;
    color: var(--theme-color1);
    font-weight: 800;
}

/* Display Box (Right Side) */
.ll-home .ll-surgery-display {
    padding: 30px;
    background: var(--theme-color3); /* Matching the cream/peach theme from reference */
    border-radius: 30px;
    height: auto;
    display: flex;
    align-items: center;
}

.ll-home .ll-surgery-info-pane {
    display: none;
    animation: fadeInTab 0.6s ease forwards;
}

.ll-home .ll-surgery-info-pane.active {
    display: block;
}

.ll-home .ll-display-title {
    font-size: 42px;
    line-height: 1.1;
    margin: 0px 0 25px;
    color: var(--theme-color-dark);
}

.ll-home .ll-display-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 30px;
}

.ll-home .ll-display-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.ll-home .ll-display-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 600;
    color: var(--theme-color-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(89, 59, 46, 0.1);
    padding-bottom: 5px;
    /* cursor: pointer; */
    transition: all 0.3s ease;
}

.ll-home .ll-display-list li:hover {
    transform: translateX(5px);
}

.ll-home .ll-display-list li a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.ll-home .ll-display-list li a:hover {
    color: var(--theme-color-dark);
    transform: translateX(5px);
}

.ll-home .ll-display-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 1px;
    background: var(--theme-color1);
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 991px) {
    .ll-footer-copy{
        margin: 0px !important;
    }
    .ll-home .ll-cta-title, .ll-home .ll-cta-card .ll-kicker{
        margin-bottom: 15px !important;
    }
    .ll-home .ll-surgeries-row {
        flex-direction: column;
        gap: 20px;
    }
    .ll-home .ll-cta-subtitle{
        text-align: justify;
        margin-bottom: 30px !important;
    }
    .ll-home .ll-surgery-selectors {
        justify-content: center;
    }
    .ll-home .ll-surgery-display {
        padding: 25px 25px;
        min-height: auto;
    }
    .ll-home .ll-why-split-layout{
    padding: 0 !important;
}
.ll-gallery-grid{
    margin-top:0px !important
}
.ll-home .ll-testi-slider{
    padding-bottom: 0px !important;
    margin-top: 10px !important;
}
}


@media (max-width: 575px) {
    .ll-home .ll-surgery-selectors {
        gap: 15px;
    }
    .ll-home .ll-surgery-tab {
        max-width: 110px;
    }
    .ll-home .ll-surgery-tab h3 {
        font-size: 14px;
    }
    .drg-expertise-card h4{
        font-size: 26px !important;
    }
    .ll-testi-badge{
        padding: 6px 13px;

    font-size: 9px
    }
}


.ll-home .ll-patient-testimonial-section {
    /* background: linear-gradient(180deg, rgba(12, 28, 55, 0.92) 0%, rgba(17, 39, 72, 0.96) 100%); */
    padding: 40px 0 40px;
    position: relative;
    overflow: hidden;
}

.ll-home .ll-patient-testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 24%), radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.06), transparent 18%), radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05), transparent 24%);
    pointer-events: none;
}

.ll-home .ll-patient-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.ll-home .ll-patient-testimonial-card {
    position: relative;
    padding: 44px 32px 32px;
    background: rgba(17, 34, 66, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 36px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    min-height: 100%;
    overflow: hidden;
}

.ll-home .ll-patient-testimonial-card::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 22px;
    width: 78px;
    height: 78px;
    border: 2px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    transform: rotate(45deg);
}

.ll-home .ll-patient-testimonial-card::after {
    content: "";
    position: absolute;
    bottom: 22px;
    right: 22px;
    width: 78px;
    height: 78px;
    border: 2px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    transform: rotate(45deg);
}

.ll-home .ll-patient-testimonial-meta {
    display: none;
}

.ll-home .ll-testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.ll-home .ll-testimonial-quote {
    position: relative;
    z-index: 1;
    /* margin: 0 auto 32px; */
    max-width: 96%;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.95;
    text-align: justify;
}

.ll-home .ll-patient-testimonial-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ll-home .ll-patient-testimonial-avatar {
    width:40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ll-home .ll-patient-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ll-home .ll-patient-testimonial-author h4 {
    margin: 0;
    font-size: 28px;
    color: #ffffff;
    text-align: start;
    letter-spacing: 0.01em;
}

.ll-home .ll-patient-testimonial-author span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-align: start;
    text-transform: uppercase;
}

.ll-home .ll-showcase-stars {
    justify-content: center;
    margin-bottom: 24px;
}

.ll-home .ll-showcase-stars span {
    border-bottom-color: #d0aa97;
}

.ll-home .ll-patient-testimonial-card .ll-link {
    display: none;
}

.ll-home .ll-about-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background: radial-gradient(circle at left center, rgba(253, 231, 218, 0.55) 0%, rgba(253, 231, 218, 0.18) 24%, rgba(255, 255, 255, 0) 42%), linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.ll-home .ll-about-wrap,
.ll-home .ll-doctor-wrap {
    align-items: center;
}

.ll-home .ll-about-visual {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
}

.ll-home .ll-about-content {
    position: relative;
   padding-left:15px !important;
    min-height: auto;
}

.ll-home .ll-about-content > * {
    position: relative;
    z-index: 1;
}

.ll-home .ll-about-blob {
    position: absolute;
    left: 22px; /* For 1200px - 1400px as requested */
    top: 20px;
    width: 320px;
    height: 320px;
    background: rgba(178, 207, 231, 0.28);
    border-radius: 64px;
    z-index: 0;
}

.ll-home .ll-about-stripes {
    position: absolute;
    right: 15px; /* For 1200px - 1400px as requested */
    bottom: 16px;
    width: 240px;
    height: 240px;
    border-radius: 64px;
    background: repeating-linear-gradient(135deg, rgba(55, 119, 155, 0.08) 0 2px, transparent 2px 14px);
    z-index: 0;
}

@media (min-width: 1401px) {
    .ll-home .ll-about-blob {
        left: 65px; /* Above 1400px positioning */
    }
    .ll-home .ll-about-stripes {
        right: 58px; /* Above 1400px positioning */
    }
}

@media (min-width: 700px) and (max-width: 991px) {
      .ll-home .ll-about-blob {
        width: 280px;
        height: 280px;
       left: -23px !important;
        top: -1px !important;
    }

    .ll-home .ll-about-stripes {
        width: 220px;
        height: 220px;
     right: -18px !important;
    bottom: 0px !important;

    }
}

.ll-home .ll-about-photo {
    position: relative;
    z-index: 1;
    width: 420px;
    max-width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(33, 53, 85, 0.16);
}

.ll-home .ll-about-photo::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    pointer-events: none;
}

.ll-home .ll-about-doctor-photo {
    background: linear-gradient(180deg, #fdf8f5 0%, #f7ebe4 100%);
    border-radius: 36px;
    overflow: hidden;
}

.ll-home .ll-about-doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


.ll-home .ll-about-watermark {
    position: absolute;
    top: -36px;
    left: -6px;
    font-family: var(--title-font);
    font-size: 250px;
    line-height: 0.8;
    color: rgba(47, 33, 27, 0.06);
    z-index: 0;
    pointer-events: none;
}

.ll-home .ll-about-meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.ll-home .ll-about-eyebrow {
    color: var(--bg-blue-theme);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ll-home .ll-about-years {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    background: rgba(253, 231, 218, 0.9);
    color: var(--theme-color2);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ll-home .ll-about-highlight {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin: 10px 0 15px;
    padding: 10px 32px 10px 10px;
    background: linear-gradient(90deg, #E9ECEF 0%, rgba(233, 236, 239, 0) 100%);
    border-radius: 0;
}

.ll-home .ll-about-badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--theme-color1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px; /* Slightly smaller font for smaller badge */
    z-index: 2;
}

.ll-home .ll-about-highlight p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--theme-color1); /* Switched back to dark text for the light #E9ECEF gradient */
}

.ll-home .ll-about-cta {
    margin-top: 32px;
    position: relative;
}

.ll-home .ll-about-cta::after {
    max-width: 280px;
    width: 181px;
    content: "";
    position: absolute;
    left: 11px;
    top: 8px;
    right: -8px;
    bottom: -8px;
    background: transparent;
    border: 1px solid rgba(33, 53, 85, 0.15);
    z-index: 0;
    pointer-events: none;
    border-radius: 4px;
}

.ll-home .ll-about-cta .ll-btn {
    position: relative;
    z-index: 1;
    min-width: 180px;
    border-radius: 0;
    background: var(--theme-color1);
    border-color: var(--theme-color1);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ll-home .ll-about-cta .ll-btn:hover {
    background: var(--theme-color1);
    border-color: var(--theme-color1);
}

.ll-home .ll-specialities-wrap {
    position: relative;
    margin-top: 34px;
    padding: 70px 0 40px;
    overflow: hidden;
}

.ll-home .ll-specialities-bg {
    position: absolute;
    inset: 90px 0 0;
    background: radial-gradient(circle at 20% 50%, rgba(253, 231, 218, 0.82) 0, rgba(253, 231, 218, 0.36) 28%, transparent 29%), radial-gradient(circle at 80% 50%, rgba(253, 231, 218, 0.82) 0, rgba(253, 231, 218, 0.36) 28%, transparent 29%);
    z-index: 0;
}

.ll-home .ll-speciality-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.ll-home .ll-speciality-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ll-home .ll-speciality-list-left .ll-speciality-item {
    justify-content: flex-end;
    text-align: right;
}

.ll-home .ll-speciality-list-right .ll-speciality-item {
    justify-content: flex-start;
    text-align: left;
}

.ll-home .ll-speciality-copy h4 {
    margin: 0 0 8px;
    color: #21304f;
    font-family: var(--title-font);
    font-size: 30px;
}

.ll-home .ll-speciality-copy p {
    margin: 0;
    color: #6E5449;
    font-size: 16px;
    line-height: 1.7;
}

.ll-home .ll-speciality-icon {
    width: 106px;
    height: 106px;
    min-width: 106px;
    border-radius: 50%;
    background: var(--theme-color2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    border: 4px solid #fff;
    outline: 1px dashed rgba(62, 88, 121, 0.75);
    outline-offset: 5px;
}

.ll-home .ll-speciality-icon.is-dark {
    background: #1f2e52;
    outline-color: rgba(31, 46, 82, 0.65);
}

.ll-home .ll-specialities-center-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ll-home .ll-specialities-center-image img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 28px 34px rgba(89, 59, 46, 0.12));
}

.ll-home .ll-step,
.ll-home .ll-blog {
    height: 100%;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(89, 59, 46, 0.07);
}

.ll-home .ll-blog-media {
    height: 260px;
    overflow: hidden;
}

.ll-home .ll-blog-body,
.ll-home .ll-step {
    padding: 28px;
}

.ll-home .ll-step h4,
.ll-home .ll-blog h4 {
    font-size: 34px;
    margin-bottom: 12px;
}

.ll-home .ll-steps-grid {
    counter-reset: step;
}

.ll-home .ll-step {
    position: relative;
    padding-top: 96px;
}

.ll-home .ll-step::before {
    counter-increment: step;
    content: "0" counter(step);
    position: absolute;
    top: 28px;
    left: 28px;
    font-family: var(--title-font);
    font-size: 56px;
    line-height: 1;
    color: rgba(140, 95, 77, 0.18);
}

.ll-home .ll-doctor-photo {
    min-height: 460px;
    max-width: 520px;
    margin: 0 auto;
}

.ll-home .ll-doctor-copy {
    padding-left: 20px;
}

.ll-home .ll-blog-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--theme-color1);
}

.ll-home .ll-cta {
    padding: 110px 0;
    background: linear-gradient(rgba(47, 33, 27, 0.76), rgba(47, 33, 27, 0.76)), url("https://images.unsplash.com/photo-1519824145371-296894a0daa9?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.ll-home .ll-cta .ll-sec-title,
.ll-home .ll-cta .ll-copy {
    color: #fff;
}

.ll-home .ll-cta .ll-btn.is-light {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.ll-home .ll-cta .ll-btn.is-light:hover {
    border-color: #FDE7DA;
    background: #FDE7DA;
    color: #2F211B;
}

/* Why Choose Us Section - Split Layout Redesign */
.ll-home .ll-why-choose-section {
    background: #ffffff;
    position: relative;
    padding: 40px 0; /* Compact padding */
    overflow: hidden;
}

.ll-home .ll-why-choose-section .ll-sec-title {
    font-size: 44px; /* Scaled down title */
    /* margin-bottom: 15px; */
}

.ll-home .ll-why-split-layout {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.ll-home .ll-why-split-layout::before,
.ll-home .ll-why-split-layout::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60%;
    height: 100%; /* Reverted to 100% height as requested */
    z-index: -1;
}

.ll-home .ll-why-split-layout::before {
    left: -5%;
    background: linear-gradient(270deg, #fdece3 0%, rgba(253, 241, 234, 0) 100%);
    /* border-radius: 0 140px 140px 0; */
}

.ll-home .ll-why-split-layout::after {
    right: -5%;
    background: linear-gradient(90deg, #fdece3 0%, rgba(253, 241, 234, 0) 100%);
    /* border-radius: 140px 0 0 140px; */
}

.ll-home .ll-why-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px; /* Compacted spacing */
    padding: 12px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.ll-home .ll-why-item:hover {
    background: rgba(253, 241, 234, 0.5); /* Subtle finishing touch hover */
    transform: translateY(-8px);
}

.ll-home .ll-why-item:last-child {
    margin-bottom: 0;
}

/* Left Column Mirroring */
.ll-home .ll-why-item.item-left {
    text-align: right;
    justify-content: flex-end;
}

/* Right Column Normal */
.ll-home .ll-why-item.item-right {
    text-align: left;
    justify-content: flex-start;
}

.ll-home .ll-why-icon-wrap {
    width: 74px;
    height: 74px;
    min-width: 74px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px dashed var(--theme-color1); /* Dashed border from reference image */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--theme-color1);
    transition: all 0.4s ease;
}

.ll-home .ll-why-item:hover .ll-why-icon-wrap {
    background: var(--theme-color1);
    color: #ffffff;
    border-style: solid;
    transform: rotate(360deg);
}

.ll-home .ll-why-text h4 {
    font-size: 28px; /* Scaled down */
    font-weight: 700;
    color: var(--theme-color-dark);
    margin-bottom: 6px;
    font-family: var(--title-font);
}

.ll-home .ll-why-text p {
    font-size: 18px; /* Scaled down */
    color: black;
    margin: 0;
    line-height: 1.5;
}

/* Center Media */
.ll-home .ll-why-main-media {
    position: relative;
    padding: 0 20px;
    text-align: center;
}

.ll-home .ll-why-main-media img {
    width: 100%;
    max-width: 320px; /* Reduced height/width presence again */
    filter: drop-shadow(0 15px 35px rgba(33, 53, 85, 0.08));
    transition: all 0.5s ease;
}

.ll-home .ll-why-main-media img:hover {
    transform: scale(1.02);
}

@media (max-width: 1199px) {
    .ll-home .ll-why-main-media img {
        max-width: 240px;
    }
}

@media (max-width: 991px) {
    .ll-home .ll-why-choose-section {
        padding: 70px 0;
    }
    .ll-home .ll-why-column-center {
        display: none !important; /* Force hide center image */
    }
    .ll-home .ll-why-split-layout {
        gap: 20px;
        margin-top: 0px;
    }
    .ll-home .ll-why-item {
        margin-bottom: 15px;
        text-align: left !important;
        justify-content: flex-start !important;
        background: rgba(253, 241, 234, 0.4);
        padding: 20px;
        border-radius: 20px;
        display: flex;
        align-items: center;
    }
    /* Ensure Icon comes FIRST for all items on mobile */
    .ll-home .ll-why-item.item-left {
        flex-direction: row-reverse !important; /* Reverses [Text, Icon] to [Icon, Text] */
        justify-content: flex-end !important;
    }
    .ll-home .ll-why-item.item-right {
        flex-direction: row !important; /* Keeps [Icon, Text] */
    }
    .ll-home .ll-why-split-layout::before,
    .ll-home .ll-why-split-layout::after {
        display: none; /* Hide background wings on mobile */
    }
}

@media (max-width: 575px) {
    .ll-home .ll-why-item {
        padding: 15px;
        gap: 12px;
    }
    .ll-home .ll-why-icon-wrap {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 22px;
    }
    .ll-home .ll-why-choose-section .ll-sec-title {
        font-size: 34px;
    }
}


/* Gallery Section */
.ll-gallery-section,
.ll-gallery-page-section {
    background: #f8fafc;
    /* padding: 100px 0; */
}

.ll-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.ll-gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 15px 35px rgba(33, 53, 85, 0.08);
    cursor: pointer;
}

.ll-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ll-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(33, 53, 85, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.ll-gallery-item:hover img {
    transform: scale(1.1);
}

.ll-gallery-item:hover .ll-gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.ll-gallery-overlay i {
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ll-gallery-item:hover .ll-gallery-overlay i {
    transform: scale(1);
}

@media (max-width: 991px) {
    .ll-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .ll-gallery-grid .ll-gallery-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
        margin: 0 auto;
    }
  
    .ll-gallery-page-section {
        padding: 30px 0;
    }
}

@media (max-width: 575px) {
    .ll-gallery-grid {
        grid-template-columns: 1fr;
    }
    .ll-gallery-grid .ll-gallery-item:last-child:nth-child(odd) {
        width: 100%;
    }
    .ll-gallery-item {
        aspect-ratio: 12 / 9;
    }
}

.ll-home .ll-patient-testimonial-section {
    background:var(--theme-color5)
}

/* CTA Section */
.ll-home .ll-cta-section {
    background: #ffffff;
    padding: 40px 0;
}

.ll-home .ll-cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--theme-color-dark) 0%, #3e5879 100%);
    border-radius: 48px;
    padding: 45px 50px;
    overflow: hidden;
    color: #ffffff;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ll-home .ll-cta-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    flex: 1;
}

.ll-home .ll-cta-card .ll-kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    margin-bottom: 24px;
}

.ll-home .ll-cta-title {
    color: #ffffff;
    font-family: var(--title-font);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.ll-home .ll-cta-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.ll-home .ll-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ll-home .ll-cta-card .ll-btn {
    min-width: 220px;
}

.ll-home .ll-cta-card .ll-btn.is-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.ll-home .ll-cta-card .ll-btn.is-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Decorative Visuals & Image */
.ll-home .ll-cta-visual {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin-right: -20px; /* Slight overflow/offset as suggested by drawing */
}

.ll-home .ll-cta-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    /* animation: floatCTA 6s ease-in-out infinite; */
}

.ll-home .ll-cta-image img {
    max-width: 450px;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--theme-color4);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}

@keyframes floatCTA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.ll-home .ll-cta-orbit {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: rotateCTA 60s linear infinite;
    z-index: -1;
}

.ll-home .ll-cta-accent {
    position: absolute;
    right: 15%;
    top: 30%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 196, 182, 0.2) 0%, transparent 70%);
    filter: blur(40px);
}

@keyframes rotateCTA {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 1199px) {
    .ll-home .ll-cta-card {
        padding: 60px 40px;
        border-radius: 36px;
        flex-direction: column;
        text-align: left;
    }
    .ll-home .ll-cta-section {
        padding: 70px 0;
    }
    .ll-home .ll-cta-content {
        max-width: 100%;
        margin-bottom: 0px;
    }
    .ll-home .ll-cta-visual {
        display: none; /* Hide image on mobile, tablet, and small desktop */
    }
}

@media (max-width: 575px) {
    .ll-home .ll-cta-card {
        padding: 25px 25px;
        text-align: left;
    }
    .ll-home .ll-cta-content {
        margin: 0;
    }
    .ll-home .ll-cta-actions {
        justify-content: flex-start;
    }
    .ll-home .ll-btn {
        /* width: 100%; */
    }
}

.ll-home .ll-patient-testimonial-section {
    padding: 40px 0;
}
/* Style for the star rating */
.star-rating i {
    color: goldenrod;
    /* margin-right: 5px; */
    font-size: 16px;
}

.star-rating i.fa-star {
    color: goldenrod;  /* Golden color for the stars */
}

/* Add a bit of spacing between the stars and the text */
.ll-patient-testimonial-author span {
    font-size: 14px;
    /* margin-left: 10px; */
    color: #333;
}
.ll-home .ll-patient-testimonial-card {
    position: relative;
    padding: 25px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px dashed #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.ll-home .ll-testi-slider {
    /* padding-bottom: 30px; */
    margin-top: 20px;
}

.ll-home .ll-testi-pagination {
    bottom: 0 !important;
}

.ll-home .ll-testi-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--theme-color1);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.ll-home .ll-testi-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color1);
    opacity: 1;
}

.ll-home .ll-patient-testimonial-card:hover,
.ll-home .ll-testi-slider .swiper-slide-active .ll-patient-testimonial-card {
    background: #ffffff;
    transform: none;
    border: 1.5px dashed var(--theme-color1) !important;
    box-shadow: 0 15px 40px rgba(33, 53, 85, 0.08);
}

.ll-home .ll-testi-quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 42px;
    color: #f1f1f1;
    line-height: 1;
    transition: color 0.4s ease;
    z-index: 2;
}

.ll-home .ll-patient-testimonial-card:hover .ll-testi-quote-icon,
.ll-home .ll-testi-slider .swiper-slide-active .ll-testi-quote-icon {
    color: var(--theme-color1);
}

.ll-home .ll-testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 0;
    flex-grow: 1;
    font-style: normal;
}

.ll-home .ll-testimonial-header-top {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f8f8f8;
}

.ll-home .ll-google-icon {
    width: 35px;
    height: 35px;
}

.ll-home .ll-google-icon img {
    width: 100%;
}

.ll-home .ll-author-info {
    display: flex;
    flex-direction: column;
}

.ll-home .ll-author-name {
    font-size: 25px;
    font-weight: 700;
    color: var(--theme-color1);
    margin: 0;
}

.ll-home .ll-star-rating {
    color: #ffc107;
    font-size: 13px;
    margin-top: 2px;
}

.ll-home .ll-testi-slider .swiper-slide {
    height: auto !important;
    display: flex;
}

.ll-home .ll-testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.ll-home .ll-patient-testimonial-avatar {
    width: 60px;
    height: 60px;
    /* min-width: 60px; */
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(33, 53, 85, 0.08);
}

.ll-home .ll-patient-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ll-home .ll-patient-testimonial-author {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ll-home .ll-patient-testimonial-author h4 {
    margin: 0 0 2px;
    font-family: var(--title-font);
    font-size: 26px;
    line-height: 1.2;
    color: var(--theme-color-dark);
}

.ll-home .ll-testi-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b; /* Vibrant Yellow/Gold */
    font-size: 16px;
}

.ll-home .ll-testimonial-quote {
    font-size: 19px;
    line-height: 1.8;
    color: black;
    flex-grow: 1;
}

.ll-home .ll-testi-top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    z-index: 1;
}

.ll-home .ll-testi-avatar {
    width: 68px;
    height: 68px;
    min-width: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-color1);
    color: #fff;
    font-family: var(--title-font);
    font-size: 30px;
    box-shadow: 0 14px 24px rgba(33, 53, 85, 0.24);
}

.ll-home .ll-testi-meta h4 {
    font-size: 30px;
    margin: 0 0 2px;
    color: var(--theme-color-dark);
}

.ll-home .ll-testi-meta span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--theme-color1);
}

.ll-home .ll-testi-quote {
    width: 58px;
    height: 58px;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-color4);
    color: var(--theme-color1);
    font-size: 20px;
}

.ll-home .ll-testi-stars {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
    color: #d9a94f;
    font-size: 14px;
}

.ll-home .ll-testi-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 17px;
    line-height: 1.9;
    color: #6E5449;
}

.ll-about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin-top: 26px;
}

.ll-about-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--theme-color-dark);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.ll-about-points i {
    color: var(--theme-color1);
}

@media (max-width: 1399.98px) {
    .scroll-to-top {
        bottom: 70px;
    }

    .auto-container {
        padding: 0 40px;
    }
}

@media (max-width: 1049.98px) {
    .header-style-one.style-home5 .header-lower .outer-box .theme-btn {
        display: none;
    }
}

@media (max-width: 1150px) {
    .main-menu {
        display: none;
    }

    .auto-container {
        padding: 0 30px;
    }

    .ll-home .ll-treatment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 60px;
        padding-top: 20px;
    }

    .ll-home .ll-patient-testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mobile-nav-toggler {
        display: inline-flex;
    }

    .main-header .header-lower {
        padding: 18px 0;
    }

    .main-header .main-box {
        padding: 0;
        justify-content: center;
        position: relative;
    }

    .main-header .main-box .nav-outer {
        justify-content: flex-end;
        flex: 0 0 auto;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .main-header .main-box .nav-logo {
        margin: 0 auto;
    }

    .main-header .header-lower .logo-box {
        min-width: auto;
        max-width: calc(100% - 76px);
        flex: 1 1 auto;
    }

    .main-header .logo a,
    .sticky-header .logo a {
        max-width: 100%;
    }

    .main-header .logo img,
    .sticky-header .logo img,
    .mobile-menu .nav-logo img,
    .ll-footer-logo img {
        height: 100px !important;
        width: auto;
        object-fit: contain;
    }
 .ll-theme-footer .widgets-section {
        padding: 40px 0 40px !important;
    }
    .site-text-logo {
        font-size: 40px;
    }

    .site-text-tagline {
        color: var(--bg-blue-theme);
        font-size: 14px;
        letter-spacing: 0.12em;
    }

    .sticky-header .inner-container {
        padding: 10px 0;
        justify-content: center;
        position: relative; /* Anchor for mega menu */
    }
    
    .sticky-header .inner-container .nav-outer {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .sticky-header .inner-container .nav-logo {
        margin: 0 auto;
    }

    .sticky-header .logo {
        min-width: auto;
        max-width: calc(100% - 76px);
        flex: 1 1 auto;
    }

    .ll-footer-logo {
        min-width: auto;
    }
    .mega-menu-pane h3{
        margin-bottom: 0px !important;
    }
    .service-links li{
            padding: 0px 0px 0px 20px;
    }
}

@media (max-width: 767px) {
    .service-links li::before {
   
    position: absolute;
    left: 10px;
    top: 7px;
    
}
    .service-links li {
  
    padding: 0px 15px 0px 50px;
   
}
    .mega-menu-pane h3{
        font-size: 26px !important;
        margin-bottom: 0px !important;
    padding-bottom: 10px !important;
    }
    .mega-menu-nav li{
        font-size: 16px !important;
    }
    .nav-logo img {
    height: 100px;
}
    .ll-home .ll-treatment-grid {
        padding-top: 20px;
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 65px;
    }

    .auto-container {
        padding: 0 15px;
    }

    .ll-home .ll-patient-testimonial-grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .main-header .header-lower {
        padding: 14px 0;
    }

    .main-header .logo img,
    .sticky-header .logo img,
    .mobile-menu .nav-logo img,
    .ll-footer-logo img {
        height: 100px !important;
        width: auto;
        object-fit: contain;
    }

    .mobile-nav-toggler {
        width: 46px;
        height: 46px;
        font-size: 20px;
        margin-left: 14px;
        border-radius: 14px;
    }

    .sticky-header .mobile-nav-toggler {
        width: 46px;
        height: 46px;
        font-size: 20px;
        margin-left: 14px;
        border-radius: 14px;
    }

    .site-text-logo {
        font-size: 25px;
        letter-spacing: 0.01em;
    }

    .site-text-tagline {
        color: var(--bg-blue-theme);
        font-size: 12px;
        letter-spacing: 0.08em;
    }

    .mobile-menu {
        width: 100%;
    }

    .mobile-menu .upper-box {
        padding: 18px 16px 14px;
    }

    .mobile-menu .navigation {
        padding: 10px 14px 18px;
    }
    .ll-footer-bottom-text{
text-align: center !important;
    }
}

@media (max-width: 479px) {
    .main-header .header-lower {
        padding: 12px 0;
    }

    .main-header .header-lower .logo-box,
    .sticky-header .logo {
        max-width: calc(100% - 64px);
    }

    .main-header .logo img,
    .sticky-header .logo img,
    .mobile-menu .nav-logo img,
    .ll-footer-logo img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

    .site-text-logo {
        font-size: 25px;
        letter-spacing: 0.01em;
    }

    .site-text-tagline {
        color: var(--bg-blue-theme);
        font-size: 12px;
        letter-spacing: 0.08em;
    }

    .mobile-nav-toggler {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-left: 10px;
        border-radius: 12px;
    }

    .sticky-header .mobile-nav-toggler {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-left: 10px;
        border-radius: 12px;
    }

    .mobile-menu .nav-logo .site-text-logo {
        font-size: 25px;
    }

    .mobile-menu .nav-logo .site-text-tagline {
        font-size: 12px;
        letter-spacing: 0.08em;
    }

    .mobile-menu .upper-box {
        padding: 16px 14px 12px;
    }

    .mobile-menu .navigation li > a {
        padding: 13px 14px;
        font-size: 17px;
    }

    .mobile-menu .navigation li.dropdown .dropdown-btn,
    .mobile-menu .close-btn {
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
}

@media (max-width: 991px) {
    .ll-home .ll-display-title{
        margin-bottom: 20px !important;
        font-size:38px !important
    }
    .ll-home .ll-section,
    .ll-home .ll-cta {
        padding: 25px 0 20px;
    }

    .ll-home .ll-hero {
        padding: 5px 0 0px;
    }

    .ll-home .ll-hero-swiper {
        padding: 0 0 10px;
    }

    .ll-home .ll-hero-slide {
        min-height: auto;
    }

    .ll-home .ll-hero-copy-wrap {
        max-width: 100%;
        padding: 20px 8px 10px 14px;
    }

    .ll-home .ll-title {
        max-width: 100%;
    }

    .ll-home .ll-hero-media {
        /* margin-top: 40px; */
        min-height: auto;
        /* padding: 18px 18px 82px; */
        overflow: visible;
    }

    .ll-home .ll-hero-main-wrap {
        position: relative;
        right: auto;
        top: auto;
        width: min(100%, 620px);
        max-width: 620px;
        margin: 0 auto;
    }

    .ll-home .ll-hero-main-wrap::after {
        display: none;
    }

    .ll-home .ll-hero-main-shape {
        inset: 14px -8px -12px 14px;
    }

    .ll-home .ll-hero-photo-main {
        aspect-ratio: 1 / 0.96;
    }

    .ll-home .ll-about-section {
        padding: 40px 0;
    }

    .ll-home .ll-about-visual {
        max-width: 440px;
        margin: 0 auto;
        min-height: auto;
    }

    .ll-home .ll-about-photo {
        width: 100%;
        margin-bottom: 0;
    }



    .ll-home .ll-about-content,
    .ll-home .ll-doctor-copy {
        padding-left: 0;
    }

    .ll-home .ll-about-watermark {
        font-size: 170px;
    }

    .ll-home .ll-brand-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ll-home .ll-specialities-bg {
        inset: 120px 0 0;
    }

    .ll-home .ll-speciality-list {
        gap: 28px;
        margin-bottom: 40px;
    }

    .ll-home .ll-speciality-list-left .ll-speciality-item,
    .ll-home .ll-speciality-list-right .ll-speciality-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .ll-about-points {
        grid-template-columns: 1fr;
    }

    .ll-home .ll-title {
        font-size: 46px;
    }
    .ll-home .ll-testi-nav {
         padding-bottom: 0px !important;
    }
    .ll-home .ll-sec-title {
        padding-bottom: 0px !important;
        font-size: 38px;
    }

    .ll-home .ll-hero-media {
        /* padding: 12px 6px 30px; */
        min-height: auto;
    }

    .ll-home .ll-hero-copy-wrap {
        padding: 12px 4px 6px 12px;
    }

    .ll-home .ll-hero-copy-wrap::before {
        top: 16px;
        height: 72px;
    }

    .ll-home .ll-hero-frame {
        padding: 14px;
        border-radius: 28px;
    }

    .ll-home .ll-hero-frame-main {
        padding: 0;
        border-radius: 0;
    }

    .ll-home .ll-hero-main-wrap {
        width: 100%;
        max-width: 100%;
    }

    .ll-home .ll-hero-main-shape {
        inset: 12px -2px -10px 10px;
        border-radius: 24px;
    }

    .ll-home .ll-hero-main-wrap::after {
        display: none;
    }

    .ll-home .ll-hero-photo-main {
        aspect-ratio: 1 / 1.05;
        border-radius: 22px;
    }

    .ll-home .ll-hero-photo-main img {
        border-radius: 22px;
    }

    .ll-home .ll-hero-pagination {
        bottom: 10px;
    }

    .ll-home .ll-hero-wash {
        width: 180px;
        height: 180px;
        left: 8px;
        bottom: 28px;
    }

    .ll-home .ll-hero-accent-grid {
        width: 86px;
        height: 86px;
        right: 2px;
        top: 32px;
        background-size: 16px 16px;
    }

    .ll-home .ll-hero-orbit-two {
        display: none;
    }

    .ll-home .ll-about-visual {
        max-width: 340px;
    }

   .ll-home .ll-about-blob {
    width: 220px;
    height: 220px;
    left: -3px;
    top: 0px;
    border-radius: 40px;
}

    .ll-home .ll-about-stripes {
    width: 180px;
    height: 180px;
    right: -14px;
    bottom: -6px;
}

    .ll-home .ll-about-photo {
        border-radius: 28px;
    }

    .ll-home .ll-about-highlight {
        flex-direction: row;
        align-items: center;
        padding: 10px 20px 10px 8px;
        gap: 12px;
    }

    .ll-home .ll-about-watermark {
        font-size: 120px;
        top: 20px;
    }

    .ll-home .ll-specialities-wrap {
        padding-top: 40px;
    }

    .ll-home .ll-specialities-bg {
        inset: 150px 0 0;
        background: linear-gradient(180deg, rgba(253, 231, 218, 0.55), rgba(253, 231, 218, 0.18));
    }

    .ll-home .ll-speciality-item,
    .ll-home .ll-speciality-list-left .ll-speciality-item,
    .ll-home .ll-speciality-list-right .ll-speciality-item {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .ll-home .ll-speciality-icon {
        width: 92px;
        height: 92px;
        min-width: 92px;
        font-size: 30px;
    }

    .ll-home .ll-speciality-copy h4 {
        font-size: 26px;
    }

    .ll-home .ll-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ll-home .ll-brand-strip {
        padding: 34px 0;
    }

    .ll-home .ll-brand-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 12px;
    }

    .ll-home .ll-brand-script {
        font-size: 48px;
    }

    .ll-home .ll-brand-letter {
        font-size: 68px;
    }

    .ll-home .ll-btn {
        padding: 10px 15px;
        max-width: 320px;
        /* margin: 0 auto; */
    }
    .ll-home .ll-showcase-card {
        padding-top: 96px;
    }

    .ll-home .ll-testi-card {
        padding: 28px 24px;
        border-radius: 26px;
    }

    .ll-home .ll-testi-top {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .ll-home .ll-testi-quote {
        margin-left: 0;
    }

    .ll-home .ll-testi-meta h4 {
        font-size: 26px;
    }

    .ll-theme-footer .widgets-section {
        padding: 40px 0 40px;
    }
    .ll-footer-logo .site-text-logo {
        font-size: 25px;
    }
    .sticky-header .site-text-logo {
        font-size: 25px;
    }

    .ll-footer-form,
    .ll-footer-bottom-bar,
    .ll-footer-bottom-copy {
        flex-direction: column;
    }

    .ll-footer-bottom-bar,
    .ll-footer-bottom-copy {
        align-items:center;
        text-align: center;
    }

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

    .ll-footer-bottom-line {
        display: none;
    }
}

/* ==========================================================================
   Bespoke About Page Design (DRG Namespace)
   ========================================================================== */
.drg-about-wrapper {
    background: #fff;
    /* padding-bottom: 80px; */
}

/* Page Hero */
.drg-page-hero {
    background: var(--theme-color2);
    padding: 20px 0 30px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.drg-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.drg-crumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    margin: 10px 0;
    opacity: 0.8;
}

.drg-crumbs span, 
.drg-crumbs a {
    color: #fff;
    /* opacity: 0.7; */
}

.drg-crumbs span.active {
    color: var(--theme-color4);
    font-weight: 600;
    opacity: 1;
}

.drg-hero-title h1 {
    font-size: 42px;
    color: #fff;
    margin: 5px 0 0;
}

.drg-hero-title h1 span {
    color: var(--theme-color4);
}

.drg-hero-title p {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Bio Section */
.drg-bio-section {
    padding: 40px 0 ;
}

.drg-portrait-canvas {
    position: relative;
    padding: 20px;
}

.drg-arch-frame {
    width: 100%;
    max-width: 380px;
   
    overflow: hidden;
    
    position: relative;
    z-index: 3;
    
}

.drg-arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drg-dot-grid {
    position: absolute;
    top: 30px;
    left: 51px;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(var(--theme-color4) 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 1;
}

.drg-experience-badge {
    position: absolute;
    bottom: -10px;
    right: 5%;
    background: var(--theme-color4);
    color: var(--theme-color1);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 4;
    min-width: 110px;
}

.drg-experience-badge strong {
    display: block;
    font-size: 32px;
    line-height: 1;
}

.drg-experience-badge span {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.drg-bio-content {
    /* padding-left: 50px; */
}

.drg-bio-content h2 {
    font-size: 42px;
    margin-bottom: 5px; /* Reduced margin to bring designation closer */
}

.drg-designation {
    font-size: 18px;
    color: var(--theme-color1);
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #f0f2f5 0%, rgba(240, 242, 245, 0.1) 100%);
    padding: 15px 20px 15px 75px;
    border-radius: 6px;
    position: relative;
    /* display: inline-block; */
    text-align: start;
}

.drg-designation::before {
    content: "\f19d"; /* fa-graduation-cap */
    font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "FontAwesome";
    font-weight: 400;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--theme-color1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.drg-bio-content h2 span {
    color: var(--theme-color1);
    opacity: 0.6;
}

.drg-copy-main p {
    font-size: 18px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 18px;
    text-align: justify;
}

.drg-bio-footer {
    display: inline-block;
    position: relative;
    margin-top: 32px;
}

.drg-bio-footer::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    right: -8px;
    bottom: -8px;
    background: transparent;
    border: 1px solid rgba(33, 53, 85, 0.15);
    z-index: 0;
    pointer-events: none;
    border-radius: 4px;
}

.drg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--theme-color1);
    color: #fff;
    font-weight: 700;
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    min-width: 180px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    overflow: hidden;
}

.drg-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: all 0.6s ease;
    z-index: -1;
}

.drg-btn:hover {
    background: var(--theme-color1);
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(33, 53, 85, 0.15);
    color: #fff;
}

.drg-btn:hover::after {
    left: 100%;
}

/* Education Section - Academic Excellence */
.drg-education-section {
    padding: 40px 0;
    background: var(--theme-color5);
    position: relative;
    overflow: hidden;
}

.drg-edu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.drg-edu-card {
    background: #fff;
    padding: 45px 40px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(33, 53, 85, 0.04);
    position: relative;
    border: 1px solid rgba(33, 53, 85, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.drg-edu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(33, 53, 85, 0.08);
}

.drg-edu-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.drg-edu-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.drg-edu-arch {
    width: 60px;
    height: 75px;
    background: var(--theme-color3);
    border-radius: 30px 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--theme-color1);
    transition: all 0.5s ease;
    flex-shrink: 0;
}

.drg-edu-card:hover .drg-edu-arch {
    background: var(--theme-color1);
    color: #fff;
}

.drg-edu-year {
    font-size: 15px;
    font-weight: 800;
    color: var(--theme-color1);
    background: rgba(33, 53, 85, 0.04);
    padding: 5px 15px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.drg-edu-main h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--theme-color-dark);
    line-height: 1.2;
}

.drg-edu-body p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

.drg-merit-seal {
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #fff 0%, #F5EFE7 100%);
    border: 1px solid rgba(216, 196, 182, 0.3);
    border-radius: 15px;
    color: var(--theme-color1);
}

.drg-merit-seal i {
    font-size: 24px;
    color: var(--theme-color4);
}

.drg-merit-seal span {
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Adjustments for Education Section */
@media (max-width: 991px) {
    .drg-edu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .drg-edu-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }


    .drg-edu-arch {
        width: 50px;
        height: 65px;
        font-size: 24px;
        margin-bottom: 5px;
    }

    .drg-edu-card {
        padding: 35px 20px;
        border-radius: 30px;
    }

    .drg-edu-main h3 {
        font-size: 23px;
    }

    .drg-edu-year {
        align-self: flex-start;
    }

    .drg-merit-seal {
        margin-top: 10px !important;
        padding: 10px 18px;
        flex-direction: row;
        align-items: center;
    }
}

/* Impact Section */
.drg-impact-section {
    padding-bottom: 100px;
}

.drg-impact-banner {
    background: var(--theme-color1);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: #fff;
}

.drg-impact-visual {
    font-size: 80px;
    color: var(--theme-color4);
    opacity: 0.8;
}

.drg-impact-text h3 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

.drg-impact-text p {
    font-size: 21px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255,255,255,0.8);
}

.drg-impact-text strong {
    color: #fff;
}

@media (max-width: 1199px) {
    .drg-hero-title h1 { font-size: 52px; }
    .drg-bio-content { padding-left: 30px; }
}

@media (max-width: 991px) {
    .ll-section-intro{margin-bottom: 0px !important;}
    .drg-page-hero { padding: 20px 0; }
    .drg-hero-box { max-width: 600px; margin: 0 auto; }
    .drg-bio-section { margin-top: 0px; }
    .drg-portrait-canvas { max-width: 410px; padding: 5px !important;}
    .drg-bio-content { padding-left: 0; text-align: center; }
    .drg-exp-item { flex-direction: column; gap: 10px; align-items: center; text-align: center; }
    .drg-exp-date { text-align: center; flex: none; }
    .drg-hospital-tags { justify-content: center; }
    .drg-impact-banner { flex-direction: column; text-align: center; padding: 40px 25px; }
    .drg-bio-section {
        padding: 30px 0 40px;
    }
    .drg-bio-footer{
        margin-top: 0px !important;
    }
    .drg-btn {
        padding: 14px 30px;
        font-size: 15px;
        min-width: auto;
    }
    .drg-education-section{
        padding: 30px 0 40px !important;
    }
.drg-dossier-section{
    padding: 30px 0 !important;
}
.drg-pub-section{
    padding: 40px 0 !important;
}
.drg-expertise-section{
    padding: 40px 0 !important;
}
.drg-bio-footer::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 18px;
    right: -8px;
    bottom: -9px;
   
}
.ll-home .ll-patient-testimonial-avatar {
    width: 50px !important;
    height: 50px !important;
   
   
   
}
.ll-home .ll-testimonial-header{
    gap:10px !important;
}

}

@media (max-width: 575px) {
    .drg-hero-title h1 { font-size: 38px; }
    .drg-qual-card { padding: 30px 20px; }
    .drg-btn {
        padding: 12px 24px;
        font-size: 16px;
        width: 100%;
        letter-spacing: 0.1em;
    }
    .drg-bio-footer {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Professional Experience - The Premium Dossier */
.drg-dossier-section {
    padding: 70px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Custom Background Sparks */
.drg-spark {
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--theme-color4);
    clip-path: polygon(50% 0%, 62% 40%, 100% 50%, 62% 60%, 50% 100%, 38% 60%, 0% 50%, 38% 40%);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.drg-spark.spark-1 { top: 8%; right: 10%; transform: rotate(15deg); }
.drg-spark.spark-2 { top: 45%; left: 5%; transform: rotate(-20deg) scale(1.4); opacity: 0.3; }
.drg-spark.spark-3 { bottom: 12%; right: 15%; transform: rotate(10deg) scale(0.8); }
.drg-spark.spark-4 { bottom: 25%; left: 12%; transform: rotate(-35deg); opacity: 0.2; }
.drg-spark.spark-5 { top: 30%; right: 5%; transform: rotate(45deg) scale(1.2); opacity: 0.25; }
.drg-spark.spark-6 { bottom: 35%; right: 8%; transform: rotate(-10deg) scale(0.9); opacity: 0.3; }

.drg-dossier-container {
    position: relative;
    z-index: 2;
}

/* Compact Clinical Strip V2 */
.drg-compact-hosp-section {
    margin-bottom: 60px;
}

.drg-compact-hosp-strip {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 20px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.drg-strip-title {
    flex-shrink: 0;
    padding-right: 30px;
    border-right: 1px solid rgba(0,0,0,0.1);
}

.drg-strip-title h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--theme-color1);
    margin: 0;
}

.drg-strip-title .ll-kicker {
    margin-bottom: 8px;
    padding: 4px 14px;
    font-size: 11px;
}

.drg-strip-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex: 1;
}

.drg-micro-badge {
    padding: 15px 22px;
    background: var(--theme-color5);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.drg-micro-badge:hover {
    background: #fff;
    border-color: var(--theme-color1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.drg-micro-badge i {
    font-size: 18px;
    color: var(--theme-color1);
}

.drg-micro-info {
    line-height: 1.3;
}

.drg-micro-info strong {
    font-size: 17px;
    color: #000;
    font-weight: 700;
    display: block;
}

.drg-micro-info span {
    font-size: 13px;
    color: #333;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .drg-compact-hosp-strip { flex-direction: column; gap: 20px; padding: 25px; align-items: flex-start; }
    .drg-strip-title { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 15px; width: 100%; }
}

@media (max-width: 575px) {
    .drg-strip-badges { gap: 10px; }
    .drg-micro-badge { 
        width: 100%; 
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 15px;
    }
}

/* Linear Pulse Timeline */
.drg-pulse-timeline {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.drg-pulse-timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: var(--theme-color1);
    opacity: 0.12;
}

.drg-pulse-node {
    position: relative;
    margin-bottom: 50px;
}

.drg-pulse-node:last-child {
    margin-bottom: 0;
}

.drg-pulse-node::before {
    content: "";
    position: absolute;
    left: -48px;
    top: 8px;
    width: 11px;
    height: 11px;
    background: #fff;
    border: 2px solid var(--theme-color1);
    border-radius: 50%;
    z-index: 2;
}

.drg-pulse-node .drg-date-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: var(--theme-color1);
    background: rgba(33, 53, 85, 0.05);
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.drg-pulse-node h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.drg-pulse-node p {
    font-size: 18px;
    color: #000;
    margin: 0;
    line-height: 1.6;
}

/* Clinical Credential Cards (Distinction) */
.drg-distinction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 50px auto 0;
    max-width: 850px;
}

.drg-merit-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* Variant Skins */
.drg-merit-card.is-award,
.drg-merit-card.is-pursuit {
    background: linear-gradient(135deg, #fff 0%, #f4f8fb 100%);
    border-left: 4px solid var(--theme-color1);
}

.drg-merit-card.is-award i,
.drg-merit-card.is-pursuit i {
    color: var(--theme-color1);
}

.drg-merit-card.is-pursuit i {
    animation: pulseIcon 4s infinite ease-in-out;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.drg-merit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(33, 53, 85, 0.08);
}

.drg-merit-card i {
    font-size: 38px;
    flex-shrink: 0;
}

.drg-merit-kicker {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    background: var(--theme-color1);
    color: #fff;
}

.drg-merit-info h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--theme-color1);
}

.drg-merit-info p {
    font-size: 18px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

@media (max-width: 991px) {
    .drg-pulse-node {
    
    margin-bottom: 20px;
}
    .drg-pulse-node h4 {
        font-size: 24px !important;
    }
    .drg-distinction-grid {
         grid-template-columns: 1fr; 
         margin: 20px auto 0;
        gap: 15px;

    }
}

@media (max-width: 575px) {
    .drg-merit-card { 
        flex-direction: column; 
        gap: 0px; 
        text-align: center; 
        align-items: center; 
        padding:15px 10px !important;
    }
}

/* Impact Spotlight */
.drg-impact-ribbon {
    margin-top: 50px;
    background: var(--theme-color1);
    padding: 35px 50px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(33, 53, 85, 0.15);
}

@media (max-width: 991px) {
    .drg-impact-ribbon { flex-direction: column; text-align: center; }
}

.drg-impact-visual {
    display: flex;
    align-items: center;
    gap: 20px;
}

.drg-impact-visual i {
    font-size: 32px;
    color: var(--theme-color4);
}

.drg-impact-text h5 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 5px;
}

.drg-impact-text p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 16px;
}

.drg-expertise-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.drg-expertise-pill {
    background: rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}


/* Scholarly Publications & Clinical Focus Section */
.drg-pub-section {
    padding: 40px 0;
    background: var(--theme-color5);
    position: relative;
    overflow: hidden;
}

.drg-pub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 1199px) {
    .drg-pub-grid {
        gap: 50px;
    }
}

/* Publications List */
/* Section Title Harmonization */
.drg-pub-section .ll-section-intro .ll-sec-title,
.drg-expertise-section .ll-section-intro .ll-sec-title,
.drg-education-section .ll-section-intro .ll-sec-title,
.drg-dossier-section .ll-section-intro .ll-sec-title{
    font-size: 42px;
    line-height: 1;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .drg-pub-section .ll-section-intro .ll-sec-title,
    .drg-expertise-section .ll-section-intro .ll-sec-title ,
    .drg-education-section .ll-section-intro .ll-sec-title,
    .drg-dossier-section .ll-section-intro .ll-sec-title ,
    .drg-about-wrapper .ll-sec-title, .drg-bio-content 
     { 
        font-size: 35px; 
    }
}

.drg-pub-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 767px) {
    .drg-pub-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.drg-pub-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,1);
    box-shadow: 0 10px 30px rgba(33, 53, 85, 0.03);
}

.drg-pub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(33, 53, 85, 0.08);
    border-color: var(--theme-color4);
}

.drg-pub-card i {
    width: 60px;
    height: 60px;
    background: var(--theme-color3);
    color: var(--theme-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 24px;
    flex-shrink: 0;
}

.drg-pub-info span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--theme-color2);
    margin-bottom: 8px;
}

.drg-pub-info p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: #000;
}

/* Clinical Expertise Section Redesign */
.drg-expertise-section {
    padding: 40px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.drg-expertise-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--theme-color4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.4;
}

.drg-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .drg-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .drg-expertise-grid {
        grid-template-columns: 1fr;
    }
}

.drg-expertise-card {
    background: linear-gradient(135deg, var(--theme-color1) 0%, #2c4772 100%);
    padding: 40px 35px;
    border-radius: 35px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(33, 53, 85, 0.12);
    position: relative;
    overflow: hidden;
}

.drg-expertise-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(33, 53, 85, 0.25);
    background: linear-gradient(135deg, #2c4772 0%, var(--theme-color1) 100%);
}

.drg-expertise-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.drg-exp-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s ease;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
}

.drg-expertise-card:hover .drg-exp-icon {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: scale(1.1) rotate(8deg);
}

.drg-expertise-card h4 {
    font-size: 24px;
    font-family: var(--title-font);
    color: #ffffff;
    margin: 0;
    transition: all 0.4s ease;
    line-height: 1.3;
    font-weight: 700;
}

.drg-expertise-card p {
    font-size: 17px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    transition: all 0.4s ease;
}

.drg-expertise-card:hover p {
    color: #ffffff;
}


/* Language Ribbon */
.drg-lang-ribbon {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(33, 53, 100, 0.05);
    border: 1px solid rgba(33, 53, 85, 0.05);
}

@media (max-width: 767px) {
    .drg-lang-ribbon {
        flex-wrap: wrap;
        gap: 20px;
        border-radius: 30px;
        justify-content: space-around;
        padding: 20px;
        margin-top: 50px;
    }
}

.drg-lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.drg-lang-item i {
    color: var(--theme-color2);
    font-size: 20px;
}

.drg-lang-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color1);
}

/* Lightbox2 Modern Overrides */
.lb-dataContainer .lb-closeContainer {
    position: fixed !important;
    top: 30px !important;
    right: 30px !important;
    z-index: 99999 !important;
    float: none !important;
}

.lb-dataContainer .lb-close {
    width: 40px !important;
    height: 40px !important;
    background-size: contain !important;
    opacity: 0.9 !important;
    transition: transform 0.3s ease !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.lb-dataContainer .lb-close:hover {
    transform: scale(1.1);
    opacity: 1 !important;
}

/* Ensure the overlay is dark enough for the X to pop */
.lightboxOverlay {
    background-color: rgba(0, 0, 0, 0.9) !important;
}
/* Testimonial Page Styles */
.drg-testimonial-wrapper.ll-home .ll-patient-testimonial-card {
    background: linear-gradient(145deg, #fffcfb 0%, var(--theme-color3) 100%);
    border: 1px solid rgba(33, 53, 85, 0.15); /* Darker border using theme color 1 with opacity */
    box-shadow: 0 10px 30px rgba(33, 53, 85, 0.05);
}

.drg-testimonial-wrapper.ll-home .ll-patient-testimonial-card:hover {
    background: linear-gradient(145deg, var(--theme-color3) 0%, #fffcfb 100%);
    border-color: var(--theme-color1); /* Solid dark border on hover */
    transform: translateY(-8px);
}

.drg-rating-card {
    background: #fff;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(33, 53, 85, 0.05);
    display: inline-block;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(33, 53, 85, 0.05);
}

.drg-google-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.drg-google-header span {
    font-weight: 700;
    color: var(--theme-color1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
}

.drg-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
}

.drg-avg-score {
    font-size: 48px;
    font-weight: 800;
    color: var(--theme-color1);
    font-family: var(--title-font);
}

.big-stars i {
    font-size: 32px;
    color: #f59e0b;
}

.drg-rating-card p {
    margin: 0;
    color: #000;
    font-weight: 500;
}

@media (max-width: 767px) {
    .drg-rating-card {
        width: 100%;
        margin-top: -40px;
        padding: 30px 20px;
    }

    .drg-avg-score {
        font-size: 36px;
    }

    .big-stars i {
        font-size: 24px;
    }
}

/* Contact Page Styles */
.drg-contact-info-section {
    padding: 50px 0 50px;
}

.drg-contact-split-box {
    background: transparent;  
    /* border-radius: 40px; */
    overflow: hidden;
    box-shadow: none;
    padding: 10px;
}

.drg-contact-left-visual {
    position: relative;
    z-index: 2;
    /* padding: 40px;  */
}

.drg-arch-frame {

    overflow: hidden;
  
    border: none;
    padding: 0;
}

.drg-arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.drg-contact-right-panel {
    /* background: var(--theme-color5); */
    padding: 0 40px 40px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* gap: 20px; */
}

.drg-contact-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.drg-contact-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.drg-info-icon-box {
    width: 50px;
    height: 50px;
    background: #f0f4f8; /* Soft circular background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--theme-color1);
    flex-shrink: 0;
}

.drg-card-content h2 {
    color: var(--theme-color1);
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--title-font);
}

.drg-card-content p, 
.drg-card-content a {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    display: block;
    transition: all 0.3s ease;
}

.drg-contact-mini-card:hover .drg-card-content a {
    color: var(--theme-color1);
}

@media (max-width: 991px) {
   
    .drg-service-sidebar{
        margin-top: 20px !important;
    }
    .drg-contact-split-box {
        border-radius: 30px;
    }
    .drg-arch-frame {
        height: 430px !important;
        border-radius: 150px 150px 20px 20px;
    }
    .drg-contact-right-panel {
        padding: 10px;
        border-radius: 15px;
    }
    .drg-contact-mini-card {
        margin-bottom: 10px !important;
        padding: 20px 15px;
        gap: 15px;
    }
    
.drg-info-icon-box {
    width: 33px;
    height: 33px;
    font-size: 15px;
}
}

.drg-contact-info-card p.drg-address-text {
    text-align:start;
}

.drg-contact-info-card a:hover {
    color: #000000;
    text-decoration: none;
}

/* Map Section */
.drg-map-section {
    padding-top: 0;
    padding-bottom: 100px;
    background: #fff;
}

.drg-map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #eee;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(33, 53, 85, 0.05);
}

.drg-map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: grayscale(0.2) contrast(1.1);
}

@media (max-width: 991px) {
    .drg-contact-info-section {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .drg-contact-info-card {
        padding: 40px 20px;
        border-radius: 60px 0 60px 0;
    }

    .drg-contact-info-card::before {
        border-radius: 70px 0 70px 0;
    }
    .drg-card-content p, .drg-card-content a{
        font-size: 17px;
    }
    .drg-card-content h2{
        font-size: 26px;
    }
}

.drg-address-text {
    text-align: start;
}
/* --- Service Page Layout & Sidebar Styles --- */
.drg-service-sidebar {
    position: sticky;
    top: 140px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 15px 40px rgba(33, 53, 85, 0.08);
    border: 1px solid rgba(33, 53, 85, 0.05);
}

.drg-sidebar-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-color1);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--theme-color5);
    position: relative;
}

.drg-sidebar-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--theme-color2);
}

.drg-service-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drg-service-nav li {
    margin-bottom: 12px;
}

.drg-service-nav li a {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    background: var(--theme-color4);
    border-radius: 12px;
    color: var(--theme-color1);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.drg-service-nav li a .icon {
    margin-right: 12px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--theme-color2);
    transition: all 0.3s ease;
}

.drg-service-nav li a:hover,
.drg-service-nav li.active a {
    background: var(--theme-color1);
    color: #fff;
    transform: translateX(8px);
}

.drg-service-nav li a:hover .icon,
.drg-service-nav li.active a .icon {
    color: var(--theme-color1);
    background: #fff;
}

.drg-sidebar-cta {
    margin-top: 35px;
    background: var(--theme-color2);
    border-radius: 15px;
    padding: 25px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.drg-sidebar-cta h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 10px;
}

.drg-sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 20px;
}

.drg-sidebar-cta .drg-btn {
    background: #fff;
    color: var(--theme-color1);
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
}

.drg-service-content-wrap {
    padding-left: 30px;
}

.drg-service-main-img {
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.drg-service-main-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Service Details Redesign */
.drg-service-details .drg-service-main-img img {
    max-height: 400px;
}

.drg-service-details h2 {
    color: var(--theme-color1);
    font-weight: 700;
    font-family: var(--title-font);
    font-size: 42px;
    margin-bottom:15px;
}

.drg-service-details p {
    text-align: justify;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 10px;
}

.drg-service-details p:last-of-type {
    margin-bottom: 20px;
}

.drg-treatment-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.drg-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.drg-feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #333;
}

.drg-feature-list li i {
    color: var(--theme-color1);
    font-size: 18px;
}

.drg-treatment-item {
    background: var(--theme-color3);
    border-left: 4px solid var(--theme-color1) !important;
    padding: 15px;
    border-radius: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.drg-treatment-item:hover {
    transform: translateX(5px);
}

.drg-treatment-icon {
    color: var(--theme-color1);
    font-size: 24px;
    margin-top: 2px;
}

.drg-treatment-text {
    font-size: 18px;
    color: #000;
}

.drg-cta-btn-premium {
    background: var(--theme-color1);
    color: #fff !important;
    padding: 18px 50px;
    border-radius: 999px;
    font-size: 19px;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(33, 53, 85, 0.15);
}

.drg-cta-btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 53, 85, 0.25);
    color: #fff !important;
}

/* Testimonial Section Redesign */
.ll-patient-testimonial-section {
    padding: 100px 0;
    background: #fff;
}

.ll-testimonial-visual {
    position: relative;
    border-radius: 30px;
    overflow: visible;
}

.ll-testi-photo {
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
}

.ll-testi-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ll-testi-floating-stat {
    position: absolute;
    bottom: 30px;
    left: -20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(33, 53, 85, 0.1);
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ll-stat-avatars {
    display: flex;
    margin-bottom: 12px;
}

.ll-stat-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
}

.ll-stat-avatars img:first-child { margin-left: 0; }

.ll-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--theme-color-dark);
    margin-bottom: 5px;
}

.ll-testi-floating-stat p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.ll-testi-badge {
     display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 999px;
    background:var(--theme-color1);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.ll-testi-nav {
    display: flex;
    gap: 10px;
}

.ll-testi-prev, .ll-testi-next {
    width: 44px;
    height: 44px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    color: var(--theme-color-dark);
}

.ll-testi-next {
    background: var(--theme-color2);
    color: #fff;
    border-color: var(--theme-color2);
}

.ll-testi-prev:hover {
    background: #f8f8f8;
}

.ll-testi-next:hover {
    transform: translateX(3px);
    background: var(--theme-color1);
}

@media (max-width: 991px) {
    .ll-testi-photo { height: 400px; }
    .ll-testi-floating-stat { left: 20px; bottom: -20px; }

    .drg-service-details p:last-of-type {
    margin-bottom: 20px !important;
}
}

@media (max-width: 991px) {
    .ll-hero-photo-oval {
        width: 320px;
        height: 440px;
    }
    .ll-hero-seal {
        bottom: 30px;
        right: -10px;
        padding: 10px 20px;
    }
    .ll-seal-text strong { font-size: 16px; }
}

@media (max-width: 767px) {
    .ll-hero-photo-oval {
        width: 260px;
        height: 360px;
    }
    .ll-hero-seal {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
        animation: llFloatSealMobile 6s infinite ease-in-out;
    }
    @keyframes llFloatSealMobile {
        0%, 100% { transform: translateY(0) translateX(50%); }
        50% { transform: translateY(-10px) translateX(50%); }
    }
    .ll-home .ll-hero-media {
        min-height: 400px;
        /* margin-bottom: 40px; */
    }
}
@media (max-width: 991px) {
    .drg-service-main-section {
        padding-top: 0 !important;
    }

    .drg-service-main-section .row {
        display: flex;
        flex-direction: column-reverse; /* Content (2nd in HTML) on top, Sidebar (1st in HTML) on bottom */
    }

    .drg-service-content-wrap {
        padding-left: 0;
        margin-top: 15px;
    }

    @media (max-width: 575px) {
        .drg-service-content-wrap {
            padding: 1rem !important;
        }
    }

    .drg-service-details h2 {
        font-size: 32px;
        margin-bottom: 10px !important;
    }
    
    .drg-treatment-item {
        padding: 10px 5px !important;
        gap: 1rem;
    }
    
    .drg-cta-btn-premium {
        padding: 16px 40px;
        font-size: 17px;
        width: 100%;
    }
}

/* Advanced Clinical Accreditation (Master Panel) */
.drg-master-cert {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.drg-master-card {
    background: linear-gradient(135deg, var(--theme-color1) 0%, #1a2a44 100%);
    border-radius: 40px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 30px 70px rgba(33, 53, 85, 0.2); */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.drg-master-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 50px 100px rgba(33, 53, 85, 0.3); */
}

.drg-master-glow {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(198, 135, 103, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.drg-master-badge {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.drg-badge-inner {
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.drg-badge-inner i {
    font-size: 50px;
    color: var(--theme-color2);
    margin-bottom: 5px;
}

.drg-badge-year {
    font-size: 18px;
    font-weight: 800;
    color: var(--theme-color1);
    letter-spacing: 0.1em;
}

.drg-badge-orbit {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: orbitRotate 15s linear infinite;
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.drg-master-info {
    position: relative;
    z-index: 3;
}

.drg-master-info .ll-kicker {
    background: var(--theme-color5);
    color: var(--theme-color1);
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
}

.drg-master-title {
    font-size: 28px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 800;
}

.drg-master-title span {
    color: var(--theme-color4);
}

.drg-master-tagline {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-top: 10px;
}

.drg-master-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
}

.drg-master-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.drg-master-pills span {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.drg-master-pills span:hover {
    background: var(--theme-color2);
    border-color: var(--theme-color2);
    transform: scale(1.05);
}

.drg-master-pills i {
    color: var(--theme-color4);
}

.drg-master-stamp {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 200px;
    color: rgba(255,255,255,0.03);
    z-index: 2;
    transform: rotate(-15deg);
}

@media (max-width: 991px) {
   .drg-master-card {
    padding: 30px 23px;
    text-align: center;
   }
    .drg-master-title {
        font-size: 30px;
    }
    .drg-master-tagline {
        font-size: 16px;
    }
    .drg-master-desc {
        margin: 0 auto 30px;
    }
    .drg-master-pills {
        justify-content: center;
    }
}

.drg-cert-badge span {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
}

.drg-cert-title h2 {
    font-size: 56px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.drg-cert-title h2 span {
    color: var(--theme-color4);
}

.drg-cert-details {
    margin-bottom: 40px;
    max-width: 700px;
}

.drg-cert-main {
    font-size: 24px;
    color: var(--theme-color4);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.drg-cert-sub {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.drg-cert-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.drg-cert-tag {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.drg-cert-tag:hover {
    background: var(--theme-color2);
    border-color: var(--theme-color2);
    transform: translateY(-3px);
}

.drg-cert-stamp {
    position: absolute;
    right: -40px;
    bottom: -40px;
    font-size: 300px;
    color: rgba(255,255,255,0.03);
    z-index: 2;
    transform: rotate(-15deg);
}

@media (max-width: 991px) {
    .drg-cert-card {
        padding: 50px 30px;
        flex-direction: column;
        text-align: center;
    }
    .drg-cert-header {
        flex-direction: column;
        gap: 20px;
    }
    .drg-cert-title h2 {
        font-size: 40px;
    }
    .drg-cert-main {
        font-size: 20px;
    }
    .drg-cert-footer {
        justify-content: center;
    }
    .drg-cert-stamp {
        display: none;
    }
}

/* Synchronized Floating Panel Accordion */
.drg-pano-section {
    background: var(--theme-color5);
    padding: 40px 0;
}

.drg-triple-pano {
    width: 100%;
}

.drg-pano-strip {
    display: flex;
    align-items: stretch;
    height: 520px;
    background: #ffffff;
    box-shadow: 0 30px 100px rgba(33, 53, 85, 0.12);
    border-radius: 65px;
    overflow: hidden;
}

.drg-pano-item {
    flex: 1;
    min-width: 0; /* Critical for smooth accordion sync */
    position: relative;
    display: flex;
    align-items: stretch;
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.drg-pano-item:hover {
    flex: 1.6; /* Subtle, controlled accordion expansion */
}

.drg-pano-item.is-cochlear .drg-pano-img { background-image: url('../images/cochlear-implant.png'); }
.drg-pano-item.is-temporal .drg-pano-img { background-image: url('../images/temporal-bone.png'); }
.drg-pano-item.is-fess .drg-pano-img { background-image: url('../images/Fess-surgery.png'); }

.drg-pano-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.drg-pano-item:hover .drg-pano-img {
    transform: scale(1.05);
}

.drg-pano-overlay {
    position: absolute;
    bottom: 3px;
    left: 44px;
    right: 42px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-align: center;
    z-index: 2;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.drg-pano-item:hover .drg-pano-overlay {
    bottom: 40px;
    background: rgba(255, 255, 255, 0.85); /* Maintain glassmorphism */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.drg-pano-overlay h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--theme-color1);
    margin: 0;
    font-family: var(--title-font);
    letter-spacing: 0.02em;
    white-space: nowrap; /* Keep text stable */
}

@media (max-width: 991px) {
    .drg-pano-strip {
        flex-wrap: wrap;
        height: auto;
        border-radius: 40px;
        background: transparent;
        box-shadow: none;
    }
    .drg-pano-item {
        flex: 1 0 50%; /* 2 images per row on iPad */
        height: 350px;
        border-radius: 30px;
        margin-bottom: 20px;
        overflow: hidden;
        cursor: default;
    }
    .drg-pano-item:hover {
        flex: 1 0 50%; /* Disable width expansion */
    }
    .drg-pano-item:hover .drg-pano-img {
        transform: none; /* Disable image zoom */
    }
    .drg-pano-item:hover .drg-pano-overlay {
        bottom: 20px; /* Keep overlay static */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Match default shadow */
    }
    .drg-pano-item:last-child {
        flex: 1 0 100%;
        margin-bottom: 0;
    }
    .drg-pano-item:last-child:hover {
        flex: 1 0 100%;
    }
    .drg-pano-overlay {
        bottom: 20px;
        left: 15px;
        right: 15px;
        padding: 20px 10px;
    }
    .drg-pano-overlay h5 {
        white-space: normal;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .drg-pano-item {
        flex: 1 0 100%; /* 1 image per row on mobile */
        height: 300px;
    }
    .drg-pano-item:hover {
        flex: 1 0 100%;
    }
}


/* Clinical Expertise Section (Authoritative Full Panel) */
.drg-expertise-section {
    padding: 80px 0;
    background: #ffffff;
}

.drg-expertise-col-box {
    background: var(--theme-color5);
    padding: 40px 45px;
    border-left: 8px solid var(--theme-color1);
    border-radius: 0 25px 25px 0;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto; /* Center the box if it's shrink-wrapped */
    border: 1px solid rgba(0,0,0,0.02);
}

.drg-expertise-full-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drg-expertise-full-list li {
    display: flex;
    align-items: flex-start;
    gap: 25px; /* Increased gap as requested */
    margin-bottom: 30px;
}

.drg-expertise-full-list li:last-child {
    margin-bottom: 0;
}

.drg-expertise-full-list li i {
    font-size: 14px;
    color: var(--theme-color1);
    width: 32px;
    height: 32px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
    margin-top: 3px;
}

.drg-expertise-full-list li span {
    font-size: 18px; /* Increased to 18px as requested */
    font-weight: 500;
    line-height: 1.6;
    color: var(--theme-color1);
}

@media (max-width: 991px) {
    .drg-expertise-col-box {
        padding: 35px 10px;
        border-left-width: 6px;
    }
    .drg-expertise-full-list li {
        gap: 15px;
        margin-bottom: 25px;
    }
    .drg-expertise-full-list li span {
        font-size: 16px;
    }
    .drg-pub-card{
        padding: 15px 10px !important;
        margin-bottom:0px !important;
    }
}

/* Contact Page Visuals */
.drg-contact-visual-wrap {
    padding-right: 40px;
    position: relative;
}

.drg-contact-arch-img {
    position: relative;
    border-radius: 200px 200px 30px 30px; /* Dome shape as per request */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(33, 53, 85, 0.12);
    border: 1px solid rgba(33, 53, 85, 0.05);
}

.drg-contact-arch-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
}

.drg-contact-arch-img:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .drg-contact-visual-wrap {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .drg-contact-arch-img img {
        height: 400px;
    }
    .drg-designation{
          text-align: start !important;
    }
    .drg-bio-content h2{
        text-align: start !important;
        margin-bottom: 15px !important;
        font-size: 38px !important;
    }
}

/* --- About Page Bio Section Styles --- */
.drg-bio-section {
    padding: 30px 0 40px;
    background: #ffffff;
}

.drg-portrait-canvas {
    position: relative;
    max-width: 410px;
    padding: 30px;
 
}

.drg-portrait-canvas .drg-arch-frame {
    position: relative;
    z-index: 2;
    border-radius: 250px 250px 10px 10px;
    overflow: hidden;
    height: 470px;
    background: var(--theme-color5);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: none;
    padding: 0;
}

.drg-portrait-canvas .drg-arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.drg-visual-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.drg-dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(to bottom, #f9cfaf, #f7dccc70);
    -webkit-mask-image: radial-gradient(black 2.5px, transparent 2.5px);
    -webkit-mask-size: 20px 20px;
    mask-image: radial-gradient(black 2.5px, transparent 2.5px);
    mask-size: 20px 20px;
    opacity: 1;
}

.drg-arch-shadow {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: calc(100% - 30px);
    height: calc(100% - 50px);
    border-radius: 250px 250px 20px 20px;
    background: #f8f6f4;
    z-index: 0;
    display: none;
}



.drg-bio-content h2 {
    font-size: 42px;
    color: var(--theme-color1);
    font-weight: 700;
    margin-bottom: 10px !important;
    font-family: var(--title-font);
}

.drg-copy-main p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.drg-bio-footer {
    margin-top: 15px;
}

@media (max-width: 991px) {
    .drg-portrait-canvas {
        margin-bottom: 10px;
    }
    .drg-bio-content {
        padding-left: 0;
    }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 70px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.float-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff !important;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.call-btn {
    background-color: var(--theme-color1);
}

.call-btn:hover {
    background-color: var(--theme-color2);
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

@media (max-width: 1399.98px) {
    .floating-contact-buttons {
        bottom: 120px;
    }
}

@media (max-width: 767px) {
    .scroll-to-top{
         bottom: 50px !important; 
    }
    .floating-contact-buttons {
        right: 20px;
        bottom: 100px;
    }
}

/* --- Scroll Reveal Animations (Managed by GSAP) --- */
.reveal-fade-up,
.reveal-fade-left,
.reveal-fade-right {
    opacity: 0;
}


