﻿*, *::before, *::after {
    box-sizing: border-box;
}

.slanted-button {
    background: black;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    transform: skew(-10deg);
    display: inline-block;
    border: none;
    transition: background 0.3s ease;
    white-space: nowrap;
}

    .slanted-button:hover {
        background: #a81f1f;
        color: #fff;
    }

@@media (max-width: 576px) {
    .slanted-button {
        padding: 8px 12px;
        font-size: 14px;
    }
}
.hero-section {
    background-color: #FAFAFA;

}

    .hero-section img {
        max-width: 100%;
        height: auto;
    }

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0;
        text-align: center;
    }

        .hero-section h1 {
            font-size: 28px;
            line-height: 1.4;
            margin-top:70px;
        }

    .slanted-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}
@media (max-width: 767px) {
    .hero-section img {
        padding: 40px 0;
        text-align: center;
        margin-top:10px;
    }
}

.section-title {
    font-weight: 700;
    font-size: 58px;
    line-height: 1.2;
    position: relative;
}

.sigma_about-img {
    right: 0;
    left: auto;
    bottom: -125px;
    z-index: 1;
    position: absolute;
    animation: float-x 2s linear infinite;
}

.sigma_about-img {
    left: 200px;
    z-index: 1;
    position: absolute;
    animation: float-x 2s linear infinite;
    right: 1600px;
    bottom: -125px;
}


@keyframes float-x {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}



.sigma_about-exp {
    color: #000;
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    position: absolute;
    top: 2px;
    right: -13px;
    transform: rotate(270deg);
    background-color: #fff;
    border: none;
    margin-top:60px;
    margin-right:40px;
}


.shake-animation {
    animation: shake 3s infinite ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(2px, -2px);
    }

    50% {
        transform: translate(-2px, 2px);
    }

    75% {
        transform: translate(1px, -1px);
    }
}

@media (max-width: 576px) {
    .sigma_about-img {
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
        margin-top: 20px;
        animation: none;
        transform: none; 
    }

    .sigma_about-exp {
        display: none; 
    }

    .text-md-end {
        text-align: center !important; 
    }
}

.card img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.card h5 {
    font-size: 20px;
    transition: color 0.3s ease;
}

.card {
    transition: transform 0.8s ease;
}

    .card:hover {
        animation: shakeUpDown 0.8s ease;
    }

        .card:hover h5 {
            color: red !important;
        }

@keyframes shakeUpDown {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(5px);
    }

    75% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.stats-section {
    background-color: #454545;
    background-position: center;
    background-repeat: no-repeat;
}

    .stats-section h2 {
        font-size: 48px;
    }

    .stats-section p {
        font-size: 18px;
        font-weight: 500;
    }

:root {
    --thm-form-input-bg: #fff;
    --thm-border: #ccc;
    --thm-b-font: 'Segoe UI', sans-serif;
}

/* Custom Input Styles */
.custom-input {
    padding-left: 0.5rem;
    height: 40px;
    border-radius: 0px;
    border: 1px solid var(--thm-border);
    background-color: var(--thm-form-input-bg);
    font-size: 13px;
} 

.custom-input:focus {
    border-color: #000;
    outline: none;
    box-shadow: none;
}

textarea {
    padding-left: 0.5rem;
    height: 60px;
    border-radius: 0px;
    border: 1px solid var(--thm-border);
    background-color: var(--thm-form-input-bg);
    font-size: 13px;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
    z-index: 2;
}


.form-section {
    background-color: #f4f4f4;
}

.form-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.location-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

    .location-box:hover {
        transform: translateY(-4px);
    }

.location-title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #212529;
    margin-bottom: 10px;
}

.location-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.location-icon {
    color: #dc3545;
    margin-right: 6px;
}

.boooktext {
    font-size: 1rem; 
    line-height: 1.8; 
    color: #333; 
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-weight: 500;
}
@media (max-width: 768px) {
    .boooktext {
        font-size: 1.75rem;
    }
}

.slanted-button1 {
    background: black;
    color: white;
    padding: 12px 24px;
    font-weight: bold;
    transform: skew(-10deg);
    display: inline-block;
    border: none;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 0.95rem;
}

    .slanted-button1:hover {
        background-color: red;
        color: #fff;
    }

