@import url('https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Belleza&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@font-face {
    font-family: 'Brush Script MT';
    src: url('../FONTS/BrushScriptMT/BrushScriptStd.otf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inria Serif", serif;
    background-color: #F9FBFF;
}

.doctor-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 98%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.doctor-popup-box {
    background: #f5f5f5;
    max-width: 700px;
    width: 90%;
    border-radius: 10px;
    padding: 25px;
    position: relative;
}

.doctor-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
}

.doctor-popup-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.doctor-popup-left img {
    width: 300px;
    height: 390px;
    text-align: justify;
}

.doctor-popup-right {
    flex: 1;
}

.doctor-popup-right h2 {
    color: #253551;
    font-size: 32px;
    margin-bottom: 10px;
}

.doctor-popup-right h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.doctor-popup-right p {
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
}

.doctor-popup-degree {
    color: #253551;
    margin-top: 10px;
    font-weight: 600;
}

.doctor-popup-btn {
    display: inline-block;
    margin-top: 20px;
    background: #253551;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
}


/* MOBILE */

@media(max-width:768px) {
    .doctor-popup-content {
        flex-direction: column;
        text-align: center;
    }
    .doctor-popup-left img {
        width: 270px;
        height: 280px;
    }
    .doctor-popup-box {
        padding: 25px;
    }
}

.text-primary {
    color: #253551 !important;
}

.ff-Brush {
    font-family: 'Brush Script MT', cursive;
}

.ff-Belleza {
    font-family: "Belleza"
}

.bgPattern {
    background-image: url(../images/bgTexure.jpg);
    /* background-attachment: fixed; */
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: darken;
}

h5 {
    font-family: "Belleza", sans-serif;
    color: #253551;
    font-size: 1.2rem;
}

h2 {
    font-family: "Belleza", sans-serif;
    color: #253551;
    font-size: 50px;
    font-weight: bolder;
}

h3 {
    font-family: "Belleza", sans-serif;
}

ul {
    list-style: none;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: #000;
}

.site-nav-shell {
    position: relative;
    z-index: 2000;
}

.top-bar {
    background: #253551;
    font-size: 13px;
    color: #fff !important;
}


/* LET'S TALK BUTTON */

.top-talk-btn {
    display: inline-block;
    padding: 17px 41px;
    background: #253551;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}


/* HOVER EFFECT */

.top-talk-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}


/* LOGO BASE */

.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
    text-decoration: none;
    font-weight: 500;
    margin-right: 20px;
}


/* MAIN TEXT */

.logo-mark {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Brush Script MT', cursive;
    color: #102340;
}


/* SUBTITLE */

.logo-subtitle {
    font-family: "Belleza", sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #6f7a8e;
    margin-top: 9px;
}


/* RESPONSIVE */

@media (max-width: 768px) {
    .logo-mark {
        font-size: 1.5rem;
    }
    .logo-subtitle {
        font-size: 0.55rem;
    }
    .top-talk-btn {
        margin-top: 25px;
    }
    .top-bar i {
        display: none;
    }
    .contact-inline {
        display: flex;
        align-items: center;
    }
    .contact-inline span:first-child {
        margin-right: -5px;
        width: 146px;
        margin-left: -27px;
    }
}


/* Navbar */

.navbar-nav .nav-link {
    margin: 0 10px;
    position: relative;
    padding: 8px 5px;
    font-family: "Belleza", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #253551;
}

.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #cadbdb, #25245e, #cadbdb);
    background-size: 200% auto;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
    animation: navGradient 2s linear infinite;
}

.navbar-nav .nav-link.active::before {
    width: 100%;
    animation: navGradient 2s linear infinite;
}

@keyframes navGradient {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 200%;
    }
}

.navbar .dropdown-toggle::after {
    display: none !important;
}


/* Mega menu */

.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    display: none;
    background: linear-gradient(to right, #0a1f44, #0d2c5a);
    color: #fff;
    padding: 30px;
    z-index: 999;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Desktop hover */

@media (min-width: 992px) {
    .mega-dropdown:hover .mega-menu {
        display: block;
    }
}


/* Mobile */

@media (max-width: 991px) {
    .mega-menu {
        position: static;
    }
    .mega-dropdown.active .mega-menu {
        display: block;
    }
}

.category-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.category-list li {
    padding: 16px 12px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 20x;
    font-weight: 700;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}


/* ICON */

.category-list li::after {
    content: "›";
    font-size: 20px;
    opacity: 0.6;
    transform: translateX(0);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-list li:hover::after {
    transform: translateX(8px);
    opacity: 1;
}


/* SMOOTH BORDER */

.category-list li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2.5px;
    width: 0%;
    background: linear-gradient( 90deg, #cadbdb, #253551, #cadbdb);
    background-size: 200% auto;
    transition: width 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}


/* HOVER EFFECT */

.category-list li:hover::before {
    width: 100%;
    animation: gradientFlow 2s linear infinite;
}


/* ACTIVE STATE */

.category-list li.active::before {
    width: 100%;
    animation: gradientFlow 2s linear infinite;
}


/* SOFT HOVER BG */

.category-list li:hover {
    background: rgba(255, 255, 255, 0.04);
}

.content-box {
    display: none;
}


/* REMOVE BULLETS */

.service-list {
    list-style: none;
    padding: 0;
    margin-left: 30px;
}


/* LIST ITEM */

.service-list li {
    margin-bottom: 20px;
    margin-top: 20px;
}


/* LINK STYLE */

.service-list li a {
    text-decoration: none;
    color: #fff;
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s;
}


/* HOVER UNDERLINE EFFECT */

.service-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #253551, #cacacd);
    transition: 0.3s;
}

.service-list li a:hover::after {
    width: 100%;
}


/* HOVER COLOR */

.service-list li a:hover {
    color: #d5eaea;
}


/* KEYFRAME FOR FLOW */

@keyframes gradientFlow {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 200%;
    }
}


/* SIDEBAR */

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #253551;
    color: #fff;
    z-index: 9999;
    transition: left 0.4s ease;
    padding: 20px;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
    transition: left 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.sidebar-header span {
    cursor: pointer;
    font-size: 18px;
}

.mobile-sidebar ul {
    list-style: none;
    padding: 0;
}

.mobile-sidebar ul li {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}


/* OVERLAY */

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}


/* ACTIVE */

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width:500px) {
    .mega-menu {
        display: none !important;
    }
}

.contact-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.contact-popup-inner {
    background: #fff;
    width: 100%;
    max-width: 657px;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #000;
}

.contact-popup.active {
    display: flex;
}

#butn-pop {
    margin-left: 131px;
}

html.jp-loading,
body.jp-loading {
    overflow: hidden;
}

#pageLoader {
    position: fixed;
    inset: 0;
    z-index: 13000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
    background: radial-gradient(circle at 20% 20%, rgba(117, 172, 231, 0.34) 0%, rgba(117, 172, 231, 0) 42%), radial-gradient(circle at 80% 70%, rgba(78, 126, 182, 0.35) 0%, rgba(78, 126, 182, 0) 45%), linear-gradient(150deg, #0a1b37 0%, #1d355e 56%, #2b4d7f 100%);
}

#pageLoader.jp-loader-hide {
    transform: translateY(-100%);
    opacity: 0.98;
}

#pageLoader::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.1) 100%);
}

.section-wrapper {
    max-width: 1200px;
    margin: auto;
}

.steps-card {
    background: #253551;
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 20px 60px #253551;
    overflow: hidden;
}

.step {
    text-align: center;
    color: #fff;
    padding: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.step i {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
    transition: 0.4s;
}

.step h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.step p {
    color: #cbd5e0;
    font-size: 15px;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70px;
    width: 2px;
    background: #4a5568;
}

.step:hover {
    transform: translateY(-10px);
}

.step:hover i {
    transform: scale(1.2);
    color: #00d4ff;
}

@media(max-width: 786px) {
    .step {
        margin-bottom: 20px;
    }
    .step::after {
        display: none;
    }
}

.step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jp-loader-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    transition: transform 0.45s ease, opacity 0.45s ease;
    width: min(440px, 90vw);
}

#pageLoader.jp-loader-hide .jp-loader-inner {
    opacity: 0;
    transform: translateY(-18px);
}

