body {
    box-sizing: border-box;
    background: var(--white);
    font-family: var(--font-poppins);

    color: var(--color-secondary);
}

/* SCROLL BAR */
::-webkit-scrollbar {
    width: 8px;
    /* Width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background: #000000;
    /* Color of the scroll thumb */
    border-radius: 6px;
    /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Color when hovering over the thumb */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background color of the track */
}

/* ESSENTIALS */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: bold;
    color: var(--color-secondary);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--heading-font);
    font-weight: bold;
}



.clear::after {
    display: none;
}

.clear::before {
    display: none;
}

.clear-fix {
    display: block;
}

.clear-fix::before {
    content: "";
    position: absolute;
}

.clear-fix::after {
    content: "";
    position: absolute;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    z-index: 9;
}

.prelative {
    position: relative;
    width: 100%;
    height: 100%;
}

.sticky-top {
    position: sticky !important;
}

.object-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.object-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.just-center-it {
    display: flex;
    align-items: center;
    justify-content: center;
}

.head-left-wrap {
    display: flex;
    list-style: none;
    margin-bottom: 0;
    padding: 10px 0;
}


.sec-title {
    font-weight: bolder;
    font-size: 65px;
    text-align: center;
    text-transform: capitalize;
    margin: 0;
    position: relative;
    display: inline-block;
}

.title-container {
    text-align: center;
}

.cta-btn {
    position: relative;
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);

    transition: all 2.5s ease;
}

.cta-btn:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

/* header nav bar */
.watermark {
    position: fixed;
    /* Keep it fixed on the screen */
    top: 50%;
    /* Center vertically */
    left: 50%;
    /* Center horizontally */
    transform: translate(-50%, -50%);
    /* Adjust for perfect centering */
    font-size: 8em;
    /* Large font size */
    color: rgba(0, 0, 0, 0.05);
    /* Very light, semi-transparent black */
    pointer-events: none;
    /* Allows clicks to pass through */
    user-select: none;
    /* Prevents text selection */
    z-index: -1;
    /* Keep it behind other content */
    white-space: nowrap;
    /* Prevent text from wrapping */
    text-transform: capitalize;
    /* Capitalize the first letter of each word */
}



.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 40px;
    background-color: white;
    /* Transparent background */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    margin-right: 10px;
}

.brand-name {
    font-weight: bold;
    font-size: 20px;
    color: #000;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: rgb(0, 106, 163);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    font-size: 17px;
}

.nav-links a:hover {
    color: #cc0088;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 23px;
    left: 0;
    background-color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    border-radius: 4px;
    min-width: 150px;
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    padding: 8px 15px;
    color: rgb(0, 106, 163);
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
    color: #cc0088;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #0094ff;
    padding: 10px;
}

/* Mobile View */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide links by default on mobile */
        flex-direction: column;
        gap: 20px;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        /* Slight white background */
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        /* Show menu when active */
    }

    .nav-links a {
        font-size: 18px;
        color: #0077cc;
    }

    /* Show hamburger on mobile */
    .hamburger {
        display: block;
    }
}

/* Adjust dropdown for mobile */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
        padding: 0;
        background-color: transparent;
    }

    .dropdown-content a {
        padding: 10px;
        font-size: 16px;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* main slider */

.main-slider-section {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.main-slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.main-slider-slide {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.main-slider-active {
    opacity: 1;
    z-index: 1;
}


/* 🔘 Dots styling */
.main-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.main-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #8f8989;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-slider-dot-active {
    opacity: 1;
    background-color: #6ab2ee;
    transform: scale(1.2);
}

/* Footer section */

.skinhab-footer {
    background-color: #c6f3f7;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
}

.skinhab-footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.skinhab-footer-col {
    flex: 1 1 220px;
}

.skinhab-footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
}

.skinhab-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skinhab-footer-col ul li {
    margin-bottom: 8px;
}

.skinhab-footer-col ul li a,
.skinhab-footer-col p a {
    font-size: 14px;
    color: #111;
    text-decoration: none;
    transition: color 0.3s;
}

.skinhab-footer-col ul li a:hover,
.skinhab-footer-col p a:hover {
    color: #007B8F;
}

.skinhab-footer-col p {
    font-size: 14px;
    color: #111;
    line-height: 1.8;
}

.skinhab-footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 40px;
    border-top: 1px solid #ccc;
    font-size: 14px;
    color: #555;
}

.skinhab-footer-bottom a {
    color: #111;
    text-decoration: none;
    margin: 0 5px;
}

.skinhab-footer-bottom a:hover {
    color: #007B8F;
}


