@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

:root {
    --base-clr: #0461a5;
    --base-rgb: 4, 97, 165;
    --btn-clr: #0461a5;
    --btn-clr-dark: #004d82;
    --btn-rgb: 4, 97, 165;
    --base-title: #0461a5;
    --base-white: #0461a5;
    --body-clr: #18191b;
    --light-clr: #ded6ff;
    --title-clr: #18191b;
    --title-rgb: 24, 25, 27;
    --body-bg: #fcfcfc;
    --body-bg-rgb: 252, 252, 252;
    --section-bg: #ffffff;
    --section-bg-2: #ffffff;
    --section-light: #f3f9ff;
    --dark-clr: #00447a;
    --dark-rgb: 0, 68, 122;
    --white-clr: #ffffff;
    --white-rgb: 255, 255, 255;
    --footer: #001f35;
    --footer-bottom: #dbf1ff;
    --primary-clr: #0c67a3;
    --primary-rgb: 12, 103, 163;
    --border-clr: #eeeeee;
    --border-light: #e5e5e5;
    --border-light-only: #e5e5e5;
    --border-dark: #302474;
    --border-dark-only: transparent;
    --header-bg: rgba(227, 242, 252, 0.95);
    --heading-fonts: "Helvetica", sans-serif;
    --body-fonts: "Roboto", sans-serif;
    --base-shadow-sm: 0 0 1px var(--base-clr), 0 0 3px var(--base-clr);
    --base-shadow: 0 0 1px var(--base-clr), 0 0 2px var(--base-clr),
        0 0 3px var(--base-clr), 0 0 5px var(--base-clr),
        0 0 7px var(--base-clr);
    --shadow: 0 0 5px rgba(var(--title-rgb), 0.2);
}

.dark-theme {
    --base-clr: #0093ff;
    --btn-rgb: 4, 97, 165;
    --btn-clr: #0461a5;
    --base-rgb: 0, 147, 255;
    --base-title: #ffffff;
    --base-white: #fff;
    --body-clr: #ffffff;
    --title-clr: #ffffff;
    --title-rgb: 255, 255, 255;
    --body-bg: #121213;
    --body-bg-rgb: 18, 18, 19;
    --section-bg: rgba(17, 32, 43, 0.6);
    --section-bg-2: #141a20;
    --dark-clr: #142120;
    --dark-rgb: 20, 33, 32;
    --white-clr: #ffffff;
    --white-rgb: 255, 255, 255;
    --border-clr: #283c40;
    --border-dark: #283c40;
    --border-dark-only: #283c40;
    --header-bg: #11202be6;
    --footer: #001f35;
    --footer-bottom: #111a21;
}

html {
    /* Fluid root: every rem-based value across the landing pages scales smoothly
       from 1366px desktops up through 65" 4K TVs. Clamped so mobile keeps 14px
       and very wide displays cap at 28px so body text stays readable from a
       larger viewing distance. */
    font-size: clamp(14px, 1vw, 28px);
    scroll-behavior: smooth;
}

/* On the landing pages, make the Bootstrap container effectively full-width on
   wide displays. On a 65" / 4K monitor we want content edge-to-edge (with a
   reasonable side gutter) rather than pinned to Bootstrap's 1320px cap.
   body.landing-page .container has specificity (0,0,2,1), beating Bootstrap's
   single-class .container (0,0,1,0) cleanly without needing !important. */
@media (min-width: 1400px) {
    body.landing-page .container,
    body.landing-page .container-lg,
    body.landing-page .container-md,
    body.landing-page .container-sm,
    body.landing-page .container-xl,
    body.landing-page .container-xxl {
        max-width: 94vw;
        padding-left: clamp(20px, 2vw, 60px);
        padding-right: clamp(20px, 2vw, 60px);
    }
}

/* Smooth scroll offset for fixed header */
#hero-section {
    scroll-margin-top: 100px;
}

body {
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: var(--body-clr);
    line-height: 1.7;
    overflow-x: hidden;
    font-family: var(--body-fonts);
    background: var(--body-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body footer {
    margin-top: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.3;
    color: var(--title-clr);
    font-family: var(--heading-fonts);
    font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--title-clr);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: var(--base-clr);
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 22px;
    line-height: 32px;
}

h3 {
    font-size: 18px;
    line-height: 28px;
}

h4 {
    font-size: 15px;
    line-height: 24px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 14px;
}

p {
    margin-top: -9px;
}

p:last-child {
    margin-bottom: -7px !important;
}

@media (min-width: 576px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
        line-height: 34px;
    }

    h3 {
        font-size: 18px;
        line-height: 28px;
    }

    h4 {
        font-size: 16px;
        line-height: 26px;
    }

    h5 {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 32px;
        line-height: 40px;
    }

    h2 {
        font-size: 26px;
        line-height: 36px;
    }

    h3 {
        font-size: 20px;
        line-height: 30px;
    }

    h4 {
        font-size: 18px;
        line-height: 26px;
    }

    h5 {
        font-size: 16px;
    }
}