.jp-loader-kicker {
    display: block;
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    opacity: 0.8;
    font-family: "Belleza", sans-serif;
    animation: jpLoaderFadeIn 0.8s ease both;
}

.jp-loader-brand {
    margin: 0 0 18px;
    color: #fff;
    font-family: "Belleza", sans-serif;
    letter-spacing: 0.05em;
    font-size: clamp(2.3rem, 6vw, 5rem);
    animation: jpLoaderPulse 2s ease-in-out infinite;
}

.jp-loader-ring {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: grid;
    place-items: center;
}

.jp-loader-ring span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: #fff;
    animation: jpLoaderSpin 1.1s linear infinite;
}

.jp-loader-line {
    width: min(380px, 86vw);
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.22);
}

.jp-loader-line span {
    display: block;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #95d6ff 100%);
    animation: jpLoaderTrack 1.2s ease-in-out infinite;
}

.jp-loader-status {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-family: "Belleza", sans-serif;
}

#jpLoaderPercent {
    min-width: 40px;
    text-align: right;
    color: #fff;
}

#jpLoaderWord {
    opacity: 0.86;
}

@keyframes jpLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes jpLoaderTrack {
    0% {
        transform: translateX(-120%);
    }
    50% {
        transform: translateX(120%);
    }
    100% {
        transform: translateX(240%);
    }
}

@keyframes jpLoaderPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.96;
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}

@keyframes jpLoaderFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

.bg-primary {
    background-color: #253551 !important;
}


/*--------------------------------------------index page-----------------------------------------------------*/


/* ---------------------------------------------HERO SECTION---------------------------------------------- */


/* Full screen image */

.carousel-item img {
    height: 100%;
    object-fit: cover;
}


/* Smooth transition */

.carousel-item {
    transition: transform 1s ease-in-out;
    height: clamp(560px, 82vh, 760px);
}

.carousel-caption h2 {
    font-size: 50px;
    font-family: "Belleza";
    font-weight: 600;
}

.carousel-caption p {
    font-size: 20px;
    font-family: "Inria Serif", "sens-serif";
    ;
    font-weight: 400;
}

.carousel-btn {
    background-color: #253551;
    border-radius: 30px;
    color: #fff;
    padding: 21px 38px;
}

.carousel-btn:hover {
    background-color: #e0e0db;
    color: #253551;
}

.slider-btn {
    background: #253551;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 20px;
    /* move inside from left */
}

.carousel-control-next {
    right: 20px;
    /* move inside from right */
}

#carouselExampleCaptions .carousel-control-prev,
#carouselExampleCaptions .carousel-control-next,
#carouselExampleCaptions .carousel-indicators {
    z-index: 6;
}

.jp-hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(110deg, rgba(8, 18, 34, 0.84) 8%, rgba(12, 26, 50, 0.38) 45%, rgba(8, 18, 34, 0.86) 100%);
}

.jp-hero-slide {
    overflow: hidden;
}

.jp-hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle at 14% 24%, rgba(125, 210, 255, 0.22) 0%, rgba(125, 210, 255, 0) 32%), radial-gradient(circle at 82% 78%, rgba(198, 125, 102, 0.18) 0%, rgba(198, 125, 102, 0) 38%);
}

.jp-hero-slide-two::after {
    background: linear-gradient(115deg, rgba(18, 20, 42, 0.88) 10%, rgba(36, 40, 74, 0.42) 48%, rgba(11, 20, 38, 0.88) 100%);
}

.jp-hero-slide-three::after {
    background: linear-gradient(115deg, rgba(14, 26, 39, 0.88) 9%, rgba(19, 54, 75, 0.44) 46%, rgba(10, 22, 34, 0.88) 100%);
}

.jp-hero-slide .jp-hero-animate {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: justify;
}

#carouselExampleCaptions .carousel-item.active .jp-hero-animate {
    opacity: 1;
    transform: translateY(0);
}

.jp-delay-1 {
    transition-delay: 0.14s;
}

.jp-delay-2 {
    transition-delay: 0.22s;
}

.jp-delay-3 {
    transition-delay: 0.32s;
}

.jp-delay-4 {
    transition-delay: 0.42s;
}

.jp-delay-5 {
    transition-delay: 0.52s;
}

.jp-hero-caption {
    z-index: 4;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    align-items: center;
    padding-top: clamp(16px, 3vh, 34px);
    padding-bottom: clamp(16px, 3vh, 34px);
}

.jp-hero-layout {
    width: min(1220px, 92vw);
    min-height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.86fr);
    gap: clamp(18px, 3vw, 40px);
    align-items: center;
}

.jp-hero-copy-col {
    position: relative;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 32px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(15, 32, 58, 0.84) 0%, rgba(23, 47, 83, 0.64) 70%, rgba(16, 38, 68, 0.74) 100%);
    box-shadow: 0 28px 58px rgba(5, 14, 29, 0.42);
    backdrop-filter: blur(7px);
    animation: jpHeroLift 0.9s ease both;
}

.jp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(157, 219, 255, 0.62);
    background: rgba(127, 198, 241, 0.15);
    color: rgba(255, 255, 255, 0.98);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: "Belleza", sans-serif;
}