/* footer */

.footer a {
    text-decoration: none;
    color: var(--color-white);
    transition: all 0.5s ease-in-out;
}

.footer a:hover {
    text-decoration: underline;
}

/* Header information */

.skinhab-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 4px 20px;
    background: #baeef0;
    border-bottom: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.skinhab-topbar-left span {
    color: #007BBD;
}

.skinhab-hours {
    font-weight: 600;
    color: #000;
}

.skinhab-topbar-center {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skinhab-topbar-center a {
    color: #007BBD;
    text-decoration: none;
    font-weight: 500;
}

.skinhab-topbar-center a i {
    margin-right: 5px;
}

.skinhab-topbar-center span {
    color: #aaa;
}

.skinhab-btn {
    background-color: #0091ea;
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    margin-left: 15px;
    transition: background 0.3s;
}

.skinhab-btn:hover {
    background-color: #007acc;
}

.skinhab-topbar-right a {
    margin-left: 12px;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
}

.skinhab-topbar-right a:hover {
    color: #007BBD;
}

/* 
about section */

.about-section {
    padding: 60px 20px;
    background: #f9fafa;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    height: 560px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.about-text h2 span {
    color: #2ab4c0;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.about-highlights {
    margin-top: 20px;
    padding-left: 20px;
    color: #2ab4c0;
}

.about-highlights li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #333;
    list-style: none;
    position: relative;
}

.about-highlights li::before {
    content: "✔";
    color: #2ab4c0;
    position: absolute;
    left: -20px;
}

/* our services */

.services-wrapper {
    padding: 60px 20px;
    text-align: center;
}

.services-wrapper h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.services-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.flip-card {
    background: transparent;
    width: 300px;
    height: 400px;
    perspective: 1200px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 1s ease;
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg) rotateX(10deg) rotateZ(5deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.flip-card-front {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px !important;
}

.flip-card-front img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.flip-card-front h3 {
    margin: 15px 0 10px;
    color: #333;
}

.flip-card-front p {
    font-size: 14px;
    text-align: center;
    color: #666;
}

.flip-card-front button {
    margin-top: auto;
    padding: 10px 20px;
    border: none;
    background-color: #47b5ff;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.flip-card-front button:hover {
    background-color: #358ed1;
}

.flip-card-back {
    color: white;
    padding: 20px;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.flip-card-back::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    z-index: 0;
}

.flip-card-back h4,
.flip-card-back ul {
    position: relative;
    z-index: 1;
}

.flip-card-back h4 {
    margin-bottom: 15px;
}

.flip-card-back ul {
    list-style: none;
    padding: 0;
}

.flip-card-back li {
    margin: 8px 0;
}

/* why choose us */

.why-choose-section {
    background-color: #f0faff;
    padding: 80px 20px;

}

.why-choose-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.why-image {
    flex: 1;
    min-width: 300px;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    height: 500px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.why-content {
    flex: 1.2;
    min-width: 300px;
}

.why-content h2 {
    font-size: 2.4rem;
    color: #0077b6;
    margin-bottom: 10px;
}

.why-content h2 span {
    color: #023e8a;
}

.sub-text {
    color: #555;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.why-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 8px 20px rgba(0, 119, 182, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.why-box:hover {
    transform: translateY(-5px);
}

.why-box i {
    font-size: 2rem;
    color: #0077b6;
    margin-bottom: 15px;
}

.why-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #023e8a;
}

.why-box p {
    font-size: 0.95rem;
    color: #555;
}

/* main slider text */

.slider-content {
    position: absolute;
    top: 40%;
    right: 0%;
    max-width: 700px;
    color: #fff;
    z-index: 2;
    background: rgba(26, 154, 185, 0.4);
    padding: 20px 25px;
    border-radius: 12px;
}

.slider-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.slider-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .slider-content {
        top: 50%;
        left: 5%;
        right: 5%;
        /* bottom: 10%; */
        padding: 15px;
    }

    .slider-content h2 {
        font-size: 1.4rem;
    }

    .slider-content p {
        font-size: 0.95rem;
    }
}

/* how it works */

.how-it-works {
    position: relative;

    /* Ensures the image maintains its original size */
    padding: 40px 20px;
    text-align: center;
    opacity: 1;

}



.section-title {
    font-size: 2.3rem;
    color: #333;
    font-weight: bold;
}

.section-title span {
    color: #00aaff;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    opacity: 1;
}

.step {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    flex: 1 1 18%;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    height: 150px;
    width: 170px;
}

.step-icon img {
    max-width: 170px;
    width: 100%;
    height: 100%;
    margin-bottom: 15px;
    object-fit: cover;
}