a {
    display: inline-block;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

label,
button,
select {
    cursor: pointer;
}

input,
textarea {
    width: 100%;
}

.pt-25 {
    padding-top: 25px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.py-25 {
    padding: 25px 0;
}

.main-footer {
    background: var(--footer);
}

@media (min-width: 1200px) {
    footer .container {
        max-width: 1325px;
    }
}

.footer-bottom {
    background: var(--footer-bottom);
    color: var(--btn-clr);
}

.footer-bottom a {
    color: var(--btn-clr);
}

.dark-theme .footer-bottom {
    color: var(--title-clr);
}

.dark-theme .footer-bottom a {
    color: var(--title-clr);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons a {
    display: block;
}

.social-icons a img {
    width: 20px;
}

.footer__wrapper {
    display: flex;
    flex-wrap: wrap;
}

.footer__wrapper-widget {
    width: 0;
    flex-grow: 1;
    font-size: 12px;
    line-height: 14px;
    text-align: justify;
    padding: 55px 23px 53px;
}

.footer__wrapper-widget .logo {
    display: block;
    margin-bottom: 23px;
}

.footer__wrapper-widget .logo img {
    max-width: 100%;
}

.footer__wrapper-widget p {
    max-width: 218px;
    margin-bottom: 16px;
    color: #f6f6f6;
}

.footer__wrapper-widget .social-icons {
    margin-bottom: 34px;
}

.footer__wrapper-widget:first-child {
    max-width: 317px;
    width: 100%;
}

.footer__wrapper-widget .cont {
    max-width: 244px;
    margin: 0 auto;
}

.footer__wrapper-widget:not(:last-child) {
    border-right: 1px solid rgba(var(--btn-rgb), 0.5);
}

@media (min-width: 1280px) {
    .footer__wrapper-link {
        padding-left: 25px;
    }
}

.footer__wrapper-link li a {
    color: #f1f1f1;
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    padding: 8px 0;
}

.footer__wrapper-link li a:hover {
    color: var(--base-clr);
}

.footer__wrapper-contact {
    text-align: center;
    line-height: 20px;
    color: var(--white-clr);
}

.footer__wrapper-contact .icon {
    height: 50px;
    margin-bottom: 30px;
}

.footer__wrapper-contact h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white-clr);
    margin-bottom: 10px;
    text-transform: capitalize;
}

.footer__wrapper-contact a {
    color: var(--white-clr);
}

.footer__wrapper-contact a:not(.cmn--btn):hover {
    color: var(--base-clr);
}

@media (max-width: 1199px) {
    .footer__wrapper-widget:first-child {
        max-width: 250px;
    }
}

@media (max-width: 991px) {
    .footer__wrapper-widget:first-child {
        max-width: 50%;
        border-bottom: 1px solid rgba(var(--btn-rgb), 0.5);
    }

    .footer__wrapper-widget:nth-child(2) {
        width: 50%;
        border: none;
        border-bottom: 1px solid rgba(var(--btn-rgb), 0.5);
    }

    .footer__wrapper-widget:nth-child(2) .footer__wrapper-link {
        max-width: 180px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .footer__wrapper-widget {
        padding: 50px 15px;
    }
}

@media (max-width: 575px) {
    .footer__wrapper {
        padding: 70px 0;
    }

    .footer__wrapper-widget {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 35px;
        border: none !important;
    }

    .footer__wrapper-widget:not(:last-child) {
        margin-bottom: 25px;
    }

    .footer__wrapper-widget .footer__wrapper-link {
        max-width: 100% !important;
    }

    .footer__wrapper-widget .cont {
        max-width: 100%;
    }

    .footer__wrapper-widget .cont .social-icons {
        margin-bottom: 25px;
    }

    .footer__wrapper-contact {
        text-align: left;
    }

    .footer__wrapper-contact .icon {
        height: 40px;
        margin-bottom: 15px;
    }

    .footer__wrapper-contact h6 {
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    footer .container {
        max-width: 100%;
        padding: 0;
    }
}

.app-btns {
    display: flex;
    gap: 10px;
}

.app-btns a {
    width: calc(50% - 5px);
}

.navbar-top-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* Spread mode toggle / language / phone across the bar instead of
       clustering on the right edge. On narrow viewports it gracefully wraps. */
    justify-content: space-between;
    gap: clamp(14px, 1.6vw, 40px);
    font-weight: 400;
    font-size: clamp(15px, 1.1vw, 22px);
    line-height: 1.2;
    padding: clamp(10px, 1vw, 22px) 0;
    min-height: clamp(45px, 4vw, 80px);
}

.navbar-top-wrapper .tel-link {
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: clamp(15px, 1.1vw, 22px);
}

.navbar-top-wrapper .tel-link i {
    margin-right: clamp(4px, 0.4vw, 10px);
    transform: translateY(-1px) rotate(18deg);
    font-size: clamp(15px, 1.1vw, 22px);
    font-weight: 900;
}

.navbar-top-wrapper .lagn-drop-btn,
.navbar-top-wrapper .topbar-link,
.navbar-top-wrapper .topbar-text {
    font-size: clamp(15px, 1.1vw, 22px);
}

.navbar-top-wrapper .topbar-link .material-icons,
.navbar-top-wrapper .topbar-link .material-symbols-outlined {
    font-size: clamp(18px, 1.4vw, 28px);
}

@media (max-width: 575px) {
    .navbar-top-wrapper {
        font-size: 14px;
    }
}

.mode--toggle {
    width: clamp(48px, 3.6vw, 72px);
    height: clamp(24px, 1.8vw, 36px);
    border-radius: 50px;
    background: rgba(141, 153, 174, 0.5);
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    z-index: 99;
    flex-shrink: 0;
}

.mode--toggle img {
    transition: all ease 0.3s;
    position: absolute;
    left: 2px;
    top: 1px;
    height: clamp(20px, 1.5vw, 30px);
    width: clamp(20px, 1.5vw, 30px);
    border-radius: 50%;
}

.language-bar {
    color: var(--title-clr);
    position: relative;
}

.language-bar button {
    outline: none;
    border: none;
    box-shadow: none;
    background: transparent;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.language-bar button img {
    width: 18px;
    height: 13px;
    object-fit: contain;
}

.language-bar button span {
    padding-left: 7px;
    color: var(--title-clr);
}

.language-bar .lang-btn {
    padding: 3px 12px;
    margin: 0 10px;
    height: 20px;
}

.language-bar ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(141, 153, 174, 0.5);
    transform: translateY(15px);
    visibility: hidden;
    opacity: 0;
    transition: all ease 0.4s;
    background: var(--white-clr);
    z-index: 99;
}

.language-bar ul li {
    padding: 0;
}

.language-bar ul li button {
    height: 35px;
    padding: 0 27px 0 23px;
}

.language-bar ul li button span {
    color: var(--dark-clr);
    font-size: 14px;
}

.language-bar>button:focus~ul {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.navbar-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(10px, 0.9vw, 18px) clamp(20px, 2vw, 48px);
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);
    -ms-backdrop-filter: blur(20px);
    -o-backdrop-filter: blur(20px);
    border-radius: 0px 0px 16px 16px;
    transition: all ease 0.3s;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    min-height: clamp(64px, 5vw, 90px);
    flex-wrap: nowrap;
}

.navbar-bottom-wrapper .menu {
    display: flex;
    margin-left: auto;
    margin-right: clamp(12px, 1.5vw, 40px);
    transition: all ease 0.3s;
    transform-origin: top;
    gap: clamp(2px, 0.4vw, 12px);
    flex-shrink: 0;
    white-space: nowrap;
}

/* On wide screens, drop the auto-margin push and let menu items spread
   across the row using space-around so each link breathes proportionally
   instead of clustering. parent already uses justify-content: space-between,
   so logo stays left and Contact Us stays right while menu fills the middle. */
@media (min-width: 1400px) {
    .navbar-bottom-wrapper .menu {
        flex: 1 1 auto;
        margin-left: clamp(30px, 2.5vw, 80px);
        margin-right: clamp(30px, 2.5vw, 80px);
        justify-content: space-around;
        gap: clamp(4px, 0.6vw, 18px);
    }
}

.navbar-bottom-wrapper .menu li {
    padding: 0;
}

.navbar-bottom-wrapper .menu li a {
    padding: clamp(6px, 0.6vw, 14px) clamp(10px, 1vw, 22px);
    font-size: clamp(13px, 0.95vw, 20px);
    color: var(--title-clr);
    text-transform: capitalize;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Poppins', 'Inter', 'Montserrat', sans-serif;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.navbar-bottom-wrapper .menu li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: #20B2AA;
    transition: transform 0.3s ease;
    z-index: 1;
    border-radius: 2px;
}

.navbar-bottom-wrapper .menu li a:hover {
    color: #20B2AA;
    background: rgba(0, 196, 204, 0.1);
    box-shadow: 0 2px 8px rgba(0, 196, 204, 0.2);
}

/* .navbar-bottom-wrapper .menu li a span {
    position: relative;
} */

/* .navbar-bottom-wrapper .menu li a > span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    height: 2px;
    background: var(--base-clr);
    border-radius: 2px;
    width: 0;
    transition: 0.3s ease-in-out;
} */

.navbar-bottom-wrapper .menu li a.active {
    color: #20B2AA;
}

.navbar-bottom-wrapper .menu li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-bottom-wrapper .menu li a:hover span::before,
.navbar-bottom-wrapper .menu li a:hover span::before,
.navbar-bottom-wrapper .menu li a.active span::before,
.navbar-bottom-wrapper .menu li a.active span::before {
    width: 100%;
}

@media (max-width: 1200px) {
    .navbar-bottom-wrapper .logo {
        width: 220px;
    }

    .navbar-bottom-wrapper .menu {
        gap: 2px;
    }

    .navbar-bottom-wrapper .menu li a {
        padding: 6px 8px;
        font-size: 12.5px;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .navbar-bottom-wrapper {
        flex-wrap: nowrap;
        padding: 12px 20px;
        min-height: 64px;
        overflow-x: auto;
    }

    .navbar-bottom-wrapper .menu li a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .header-top .contact-info {
        font-size: 1rem;
    }

    .header-top .language-selector {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .navbar-bottom-wrapper {
        flex-wrap: nowrap;
        padding: 10px 16px;
        min-height: 56px;
        overflow-x: auto;
    }

    .navbar-bottom-wrapper .logo {
        height: 44px;
        width: 180px;
        flex-shrink: 0;
    }

    .navbar-bottom-wrapper .menu {
        position: absolute;
        top: 100%;
        flex-direction: column;
        width: 100%;
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.98);
        left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-right: 0;
        gap: 0;
    }

    .navbar-bottom-wrapper .menu li {
        padding: 0;
        margin-bottom: 8px;
    }

    .navbar-bottom-wrapper .menu li a {
        padding: 12px 16px;
        display: block;
        border-radius: 8px;
        margin-bottom: 4px;
    }

    .navbar-bottom-wrapper .menu:not(.active) {
        transform: scaleY(0);
    }

    .cmn--btn {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        max-width: 200px;
    }
}

.navbar-bottom-wrapper .logo {
    height: clamp(50px, 4vw, 76px);
    width: clamp(200px, 18vw, 360px);
    padding-left: 10px;
    flex-shrink: 0;
}

.navbar-bottom-wrapper .cmn--btn {
    font-size: clamp(13px, 0.9vw, 18px);
    padding: clamp(8px, 0.6vw, 14px) clamp(18px, 1.5vw, 36px);
    min-width: clamp(110px, 9vw, 180px);
}

.navbar-bottom-wrapper .logo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* Dark mode: invert Glam logo to white for visibility */
.dark-theme .navbar-bottom-wrapper .logo img {
    filter: brightness(0) invert(1);
}

@media (max-width: 575px) {
    .navbar-bottom-wrapper {
        padding: 8px 12px;
        min-height: 52px;
    }

    .navbar-bottom-wrapper .logo {
        width: 0;
        flex-grow: 1;
        margin-right: 10px;
        max-width: 180px;
        height: 40px;
    }

    .navbar-bottom-wrapper .cmn--btn {
        font-size: 12px;
        padding: 6px 14px;
        font-weight: 500;
        min-width: auto;
    }
}

.navbar-top {
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    -ms-backdrop-filter: blur(10px);
    -o-backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header {
    position: sticky;
    top: 0;
    z-index: 9;
}

/*Dark CSS For Header*/
.dark-theme .mode--toggle img {
    transform: translateX(21px);
}

.dark-theme .navbar-top-wrapper .text--base {
    color: var(--white-clr) !important;
}

.nav-toggle {
    position: relative;
    cursor: pointer;
    width: 25px;
    height: 20px;
}

.nav-toggle span {
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 100%;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    transition: all ease 0.3s;
    background: var(--title-clr);
    left: 0;
}

.nav-toggle span:first-child {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 52%;
    transform: translateY(-65%);
}

.nav-toggle span:last-child {
    bottom: 0;
}

.nav-toggle.active span:first-child {
    -webkit-transform: rotate(45deg) translate(3px, 10px);
    -ms-transform: rotate(45deg) translate(3px, 10px);
    transform: rotate(45deg) translate(3px, 10px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:last-child {
    -webkit-transform: rotate(-45deg) translate(3px, -10px);
    -ms-transform: rotate(-45deg) translate(3px, -10px);
    transform: rotate(-45deg) translate(3px, -10px);
}

.banner-section {
    padding: 41px 0 25px;
}

.banner-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.banner-content {
    width: 0;
    max-width: 446px;
    flex-grow: 1;
    margin-top: 30px;
}

.banner-content .subtitle {
    font-weight: 400;
    margin-bottom: 20px;
}

.banner-content .subtitle::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 2px;
    background: var(--btn-clr);
    margin-right: 10px;
    transform: translateY(-3px);
    border-radius: 2px;
}

.banner-content .title {
    text-transform: uppercase;
    margin-bottom: 25px;
}

.banner-content .txt {
    font-size: 16px;
    margin: 0;
    margin-bottom: 45px;
}

@media (max-width: 1199px) {
    .banner-content {
        max-width: 350px;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .banner-content {
        width: 100%;
        max-width: 90%;
        margin: 0 auto 20px auto;
    }

    .banner-content .title {
        margin-bottom: 15px;
    }

    .hero-content {
        max-width: 80%;
        margin: 0 auto;
    }

    .app-download-buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .app-download-buttons .btn {
        flex: 0 0 auto;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .banner-content {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .banner-content .title {
        margin-bottom: 15px;
    }

    .banner-content .txt {
        margin-bottom: 20px;
    }
}

.banner-thumb {
    width: 0;
    max-width: 700px;
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.banner-thumb-wrapper {
    overflow: hidden;
    height: 200px;
}

.banner-thumb img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.banner-thumb img:hover {
    transform: scale(1.05);
}

/* Hero Section with Uploaded Background
   `cover` lets the image span the full container width edge-to-edge at every
   breakpoint instead of being letterboxed by `contain` on wide displays.
   The portrait hero asset is composed center-safe, so vertical crop on wide
   monitors is intentional and lossless to the framed subject. The section
   inherits 100% block width from <body>; no 100vw override (that would
   include scrollbar width and cause horizontal jitter). */
.hero-section {
    background-image: url('../img/hero-bg.jpg?v=12345') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    /* Wide ceiling so the side-by-side Beautician button + Register here
       link doesn't overflow the column on huge screens. */
    max-width: clamp(600px, 55vw, 1900px);
    padding: clamp(30px, 3vw, 60px) clamp(20px, 2.5vw, 50px);
    color: white;
    margin-left: 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .hero-content {
        margin-left: 0;
        text-align: center;
        padding: 40px 25px;
        max-width: 100%;
        min-height: auto;
        justify-content: flex-start;
        padding-top: 20vh;
    }
}

.hero-text {
    font-family: 'Poppins', 'Inter', 'Montserrat', sans-serif;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 4.2vw, 7rem);
    margin-bottom: clamp(1.5rem, 2.2vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    color: white;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.hero-content p {
    margin-bottom: clamp(2rem, 2.5vw, 4rem);
    font-size: clamp(1.2rem, 1.6vw, 2.6rem);
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    color: #f0f0f0;
    font-weight: 400;
    white-space: nowrap;
}

.hero-ctas {
    margin-bottom: clamp(1.2rem, 1.8vw, 2.5rem);
    display: flex;
    gap: clamp(1rem, 1.2vw, 2rem);
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: clamp(500px, 40vw, 900px);
}

.btn-app-store,
.btn-google-play {
    padding: 0;
    border-radius: 12px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 12px rgba(255, 255, 255, 0.2),
        0 4px 14px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    background: transparent;
    overflow: hidden;
    width: clamp(160px, 14vw, 260px);
    aspect-ratio: 280 / 90;
    height: auto;
    position: relative;
    flex-shrink: 0;
}

.store-button-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-app-store:hover,
.btn-google-play:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.3),
        0 0 25px rgba(255, 255, 255, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.btn-app-store:hover .store-button-img,
.btn-google-play:hover .store-button-img {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.hero-secondary-cta {
    /* Beautician? button and Register here link scale together via the shared
       --cta-scale token and stay on a single row (nowrap) so the link never
       falls below the button. The wider --cta-scale ceiling lets the pair
       grow on 4K / 65" displays. */
    --cta-scale: clamp(1.1rem, 2.2vw, 4.2rem);
    margin-top: clamp(1.5rem, 2vw, 3rem);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(14px, 1.8vw, 56px);
    flex-wrap: nowrap;
}

.btn-beautician {
    background: #FF6B35;
    color: white;
    /* Padding hugs the text — vertical 0.55× cta-scale, horizontal 1.3× —
       so the button width tracks the word "Beautician?" naturally as the
       font grows on bigger screens, instead of being floated wide by a
       fixed min-width. */
    padding: calc(var(--cta-scale) * 0.55) calc(var(--cta-scale) * 1.3);
    border-radius: clamp(10px, 0.9vw, 22px);
    font-size: var(--cta-scale);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.1;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-beautician:hover {
    background: #E55A2B;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    text-decoration: none;
}

.beautician-link {
    color: white;
    text-decoration: underline;
    /* Track the same scale as the orange button so the pair stays proportional. */
    font-size: calc(var(--cta-scale) * 0.92);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: calc(var(--cta-scale) * 0.35);
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

.beautician-link span {
    display: inline;
    white-space: nowrap;
}

.beautician-link i {
    display: inline;
    font-size: calc(var(--cta-scale) * 0.85);
    line-height: 1;
    flex-shrink: 0;
}

.beautician-link:hover {
    color: #20B2AA;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
        padding: 20px;
        min-height: auto;
        justify-content: flex-start;
        padding-top: 15vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        line-height: 1.3;
        white-space: normal;
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        line-height: 1.5;
        white-space: normal;
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .btn-app-store,
    .btn-google-play {
        width: 180px;
        height: auto;
        flex-shrink: 0;
    }

    .hero-secondary-cta {
        justify-content: center;
        margin-top: 1.5rem;
        flex-direction: row;
        gap: 16px;
        flex-wrap: nowrap;
    }

    .btn-beautician {
        padding: 12px 28px;
        font-size: 1rem;
        min-width: 140px;
        flex-shrink: 0;
    }

    .beautician-link {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        white-space: normal;
    }

    .hero-content p {
        font-size: 1.2rem;
        line-height: 1.3;
        white-space: normal;
    }

    .hero-section {
        min-height: 400px;
    }

    .btn-app-store,
    .btn-google-play {
        width: 160px;
        height: auto;
        flex-shrink: 0;
    }

    .btn-beautician {
        padding: 12px 24px;
        font-size: 1rem;
        min-width: 130px;
    }

    .beautician-link {
        font-size: 0.95rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .beautician-link i {
        font-size: 1rem;
        flex-shrink: 0;
    }
}

@media (min-width: 1400px) {
    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        max-width: 370px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: 315px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: 200px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: 485px;
    }
}

@media (max-width: 1399px) {
    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        max-width: 350px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: 278px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: 200px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: 428px;
    }
}

@media (max-width: 1199px) {
    .banner-thumb-wrapper {
        height: 180px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        max-width: 310px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: 234px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: 180px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: 364px;
    }
}

@media (max-width: 991px) {
    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        max-width: 370px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: 314px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: 200px;
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: 484px;
    }
}

@media (max-width: 767px) {
    .banner-thumb {
        gap: 8px;
    }

    .banner-thumb-wrapper {
        /* height: 160px; */
    }

    .banner-thumb-wrapper:nth-of-type(4n + 1) {
        max-width: calc(65% - 4px);
    }

    .banner-thumb-wrapper:nth-of-type(4n + 2) {
        max-width: calc(35% - 4px);
    }

    .banner-thumb-wrapper:nth-of-type(4n + 3) {
        max-width: calc(30% - 4px);
    }

    .banner-thumb-wrapper:nth-of-type(4n + 4) {
        max-width: calc(70% - 4px);
    }
}

@media (max-width: 767px) and (max-width: 450px) {
    .banner-thumb-wrapper {
        height: 140px;
    }
}

@media (max-width: 767px) and (max-width: 325px) {
    .banner-thumb-wrapper {
        height: 130px;
    }
}

.app-btns {
    gap: 15px;
}

.app-btns a {
    display: block;
    width: calc(50% - 8px);
    max-width: 130px;
    border-radius: 10px;
    transition: box-shadow 0.3s ease;
}

.app-btns a:hover {
    box-shadow: var(--base-shadow-sm);
    filter: brightness(1.1);
}

.app-btns a img {
    width: 100%;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1257px;
    }
}

.section-title {
    text-align: center;
    max-width: clamp(440px, 70vw, 1600px);
    margin: 0 auto clamp(20px, 2vw, 40px);
}

@media (min-width: 992px) {
    .section-title {
        max-width: clamp(640px, 72vw, 1800px);
        margin-bottom: clamp(28px, 2.4vw, 50px);
    }
}

/*Service Section*/
.service-section {
    background: #f8f9fa;
    padding: clamp(50px, 5.5vw, 120px) 0;
}

.service-section .section-title {
    text-align: center;
    font-size: clamp(1.8rem, 2.6vw, 4rem);
    font-weight: 800;
    color: var(--title-clr);
    margin-bottom: clamp(35px, 4vw, 80px);
    font-family: 'Poppins', 'Inter', 'Montserrat', sans-serif;
}

.services-grid {
    display: grid;
    /* Fluid: cards reflow continuously (no fixed column counts / breakpoints). */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
    gap: clamp(16px, 1.6vw, 48px);
    width: 100%;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    /* Fixed 4:3 image area gives uniform tile heights across the row so
       Manicure/Pedicure, Skin & Facial, etc. all line up. `object-fit: cover`
       on the image (below) makes the upload fill the tile edge-to-edge in
       BOTH axes — no centered letterbox bars. The trade-off: portrait
       uploads lose a slim top/bottom strip, which is the lesser evil vs the
       framed-mid look that motivated this change. */
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #000;
}

.service-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: clamp(18px, 1.6vw, 32px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: clamp(1.1rem, 1.25vw, 1.8rem);
    font-weight: 700;
    color: var(--title-clr);
    margin-bottom: clamp(10px, 0.9vw, 18px);
    font-family: 'Poppins', 'Inter', 'Montserrat', sans-serif;
}

.service-card-description {
    font-size: clamp(0.85rem, 0.9vw, 1.2rem);
    line-height: 1.5;
    color: #666;
    margin-bottom: clamp(14px, 1.2vw, 24px);
    flex-grow: 1;
}

.service-card-btn {
    background: linear-gradient(135deg, #20B2AA 0%, #17a2b8 100%);
    color: white;
    padding: clamp(9px, 0.9vw, 16px) clamp(18px, 1.6vw, 32px);
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.8rem, 0.85vw, 1.1rem);
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.service-card-btn:hover {
    background: linear-gradient(135deg, #17a2b8 0%, #20B2AA 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Services */
/* .services-grid column counts are now fluid (auto-fit, above). Only non-layout
   card tweaks remain in the breakpoints below. */
@media (max-width: 991px) and (min-width: 769px) {
    .service-card {
        min-height: 320px;
    }

    .service-card-content {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .service-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .service-card-image {
        height: 180px;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .service-section {
        padding: 60px 0;
    }

    .service-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .service-card-image {
        height: 160px;
    }

    .service-card-content {
        padding: 18px;
    }
}


#landing-loader {
    background: #fcfcfc;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
}

/*About Section - Who We Are*/
.who-we-are-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 4vw, 120px);
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.who-we-are-content {
    padding-right: clamp(0px, 1.5vw, 40px);
}

.who-we-are-content .section-title {
    text-align: left;
    font-size: clamp(1.8rem, 2.6vw, 4rem);
    font-weight: 800;
    color: var(--title-clr);
    margin-bottom: clamp(28px, 2.8vw, 56px);
    font-family: 'Poppins', 'Inter', 'Montserrat', sans-serif;
}

.who-we-are-blurbs {
    margin-bottom: clamp(28px, 2.8vw, 56px);
}

.blurb-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: clamp(24px, 2.4vw, 48px);
    padding: clamp(16px, 1.4vw, 28px);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.blurb-item:hover {
    background: rgba(32, 178, 170, 0.05);
    transform: translateX(5px);
}

.blurb-icon {
    width: clamp(54px, 4.5vw, 88px);
    height: clamp(54px, 4.5vw, 88px);
    background: linear-gradient(135deg, #20B2AA 0%, #17a2b8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: clamp(16px, 1.4vw, 32px);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.blurb-icon i {
    font-size: clamp(22px, 1.8vw, 36px);
    color: white;
}

.blurb-content {
    flex: 1;
}

.blurb-title {
    font-size: clamp(1.15rem, 1.35vw, 2rem);
    font-weight: 700;
    color: var(--title-clr);
    margin-bottom: clamp(8px, 0.8vw, 16px);
    font-family: 'Poppins', 'Inter', 'Montserrat', sans-serif;
}

.blurb-text {
    font-size: clamp(0.95rem, 1.05vw, 1.4rem);
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.who-we-are-btn {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 0.6vw, 14px);
    background: transparent;
    color: #FF6B35;
    font-size: clamp(1rem, 1.15vw, 1.7rem);
    font-weight: 600;
    text-decoration: none;
    padding: clamp(10px, 1vw, 20px) clamp(20px, 1.8vw, 40px);
    border: 2px solid #FF6B35;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: 'Poppins', 'Inter', 'Montserrat', sans-serif;
}

.who-we-are-btn:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    text-decoration: none;
}

.who-we-are-btn i {
    font-size: clamp(0.9rem, 1vw, 1.5rem);
    transition: transform 0.3s ease;
}

.who-we-are-btn:hover i {
    transform: translateX(3px);
}

.who-we-are-image {
    position: relative;
}

.who-we-are-photo {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.who-we-are-photo:hover {
    transform: scale(1.02);
}

/* Responsive Design for Who We Are */
@media (max-width: 768px) {
    .who-we-are-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-we-are-content {
        padding-right: 0;
    }

    .who-we-are-content .section-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .blurb-item {
        margin-bottom: 25px;
        padding: 15px;
    }

    .blurb-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .blurb-icon i {
        font-size: 20px;
    }

    .blurb-title {
        font-size: 1.1rem;
    }

    .blurb-text {
        font-size: 0.9rem;
    }

    .who-we-are-photo {
        height: 480px;
    }
}

@media (max-width: 576px) {
    .who-we-are-wrapper {
        gap: 30px;
    }

    .who-we-are-content .section-title {
        font-size: 1.8rem;
    }

    .blurb-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .blurb-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .who-we-are-photo {
        height: 410px;
        border-radius: 15px;
    }
}

/* Legacy About Section Styles (keeping for compatibility) */
.about__wrapper {
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: flex-end;
}

.about__wrapper-content {
    padding: 53px 34px 38px 43px;
    width: 100%;
    max-width: 527px;
    border-radius: 5px;
    background: var(--section-bg);
}

.about__wrapper-content p {
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
}

.about__wrapper-thumb {
    width: 0;
    flex-grow: 1;
    padding: 25px 27px 25px 0;
    position: relative;
    min-height: 100%;
}

.about__wrapper-thumb .main-img {
    position: relative;
    z-index: 3;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.about__wrapper-thumb .main-img:hover {
    transform: scale(1.02);
}

.about__wrapper-thumb .bg-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 5px;
    height: 100%;
    left: 176px;
    overflow: hidden;
}

.about__wrapper-thumb .bg-img::before,
.about__wrapper-thumb .bg-img::after {
    border-radius: 5px;
    content: "";
    inset: 0;
    position: absolute;
}

.about__wrapper-thumb .bg-img::before {
    background: rgba(var(--btn-rgb), 0.8);
}

.about__wrapper-thumb .bg-img::after {
    inset: 7px;
    background: var(--body-bg);
    opacity: 0.1;
}

.about__wrapper-thumb .bg-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1199px) {
    .about__wrapper-thumb .main-img {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .about__wrapper-thumb .bg-img {
        left: 40px;
    }
}

@media (max-width: 1199px) {
    .about__wrapper-content {
        max-width: 470px;
    }
}

@media (max-width: 991px) {
    .about__wrapper-content {
        max-width: 100%;
        padding: 5px 34px;
    }
}

@media (max-width: 991px) and (max-width: 991px) {
    .about__wrapper-content {
        padding: 30px 15px;
    }
}

@media (max-width: 991px) {
    .about__wrapper-thumb {
        padding: 25px 25px 0;
    }
}

@media (max-width: 991px) and (max-width: 575px) {
    .about__wrapper-thumb {
        padding: 15px 15px 0;
    }
}

@media (max-width: 991px) {
    .about__wrapper-thumb .bg-img {
        left: 0;
        height: calc(100% - 50px);
    }
}

@media (max-width: 991px) {
    .about__wrapper-thumb .main-img {
        height: unset;
    }
}

/*Counter Section*/
.counter__item {
    display: flex;
    /* align-items: center; */
    padding: clamp(20px, 1.8vw, 40px);
    background: var(--section-bg);
    box-shadow: 0px 0px 15px rgba(4, 97, 165, 0.05);
    border-radius: 5px;
}

.counter__item-left {
    width: clamp(48px, 4vw, 80px);
    height: clamp(48px, 4vw, 80px);
    flex-shrink: 0;
}

.counter__item-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.counter__item-right {
    width: 0;
    flex-grow: 1;
    padding-left: clamp(18px, 1.6vw, 36px);
}

.counter__item-right h3 {
    line-height: 1.25;
    font-size: clamp(1.15rem, 1.4vw, 2rem);
    display: flex;
    align-items: center;
    margin-bottom: clamp(6px, 0.7vw, 14px);
}

.counter__item-right h3 .subtitle,
.counter__item-right .subtitle {
    font-size: inherit;
}

.counter__item-right > div {
    font-size: clamp(0.95rem, 1.1vw, 1.5rem);
    line-height: 1.55;
    color: #475569;
}

@media (min-width: 1200px) {
    .counter__item-right h3 {
        font-size: clamp(1.25rem, 1.5vw, 2.2rem);
    }
}

div[class*="col"]:nth-of-type(3n + 1)>.counter__item {
    color: #7f6daf;
}

div[class*="col"]:nth-of-type(3n + 2)>.counter__item {
    color: #c67123;
}

div[class*="col"]:nth-of-type(3n + 3)>.counter__item {
    color: #ff5a5a;
}

/*CTA Section*/
.cta-wrapper {
    border-radius: 10px;
    position: relative;
    padding: 60px 30px;
    overflow: hidden;
}

.cta-wrapper::before {
    background: linear-gradient(89.92deg,
            rgba(236, 247, 255, 0.85) 0.06%,
            rgba(216, 238, 255, 0.85) 52.6%,
            rgba(223, 241, 255, 0.85) 75.48%,
            rgba(216, 238, 255, 0.85) 99.92%);
    border-radius: 10px;
    inset: 0;
    content: "";
    position: absolute;
}

.cta-wrapper .content {
    position: relative;
    z-index: 1;
    max-width: 405px;
    margin: 0 auto;
    line-height: 1.4;
}

.cta-wrapper .content .title {
    margin-bottom: 24px;
}

.cta-wrapper .cmn--btn {
    padding: 12px 36px;
    border-radius: 30px;
    margin-top: 30px;
    position: relative;
}

@media (min-width: 992px) {
    .cta-wrapper .cmn--btn {
        margin: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 60px;
        border: none;
    }
}

.cta-wrapper .left-icon {
    position: absolute;
    right: calc(50% + 180px);
    bottom: 0;
}

@media (min-width: 992px) {
    .cta-wrapper .left-icon {
        right: calc(50% + 275px);
    }
}

@media (max-width: 575px) {
    .cta-wrapper {
        padding: 45px 20px;
    }
}

.cta-main {
    border-radius: 10px;
    overflow: hidden;
}

.text-btn-title {
    color: var(--btn-clr);
}

/*Dark CSS For CTA*/
.dark-theme .text-btn-title {
    color: var(--title-clr);
}

.dark-theme .cta-wrapper::before {
    background: linear-gradient(89.92deg,
            rgba(17, 26, 33, 0.8) 0.06%,
            rgba(17, 26, 33, 0.7) 52.6%,
            rgba(17, 26, 33, 0.8) 75.48%,
            rgba(17, 26, 33, 0.8) 99.92%);
}

/*NewsLetter Section*/
.newsletter-section {
    padding: 70px 0;
    position: relative;
}

.newsletter-section::before {
    content: "";
    inset: 0;
    position: absolute;
    background: #ecf7ff;
    opacity: 0.7;
}

.newsletter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.newsletter-wrapper .content {
    width: 100%;
    max-width: 405px;
    line-height: 20px;
    margin-right: 20px;
    color: var(--base-title);
}

.newsletter-wrapper .content .title {
    font-size: 18px;
    font-weight: 700;
    color: var(--base-white);
    margin-bottom: 6px;
}

.newsletter-wrapper .content p {
    margin: 0;
}

@media (max-width: 991px) {
    .newsletter-wrapper .content {
        max-width: 340px;
    }
}

@media (max-width: 767px) {
    .newsletter-wrapper .content {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }
}

.newsletter-wrapper .newsletter-right {
    width: 120px;
    flex-grow: 1;
    max-width: 596px;
}

.newsletter-form {
    position: relative;
}

.newsletter-form .form-control {
    background: var(--body-bg);
    border: none;
    box-shadow: none;
    border-radius: 30px;
    height: 55px;
    color: var(--title-clr);
    padding: 0 130px 0 20px;
}

.newsletter-form .cmn--btn {
    border-radius: 25px;
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    width: auto;
    height: auto;
}

@media (max-width: 767px) {
    .newsletter-form .form-control {
        height: 45px;
    }
}

.bg__img {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

/*Dark CSS For Newsletter*/
.dark-theme .newsletter-section::before {
    background: #111a21;
}

/*Testimonial Section*/
.testimonial__item {
    text-align: center;
    padding: 41px 28px 43px;
    /* margin: 20px; */
    line-height: 1.6;
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: 1 !important;
    background: var(--section-bg-2);
}

.testimonial__item-wrapper {
    opacity: 0.65;
}

.swiper-slide-active .testimonial__item-wrapper {
    opacity: 1;
}

.testimonial__item-img {
    width: 120px;
    border-radius: 5px;
    margin: 0 auto;
}

.testimonial__item-img img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: contain;
}

.testimonial__item-cont {
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .testimonial__item {
        font-size: 12px;
        padding: 25px 15px 25px;
    }

    .testimonial__item-img {
        width: 80px;
    }
}

.testimonial-section {
    overflow: hidden;
}

.testimonial-slider {
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-slider blockquote {
    margin: 15px 0 0;
}

.testimonial-slider .swiper-slide-active {
    background: var(--section-bg-2);
    box-shadow: 0px 0px 20px rgba(4, 97, 165, 0.15);
    border-radius: 5px;
    transform: scale(1);
    opacity: 1;
    z-index: 10;
}

.swiper-slide-next .testimonial__item,
.swiper-slide-prev .testimonial__item {
    transform: scale(0.92);
    opacity: 0.85;
    z-index: 5;
}

.swiper-slide-next-next .testimonial__item,
.swiper-slide-prev-prev .testimonial__item {
    transform: scale(0.86);
    opacity: 0.6;
    z-index: 1;
}

.swiper-slide-next-next,
.swiper-slide-prev-prev {
    transform: scale(0.86);
    opacity: 0.6;
    z-index: 1;
}

@media (max-width: 991px) {
    .swiper-slide {
        margin: 12px !important;
    }

    .swiper-slide:not(.swiper-slide-active) .testimonial__item {
        transform: scale(0.95) !important;
    }

    .swiper-slide-next-next,
    .swiper-slide-prev-prev {
        display: none;
    }

    .swiper-slide-next .testimonial__item,
    .swiper-slide-prev .testimonial__item {
        transform: scale(0.75) !important;
    }
}

@media (max-width: 767px) {
    .testimonial-slider {
        max-width: 360px;
        margin: 0 auto;
    }

    .swiper-wrapper {
        overflow: visible;
    }
}

.slider-bottom {
    margin-top: 10px;
}

.slider-bottom .owl-btn {
    font-size: 26px;
    font-weight: 700;
    color: var(--btn-clr);
    cursor: pointer;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.3s;
}

.slider-bottom .owl-btn i {
    transition: all ease 0.3s;
}

.slider-bottom .owl-btn:hover i {
    transform: translateX(5px) scale(1.1);
}

.slider-bottom .owl-btn:first-child:hover i {
    transform: translateX(-5px) scale(1.1);
}

.slider-bottom .owl-btn-next:hover i {
    transform: translateX(-5px) scale(1.1);
}

.app-slider-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

.app-slider-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
    min-height: 600px;
}

.app-slider-wrapper .app-content {
    width: 100%;
    max-width: 50%;
    text-align: center;
    padding: 86px 60px 42px;
    background: var(--section-bg);
    box-shadow: 0px 0px 20px rgba(4, 97, 165, 0.05);
    border-radius: 0;
    position: relative;
    z-index: 2;
}

.app-slider-wrapper .app-content .subtitle {
    margin-bottom: 15px;
}

@media (max-width: 1399px) {
    .app-slider-wrapper .app-content {
        max-width: 50%;
        padding: 60px 40px 30px;
    }
}

@media (max-width: 1199px) {
    .app-slider-wrapper .app-content {
        max-width: 50%;
        padding: 50px 30px 25px;
    }
}

@media (max-width: 991px) {
    .app-slider-wrapper {
        flex-direction: column;
    }

    .app-slider-wrapper .app-content {
        max-width: 100%;
        padding: 40px 20px 25px;
        width: 100%;
    }

    .app-slider-wrapper .app-thumb {
        width: 100%;
        height: 400px;
    }
}

.app-slider-wrapper .app-thumb {
    width: 50%;
    height: 511px;
    position: relative;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

@media (max-width: 1399px) {
    .app-slider-wrapper .app-thumb {
        margin-right: 0;
    }
}

@media (max-width: 1199px) {
    .app-slider-wrapper .app-thumb {
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .app-slider-wrapper .app-thumb {
        margin: 0;
        height: 400px;
    }

    .app-slider-wrapper .app-thumb .smaller-thumb {
        top: 52%;
    }
}

@media (max-width: 575px) {
    .app-slider-wrapper .app-thumb {
        width: 100%;
        height: 350px;
    }

    .app-slider-wrapper .app-thumb .main-thumb,
    .app-slider-wrapper .app-thumb .smaller-thumb {
        width: 200px !important;
        height: 381px !important;
    }

    .app-slider-wrapper .app-thumb .smaller-thumb {
        top: 60%;
        transform: translateY(-50%) scale(0.6) !important;
        right: 120px;
    }

    .smaller-thumb .app-slider img,
    .main-thumb .app-slider img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        min-height: 100% !important;
    }
}

.smaller-thumb,
.main-thumb {
    width: 200px !important;
    height: 381px !important;
    margin-left: auto;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.smaller-thumb .main-img,
.main-thumb .main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
}

.smaller-thumb .app-slider,
.main-thumb .app-slider {
    /* Carousel fills the phone-thumb box, hard-clipped to a slightly tighter
       than measured aperture so the image extends UP into the bezel art on
       top (the bezel PNG sits at z-index 5 above this slider, so the upper
       part of the image is hidden behind the bezel — visually no top gap).
       Side insets match the measured aperture (5.41% / 6.5% of PNG width)
       to keep the image inside the phone outline, regardless of viewport.
       round 6% rounds the clip corners so the image follows the iPhone
       screen-curve. */
    position: absolute !important;
    top: 1.8% !important;
    bottom: 1.77% !important;
    left: 5.41% !important;
    right: 6.5% !important;
    width: auto !important;
    height: auto !important;
    z-index: 1;
    overflow: hidden;
    clip-path: inset(0 0 0 0 round 9%);
    background: #000;
}

/* Force carousel items to fill entire container */
.smaller-thumb .app-slider .owl-stage-outer,
.main-thumb .app-slider .owl-stage-outer {
    height: 100%;
    width: 100%;
}

.smaller-thumb .app-slider .owl-stage,
.main-thumb .app-slider .owl-stage {
    height: 100%;
    width: 100%;
}

.smaller-thumb .app-slider .owl-item,
.main-thumb .app-slider .owl-item {
    height: 100%;
    width: 100%;
}

.smaller-thumb .app-slider img,
.main-thumb .app-slider img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    border-radius: inherit;
}

.smaller-thumb {
    top: 50%;
    transform: translateY(-50%) scale(0.84);
    position: absolute;
    z-index: 1;
    right: 140px;
}

/* Revamped App Slider Section */
.app-slider-section-revamped {
    background: linear-gradient(90deg, #f0fdff 0%, #e0f7fa 50%, #b2f5ea 100%);
    padding: clamp(50px, 5.5vw, 130px) 0;
    position: relative;
    overflow: hidden;
}

.app-slider-section-revamped::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f0fdff 0%, #e0f7fa 50%, #b2f5ea 100%);
    z-index: 1;
}

.app-slider-wrapper-revamped {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 4vw, 6rem);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.app-content-revamped {
    color: #fff;
}

.app-headline {
    margin-bottom: clamp(1.5rem, 2vw, 3rem);
}

.app-title {
    font-size: clamp(2rem, 3.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 clamp(1rem, 1.4vw, 2.4rem) 0;
    color: #000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-subcopy {
    font-size: clamp(1.05rem, 1.25vw, 1.8rem);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: #2c3e50;
    opacity: 0.9;
}

/* Stats Row */
.app-stats-row {
    display: flex;
    gap: clamp(2rem, 3vw, 5rem);
    margin-bottom: clamp(2rem, 2.5vw, 4rem);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: clamp(1.8rem, 2.6vw, 4rem);
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: clamp(0.9rem, 1vw, 1.4rem);
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service Icons */
.app-service-icons {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(0.75rem, 1.5vw, 3rem);
    flex-wrap: nowrap;
    width: 100%;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
    padding: 0 0.5rem;
}

.service-icon-circle {
    width: clamp(64px, 5.2vw, 110px);
    height: clamp(64px, 5.2vw, 110px);
    background: linear-gradient(135deg, #20B2AA, #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(0.75rem, 1vw, 1.6rem);
    box-shadow: 0 6px 20px rgba(0, 196, 204, 0.3);
    transition: all 0.3s ease;
    border: 3px solid #fff;
    position: relative;
}

.service-icon-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #20B2AA, #20B2AA);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.service-icon-circle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 196, 204, 0.4);
}

.service-icon-circle:hover::before {
    opacity: 0.3;
    transform: scale(1.1);
}

.service-icon-circle i {
    font-size: clamp(1.5rem, 1.9vw, 2.8rem);
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Admin-uploaded icon image fills the circle (clipped to the round shape). */
.service-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 1;
}

.service-icon-label {
    font-size: clamp(0.85rem, 1vw, 1.4rem);
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin: 0;
    text-align: center;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    max-width: 100%;
    word-break: break-word;
}

/* Right Content - Phone Frames */
.app-thumb-revamped {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-thumb-revamped .main-thumb,
.app-thumb-revamped .smaller-thumb {
    /* `!important` is needed because the legacy global rule
       `.smaller-thumb, .main-thumb { width: 200px !important; height: 381px !important }`
       at line ~2633 hard-caps the phones to 200×381 — that override is what
       kept the carousel "untouched" no matter how I clamped it elsewhere.
       Width drives size; aspect-ratio keeps the iPhone frame proportions. */
    width: clamp(220px, 26vw, 680px) !important;
    height: auto !important;
    aspect-ratio: 220 / 420;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

/* The smaller phone is positioned absolute with `right: 140px` (fixed px) —
   scale that offset with viewport too so the two phones overlap nicely
   on huge displays instead of collapsing onto each other. */
.app-thumb-revamped .smaller-thumb {
    right: clamp(120px, 13vw, 360px) !important;
}

.app-thumb-revamped .main-thumb:hover,
.app-thumb-revamped .smaller-thumb:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
}

/* Register Beautician Section - Integrated */
.register-beautician-section {
    background: linear-gradient(90deg, #f0fdff 0%, #e0f7fa 50%, #b2f5ea 100%);
    padding: clamp(45px, 4.5vw, 110px) 0;
    position: relative;
    overflow: hidden;
}

.register-beautician-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f0fdff 0%, #e0f7fa 50%, #b2f5ea 100%);
    z-index: 1;
}

.register-beautician-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 4vw, 6rem);
    align-items: center;
    position: relative;
    z-index: 2;
}

.register-beautician-image {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Image sizing (max-width + a desktop min-height that keeps the column from
       reading as empty) is admin-editable and injected inline by welcome.blade.php
       from the "Register as Beautician" section of the Landing Page Content editor. */
}

.provider-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* If the uploaded provider image gets cropped by a parent container,
       keep the face near the top so it isn't sliced at the eyes. */
    object-position: center 25%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.provider-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.register-beautician-content {
    color: #fff;
    text-align: left;
}

.register-beautician-title {
    font-size: clamp(1.9rem, 2.7vw, 4.2rem);
    font-weight: 800;
    color: #000;
    margin-bottom: clamp(1rem, 1.4vw, 2.4rem);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.register-beautician-subtext {
    font-size: clamp(1.05rem, 1.25vw, 1.8rem);
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: clamp(1.5rem, 1.8vw, 3rem);
    line-height: 1.5;
    opacity: 0.9;
}

.register-beautician-cta {
    margin-top: clamp(1rem, 1.4vw, 2.4rem);
}

.btn-register-here {
    background: linear-gradient(135deg, #20B2AA, #20B2AA);
    color: #fff;
    border: 2px solid transparent;
    padding: clamp(13px, 1.2vw, 24px) clamp(28px, 2.4vw, 52px);
    border-radius: 30px;
    font-weight: 700;
    font-size: clamp(1.05rem, 1.2vw, 1.7rem);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 196, 204, 0.3);
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-register-here:hover {
    background: linear-gradient(135deg, #00b3b3, #008a8a);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 196, 204, 0.4);
    text-decoration: none;
}

.btn-register-here:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 196, 204, 0.3);
}

.btn-register-beautician-revamped {
    background: #fff;
    color: #20B2AA;
    border: 2px solid #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-register-beautician-revamped:hover {
    background: #20B2AA;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-register-beautician-revamped:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .app-slider-wrapper-revamped {
        gap: 3rem;
    }

    .app-title {
        font-size: 3rem;
    }

    .app-stats-row {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .app-slider-wrapper-revamped {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .app-content-revamped {
        order: 2;
    }

    .app-thumb-revamped {
        order: 1;
    }

    .app-title {
        font-size: 2.5rem;
    }

    .app-stats-row {
        justify-content: center;
    }

    .app-service-icons {
        justify-content: center;
    }

    .register-beautician-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .register-beautician-content {
        order: 2;
    }

    .register-beautician-image {
        order: 1;
    }

    .register-beautician-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .app-slider-section-revamped {
        padding: 60px 0;
    }

    .app-title {
        font-size: 2rem;
    }

    .app-subcopy {
        font-size: 1rem;
    }

    .app-stats-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat-item {
        text-align: center;
    }

    .app-service-icons {
        gap: 0.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .service-icon-item {
        flex: 1;
        min-width: 0;
        padding: 0 0.25rem;
    }

    .service-icon-circle {
        width: 60px;
        height: 60px;
    }

    .service-icon-circle i {
        font-size: 1.5rem;
    }

    .service-icon-label {
        font-size: 0.75rem;
        white-space: normal;
        line-height: 1.2;
    }

    .app-thumb-revamped .main-thumb,
    .app-thumb-revamped .smaller-thumb {
        width: 180px;
        height: 340px;
    }

    .register-beautician-section {
        padding: 40px 0;
    }

    .register-beautician-wrapper {
        gap: 2rem;
    }

    .register-beautician-title {
        font-size: 1.8rem;
    }

    .register-beautician-subtext {
        font-size: 1rem;
    }

    .btn-register-here {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .app-title {
        font-size: 1.8rem;
    }

    .app-service-icons {
        display: flex;
        justify-content: space-between;
        gap: 0.25rem;
        padding: 0 0.5rem;
    }

    .service-icon-item {
        flex: 1;
        min-width: 0;
        padding: 0 0.125rem;
    }

    .service-icon-circle {
        width: 50px;
        height: 50px;
    }

    .service-icon-circle i {
        font-size: 1.2rem;
    }

    .service-icon-label {
        font-size: 0.7rem;
        white-space: normal;
        line-height: 1.1;
    }

    .app-thumb-revamped .main-thumb,
    .app-thumb-revamped .smaller-thumb {
        width: 150px;
        height: 285px;
    }

    .btn-register-beautician-revamped {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Enhanced Testimonial Section */
.testimonial-section-enhanced {
    background: linear-gradient(135deg, #f0fdff 0%, #e0f7fa 50%, #b2f5ea 100%);
    padding: clamp(50px, 5.5vw, 130px) 0;
    position: relative;
    overflow: hidden;
}

.testimonial-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f0fdff 0%, #e0f7fa 50%, #b2f5ea 100%);
    z-index: 1;
}

.testimonial-container-tile {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    padding: clamp(36px, 3.5vw, 80px) clamp(28px, 2.8vw, 64px);
    position: relative;
    z-index: 2;
    margin: 0 20px;
}

.testimonial-section-title {
    font-size: clamp(1.8rem, 2.6vw, 4rem);
    font-weight: 800;
    text-align: center;
    color: #000;
    margin-bottom: clamp(2rem, 2.8vw, 5rem);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-slider {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.testimonial__item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: auto;
}

.testimonial__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial__item-wrapper {
    padding: clamp(28px, 3vw, 72px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.testimonial__item-img {
    /* Override the legacy 120px fixed width on the wrapper so the photo
       can grow with the viewport. The img inside fills the wrapper. */
    width: clamp(140px, 14vw, 320px);
    margin: 0 auto clamp(20px, 2vw, 40px);
}

.testimonial__item-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Higher-specificity overrides scoped to the enhanced testimonial section.
   The original .testimonial__item / .testimonial__item-img rules (from the
   legacy testimonial layout) sat at the same single-class specificity, so
   in some cascades they could still win. Scoping under the section guarantees
   the bigger fluid sizes apply on the home page. */
.testimonial-section-enhanced .testimonial__item {
    background: #fff;
    border-radius: clamp(16px, 1.4vw, 28px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
}

.testimonial-section-enhanced .testimonial__item-wrapper {
    padding: clamp(28px, 3vw, 80px);
}

.testimonial-section-enhanced .testimonial__item-img {
    width: clamp(140px, 14vw, 340px);
    margin: 0 auto clamp(20px, 2vw, 44px);
    border-radius: 50%;
}

.testimonial-section-enhanced .testimonial__item-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

.testimonial-section-enhanced .testimonial__text {
    font-size: clamp(1rem, 1.3vw, 2rem);
    line-height: 1.6;
}

.testimonial-section-enhanced .testimonial__name {
    font-size: clamp(1.1rem, 1.45vw, 2.2rem);
}

.testimonial-section-enhanced .testimonial__title {
    font-size: clamp(0.9rem, 1.1vw, 1.6rem);
}

.testimonial-section-enhanced .testimonial__rating i {
    font-size: clamp(1.2rem, 1.55vw, 2.5rem);
}

.testimonial__item:hover .testimonial__item-img img {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.testimonial__item-cont {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.testimonial__text {
    font-size: clamp(1rem, 1.25vw, 1.9rem);
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: clamp(18px, 1.8vw, 36px);
    position: relative;
    padding: 0 clamp(8px, 1vw, 24px);
}

.testimonial__rating {
    display: flex;
    justify-content: center;
    gap: clamp(3px, 0.3vw, 8px);
    margin-bottom: clamp(16px, 1.6vw, 32px);
}

.testimonial__rating i {
    color: #ffc107;
    font-size: clamp(1.2rem, 1.5vw, 2.4rem);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial__name {
    font-size: clamp(1.1rem, 1.4vw, 2.1rem);
    font-weight: 700;
    color: #000;
    margin-bottom: clamp(4px, 0.4vw, 10px);
}

.testimonial__title {
    font-size: clamp(0.9rem, 1.05vw, 1.5rem);
    color: #6c757d;
    font-weight: 500;
}

/* Enhanced Carousel Controls - Original Structure */
.slider-bottom {
    margin-top: 40px;
}

.owl-btn {
    width: clamp(46px, 3.5vw, 72px);
    height: clamp(46px, 3.5vw, 72px);
    background: linear-gradient(135deg, #20B2AA, #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 196, 204, 0.3);
    border: 2px solid #fff;
}

.owl-btn:hover {
    background: linear-gradient(135deg, #00b3b3, #008a8a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 196, 204, 0.4);
}

.owl-btn i {
    color: #fff;
    font-size: clamp(1.1rem, 1.25vw, 1.7rem);
    font-weight: bold;
}

.slider-counter {
    font-size: 1rem;
    font-weight: 600;
    color: #20B2AA;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

/* CTA Bar */
.testimonial-cta-bar {
    margin-top: 50px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial-cta-content {
    background: #fff;
    padding: clamp(24px, 2.4vw, 48px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.testimonial-cta-text {
    font-size: clamp(1.25rem, 1.6vw, 2.4rem);
    font-weight: 700;
    color: #000;
    margin-bottom: clamp(16px, 1.6vw, 32px);
}

.btn-download-app {
    background: linear-gradient(135deg, #20B2AA, #20B2AA);
    color: #fff;
    border: none;
    padding: clamp(13px, 1.2vw, 24px) clamp(28px, 2.4vw, 52px);
    border-radius: 30px;
    font-weight: 700;
    font-size: clamp(1.05rem, 1.2vw, 1.7rem);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 196, 204, 0.3);
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-download-app:hover {
    background: linear-gradient(135deg, #00b3b3, #008a8a);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 196, 204, 0.4);
    text-decoration: none;
}

.btn-download-app:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 196, 204, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-section-enhanced {
        padding: 60px 0;
    }

    .testimonial-container-tile {
        padding: 40px 30px;
        margin: 0 15px;
    }

    .testimonial-section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .testimonial__item-wrapper {
        padding: 25px 20px;
    }

    .testimonial__item-img img {
        width: 100px;
        height: 100px;
    }

    .testimonial__text {
        font-size: 0.9rem;
    }

    .testimonial__name {
        font-size: 1rem;
    }

    .testimonial__title {
        font-size: 0.8rem;
    }

    .owl-btn {
        width: 45px;
        height: 45px;
    }

    .owl-btn i {
        font-size: 1.1rem;
    }

    .testimonial-cta-content {
        padding: 25px 20px;
    }

    .testimonial-cta-text {
        font-size: 1.3rem;
    }

    .btn-download-app {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonial-container-tile {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .testimonial-section-title {
        font-size: 1.8rem;
    }

    .testimonial__item-wrapper {
        padding: 20px 15px;
    }

    .testimonial__item-img img {
        width: 90px;
        height: 90px;
    }

    .testimonial__quote-icon {
        font-size: 1.5rem;
    }

    .testimonial__text {
        font-size: 0.85rem;
    }

    .testimonial__rating i {
        font-size: 1rem;
    }

    .owl-btn {
        width: 40px;
        height: 40px;
    }

    .owl-btn i {
        font-size: 1rem;
    }

    .testimonial-cta-text {
        font-size: 1.2rem;
    }

    .btn-download-app {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* App Features Row - Legacy (keeping for compatibility) */
.app-features-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #20c997, #17a2b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

.feature-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
    margin: 0;
}

/* App CTA Button */
.app-cta-wrapper {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-register-beautician {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
    text-transform: none;
    letter-spacing: 0.5px;
}

.btn-register-beautician:hover {
    background: linear-gradient(135deg, #1bb085, #138496);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 201, 151, 0.4);
    text-decoration: none;
}

.btn-register-beautician:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-features-row {
        gap: 1rem;
        margin: 2rem 0 1.5rem 0;
    }

    .feature-item {
        min-width: 120px;
        padding: 0.75rem;
        flex: 1;
        max-width: calc(50% - 0.5rem);
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .feature-label {
        font-size: 0.8rem;
    }

    .btn-register-beautician {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .app-features-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin: 1.5rem 0 1rem 0;
    }

    .feature-item {
        min-width: auto;
        padding: 0.75rem 0.5rem;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .feature-label {
        font-size: 0.75rem;
    }
}

.scroll-elem {
    top: -100px;
    visibility: hidden;
    opacity: 0;
    position: relative;
}

.page-header {
    border-radius: 10px;
    position: relative;
    padding: clamp(140px, 13vw, 280px) 0;
    text-align: center;
}

.page-header::before {
    content: "";
    inset: 0;
    position: absolute;
    border-radius: 10px;
    background: transparent;
}

.page-header .title {
    position: relative;
    z-index: 1;
    font-size: clamp(28px, 2.5vw, 56px);
    text-transform: capitalize;
    font-weight: 700;
    color: var(--white-clr);
}

@media (max-width: 991px) {
    .page-header {
        padding: 160px 0;
    }
}

@media (max-width: 575px) {
    .page-header .title {
        font-size: 24px;
    }

    .page-header {
        padding: 120px 0;
    }
}

/* Enhanced page banner styling for better visual appearance */
.page-header.bg__img {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: clamp(360px, 32vw, 640px);
    height: auto;
    position: relative;
    overflow: hidden;
}

/* Add overlay for better text readability */
.page-header.bg__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 10px;
    z-index: 0;
}

/* Ensure title is visible above overlay */
.page-header.bg__img .title {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .page-header.bg__img {
        min-height: 350px;
    }
}

@media (max-width: 575px) {
    .page-header.bg__img {
        min-height: 300px;
    }
}

/* Additional enhancements for page headers */
.page-header {
    transition: all 0.3s ease;
}

.page-header.bg__img {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.page-header .title {
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

/* Improved container spacing */
.container.pt-3 {
    padding-top: 2rem !important;
}


.form--control:not(button) {
    background: var(--body-bg) !important;
    border: 1px solid var(--border-clr);
    box-shadow: none !important;
    outline: none;
    padding: 0 15px;
    border-radius: 5px;
    color: var(--title-clr) !important;
}

.form--control:not(button):focus {
    border-color: var(--btn-clr) !important;
}

.form--control:not(button)::placeholder {
    color: var(--body-clr) !important;
}

.form--control {
    height: 45px;
}

button.form--control {
    height: 45px;
    width: auto;
    border-radius: 25px;
    min-width: 141px;
}

textarea.form--control {
    height: 120px;
    padding: 20px;
}

.dark-theme .page-header {
    background: transparent;
}

.contact__item {
    padding: 29px 30px;
    line-height: 1.5;
    box-shadow: 0px 4px 10px rgba(var(--title-rgb), 0.06);
    background: var(--body-bg);
}

.contact__item * {
    transition: all ease 0.3s;
}

.contact__item-icon {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 9px;
}

.contact__item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 9px;
}

.contact__item ul li a {
    color: var(--body-clr);
}

.contact__item:hover ul li,
.contact__item:hover ul li a,
.contact__item:hover .contact__item-title,
.contact__item:hover .contact__item-icon {
    color: var(--base-clr);
}

@media (max-width: 450px) {
    .contact__item {
        padding: 15px;
        font-size: 12px;
    }

    .contact__item-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .contact__item-icon {
        font-size: 24px;
        margin-bottom: 5px;
    }
}

.shadow-form {
    box-shadow: 0px 0px 15px rgba(var(--title-rgb), 0.07);
    padding: 30px 31px 33px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pt-60 {
    padding-top: 60px;
}

.cmn--btn {
    font-size: clamp(13px, 0.9vw, 18px);
    font-weight: 600;
    text-transform: capitalize;
    color: white;
    background: linear-gradient(135deg, #FF6B35 0%, #e85d2a 100%);
    padding: clamp(8px, 0.7vw, 14px) clamp(18px, 1.5vw, 34px);
    line-height: 1.4;
    border-radius: 30px;
    border: none;
    transition: all ease 0.3s;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
    font-family: 'Poppins', 'Inter', 'Montserrat', sans-serif;
    margin-left: 15px;
    min-width: clamp(110px, 9vw, 180px);
    text-align: center;
    flex-shrink: 0;
}

.cmn--btn:hover {
    color: white;
    background: linear-gradient(135deg, #e85d2a 0%, #FF6B35 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
}

.cmn--btn2 {
    font-size: 14px;
    text-transform: capitalize;
    color: var(--base-clr);
    background: rgba(var(--btn-rgb), 0.05);
    padding: 5px 16px;
    line-height: 26px;
    border-radius: 18px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cmn--btn2 i {
    font-size: 18px;
    margin-left: 5px;
    font-weight: 700;
}

.cmn--btn2:hover {
    color: var(--white-clr);
    /* filter: brightness(0.8); */
    background: var(--btn-clr);
}

.bg--body {
    background-color: var(--body-bg) !important;
}

.bg--section {
    background-color: var(--section-bg) !important;
}

.btn--base,
.badge--base,
.bg--base {
    background-color: var(--base-clr) !important;
    border-color: var(--base-clr) !important;
}

.btn--title,
.badge--title,
.bg--title {
    background-color: var(--title-clr) !important;
    border-color: var(--title-clr) !important;
}

.text--primary {
    color: #0c67a3 !important;
}

.text--secondary {
    color: #668799 !important;
}

.text--success {
    color: #0ead69 !important;
}

.text--danger {
    color: #d90429 !important;
}

.text--warning {
    color: #ee9b00 !important;
}

.text--info {
    color: #00b4d8 !important;
}

.text--dark {
    color: #192a56 !important;
}

.text--white {
    color: #fff !important;
}

.text--white p,
.text--white ul li,
.text--white ul li a,
.text--white span {
    color: #daddff;
}

.text--black {
    color: #000 !important;
}

.text--body {
    color: var(--body-clr) !important;
}

.text--base {
    color: var(--base-clr) !important;
}

.text--btn {
    color: var(--btn-clr) !important;
}

.text--title {
    color: var(--title-clr) !important;
}

/*# sourceMappingURL=main.css.map */

.top-padding {
    padding-inline-start: 20px;
}

.dark-theme {
    --body-bg: #121213;
    --header-bg: #11202be6;
    --footer: #001f35;
    --footer-bottom: #111a21;
}

/* Dark mode specific styling for sections */
.dark-theme .service-card {
    background: #1a1a1b;
    color: #ffffff;
    border: 1px solid #283c40;
}

.dark-theme .service-card-title {
    color: #ffffff;
}

.dark-theme .service-card-description {
    color: #ffffff;
}

.dark-theme .testimonial-container-tile {
    background: #1a1a1b;
    border: 1px solid #283c40;
}

.dark-theme .testimonial__item {
    background: #1a1a1b;
    border: 1px solid #283c40;
}

.dark-theme .testimonial__text {
    color: #ffffff;
}

.dark-theme .testimonial__name {
    color: #ffffff;
}

.dark-theme .testimonial__title {
    color: #ffffff;
}

.dark-theme .testimonial-cta-content {
    background: #1a1a1b;
    border: 1px solid #283c40;
}

.dark-theme .testimonial-cta-text {
    color: #ffffff;
}

.dark-theme .testimonial-section-title {
    color: #ffffff;
}

.dark-theme .testimonial-section-enhanced {
    background: linear-gradient(90deg, #1a1a1b 0%, #141a20 50%, #0f1419 100%);
}

.dark-theme .testimonial-section-enhanced::before {
    background: linear-gradient(90deg, #1a1a1b 0%, #141a20 50%, #0f1419 100%);
}

.dark-theme .newsletter-band {
    background: linear-gradient(135deg, #1a1a1b 0%, #2d3748 50%, #1a202c 100%);
    border: 1px solid #4a5568;
    position: relative;
}

.dark-theme .newsletter-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 196, 204, 0.1) 0%, rgba(0, 196, 204, 0.05) 50%, rgba(0, 196, 204, 0.1) 100%);
    z-index: 1;
}

.dark-theme .newsletter-band .container {
    position: relative;
    z-index: 2;
}

.dark-theme .newsletter-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #20B2AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark-theme .newsletter-subtext {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Ensure the upgraded newsletter copy is bright white in dark mode */
.dark-theme .newsletter-upgrade .newsletter-subtext,
.dark-theme .newsletter-upgrade .newsletter-reassure {
    color: #ffffff !important;
    opacity: 1;
}

.dark-theme .newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #4a5568;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.dark-theme .newsletter-form .form-control::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.dark-theme .newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #20B2AA;
    box-shadow: 0 0 0 0.2rem rgba(0, 196, 204, 0.25);
    color: #ffffff;
}

.dark-theme .newsletter-form .cmn--btn {
    background: linear-gradient(135deg, #20B2AA, #20B2AA);
    border: 2px solid #20B2AA;
    box-shadow: 0 4px 15px rgba(0, 196, 204, 0.3);
}

.dark-theme .newsletter-form .cmn--btn:hover {
    background: linear-gradient(135deg, #20B2AA, #008B8B);
    box-shadow: 0 6px 20px rgba(0, 196, 204, 0.4);
    transform: translateY(-2px);
}

.dark-theme .navbar-bottom-wrapper {
    background: rgba(26, 26, 27, 0.98);
    border-bottom: 1px solid #283c40;
}

.dark-theme .navbar-top {
    background: rgba(26, 26, 27, 0.95);
    border-bottom: 1px solid #283c40;
}

.dark-theme .navbar-bottom-wrapper .menu li a {
    color: #ffffff;
}

.dark-theme .navbar-bottom-wrapper .menu li a:hover {
    background: rgba(0, 147, 255, 0.1);
    color: #0093ff;
}

.dark-theme .who-we-are-wrapper {
    background: #1a1a1b;
}

.dark-theme .blurb-title {
    color: #ffffff;
}

.dark-theme .blurb-text {
    color: #ffffff;
}

.dark-theme .app-slider-section-revamped {
    background: linear-gradient(90deg, #1a1a1b 0%, #141a20 50%, #0f1419 100%);
}

.dark-theme .app-slider-section-revamped::before {
    background: linear-gradient(90deg, #1a1a1b 0%, #141a20 50%, #0f1419 100%);
}

.dark-theme .app-title {
    color: #ffffff;
}

.dark-theme .app-subcopy {
    color: #ffffff;
}

.dark-theme .stat-number {
    color: #ffffff;
}

.dark-theme .stat-label {
    color: #ffffff;
}

.dark-theme .service-icon-label {
    color: #ffffff;
}

.dark-theme .register-beautician-section {
    background: linear-gradient(90deg, #1a1a1b 0%, #141a20 50%, #0f1419 100%);
}

.dark-theme .register-beautician-section::before {
    background: linear-gradient(90deg, #1a1a1b 0%, #141a20 50%, #0f1419 100%);
}

.dark-theme .register-beautician-content {
    color: #ffffff;
}

.dark-theme .register-beautician-title {
    color: #ffffff;
}

.dark-theme .register-beautician-subtext {
    color: #ffffff;
}

/* Additional dark mode fixes */
.dark-theme .section-title {
    color: #ffffff;
}

.dark-theme .service-section {
    background: #1a1a1b;
}

.dark-theme .who-we-are-section {
    background: #1a1a1b;
}

/* Add subtle shadows to break monotony */
.dark-theme .service-card {
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.dark-theme .testimonial-container-tile {
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.1);
}

.dark-theme .testimonial__item {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.dark-theme .newsletter-band {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.dark-theme .app-slider-section-revamped {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.dark-theme .register-beautician-section {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.dark-theme .testimonial-section-enhanced {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.dark-theme .who-we-are-wrapper {
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.navbar-nav .dropdown-menu.lang-menu {
    position: absolute;
}

@media (max-width: 575px) {
    .navbar-nav .dropdown-menu.lang-menu {
        left: unset;
        right: 0;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .js-navbar-vertical-aside-toggle-invoker {
        margin-right: 0 !important;
    }
}

/* .lagn-drop-btn {
    background: var(--body-bg);
    padding: 10px 20px !important;
    border-radius: 10px;
    min-width: 200px;
} */
.lagn-drop-btn>span::before {
    display: none;
}

@media (max-width: 1199px) {
    .lagn-drop-btn {
        min-width: initial;
        padding: 10px !important;
    }
}

.lagn-drop-btn+.dropdown-menu {
    min-width: 200px;
}

.lagn-drop-btn+.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid var(--body-bg);
}

.dropdown-item:hover {
    background-color: transparent;
    color: var(--link-color);
}

.dropdown-menu {
    box-shadow: 0px 0px 0.125rem rgba(65, 83, 179, 0.05),
        0px 0.75rem 1.5rem -0.25rem rgba(65, 83, 179, 0.05);
    border: none;
    border-radius: 0.625rem;
}

.color-text {
    color: var(--base-title);
}

.subscribe-form-group {
    position: relative;
    display: flex;
    align-items: center;
    inline-size: clamp(100%, 95vw, 90%);
}

.subscribe-form-group .form-control {
    border: 1px solid rgba(4, 97, 165, 0.2);
    border-radius: 1.875rem;
    color: #8a8a8a;
    background: var(--section-bg-2);
    height: 3.4375rem;
    padding: 1rem 1.5rem;
}

.subscribe-form-group .cmn--btn {
    position: absolute !important;
    right: unset;
    inset-inline-end: 0.3125rem;
    block-size: calc(100% - 0.625rem);
    display: flex;
    align-items: center;
    margin: 0;
    padding: 1rem 1.5rem;
}

.footer-social a {
    border-radius: 100px;
}

.footer-social a:hover {
    box-shadow: var(--base-shadow);
}

.footer-social img {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 100px;
}

.gap-10 {
    gap: 0.625rem;
}

.navbar-bottom-wrapper .menu li a:focus-visible {
    border: none !important;
}

.subscribe-newsletter {
    background: url("../img/newsletter-bg.png") no-repeat center;
}

/* Force hero background image
   Image must fill the viewport edge-to-edge horizontally and vertically.
   `cover` fills both axes; the asset is composed center-safe so the slight
   vertical crop on wide monitors does not lose the subject. */
.hero-section {
    background-image: url('../img/hero-bg.jpg?v=99999') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.py-75 {
    padding-block: 75px
}

.subscribe-btn {
    position: absolute;
    inset-inline-end: 4px;
    inset-block-start: 50%;
    transform: translateY(-50%);
    padding: 10px 22px;
    z-index: 9;
    margin: 0;
    line-height: 1.4;
}

/* Newsletter Upgrade */
.newsletter-upgrade .newsletter-title {
    font-size: clamp(1.6rem, 1.9vw, 2.8rem);
    font-weight: 800;
    color: #0b2239;
}

.newsletter-upgrade .newsletter-subtext {
    font-size: clamp(0.95rem, 1.05vw, 1.4rem);
    color: #334155;
    margin-bottom: 6px;
}

.newsletter-upgrade .newsletter-reassure {
    font-size: clamp(0.85rem, 0.95vw, 1.25rem);
    color: #64748b;
}

.newsletter-upgrade .nl-ico {
    margin: 0 2px;
}

.newsletter-input-group {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group .form-control {
    width: 100%;
    height: 52px;
    padding: 0 140px 0 20px;
    border: 2px solid #e5e7eb;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.newsletter-input-group .form-control {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .06);
}

.newsletter-input-group .subscribe-btn {
    padding: 10px 22px;
}

/* Footer Gradient + Visuals */
.footer-gradient {
    background: linear-gradient(135deg, #e6fbff 0%, #d3f4f9 50%, #bfeef4 100%);
    position: relative;
}

.footer-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 196, 204, .08) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.footer__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 2.2vw, 48px);
}

.footer-col-title {
    font-weight: 800;
    font-size: clamp(1.1rem, 1.25vw, 1.7rem);
    margin-bottom: clamp(10px, 1vw, 20px);
    color: #0b2239;
}

.footer__wrapper-link li {
    margin-bottom: clamp(6px, 0.7vw, 14px);
}

.footer__wrapper-link a {
    color: #334155;
    font-size: clamp(0.9rem, 1vw, 1.3rem);
    transition: .2s;
}

.footer__wrapper-link a:hover {
    color: #20B2AA;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-circle {
    width: clamp(38px, 3vw, 60px);
    height: clamp(38px, 3vw, 60px);
    border-radius: 50%;
    background: linear-gradient(135deg, #20B2AA, #20B2AA);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 196, 204, .35);
    transition: transform .2s, box-shadow .2s;
}

.social-circle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 196, 204, .45);
}

.social-circle i {
    font-size: clamp(16px, 1.2vw, 26px);
}

/* App CTA */
.footer-app-title {
    font-weight: 700;
    color: #0b2239;
    font-size: clamp(1rem, 1.1vw, 1.5rem);
    margin-bottom: clamp(6px, 0.7vw, 14px);
}

.app-btns-lg {
    display: flex;
    align-items: center;
    gap: clamp(8px, 0.8vw, 18px);
}

.store-badge {
    width: clamp(150px, 12vw, 240px);
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

/* Contact Items */
.footer-contact-list {
    display: grid;
    gap: clamp(10px, 1vw, 20px);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: clamp(8px, 0.9vw, 18px);
    color: #334155;
    font-size: clamp(0.9rem, 1vw, 1.3rem);
    text-decoration: none;
    transition: .2s;
}

.contact-item:hover {
    color: #20B2AA;
}

.contact-ico {
    width: clamp(34px, 2.8vw, 56px);
    height: clamp(34px, 2.8vw, 56px);
    border-radius: 50%;
    background: #ecfeff;
    color: #20B2AA;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 196, 204, .2);
}

/* Footer Bottom */
.footer-bottom {
    color: #0b2239;
}

@media (max-width: 991px) and (min-width: 769px) {
    .footer__wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-col {
        padding: 0 1rem;
    }

    .footer-col-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .footer-col ul li {
        margin-bottom: 0.8rem;
    }

    .footer-col ul li a {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .footer__wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
        justify-items: center !important;
        text-align: center !important;
        display: grid !important;
    }

    .footer__wrapper-widget {
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 200px !important;
        text-align: center !important;
    }

    .footer__wrapper-widget:nth-child(odd) {
        padding-left: 1rem !important;
        padding-right: 0.5rem !important;
    }

    .footer__wrapper-widget:nth-child(even) {
        padding-right: 1rem !important;
        padding-left: 0.5rem !important;
    }

    .footer__wrapper-widget .footer__wrapper-link {
        text-align: center !important;
        max-width: 100% !important;
    }

    .footer__wrapper-widget .footer__wrapper-link li {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .footer__wrapper {
        grid-template-columns: 1fr;
    }

    .store-badge {
        width: 150px;
    }

    .newsletter-upgrade .newsletter-title {
        font-size: 1.6rem;
    }
}

/* Newsletter band gradient */
.newsletter-band {
    background: linear-gradient(90deg, #f0fdff 0%, #e8fbff 50%, #dff7fb 100%);
    padding: 4rem 0;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b2136;
    margin-bottom: 1rem;
}

.newsletter-subtext {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.newsletter-form .form-control {
    border: 2px solid #e5e7eb;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    border-color: #20B2AA;
    box-shadow: 0 0 0 0.2rem rgba(0, 196, 204, 0.25);
}

/* ==========================================================================
   Footer (.footer-navy) — clean rewrite
   - Fluid scaling (clamp) on every size so the footer adapts from phones
     through 65" 4K TVs.
   - Four left-aligned columns on desktop, two on tablet, one on phone.
   - No gradient column-divider hack; uses a single hairline above the
     copyright bar for visual separation.
   - All four widgets share the same alignment + rhythm so the layout
     reads as one coherent grid instead of four mismatched blocks.
   ========================================================================== */

.footer-navy {
    background: #0b2136;
    color: #cbd5e1;
}

.footer-navy .main-footer {
    padding: clamp(2.5rem, 4vw, 6rem) 0 clamp(1.5rem, 2vw, 3rem);
}

.footer-navy .footer-top {
    padding-bottom: clamp(1.5rem, 2.5vw, 4rem);
}

/* Grid layout: TRULY FLUID — columns reflow continuously (4 → 3 → 2 → 1) with
   the viewport via auto-fit, no breakpoints. No vertical dividers (visual noise). */
.footer-navy .footer-grid-4,
.footer-navy .footer__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
    gap: clamp(1.75rem, 2.6vw, 3.5rem);
    align-items: start;
}

.footer-navy .footer-grid-4::before {
    /* Kill the legacy gradient column-divider entirely. */
    content: none;
    display: none;
}

/* Widget reset — all columns share the same left-aligned rhythm. */
.footer-navy .footer__wrapper-widget {
    padding: 0;
    margin: 0;
    width: auto;
    max-width: none;
    font-size: clamp(0.95rem, 1.05vw, 1.4rem);
    line-height: 1.6;
    text-align: left;
    display: block;
    border: 0;
}

.footer-navy .footer__wrapper-widget:not(:last-child) {
    border-right: 0;
}

.footer-navy .footer__wrapper-widget .cont {
    max-width: none;
    margin: 0;
}

/* Brand column — logo, app CTA, social row, all left-aligned in a stack. */
.footer-navy .footer__wrapper-widget .logo {
    display: inline-block;
    margin-bottom: clamp(1rem, 1.4vw, 2.2rem);
}

.footer-navy .footer__wrapper-widget .logo img {
    /* The brand logo is dark-on-light; invert to white for the navy bg. */
    filter: brightness(0) invert(1);
    height: clamp(56px, 5vw, 110px);
    width: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.footer-navy .footer__wrapper-widget .logo:hover img {
    transform: scale(1.04);
}

/* Column titles: white, uppercase, tracked, with a short teal accent under
   each so the column heads read as deliberate without dividers between cols. */
.footer-navy .footer-col-title {
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(1rem, 1.15vw, 1.6rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 clamp(1rem, 1.4vw, 2.2rem);
    position: relative;
    padding-bottom: clamp(0.6rem, 0.7vw, 1.1rem);
}

.footer-navy .footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: clamp(36px, 3vw, 60px);
    height: clamp(2px, 0.25vw, 4px);
    background: linear-gradient(90deg, #20B2AA, #7ee6ea);
    border-radius: 2px;
}

/* Link lists — Quick Links + Terms of Service. */
.footer-navy .footer__wrapper-link {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-navy .footer__wrapper-link li {
    margin-bottom: clamp(0.55rem, 0.7vw, 1.1rem);
}

.footer-navy .footer__wrapper-link li a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.05vw, 1.4rem);
    line-height: 1.5;
    padding: 0;
    display: inline-block;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-navy .footer__wrapper-link li a:hover {
    color: #7ee6ea;
    transform: translateX(4px);
}

/* App-store badge row — Get the Glam App. */
.footer-navy .footer-app-title {
    color: #ffffff;
}

.footer-navy .app-btns,
.footer-navy .app-btns-lg {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 1vw, 22px);
    align-items: center;
    justify-content: flex-start;
    margin-bottom: clamp(1.25rem, 1.6vw, 2.4rem);
}

/* Neutralise the legacy `.app-btns a { width: calc(50% - 8px); max-width: 130px }`
   rule for the footer. It clipped the wrapping <a> to 130px while the badge
   img inside was sized to clamp(140,11vw,240) — so on wide screens each img
   overflowed its parent and overlapped the next badge. Here we let the <a>
   size naturally to its child. */
.footer-navy .app-btns a,
.footer-navy .app-btns-lg a {
    display: inline-flex;
    width: auto;
    max-width: none;
    margin: 0;
    line-height: 0;
}

.footer-navy .app-btns a img,
.footer-navy .app-btns-lg a img {
    width: auto;
}

.footer-navy .store-badge {
    width: clamp(140px, 11vw, 240px);
    height: auto;
    border-radius: clamp(8px, 0.7vw, 14px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.footer-navy .store-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Social row — left aligned in the brand column. */
.footer-navy .footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(8px, 0.9vw, 18px);
}

.footer-navy .social-circle {
    width: clamp(38px, 3vw, 60px);
    height: clamp(38px, 3vw, 60px);
    margin: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: none;
}

.footer-navy .social-circle:hover {
    background: linear-gradient(135deg, #20B2AA, #17a2b8);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(32, 178, 170, 0.35);
}

.footer-navy .social-circle i {
    font-size: clamp(16px, 1.2vw, 26px);
    line-height: 1;
}

/* Contact column — icon + value rows, all left aligned. */
.footer-navy .footer__wrapper-contact,
.footer-navy .footer-contact-list {
    display: grid;
    gap: clamp(0.9rem, 1.1vw, 1.8rem);
    text-align: left;
    line-height: 1.5;
    color: #cbd5e1;
}

.footer-navy .contact-item {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(0.95rem, 1.05vw, 1.4rem);
    display: flex;
    align-items: center;
    gap: clamp(10px, 1vw, 20px);
    margin: 0;
}

.footer-navy .contact-item span:last-child {
    flex: 1;
    word-break: break-word;
    line-height: 1.45;
}

.footer-navy .contact-item:hover {
    color: #7ee6ea;
}

.footer-navy .contact-ico {
    width: clamp(38px, 3vw, 56px);
    height: clamp(38px, 3vw, 56px);
    border-radius: clamp(8px, 0.7vw, 14px);
    background: linear-gradient(135deg, #20B2AA, #17a2b8);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: clamp(15px, 1.1vw, 22px);
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 196, 204, 0.25);
}

/* Copyright bar — single hairline above instead of a separate dark band. */
.footer-bottom-navy {
    background: transparent;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(1rem, 1.2vw, 2rem) 0;
    margin-top: clamp(1.5rem, 2vw, 3rem);
}

.footer-bottom-navy small {
    display: block;
    font-size: clamp(13px, 0.9vw, 18px);
    font-weight: 400;
    color: #94a3b8;
    text-align: center;
    letter-spacing: 0.02em;
}

/* Newsletter responsive (kept from previous setup) */
@media (max-width: 768px) {
    .newsletter-band {
        padding: 3rem 0;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .newsletter-subtext {
        font-size: 1rem;
    }

    .newsletter-form .input-group {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .newsletter-title {
        font-size: 1.75rem;
    }

    .newsletter-subtext {
        font-size: 0.95rem;
    }
}

/* Footer columns are fluid (auto-fit, above) — no breakpoint overrides needed. */
.footer-navy .footer__wrapper-widget {
    text-align: left;
}




/* How Glam Works Section - Clean Minimalist Design (fluid) */
.how-glam-works-section {
    background: #ffffff;
    padding: clamp(3rem, 5vw, 8rem) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 4vw, 6rem);
}

.section-title {
    font-size: clamp(1.8rem, 2.6vw, 4rem);
    font-weight: 700;
    color: #18191b;
    margin-bottom: clamp(0.75rem, 1vw, 1.6rem);
    font-family: var(--heading-fonts);
    position: relative;
    display: inline-block;
    /* Reserves space below the text glyphs for the gradient bar so it
       always sits below the heading regardless of font/line-height. */
    padding-bottom: clamp(16px, 1.6vw, 36px);
    line-height: 1.15;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /* Scales directly with viewport so the bar grows visibly on wider
       monitors. Min keeps it readable on phones, max stops it dominating
       the heading on ultrawide. */
    width: clamp(90px, 11vw, 320px);
    height: clamp(4px, 0.55vw, 16px);
    background: linear-gradient(90deg, #20B2AA, #FF6B35);
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0, 196, 204, 0.35);
}

.section-subtitle {
    font-size: clamp(1.05rem, 1.2vw, 1.7rem);
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: clamp(1rem, 1.5vw, 3rem);
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
    min-height: clamp(280px, 22vw, 460px);
    position: relative;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: clamp(12px, 1vw, 22px);
    padding: clamp(1.5rem, 2vw, 3.5rem) clamp(1rem, 1.5vw, 2.5rem);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 196, 204, 0.1);
    overflow: hidden;
    justify-content: flex-start;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(3px, 0.3vw, 6px);
    background: linear-gradient(90deg, #20B2AA, #FF6B35);
    z-index: 1;
}

.step-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: clamp(3px, 0.3vw, 6px);
    background: linear-gradient(90deg, #FF6B35, #20B2AA);
    z-index: 1;
}

.step-number {
    width: clamp(36px, 3.2vw, 72px);
    height: clamp(36px, 3.2vw, 72px);
    background: linear-gradient(135deg, #20B2AA, #FF6B35);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(15px, 1.25vw, 26px);
    margin-bottom: clamp(1.25rem, 1.5vw, 2.4rem);
    box-shadow: 0 4px 12px rgba(0, 196, 204, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF6B35, #20B2AA);
    transition: left 0.3s ease;
    z-index: -1;
}

.step-item:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 196, 204, 0.5);
}

.step-item:hover .step-number::before {
    left: 0;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 196, 204, 0.15);
    border-color: #20B2AA;
}

.step-item:hover::before {
    background: linear-gradient(90deg, #FF6B35, #20B2AA);
}

.step-item:hover::after {
    background: linear-gradient(90deg, #20B2AA, #FF6B35);
}

.step-icon {
    margin-bottom: clamp(1.25rem, 1.5vw, 2.4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

/* CSS dimensions override the inline width/height="48" attributes on the
   <svg> elements in about-us.blade.php, so the icons scale with viewport. */
.step-icon svg {
    width: clamp(48px, 5vw, 100px);
    height: clamp(48px, 5vw, 100px);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon svg {
    transform: scale(1.05);
}

.step-title {
    font-size: clamp(1.05rem, 1.2vw, 1.8rem);
    font-weight: 700;
    color: #18191b;
    margin-bottom: clamp(0.6rem, 0.8vw, 1.4rem);
    font-family: var(--heading-fonts);
    line-height: 1.3;
}

.step-desc {
    font-size: clamp(0.9rem, 1.05vw, 1.5rem);
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-family: var(--body-fonts);
    max-width: clamp(200px, 18vw, 380px);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 clamp(0.5rem, 1vw, 2rem);
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.flow-arrow svg {
    width: clamp(24px, 2.5vw, 56px);
    height: clamp(24px, 2.5vw, 56px);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 196, 204, 0.3));
}

.flow-arrow:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(0, 196, 204, 0.5));
}

.flow-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(40px, 3.5vw, 80px);
    height: clamp(40px, 3.5vw, 80px);
    background: linear-gradient(135deg, rgba(0, 196, 204, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.flow-arrow:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

/* AOS Animation Support */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .steps-flow {
        gap: 0.5rem;
    }

    .flow-arrow {
        margin: 0 0.25rem;
    }

    .step-item {
        min-width: 160px;
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .steps-flow {
        flex-wrap: nowrap;
        gap: 1rem;
        justify-content: space-between;
    }

    .flow-arrow {
        margin: 0 0.5rem;
        display: block;
        flex: 0 0 30px;
    }

    .step-item {
        min-width: 180px;
        flex: 1;
        padding: 1.5rem 1rem;
        max-width: calc(25% - 10px);
    }

    .section-title {
        font-size: 2.2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .step-desc {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .steps-flow {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .flow-arrow {
        display: none;
    }

    .step-item {
        min-width: 180px;
        flex: 1;
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .how-glam-works-section {
        padding: 4rem 0;
    }

    .steps-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .step-item {
        min-width: 200px;
        min-height: 240px;
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 16px;
    }

    .step-desc {
        font-size: 13px;
        max-width: 180px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .how-glam-works-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .steps-flow {
        gap: 1.5rem;
    }

    .step-item {
        min-width: 180px;
        min-height: 220px;
        padding: 1.25rem 0.75rem;
        max-width: 280px;
    }

    .step-icon svg {
        width: 40px;
        height: 40px;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-desc {
        font-size: 12px;
        max-width: 160px;
    }
}

/* Mobile Navigation Enhancements */
@media (max-width: 768px) {
    .navbar-bottom-wrapper .menu {
        gap: 4px;
        margin-right: 15px;
    }

    .navbar-bottom-wrapper .menu li a {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    .navbar-bottom-wrapper .menu li a::after {
        height: 2px;
    }
}

@media (max-width: 576px) {
    .navbar-bottom-wrapper .menu {
        gap: 2px;
        margin-right: 10px;
    }

    .navbar-bottom-wrapper .menu li a {
        padding: 6px 8px;
        font-size: 12px;
        border-radius: 6px;
    }

    .navbar-bottom-wrapper .menu li a::after {
        height: 2px;
    }
}