.jp-hero-title {
    margin: 16px 0 0;
    color: #fff;
    font-size: clamp(2.05rem, 4.8vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.jp-hero-copy {
    margin: 14px 0 0;
    max-width: 620px;
    color: rgba(238, 246, 255, 0.92);
    font-size: 1.02rem;
    line-height: 1.62;
}

.jp-hero-action-row {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.jp-hero-link {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
    transition: 0.3s ease;
}

.jp-hero-link:hover {
    color: #9edbff;
    border-color: #9edbff;
}

.jp-hero-metrics {
    margin-top: 22px;
    width: 100%;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.jp-hero-metric {
    min-width: 148px;
    padding: 12px 13px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(174, 221, 255, 0.24);
}

.jp-hero-metric strong {
    display: block;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.1;
    font-family: "Belleza", sans-serif;
}

.jp-hero-metric span {
    display: block;
    margin-top: 4px;
    color: rgba(232, 243, 255, 0.84);
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.jp-hero-showcase {
    position: relative;
    padding: 12px 12px 30px;
    animation: jpHeroLift 0.9s ease both;
    animation-delay: 0.18s;
}

.jp-hero-slide-two .jp-hero-copy-col {
    background: linear-gradient(145deg, rgba(23, 21, 58, 0.84) 0%, rgba(37, 34, 89, 0.66) 68%, rgba(21, 25, 62, 0.76) 100%);
    border-color: rgba(181, 180, 255, 0.28);
}

.jp-hero-slide-three .jp-hero-copy-col {
    background: linear-gradient(145deg, rgba(15, 41, 58, 0.84) 0%, rgba(18, 67, 89, 0.66) 68%, rgba(13, 42, 60, 0.78) 100%);
    border-color: rgba(154, 229, 255, 0.28);
}

.jp-hero-slide-two .jp-hero-showcase-card {
    background: linear-gradient(145deg, #ffffff 0%, #f0efff 100%);
}

.jp-hero-slide-three .jp-hero-showcase-card {
    background: linear-gradient(145deg, #ffffff 0%, #eaf8ff 100%);
}

.jp-hero-slide-two .jp-award-icon {
    background: linear-gradient(140deg, #2b2f80 0%, #6f78d7 100%);
}

.jp-hero-slide-three .jp-award-icon {
    background: linear-gradient(140deg, #0c506f 0%, #31a7cb 100%);
}

.jp-hero-slide-two .jp-hero-link:hover {
    color: #c6c7ff;
    border-color: #c6c7ff;
}

.jp-hero-slide-three .jp-hero-link:hover {
    color: #95ecff;
    border-color: #95ecff;
}

.jp-hero-slide-two .jp-hero-action-row .carousel-btn {
    background: linear-gradient(135deg, #292f8f 0%, #646fd8 100%);
}

.jp-hero-slide-two .jp-hero-action-row .carousel-btn:hover {
    background: linear-gradient(135deg, #3b46b6 0%, #7987e4 100%);
}

.jp-hero-slide-three .jp-hero-action-row .carousel-btn {
    background: linear-gradient(135deg, #0e4d6c 0%, #2898be 100%);
}

.jp-hero-slide-three .jp-hero-action-row .carousel-btn:hover {
    background: linear-gradient(135deg, #126285 0%, #35add5 100%);
}

.jp-hero-showcase-frame {
    border-radius: 33% 67% 62% 38% / 36% 40% 60% 64%;
    overflow: hidden;
    aspect-ratio: 0.76;
    border: 6px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 20px 52px rgba(4, 15, 31, 0.4);
}

.jp-hero-showcase-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jp-hero-showcase-card {
    position: absolute;
    left: -6px;
    bottom: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 252px;
    padding: 11px 14px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(8, 20, 38, 0.32);
    animation: jpHeroFloat 4s ease-in-out infinite;
}

.jp-award-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.95rem;
    background: linear-gradient(140deg, #253551 0%, #5a86bc 100%);
}

.jp-hero-showcase-card p {
    margin: 0;
    color: #6882a2;
    font-size: 0.73rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "Belleza", sans-serif;
}

.jp-hero-showcase-card strong {
    display: block;
    color: #253551;
    font-size: 0.94rem;
}

.jp-hero-floating-chip {
    position: absolute;
    left: clamp(20px, 5vw, 70px);
    bottom: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(174, 221, 255, 0.5);
    background: rgba(10, 26, 48, 0.78);
    box-shadow: 0 14px 28px rgba(3, 13, 29, 0.32);
    animation: jpHeroFloat 4.3s ease-in-out infinite;
    animation-delay: 0.4s;
}

.jp-hero-floating-chip i {
    color: #9edbff;
}

.jp-hero-orb {
    position: absolute;
    z-index: 3;
    border-radius: 50%;
    pointer-events: none;
}

.jp-hero-orb-one {
    width: 190px;
    height: 190px;
    top: 86px;
    right: 34%;
    background: radial-gradient(circle, rgba(151, 219, 255, 0.45) 0%, rgba(151, 219, 255, 0) 72%);
    animation: jpHeroOrbA 6s ease-in-out infinite;
}

.jp-hero-orb-two {
    width: 230px;
    height: 230px;
    bottom: 18px;
    right: 10%;
    background: radial-gradient(circle, rgba(198, 135, 106, 0.28) 0%, rgba(198, 135, 106, 0) 72%);
    animation: jpHeroOrbB 7s ease-in-out infinite;
}

.jp-hero-action-row .carousel-btn {
    background: linear-gradient(135deg, #1e304d 0%, #466f9f 100%);
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #fff;
}

.jp-hero-action-row .carousel-btn:hover {
    background: linear-gradient(135deg, #304a72 0%, #6598d1 100%);
    color: #fff;
}

@keyframes jpHeroLift {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes jpHeroFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes jpHeroOrbA {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-10px, 12px);
    }
}

@keyframes jpHeroOrbB {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(12px, -10px);
    }
}

.jp-limelight-section {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 10vw, 120px) 20px clamp(58px, 8vw, 86px);
    background: radial-gradient(circle at 12% 18%, rgba(109, 184, 255, 0.2) 0%, rgba(109, 184, 255, 0) 36%), radial-gradient(circle at 86% 22%, rgba(79, 130, 201, 0.26) 0%, rgba(79, 130, 201, 0) 42%), linear-gradient(135deg, #091b34 0%, #10274a 48%, #1a3b67 100%);
}

.jp-limelight-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
}

.jp-limelight-glow-one {
    width: 320px;
    height: 320px;
    top: -90px;
    right: -80px;
    background: radial-gradient(circle, rgba(154, 226, 255, 0.34) 0%, rgba(154, 226, 255, 0) 68%);
}

.jp-limelight-glow-two {
    width: 280px;
    height: 280px;
    bottom: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(198, 125, 102, 0.28) 0%, rgba(198, 125, 102, 0) 70%);
}

.jp-limelight-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.jp-limelight-top {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.jp-limelight-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(165, 220, 255, 0.55);
    padding: 7px 14px;
    color: #d7ecff;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-family: "Belleza", sans-serif;
    background: rgba(113, 185, 237, 0.15);
}

.jp-limelight-top h2 {
    color: #fff;
    line-height: 1.05;
    font-size: clamp(2rem, 5vw, 4.1rem);
    letter-spacing: -0.02em;
}

.jp-limelight-top p {
    margin: 14px auto 0;
    max-width: 700px;
    color: rgba(232, 245, 255, 0.86);
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify;
}

.jp-limelight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(20px, 3vw, 38px);
    align-items: center;
}

.jp-limelight-main-card {
    padding: clamp(24px, 3vw, 36px);
    border-radius: 28px;
    border: 1px solid rgba(170, 220, 255, 0.26);
    background: linear-gradient(150deg, rgba(12, 31, 57, 0.9) 0%, rgba(18, 49, 86, 0.72) 64%, rgba(20, 61, 103, 0.8) 100%);
    box-shadow: 0 28px 58px rgba(3, 13, 27, 0.42);
    backdrop-filter: blur(7px);
}

.jp-limelight-chip {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #235383 0%, #4f87bf 100%);
    padding: 8px 12px;
    border-radius: 999px;
    font-family: "Belleza", sans-serif;
}

.jp-limelight-main-card h3 {
    margin: 16px 0 0;
    color: #fff;
    line-height: 1.15;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.jp-limelight-main-card p {
    margin: 14px 0 0;
    color: rgba(233, 245, 255, 0.88);
    line-height: 1.65;
    font-size: 1rem;
}

.jp-limelight-main-meta {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.jp-limelight-main-meta div {
    border-radius: 14px;
    padding: 12px 10px;
    border: 1px solid rgba(171, 219, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.jp-limelight-main-meta strong {
    display: block;
    color: #fff;
    line-height: 1.1;
    font-size: 1.28rem;
    font-family: "Belleza", sans-serif;
}

.jp-limelight-main-meta span {
    display: block;
    margin-top: 5px;
    color: rgba(230, 244, 255, 0.78);
    letter-spacing: 0.05em;
    font-size: 0.68rem;
    text-transform: uppercase;
}

.jp-limelight-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    border-radius: 999px;
    padding: 12px 22px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid rgba(196, 230, 255, 0.58);
    background: linear-gradient(135deg, #2e5888 0%, #4d82ba 100%);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.jp-limelight-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(7, 17, 35, 0.35);
    background: linear-gradient(135deg, #3b6ca3 0%, #639ad5 100%);
}

.jp-limelight-visual {
    position: relative;
    min-height: 540px;
    display: grid;
    place-items: center;
}

.jp-limelight-ring {
    position: absolute;
    width: min(88vw, 470px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid rgba(162, 220, 255, 0.24);
}

.jp-limelight-ring span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(168, 223, 255, 0.22);
}

.jp-limelight-ring span:nth-child(1) {
    --jp-scale: 0.84;
    animation: jpRotateA 12s linear infinite;
}

.jp-limelight-ring span:nth-child(2) {
    --jp-scale: 0.66;
    animation: jpRotateB 11s linear infinite;
}

.jp-limelight-ring span:nth-child(3) {
    --jp-scale: 0.48;
    animation: jpRotateA 10s linear infinite;
}

.jp-limelight-photo {
    position: relative;
    width: min(88vw, 380px);
    aspect-ratio: 0.78;
    border-radius: 35% 65% 56% 44% / 45% 44% 56% 55%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 24px 48px rgba(5, 13, 29, 0.4);
    animation: jpVisualFloat 6s ease-in-out infinite;
}

.jp-limelight-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jp-limelight-float-card {
    position: absolute;
    z-index: 2;
    max-width: 210px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 36px rgba(8, 20, 39, 0.3);
    padding: 11px 13px;
    animation: jpCardFloat 5s ease-in-out infinite;
}

.jp-limelight-float-card i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #2f5989 0%, #4f85ba 100%);
    flex-shrink: 0;
}

.jp-limelight-float-card strong {
    display: block;
    color: #1f3658;
    font-size: 0.9rem;
    line-height: 1.2;
}

.jp-limelight-float-card span {
    display: block;
    margin-top: 3px;
    color: #587391;
    font-size: 0.73rem;
    line-height: 1.3;
}

.jp-float-one {
    top: 20px;
    left: 0;
}

.jp-float-two {
    right: -8px;
    bottom: 80px;
    animation-delay: 0.6s;
}

.jp-limelight-marquee {
    margin-top: clamp(24px, 4vw, 38px);
    border-top: 1px solid rgba(164, 221, 255, 0.24);
    border-bottom: 1px solid rgba(164, 221, 255, 0.24);
    overflow: hidden;
    position: relative;
}

.jp-limelight-track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    padding: 14px 0;
    animation: jpMarquee 24s linear infinite;
}

.jp-limelight-track span {
    color: rgba(220, 239, 255, 0.9);
    letter-spacing: 0.09em;
    font-size: 0.84rem;
    text-transform: uppercase;
    font-family: "Belleza", sans-serif;
}

.jp-limelight-track span::after {
    content: "•";
    margin-left: 28px;
    color: rgba(172, 224, 255, 0.45);
}

@keyframes jpRotateA {
    from {
        transform: scale(var(--jp-scale, 1)) rotate(0deg);
    }
    to {
        transform: scale(var(--jp-scale, 1)) rotate(360deg);
    }
}

@keyframes jpRotateB {
    from {
        transform: scale(var(--jp-scale, 1)) rotate(360deg);
    }
    to {
        transform: scale(var(--jp-scale, 1)) rotate(0deg);
    }
}

@keyframes jpVisualFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes jpCardFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes jpMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    #pageLoader,
    .jp-loader-inner,
    .jp-loader-brand,
    .jp-loader-ring span,
    .jp-loader-line span,
    .jp-hero-animate,
    .jp-hero-copy-col,
    .jp-hero-showcase,
    .jp-hero-showcase-card,
    .jp-hero-floating-chip,
    .jp-hero-orb-one,
    .jp-hero-orb-two,
    .jp-limelight-photo,
    .jp-limelight-float-card,
    .jp-limelight-ring span,
    .jp-limelight-track {
        animation: none !important;
        transition: none !important;
    }
}


/*---------------------------------------------------------------------------------------*/

.bor180 {
    border-radius: 180px;
}

.brand-drag-slider {
    background: #253551;
    ;
    height: 160px;
    overflow: hidden;
    cursor: grab;
    /* margin-top: 6px; */
}

.brand-track {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 80px;
    padding: 0 60px;
    width: max-content;
}

.brand-item {
    color: #fff;
    font-size: 25px;
    letter-spacing: 2px;
    white-space: nowrap;
    user-select: none;
}

.brand-drag-slider:active {
    cursor: grabbing;
}
.nav-logo {
    height: 70px;
    width: 170px;
    
}
.nav-logo img {
    height: 50px;   /* adjust as needed */
    width: auto;
    object-fit: contain;
}


/*------------------------------------------------about section-----------------------------------*/

.about-area {
    padding: 90px 20px;
}

.about-wrapper {
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-media {
    position: relative;
    width: 100%;
    min-height: 460px;
}

.about-image {
    position: absolute;
    overflow: hidden;
    border-radius: 200px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-primary {
    width: 300px;
    height: 500px;
    left: 0;
    top: 20px;
}

.about-image-secondary {
    width: 300px;
    height: 500px;
    right: 20px;
    top: 0;
}


/* ---------------------------------about page-------------------------------- */

.ab-wrapper {
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: start;
    gap: 10px;
}

.ab-img-pri {
    width: 300px;
    height: 500px;
    left: 0;
    top: 20px;
    transform: translateY(200px);
}

.about-info {
    width: 50%;
}

.about-tag {
    color: #253551;
    letter-spacing: 2px;
    font-size: 20px;
    font-weight: 600;
}

.about-title {
    font-size: 45px;
    font-weight: 500;
    color: #253551;
    margin: 18px 0;
    font-family: "Inria Serif", "sens-serif";
}

.about-text {
    color: #777;
    line-height: 1.7;
    margin-bottom: 32px;
}
.text-light {
  margin: 13px -124px 33px;
}
.about-stats {
    display: flex;
    gap: 22px;
    margin-bottom: 32px;
}

.stat-item {
    border: 1px solid #253551;
    padding: 26px 62px;
    border-radius: 50px;
    text-align: center;
}

.stat-item h3 {
    font-size: 32px;
    color: #253551;
}

.stat-item span {
    font-size: 12px;
    letter-spacing: 1px;
    color: #888;
}

.about-btn {
    display: inline-block;
    background: #253551;
    color: #fff;
    padding: 21px 38px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}


/*------------------------------------------------services--------------------------------------*/

.services-area {
    padding: 100px 20px;
}

.services-wrapper {
    max-width: 1280px;
    margin: auto;
}

.services-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
}

.services-header p {
    color: #777;
    line-height: 1.7;
    text-align: justify;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


/* CARD */

.service-card,
.service-card-reverse {
    display: flex;
    align-items: center;
    padding: 23px;
    border: 2px solid #253551;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.service-card {
    border-radius: 0px 172px 172px 0px;
}

.service-card-reverse {
    flex-direction: row-reverse;
    border-radius: 172px 0px 0px 172px;
}

.service-card:hover {
    border-color: #5d6b82;
}


/* IMAGE */

.service-image {
    width: 160px;
    height: 240px;
    border-radius: 120px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* CONTENT */

.service-content {
    padding-left: 30px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 500;
    color: #3b2b24;
    margin-bottom: 12px;
}

.service-content p {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 33px;
}

.service-content a {
    background: #253551;
    color: #fff;
    padding: 21px 38px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
}

.corner-ribbon {
    position: absolute;
    top: 0;
    width: 140px;
    height: 140px;
    overflow: hidden;
}

.corner-ribbon.left {
    left: 0;
}

.corner-ribbon.left span {
    position: absolute;
    width: 220px;
    padding: 10px 0;
    background: #253551;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transform: rotate(-44deg);
    top: 22px;
    left: -68px;
}

.corner-ribbon.right {
    right: 0;
}

.corner-ribbon.right span {
    position: absolute;
    width: 220px;
    padding: 10px 0;
    background: #253551;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transform: rotate(44deg);
    top: 22px;
    right: -68px;
}

.mobile-price {
    display: none;
}


/*-------------------------------------------------------why choose us--------------------------------*/

.choose-area {
    padding: 90px 20px;
    background-color: #e0e0db;
}

.choose-wrapper {
    /* width: 90%; */
    max-width: 1280px;
    margin: auto;
    /* gap: 24px; */
}

.choose-left {
    width: 32%;
}

.choose-tag {
    color: #253551;
    ;
    letter-spacing: 2px;
    font-size: 16px;
    font-family: "Belleza";
}

.choose-title {
    font-size: 42px;
    font-weight: 500;
    color: #253551;
    margin: 18px 0 40px;
    line-height: 1.3;
    font-family: "Inria Serif", "sens-serif";
}

.choose-image {
    width: 385px;
    height: 200px;
    border-radius: 172px;
    overflow: hidden;
}

.choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-right {
    width: 52%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px;
}

.choose-card {
    padding: 20px 20px;
    position: relative;
    border: 2px solid #253551;
    /* padding: 35px 35px 35px 65px; */
    border-radius: 0px 172px 172px 0px;
    transition: all 0.3s ease;
    height: 170px;
    width: calc((100% / 2) - 10px);
    /* width: 380px; */
}

.choose-card:hover {
    border-color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.check-icon {
    /* position: absolute; */
    /* left: 25px; */
    /* top: 15px; */
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #253551;
    font-size: 30px;
    font-weight: bolder;
}

.choose-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #253551;
    margin-bottom: 3px;
    margin-top: 10px;
}

.choose-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    text-align: justify;
}


/*---------------------------------------------------testimonial,our team----------------------------------*/

.testimonial-area,
.our-team {
    padding: 51px 20px;
    background-color: #e0e0db;
}

.testimonial-wrapper {
    max-width: 1280px;
    margin: auto;
}

.testimonial-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
}

.testimonial-tag {
    color: #fff;
    letter-spacing: 2px;
    font-size: 14px;
    font-family: "Inria Serif", serif;
    font-weight: 600;
}

.testimonial-slider {
    padding-bottom: 40px;
}

.testimonial-card {
    background: #F9FBFF;
    border: 1px solid #d8d8d8;
    padding: 45px;
    border-radius: 0 0 0 140px;
    height: 100%;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #777;
    margin-bottom: 35px;
    text-align: justify;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 16px;
    color: #3b2b24;
    margin: 0;
}

.client-info span {
    font-size: 13px;
    color: #999;
}


/*----------------------------------------------gallery area------------------------------------*/

.ba-gallery-section {
    padding: 77px 130px;
}

.ba-gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ba-left-area {
    flex: 1;
}

.ba-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.ba-slider-card {
    position: relative;
    height: 500px;
    width: 400px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    cursor: grab;
}

.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-before-img {
    z-index: 2;
}

.ba-after-img {
    z-index: 1;
}

.ba-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    z-index: 3;
}

.ba-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 2px;
    font-family: "Inria Serif", "sens-serif";
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ba-label-wrapper {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 5;
}

.ba-label {
    background: #253551;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-family: "Inria Serif", "sens-serif";
}

.ba-right-area {
    flex: 1;
    padding-left: 44px;
}

.ba-small-title {
    letter-spacing: 4px;
    color: #253551;
    font-size: 20px;
    font-size: "Inria Serif", "sens-serif";
}

.ba-title {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0 20px;
    font-family: "Belleza";
}

.ba-text {
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

.ba-view-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 35px;
    border-radius: 30px;
    background: #253551;
    color: white;
    text-decoration: none;
}

.ba-view-btn:hover {
    background: #e0e0db;
}


/*------------------------------------------------------contact us------------------------------*/

.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4px 20px;
    
}

.container {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    display: flex;
    justify-content: center;
}

.image-circle {
    width: 470px;
    height: 670px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.image-circle img {
    width: 90%;
    height: 95%;
    object-fit: cover;
    border-radius: 197px 197px 197px 197px;
}

.content .label {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    font-family: "Belleza";
    color: #253551;
}

.content h1 {
    font-family: "Inria Serif", "sens-serif";
    font-size: 56px;
    color: #253551;
    margin: 25px 0;
}

.content p {
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #6b5c55;
    font-size: 14x;
    text-align: justify;
}

.contact-form {
    max-width: 420px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 290px;
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: 30px;
    border: 1px solid #eae5e3;
    font-size: 14px;
    outline: none;
}

.contact-form textarea {
    border-radius: 10px;
    min-height: 150px;
    width: 600px;
    resize: none;
}

.contact-form button {
    padding: 20px 32px;
    border-radius: 30px;
    border: none;
    background: #253551;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #5d6b82;
}


/*-------------------------------------------blog Area---------------------------------------*/

.blog-area {
    padding: 90px 20px;
}

.blog-wrapper {
    max-width: 1280px;
    margin: auto;
}

.blog-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
}

.blog-tag {
    color: #253551;
    letter-spacing: 2px;
    font-size: 14px;
    font-family: "Inria Serif", serif;
    font-weight: 600;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    text-align: left;
}

.blog-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 50% 50% 0 0;
    margin-bottom: 30px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
    will-change: transform;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-img img {
    transform: perspective(1280px) rotateY(6deg) rotateZ(1.5deg) scale(1.04);
}

.blog-date {
    font-size: 14px;
    color: #777;
    display: block;
    margin-bottom: 12px;
}

.blog-card a {
    font-size: 15px;
    font-family: "Belleza", sans-serif;
    color: #253551;
    line-height: 1.45;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    text-align: justify;
}


/* underline element */

.blog-card a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #253551;
    transition: width 0.4s ease;
}


/* hover animation */

.blog-card a:hover::after {
    width: 100%;
}


/*-----------------------------------------footor area-------------------------------------------*/

.footer {
    background-color: #253551;
    padding: 10px 80px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #ffffff;
}
  .footer-bottom {
      text-align: center;
      margin-left: -301px;
      font-size: 13px;
      color: #6c757d;
      border-top: 1px solid #dee2e6;
      padding-top: 15px;
      width: 100%;
    }

    .footer-bottom a {
      color: #6c757d;
      margin: 0 10px;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      color: #000;
    }


/* ================= BLOB BACKGROUND ================= */

.footer-blob-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.footer-blob-bg svg {
    width: 100%;
    height: 100%;
}

@keyframes rotateBlob {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.out-top {
    animation: rotateBlob 20s linear infinite;
    transform-origin: 13px 25px;
}

.in-top {
    animation: rotateBlob 10s linear infinite;
    transform-origin: 13px 25px;
}

.out-bottom {
    animation: rotateBlob 25s linear infinite;
    transform-origin: 84px 93px;
}

.in-bottom {
    animation: rotateBlob 15s linear infinite;
    transform-origin: 84px 93px;
}


/* ================= SMOKY BUBBLES ================= */

.footer-smoke {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.footer-smoke span {
    position: absolute;
    bottom: -60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(30px);
    animation: smokeMove linear infinite;
}


/* Different sizes & positions */

.footer-smoke span:nth-child(1) {
    width: 120px;
    height: 120px;
    left: 10%;
    animation-duration: 25s;
}

.footer-smoke span:nth-child(2) {
    width: 80px;
    height: 80px;
    left: 30%;
    animation-duration: 18s;
}

.footer-smoke span:nth-child(3) {
    width: 150px;
    height: 150px;
    left: 55%;
    animation-duration: 28s;
}

.footer-smoke span:nth-child(4) {
    width: 60px;
    height: 60px;
    left: 75%;
    animation-duration: 20s;
}

.footer-smoke span:nth-child(5) {
    width: 100px;
    height: 100px;
    left: 85%;
    animation-duration: 23s;
}

.footer-smoke span:nth-child(6) {
    width: 70px;
    height: 70px;
    left: 45%;
    animation-duration: 19s;
}


/* Smoke Animation */

@keyframes smokeMove {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    20% {
        opacity: 0.4;
    }
    50% {
        transform: translateY(-300px) translateX(40px);
        opacity: 0.6;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-600px) translateX(-40px);
        opacity: 0;
    }
}


/* ================= CONTENT ABOVE ANIMATION ================= */

.footer-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    max-width: 1280px;
    margin: auto;
    margin-top: 65px;
}

.footer-left {
    flex: 1;
    max-width: 420px;
}

.footer-left h3 {
    color: #fff;
    font-family: "Inria Serif", serif;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    color: #fff;
}

.footer-links .social-icons a {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a96549;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: #d1d5db;
    /* color: #fff; */
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.logo-section h2 {
    font-family: 'Brush Script MT', cursive;
    font-size: 70px;
    color: #fff;
    margin: 0;
}

.footer-left p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}


/* ================= RIGHT ================= */

.footer-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-left: 85px;
   
}

.newsletter h3 {
    font-family: "Inria Serif", serif;
    color: #fff;
    margin-bottom: 15px;
}

.subscribe-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.subscribe-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 25px;
    border: none;
    outline: none;
}

.subscribe-form button {
    background: white;
    border: none;
    border-radius: 25px;
    color: #002856;
    padding: 15px 30px;
    cursor: pointer;
    font-weight: 500;
}

.subscribe-form button:hover {
    background: #d1d5db;
}

.footer-links {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
}

.footer-links h4 {
    color: #fff;
    font-family: "Inria Serif", serif;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    line-height: 2;
}

.footer-links a:hover {
    color: #e29782;
}

.contact li {
    color: #fff;
    margin-bottom: 20px;
}

.contact i {
    margin-right: 10px;
}


/*------------------------------------------------------about page------------------------------------------*/
.breadcrumb-hero {
    width: 100%;
    padding: 60px 20px;
}

.breadcrumb-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    background: #e0e0db;
    border-radius: 140px;
    padding: 90px 20px;
    text-align: center;
    position: relative;
    /* height removed */
}

.breadcrumb-hero-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}
.breadcrumb span:last-child {
    max-width: 600px;     /* control width */
    line-height: 1.4;
    word-break: break-word;
    font-size: 15px;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;   /* 👈 important */
    text-align: center;
}
.separator {
    opacity: 0.6;
}
.our-value {
    padding: 100px 0;
    background: #ffffff;
}

.value-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: flex-start;
}

.section-tag {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    color: #253551;
    margin-bottom: 10px;
    display: inline-block;
    text-align: center;
}

.value-left {
    width: 630px;
    height: 716px;
}

.value-left h2 {
    font-family: "Belleza";
    font-size:35px;
    color: #253551;
    margin-bottom: 40px;
    text-align: left;
}

.value-card {
    border: 2px solid #253551;
    border-radius: 0px 100px 100px 0px;
    padding: 35px;
    margin-bottom: 26px;
    height: 174px;
    width: 600px;
}

.value-card h2 {
    font-family: "Belleza", sans-serif;
    font-size: 28px;
    color: #253551;
    font-weight: 500;
    line-height: 0.2em;
    text-align: left;
}

.value-card p {
    font-family: "Inria", sans-serif;
    font-size: 15px;
    color: #666362;
    line-height: 1.7;
    text-align: justify;

}

.value-right {
    position: relative;
    padding-top: 0px;
}

.value-right img {
    width: 630px;
    ;
    height: 716px;
    ;
    border-radius: 0px 300px 300px 0px;
    object-fit: cover;
}

.value-heading {
    position: absolute;
    left: 0px;
    top: -79px;
}


/*-----------------------------------------------------------------reverse image --------------------------------*/

.our-value.reverse-layout .value-container {
    direction: rtl;
}

.our-value.reverse-layout .value-left,
.our-value.reverse-layout .value-right {
    direction: ltr;
}

.our-value.reverse-layout .value-right img {
    border-radius: 0px 300px 300px 0px;
}

.our-value.reverse-layout .value-card {
    border-radius: 0px 100px 100px 0px;
}

.our-value.reverse-layout .value-container {
    align-items: center;
    margin-right: 97px;
}


/*---------------------------------------------------our team(about page)---------------------------------------*/

.team-wrapper {
    max-width: 1280px;
    margin: auto;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 20px;
    letter-spacing: 2px;
    color: #253551;
    text-align: center;
}

.team-title h2 {
    font-size: 56px;
    margin: 10px 0 0;
    color: #253551;
    font-family: "Belleza", sans-serif;
    letter-spacing: -1.3px;
    font-weight: 500;
}

.team-desc {
    max-width: 327px;
    color: #666362;
    line-height: 1.7;
    font-family: "Inria", sans-serif;
    font-weight: 300;
    font-size: 16px;
    text-align: justify;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
    max-width: 305px;
    margin: auto;
}

.team-card img {
    width: 270px;
    height: 400px;
    object-fit: cover;
    border-radius: 200px 200px 0 0;
}

.team-card h4 {
    margin: 25px 0 25px;
    font-size: 28px;
    font-family: "Belleza";
    color: #333333;
    font-weight: 500;
}

.team-card h2 {
    font-size: 12px;
    letter-spacing: 1px;
    color: #333333;
    font-family: "Inria Sans";
    font-weight: 400;
}


/* ------------------------------------------career------------------------------------ */

.career-pro-section {
    padding: 100px 125px;
}

.career-pro-search {
    background: #e0e0db;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.career-pro-input {
    height: 65px;
    font-size: 18px;
    border-radius: 15px;
    border: 1px solid #253551;
}

.career-pro-input:focus {
    border-color: #253551;
    box-shadow: none;
}

.career-pro-search-btn {
    height: 65px;
    font-size: 18px;
    border-radius: 30px;
    background: #253551;
    color: #fff;
    font-weight: 600;
}

.career-pro-search-btn:hover {
    background: #5d6b82;
}

.career-pro-card {
    background: #e0e0db;
    padding: 60px;
    border-radius: 30px;
    transition: 0.4s;
}

.career-pro-card:hover {
    transform: translateY(-8px);
}

.career-pro-icon {
    width: 110px;
    height: 110px;
    background: #e8f0ff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: #253551;
}

.career-pro-title {
    font-size: 32px;
    font-weight: 700;
    color: #253551;
}

.career-pro-meta span {
    margin-right: 25px;
    font-size: 16px;
    color: #6c757d;
}

.career-pro-desc {
    font-size: 16px;
    color: #555;
    max-width: 90%;
    text-align: justify;
}

.career-pro-outline {
    border: 2px solid #253551;
    color: #253551;
    border-radius: 30px;
    font-size: 17px;
    padding: 14px;
}

.career-pro-outline:hover {
    background: #5d6b82;
    color: #fff;
}

.career-pro-primary {
    background: #253551;
    color: #fff;
    border-radius: 30px;
    font-size: 17px;
    padding: 14px;
}

.career-pro-primary:hover {
    background: #5d6b82;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    top: 50px;
    bottom: 30px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/*------------------------------------------------------FAQ------------------------------------*/

.faq-section {
    padding: 80px 0;
}

.faq-wrapper {
    max-width: 1280px;
    margin: auto;
    border-radius: 30px;
}

.faq-small {
    color: #253551;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.faq-title {
    color: #253551;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 30px;
}

.faq-img {
    width: 630px;
    height: 368px;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 30px !important;
    overflow: hidden;
}

.accordion-button {
    background: #253551;
    font-weight: 500;
    color: #fff;
}

.accordion-button:not(.collapsed) {
    background: #dbe4f3;
    color: #fff;
    box-shadow: none;
    border-radius: 30px;
}

.accordion-body {
    background: #f8f9fc;
}

.accordion {
    margin-top: 84px;
}


/*-----------------------------------------------------------Product Page-------------------------------------*/

.image-section {
    padding: 60px 200px;
    width: 100%;
}

.card-animation {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.card-animation img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 0.4s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(202, 210, 234, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: 0.4s ease;
}

.overlay h6 {
    font-size: 15px;
    margin-bottom: 17px;
    padding-right: 5px;
}

.overlay h2 {
    font-size: 32px;
    font-weight: 700;
    color: #253551;
}

.line {
    width: 50px;
    height: 2px;
    background: #253551;
    margin: 15px auto;
}

.overlay p {
    font-size: 16px;
    margin: 0;
}

.card-animation:hover img {
    transform: scale(1.05);
}

.card-animation:hover .overlay {
    opacity: 1;
}

.cta-health-wrap {
    background-color: #e0e0db;
    padding: 70px 0;
}

.cta-health-inner {
    width: 90%;
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-health-left {
    width: 70%;
    margin-left: 20px;
}

.cta-health-heading {
    font-size: 41px;
    font-weight: 700;
    color: #253551;
    margin-bottom: 25px;
}

.cta-health-highlight {
    color: #253551;
}

.cta-health-para {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    max-width: 650px;
}

.cta-health-right {
    width: 30%;
    text-align: right;
}

.cta-health-btn {
    background-color: #253551;
    color: #fff;
    padding: 22px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    margin-right: 93px;
}

.cta-health-btn:hover {
    background-color: #95b9e1;
    color: #fff;
}

.zx-beauty-section {
    padding: 76px 160px;
}

.zx-beauty-inner {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.zx-card-box {
    position: relative;
    overflow: hidden;
}

.zx-card-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.zx-card-overlay {
    position: absolute;
    top: 40px;
    left: 16px;
    bottom: 40px;
    width: 55%;
    background: rgba(202, 210, 234, 0.75);
    padding: 40px 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zx-card-icon {
    width: 60px;
    height: 60px;
    background: #253551;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.zx-card-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 20px;
    color: #253551;
}

.zx-card-text {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 15px;
}

.zx-card-price {
    background: #253551;
    padding: 10px 20px;
    width: fit-content;
    font-weight: 600;
}

.qx-beauty-section {
    padding: 0 160px 65px;
}

.qx-beauty-inner {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.qx-card-box {
    position: relative;
    overflow: hidden;
}

.qx-card-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.qx-card-overlay {
    position: absolute;
    top: 40px;
    bottom: 40px;
    width: 55%;
    background: rgba(202, 210, 234, 0.75);
    padding: 40px 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.qx-overlay-right {
    right: 21px;
}

.qx-card-icon {
    width: 60px;
    height: 60px;
    background: #253551;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.qx-card-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 20px;
    color: #253551;
}

.qx-card-text {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 15px;
}

.qx-card-price {
    background: #253551;
    padding: 10px 20px;
    width: fit-content;
    font-weight: 600;
}

.jp-blob-section {
    padding: 10px 20px;
    text-align: center;
}

.jp-wrapper {
    max-width: 1280px;
    margin: auto;
}

.jp-row-gap {
    row-gap: 40px;
}

.jp-blob-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #253551;
}

.jp-blob-item {
    margin-bottom: 50px;
}

.jp-blob-shape {
    width: 160px;
    height: 170px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.jp-blob-shape::before,
.jp-blob-shape::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 3s linear infinite;
    top: 0;
    z-index: -1;
    transform: scale(1);
    transition: all .3s linear;
    left: 0;
}

.jp-blob-shape::before {
    opacity: 1;
    background-color: #253551;
}

.jp-blob-shape::after {
    transform: scale(0);
    opacity: 0;
    background-color: #e0e0db;
}

.jp-blob-shape:hover::after {
    opacity: 1;
    transform: scale(1);
}

.jp-blob-shape:hover::before {
    opacity: 0;
    transform: scale(0);
}

.jp-blob-shape:hover>i {
    color: #253551;
}

@keyframes morph {
    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }
    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

.jp-blob-shape i {
    color: #fff;
    font-size: 55px;
    transition: 0.3s;
}

.jp-blob-item h4 {
    font-weight: 600;
    margin-top: 10px;
}

.jp-blob-item p {
    color: #666;
}


/*-----------------------------------------------------------Single post Page-------------------------------------*/

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-section {
    margin-top: 60px;
}

.single-image-wrapper {
    width: 100%;
    height: 597px;
    border-radius: 100px;
    overflow: hidden;
}

.single-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-blog-text p,
.single-left-text p {
    font-size: 16px;
    line-height: 1.9;
    color: #666362;
    margin: 14px 0px 14.4px;
    font-family: "Inria Serif", serif;
    text-align: justify;
}

.two-col-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
}

.single-left-text {
    flex: 0 0 52%;
}

.single-right-image {
    flex: 0 0 48%;
    display: flex;
    justify-content: center;
}

.single-side-image-wrapper {
    width: 100%;
    max-width: 438px;
    height: 336px;
    border-radius: 80px;
    overflow: hidden;
}

.single-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*---------------------single post footer------------*/

.single-blog-footer {
    margin-top: 16px;
    padding: 40px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 6px;
}

.tags,
.share {
    display: flex;
    align-items: center;
    gap: 18px;
}


/* Title text */

.blog-footer-title {
    margin: 0;
    font-size: 16px;
    color: #333333;
    font-family: "Inria", sans-serif;
}


/* Tag links */

.tags a {
    text-decoration: none;
    color: #253551;
    font-size: 16px;
    font-family: "Inria Serif", serif;
}

.tags a:hover {
    text-decoration: underline;
}


/* Share links */

.share a {
    text-decoration: none;
    color: #333333;
    font-size: 14px;
}

.share a:hover {
    color: #253551;
}


/* -------------------------------------------Services category subcategory---------------------------------------------- */

.dermal-section {
    padding: 90px 20px;
}

.dermal-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 1280px;
}


/* ================= SCROLL ANIMATION ================= */

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .9s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}


/* ================= LEFT SIDEBAR ================= */

.dermal-sidebar {
    width: 30%;
    position: sticky;
    top: 30px;
}

.dermal-category-box {
    background: #253551;
    padding: 35px;
    border-radius: 25px;
    width: 100%;
    max-height: 450px;
    overflow-y: auto;
}

.dermal-category-box::-webkit-scrollbar {
    width: 6px;
}

.dermal-category-box::-webkit-scrollbar-track {
    background: transparent;
}

.dermal-category-box::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 10px;
}

.dermal-category-box h4 {
    margin-bottom: 25px;
    font-weight: 600;
    color: #fff;
    font-size: 25px;
    font-family: "Belleza";
}

.dermal-category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f7f7;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    text-decoration: none;
    color: #000;
    transition: .3s;
}

.dermal-category-item:hover {
    background: #e8ecec;
    transform: translateX(5px);
}


/* ================= LEFT IMAGE CARD ================= */

.dermal-left-card {
    margin-top: 30px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    height: 400px;
}

.dermal-left-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.dermal-left-card:hover img {
    transform: scale(1.05);
}

.dermal-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .4));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.dermal-left-content {
    color: #fff;
}

.dermal-left-btn {
    display: inline-block;
    padding: 8px 22px;
    background: #fff;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 15px;
    font-family: "Inria Serif", serif;
}


/* ================= RIGHT CONTENT ================= */

.dermal-content {
    width: 70%;
}

.dermal-main-image {
    border-radius: 30px;
    overflow: hidden;
}

.dermal-main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.dermal-text {
    margin-top: 20px;
    line-height: 1.9;
    color: #666;
    font-size: 18px;
    text-align: justify;
    font-family: "Inria Serif", serif;
}

.dermal-checklist {
    margin-top: 35px;
}

.dermal-checklist ul {
    list-style: none;
    padding: 0;
    text-align: justify;
}

.dermal-checklist li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    color: #666;
    font-size: 18px;
    font-family: "Inria Serif", serif;
}

.dermal-checklist li i {
    color: #253551;
}
.cards-p{
    color: #666;

}


/* ================= CARE SECTION ================= */

.care-section {
    margin-top: 30px;
}

.care-title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Belleza";
}

.care-subtitle {
    max-width: 650px;
    color: #6d6d6d;
    line-height: 1.8;
    margin-bottom: 50px;
    font-size: 18px;
    text-align: justify;
}

.care-images {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.care-images img {
    width: 50%;
    border-radius: 25px;
    height: 260px;
    object-fit: cover;
}

.care-box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.care-box {
    padding: 40px;
    border-radius: 25px;
    transition: .3s;
}

.care-box p {
    font-family: "Inria Serif", serif;
    font-size: 15px;
    text-align: justify;
}

.care-box h5 {
    font-family: "Belleza";
    font-size: 20px;
}

.dark-box {
    background: #253551;
    color: #fff;
}

.dark-box h5 {
    color: #e0e0db;
}

.dark-box p {
    font-family: "Inria Serif", serif;
    font-size: 15px;
    text-align: justify;
}

.light-box {
    background: #e0e0db;
}

.care-icon {
    width: 55px;
    height: 55px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
    color: #000;
    font-size: 25px
}

.care-icon i {
    display: inline-block;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.care-box:hover .care-icon i {
    transform: rotateY(180deg);
}


/* ================= ENHANCE SECTION ================= */

.enhance-section {
    margin-top: 30px;
}

.enhance-image {
    margin-top: 40px;
    border-radius: 30px;
    overflow: hidden;
}

.enhance-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}


/* ================= ENHANCE STATS ================= */

.enhance-stats {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.enhance-stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.enhance-stat-icon {
    font-size: 38px;
    color: #253551;
}

.enhance-stat-box h3 {
    font-size: 42px;
    color: #253551;
    margin: 0;
    font-family: "Belleza";
}

.enhance-stat-box p {
    margin: 5px 0 0;
    color: #777;
    font-size: 16px;
    font-family: "Inria Serif", serif;
}

.dermal-faq-section {
    margin-top: 40px;
}

.dermal-faq-item {
    padding: 20px 0;
    border-bottom: 1px solid #253551;
}

.dermal-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Belleza";
    font-size: 20px;
    font-weight: 500;
    color: #253551;
    cursor: pointer;
}

.dermal-faq-question i {
    transition: 0.3s ease;
}

.dermal-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    color: #6d6d6d;
    line-height: 1.8;
    font-size: 16px;
    font-family: "Inria Serif", serif;
    margin-top: 20px;
}


/* Active State */

.dermal-faq-item.active .dermal-faq-answer {
    max-height: 200px;
}

.dermal-faq-item.active i {
    transform: rotate(180deg);
}


/* -------------------------------------------Services category subcategory end ---------------------------------------------- */


/* --------------------------------------------------------------product-store---------------------------- */

.sx-wrapper {
    padding: 40px 155px;
}

h2 {
    align-items: center;
    font-size: 50px;
    font-weight: bold;
    color: #253551;
}

.sx-card {
    position: relative;
    overflow: hidden;
    border: none;
    background: #e0e0db;
    border: 1px solid #253551;
    border-radius: 30px;
}

.sx-card img {
    width: 80%;
    margin-left: 45px;
    object-fit: cover;
}

.sx-body {
    text-align: center;
}

.sx-title {
    font-size: 18px;
    letter-spacing: 1px;
}

.sx-price {
    color: #555;
}

.sx-icons {
    position: absolute;
    top: 20%;
    right: -50px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transition: 0.4s ease;
}

.sx-card:hover .sx-icons {
    right: 15px;
    opacity: 1;
}

.sx-icon-box {
    position: relative;
}

.sx-icon-box a {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #253551;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.sx-icon-box a:hover {
    background: #253551;
    color: #fff;
}

.sx-tooltip {
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: #253551;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.sx-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #253551;
}

.sx-icon-box:hover .sx-tooltip {
    opacity: 1;
    visibility: visible;
}

.sx-wishlist.sx-active i {
    color: #e0e0db !important;
}

.qv-modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    background-color: #f6f2ef;
    position: relative;
}

.qv-btn-close {
    position: absolute;
    top: 15px;
    right: 20px;
    border: none;
    background-color: #253551 !important;
    border-radius: 50%;
    opacity: 1;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    background-size: 60%;
    filter: invert(1);
}

.qv-btn-close:hover {
    background-color: #253551 !important;
    filter: invert(0);
}

.qv-product-img img {
    width: 100%;
    border-radius: 10px;
}

.qv-product-title {
    font-size: 2.5rem;
    color: #253551;
    font-weight: 500;
    margin-top: 27px;
}

.qv-rating span {
    color: #253551;
    font-size: 1.3rem;
}

.qv-price {
    font-size: 1.1rem;
    color: #253551;
    margin: 5px 0;
}

.qv-product-description {
    color: #253551;
    margin-bottom: 15px;
}

.qx-option-group {
    margin: 10px 0;
}

.qx-option-btn {
    padding: 8px 18px;
    border: 1px solid #ccc;
    background: #f5f5f5;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
}

.qx-option-btn.qx-active {
    border-color: #253551;
    color: #253551;
    background: #e0e0db;
}

.qv-quantity-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 5px;
}