.step h3 {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
    margin: 10px 0;
}

.step p {
    font-size: 1rem;
    color: #555;
    text-align: justify;
}

.follow-up {
    background-color: #00aaff;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 30px;
    font-size: 1.1rem;
}

/* Testimonial */

.testimonial-section {
    background: #e6f7f7;
    padding: 60px 20px;
    text-align: center;
}

.testimonial-heading {
    font-size: 2.2rem;
    color: #0077b6;
    margin-bottom: 40px;
    font-weight: 900;
}

.testimonial-swiper {
    padding-bottom: 40px;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(12, 93, 199, 0.1);
    width: 100%;
    max-width: 100%;
    height: 100%;
    box-sizing: border-box;
}


.testimonial-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
}

.stars {
    color: #ffb400;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.user-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
    border: 3px solid #0077b6;
}

.user-name {
    font-weight: bold;
    font-size: 1rem;
    color: #0077b6;
}

.user-position {
    display: block;
    font-size: 0.9rem;
    color: #555;
}

.swiper-pagination-bullet {
    background: #0077b6;
}

/* about page */

.about-page {
    padding: 50px 0;
}

.about-container {
    width: 80%;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Profile Section */
.about-profile {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.profile-image {
    flex-shrink: 0;
    margin-right: 30px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info {
    max-width: 600px;
}

.profile-name {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.profile-bio {
    font-size: 18px;
    color: #7f8c8d;
}

/* Education Section */
.about-education,
.about-medical-registration,
.about-core-interests,
.about-what-do-i-do {
    margin-bottom: 30px;
}

.education-title,
.registration-title,
.core-interests-title,
.what-do-i-do-title {
    font-size: 28px;
    color: #2980b9;
    margin-bottom: 15px;
}

.education-list,
.core-interests-list {
    padding-left: 20px;
}

.education-item,
.core-interests-item {
    font-size: 18px;
    margin-bottom: 10px;
}

.education-item strong,
.core-interests-item strong {
    color: #2980b9;
}

/* Medical Registration */
.registration-item {
    font-size: 18px;
    margin-bottom: 10px;
}

/* What Do I Do Section */
.what-do-i-do-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-what-do-i-do p {
    color: #7f8c8d;
}



/* Media Query for responsiveness */
@media (max-width: 768px) {
    .about-container {
        width: 90%;
    }

    .about-profile {
        flex-direction: column;
        text-align: center;
    }

    .profile-info {
        text-align: center;
    }

    .profile-name {
        font-size: 28px;
    }

    .profile-bio {
        font-size: 16px;
    }

    .about-page {
        padding: 0px 0;
    }

    .education-title,
    .registration-title,
    .core-interests-title,
    .what-do-i-do-title {
        font-size: 20px;
    }

    .education-item,
    .core-interests-item {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .registration-item {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .what-do-i-do-text {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: justify;
    }

    .intro-text h1 {
        font-size: 28px;
    }

    .intro-text p {
        text-align: center;
    }

    .service-card {
        text-align: center;
    }

    .service-card::before {
        width: 100%;
        height: 6px;
        top: 0;
        left: 0;
    }

    .section-wrapper {

        padding: 20px 20px !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo img {
        height: 50px;
        margin-right: 10px;
    }

    .skinhab-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .skinhab-topbar-center {
        flex-wrap: wrap;
        gap: 5px;
    }

    .skinhab-btn {
        margin-left: 0;
    }

    .skinhab-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .navbar {
        display: flex;
        justify-content: space-between !important;
        align-items: center;
        padding: 10px 10px;
        background-color: white;
        /* Transparent background */
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .about-image {
        width: 100%;
    }

    .about-section {
        padding: 60px 0px;
    }

    .why-choose-section {
        background-color: #f0faff;
        padding: 80px 20px;
    }

    .main-slider-section {
        height: 84vh;
    }

}



/* mobile responsive */

@media (max-width: 768px) {
    .pigmentation-btm-cnt {
        margin: 25px !important;
        margin-top: 0;
        text-align: justify !important;

    }

    .heroa h1 {
        font-size: 2rem !important;
        color: rgb(0, 119, 182);
        margin-bottom: 10px;
        font-weight: 900 !important;
    }

    .heroa p {
        font-size: 1rem !important;
        max-width: 600px;
        color: #444;
    }

    .whatsapp-float {
        /* z-index: 999; */
        height: 45px !important;
        width: 45px !important;
        /* margin-top: 50px !important; */
        /*margin-bottom: none !important;*/
        /*margin-right: 240px;*/
    }
}