.text-style {
    color: #ffcf33; 
    font-size: 20px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(to right, #ff6a00, #ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bookcover {
    background-color: #f5b7b1;
}


.same-height {
    display: flex;
    align-items: center;
    min-height: 70px;
}

.logo-img {
    width: 100px;
    height: 100px
}




@keyframes slowShakeUpDown {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.shake-up-down {
    animation: slowShakeUpDown 3s ease-in-out infinite;
}

.ourservicstext {
    font-size: 2rem;
    color: #2f3e9e;
    font-family: 'Poppins', sans-serif;
}

.resulttxt {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem
}

.ourtxt {
    color: #2f3e9e;
    font-weight: 700;
    font-size: 58px;
    line-height: 1.2;
    position: relative;
}

.services {
    color: black;
    font-weight: 700;
    font-size: 58px;
    line-height: 1.2;
    position: relative;
}

ourservices {
    font-size: 4rem;
    font-family: 'Poppins', sans-serif;
}

.non-sugicaltxt {
    color: #2f3e9e;
    font-family: 'Poppins', sans-serif;
}

.hairreplacement {
    color: black;
    font-size: 3rem;
    font-family: 'Poppins', sans-serif;
}

.designedlook {
    color: black;
    font-family: 'Poppins', sans-serif;
}

.custom-check-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: black;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    color: white; 
    font-size: 14px;
    font-weight: bold;
}

.custom-tick {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: green;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    color: white;
    font-size: 14px;
    font-weight: bold;
}
.Replace {
    font-size: 1rem;
    color: black
}

.form-label {
    font-size: 13px;
    color: black;
}
.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #aaa;
}

.captcha-text {
    letter-spacing: 4px;
    font-weight: bold;
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
    user-select: none;
}
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

    .map-responsive iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
        border-radius: 8px;
    }

.slanted-button.chat-now {
    background: linear-gradient(135deg, #43cea2, #185a9d);
}

    .slanted-button.chat-now:hover {
        background: linear-gradient(135deg, #185a9d, #43cea2);
    }

.fimg {
    width: 20px;
    height: 20px
}

.text-tickbox {
    font-size: 13px
}

.prof {
    font-family: serif;
    font-style: italic
}
.beforeafter {
    max-width: 800px;
    font-size: 18px;
}

.conf {
    padding: 30px 15px;
}
.natural {
    max-width: 800px;
    font-size: 18px;
}
.enquire {
    color: black;
    font-size: 3rem
}
.exclusive {
    color: #2f3e9e;
    font-size: 3rem
}

/*.navbar {
    position: sticky;
    top: 0;
    overflow: hidden;
    background-color: #333;
}*/

.top-fixed-header {
    padding: 10px 0;
}

/*.navbar {
    position: sticky;
    top: 0;
    overflow: hidden;
    background-color: #333;
}
*/

.logo-img {
    max-height: 60px;
    width: auto;
}

.slanted-button.book-now {
  white-space: nowrap;
  padding: 10px 20px;
  font-size: 14px;
}

.navtext .nav-link {
    color: white !important;
}
/*
html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x:  hidden;
}
*/
.footer {
    background: black;
    color: white;
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
}

body {
    scroll-padding-top: 140px;
}

html {
    scroll-behavior: auto !important;
}

#beforeAndAfter,
#About,
#OurServices,
#bookconsultation,
#contactus {
    scroll-margin-top: 140px;
}

.navbar-nav .nav-link {
    color: black;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: red !important;
    }

.separator {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 0 8px;
    user-select: none;
}

.why-choose-section .feature-box {
    background: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .why-choose-section .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }


h5.fw-bold {
    font-size: 1.25rem;
    color: #212529;
}

p.text-secondary {
    font-size: 0.95rem;
    line-height: 1.6;
}






.icon-circle-green {
    width: 70px;
    height: 70px;
    background-color: #28a7451a;
    color: #28a745;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
}

    .icon-circle-green:hover {
        background-color: #28a74533;
        transform: scale(1.1);
    }

.feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f8f9fa;
    border: 1px solid #eee;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
    }

.feature-text {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.8;
}

.tick-list li {
    display: flex;
    align-items: start;
    gap: 12px;
}

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: green;/* Green background */
    color: #fff; /* White tick */
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    h3 {
       font-size:40px;
    }
}

.feature-box {
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    border: 1px solid #6f7475;
    color: #333;
}

    .feature-box p {
        transition: color 0.3s ease-in-out;
        color: #666;
    }

    .feature-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        background-color: #1fcde5;
        border-color: #6f7475;
    }

        .feature-box:hover p {
            color: black !important;
        }