.qv-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f6f2ef;
}

.qv-quantity button {
    background-color: #253551;
    color: #fff;
    border: none;
    border-radius: 25px;
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qv-quantity input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 1.2rem;
    background: transparent;
}

.qv-add-to-cart {
    background-color: #253551;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.qv-add-to-cart:hover {
    background-color: #e0e0db;
}

.qv-details p {
    color: #253551;
    margin: 0;
    line-height: 1.6;
}

.ac-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 10000;
}

.ac-modal.ac-show {
    opacity: 1;
    visibility: visible;
}

.ac-box {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border-radius: 40px;
    position: relative;
}

.ac-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.ac-title {
    font-size: 20px;
    font-weight: 500;
}

.ac-product {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
}

.ac-img img {
    width: 120px;
    border-radius: 6px;
}

.ac-info h5 {
    margin-bottom: 5px;
}

.ac-info p {
    color: #666;
}

.ac-buttons {
    display: flex;
    gap: 15px;
}

.ac-view {
    flex: 1;
    padding: 12px;
    background: #fff;
    border: 1px solid #253551;
}

.ac-checkout {
    flex: 1;
    padding: 12px;
    background: #253551;
    color: #fff;
    border: none;
}

@media screen and (max-width:500px) {
    h5 {
        font-size: 1rem;
    }
    h2 {
        font-family: "Belleza", sans-serif;
        color: #253551;
        font-size: 30px;
        font-weight: bolder;
    }
}


/* -------------------------------------new services ------------------------------- */

.svc14-section {
    padding: 80px 0;
}

.svc14-wrapper {
    max-width: 1200px;
    margin: auto;
}

.svc14-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.svc14-main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "Belleza";
    color: #253551;
}

.svc14-main-text {
    font-size: 16px;
    color: #6b6b6b;
    line-height: 1.7;
    font-family: "Inria Serif", serif;
    ;
}

.svc14-card {
    background: #fff;
    border-radius: 0px 0px 0px 100px;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    transition: 0.35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 350px;
}

.svc14-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.svc14-imgbox {
    padding: 15px 15px 0 15px;
}

.svc14-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
}

.svc14-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.svc14-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #253551;
}

.svc14-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: "Inria Serif", serif;
}

.svc14-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.svc14-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #253551;
    transition: 0.4s;
}

.svc14-card:hover::before {
    width: 100%;
}

.svc14-btn {
    background: #253551;
    color: #fff;
    padding: 9px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
    margin-left: 50px;
}

.svc14-btn:hover {
    background: #253551;
    color: #fff;
}

.svc14-price {
    font-size: 20px;
    font-weight: 600;
    color: #253551;
    margin-right: 20px;
}


/* ----------------------------------------gallery section --------------------------------------- */

body {
    overflow-x: hidden;
}

.hair-section-wrapper {
    padding: 49px 10%;
}

.hair-main-heading {
    font-size: 50px;
    line-height: 1.15;
    font-weight: 500;
    color: #111;
}

.hair-main-heading span {
    color: #253551;
}

.hair-right-text {
    font-size: 18px;
    color: #6f6f6f;
    line-height: 1.8;
    max-width: 500px;
    margin-top: 127px;
}

.hair-text-right-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 40px;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    cursor: grab;
}

.slider-container:active {
    cursor: grabbing;
}

.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.before-image {
    background-image: url("../images/before-fue.jpg");
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.after-image {
    background-image: url("../images/after-fue.jpg");
    z-index: 1;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
    z-index: 3;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .3);
    z-index: 4;
    cursor: grab;
}

.slider-handle:active {
    cursor: grabbing;
}

.labels {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 5;
}

.label {
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: bold;
}


/* ---------- STATS ---------- */

.stats-section-custom {
    padding: 70px 20px;
}

.stats-wrapper-custom {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-box-custom {
    text-align: center;
    flex: 1;
    min-width: 220px;
}

.stat-title-custom {
    font-size: 18px;
    margin-bottom: 15px;
}

.stat-number-custom {
    font-size: 85px;
    font-weight: 700;
    color: #253551;
}

.hair-slider-section {
    padding: 60px 40px;
}

.hair-slider-wrapper {
    display: flex;
    gap: 20px;
    max-width: 1300px;
    margin: auto;
    height: 500px;
}

.hair-slide {
    position: relative;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all .6s ease;
}

.hair-slide.active {
    flex: 3;
}

.hair-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hair-slide-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, .8);
    padding: 0px 5px;
    border-radius: 8px;
}

.hair-slide:hover {
    flex: 3;
}

.hair-slider-wrapper:hover .hair-slide {
    flex: 1;
}

.hair-slider-wrapper:hover .hair-slide:hover {
    flex: 3;
}


/* ---------------------------------------apponiment ---------------------------- */

.book-appointment-section {
    padding: 80px 20px;
    background-color: #e0e0db;
}

.book-appointment-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.book-appointment-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.book-appointment-image-circle {
    width: 86%;
    height: 95%;
    overflow: hidden;
}

.book-appointment-image-circle img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 197px 197px 197px 197px;
}

.book-appointment-content {
    flex: 1;
}

.book-appointment-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    font-family: "Belleza";
    font-weight: 600;
}

.book-appointment-content p {
    color: #666;
    margin-bottom: 25px;
    text-align: justify;
}


/* Form */

.book-appointment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.book-appointment-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 14px;
    outline: none;
    transition: .3s;
}

.book-appointment-input:focus {
    border-color: #253551;
}

.book-appointment-textarea {
    width: 100%;
    height: 150px;
    padding: 13px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    resize: none;
    margin-bottom: 20px;
}

.book-appointment-btn {
    background: #253551;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 15px;
    transition: .3s;
}

.book-appointment-btn:hover {
    background: #1c2940;
}


@media(max-width:768px) {
    .book-appointment-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .book-appointment-grid {
        grid-template-columns: 1fr;
    }
    .book-appointment-image-circle {
        width: 330px;
        height: 350px;
        border-radius: 197px 197px 197px 197px;
    }
    .book-appointment-image-circle {
        width: 350px;
        height: 400px;
        margin-left: -5px;
        border-radius: 197px 197px 197px 197px;
    }
    .book-appointment-content p {
        font-size: 15px;
    }
}