.vertical-slide-counter {
    position: absolute;
    top: 55%;
    left: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
    color: white;
    user-select: none;
    z-index: 1000;
}

.vertical-line {
    width: 1px;
    height: 250px;
    background-color: #fff;
    margin: 10px 10px;
}

.hero-section {
    height: 100vh;
    background-color: rgb(221, 221, 63);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    z-index: 1;
}

.text-container {
    text-align: left;
    position: relative;
    min-height: 350px;
}

.sub-heading {
    font-size: 90px;
    font-weight: 900;
    color: white;
    padding-left: 50px;
    font-family: 'DM Sans', sans-serif;
    position: absolute;
    opacity: 0;
    transform: translateY(30px);
}


.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
}


.contact-strip {
    position: relative;
    z-index: 2;
    padding: 30px 100px;
    background-color: #BC2C5C;
    opacity: .9;
    border-left: 5px solid #B02C58;
}

.contact-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 2px;
    font-size: 12px;
    opacity: 0.8;
    position: absolute;
    left: 50px;

    top: 50px;
}

.contact-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1em;
    font-style: normal;
    letter-spacing: 1px;
    color: #fff;
}

.contact-content {
    padding: 0 30px;
}

.contact-text {
    font-size: 14px;
    line-height: 2rem;
    margin-top: 10px;
    font-weight: 400;
    font-family: "DM Sans", sans-serif;
}

/* Form */
.contact-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
}

.contact-form .form-control::placeholder {
    color: #eaeaea;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: #fff;
}


.contact-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: 500;
    border: none;
    width: 100%;
    margin-bottom: 10px;
}

.contact-btn:hover {
    background: #fff;
    color: #BC2C5C;
}

.overlap-contact {
    margin-top: -110px;
}


@media (max-width: 768px) {
    .contact-title {
        font-size: 30px;
        padding: 10px;
    }

    .contact-label {
        display: none;
    }

    .contact-strip {
        text-align: center;
        padding: 0;
    }

    .contact-content {
        padding: 0 10px;
    }

}

/* Common animation */
.cycle-text {
    animation: textCycle 6s infinite;
}

.text-1 {
    animation-delay: 0s;
}

.text-2 {
    animation-delay: 4s;
}

.text-3 {
    animation-delay: 8s;
}

@keyframes textCycle {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(0);
    }

    40% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
    }
}

.treatments-section h1 {
    font-family: "DM Sans", Sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 1em;
    letter-spacing: 1px;
    text-align: left;
    padding: 30px 0;
}

.treatments-section {
    background: #f5f5f5;
    text-align: center;
    padding: 20px 0;
}

.treatment-card-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ================= CARD STYLING ================= */

.treatment-card {
    position: relative;
    width: 100%;
    min-height: 380px;
    padding: 45px 35px;
    background-color: #f8f8f8;
    border-radius: 0px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* ================= ICON & TEXT ================= */

.treatment-card i {
    color: #680224;
    margin-bottom: 20px;
}

.treatment-card h3 {
    font-size: 34px;
    color: #bc2c5c;
    margin-bottom: 15px;
    line-height: 1.2em;
    letter-spacing: 1;
    font-weight: 600;
}

.treatment-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* ================= HOVER EFFECT ================= */

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background-image: url('https://virginitysurgery.com/wp-content/uploads/2025/05/download-1024x649.jpg');
    background-size: cover;
    background-position: center;
}




.treatment-card-wrapper:hover h3,
.treatment-card-wrapper:hover h4,
.treatment-card-wrapper:hover p {
    color: #fff;
}



/* ================= OVERLAY ================= */

.treatment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.treatment-card:hover::before {
    opacity: 1;
}

.treatment-card>* {
    position: relative;
    z-index: 1;
}

.read-more-btn {
    margin-top: auto;
    padding: 12px 25px;
    background-color: #bc2c5c;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0 15px 0 15px;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 4px;
    transition: 0.3s;
}

.read-more-btn:hover {
    background-color: #a02147;
}

.highlight-box {
    background: #bc2c5c;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
}

.highlight-box h2 {
    color: #fff;
    /* white text */
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.Why-us-section {
    background-image: url("https://virginitysurgery.com/wp-content/uploads/2025/06/light-red-gradient-flower-background-scaled.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 0;
}

.Why-us-section h2 {
    font-size: 55px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #3F3F3F;
    margin-bottom: 10px;
    line-height: 1em;
    padding: 30px 0;

}



.Why-us-section ul {
    list-style-type: disc;
}


.Why-us-section ul li {
    font-size: 23px;
    line-height: 4;
    font-weight: 600;
    color: #BC2C5C;
}

/* Animation Keyframes */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 767.98px) {

    /* Bootstrap's breakpoint for mobile */
    .Why-us-section ul li {
        line-height: 1.8;
        /* smaller line height */
    }
}

.vm-section {
    padding: 60px 20px;
    background: #fffaf9;
}

.vm-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.vm-card {
    flex: 1 1 400px;
    border: 1px solid #bc2c5c;
    border-radius: 12px;
    padding: 20px 30px;
    text-align: justify;
    box-shadow: 0 10px 20px rgba(188, 44, 92, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s ease;
}

.vm-card:hover {
    box-shadow: 0 20px 40px rgba(188, 44, 92, 0.15);
}

.vm-icon {
    font-size: 48px;
    color: #bc2c5c;
    margin-bottom: 20px;
}

.vm-card h3 {
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 400;
    color: #BC2C5C;
}

.vm-card p {
    color: #5c5c5c;
    font-weight: normal;
    font-size: 14px;
    line-height: 2em;
    letter-spacing: 1px;
    margin: 0px;
    padding: 0px;
    font-family: 'DM sans', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .vm-container {
        flex-direction: column;
        align-items: center;
    }

    .vm-card {
        max-width: 400px;
        margin-bottom: 30px;

    }
}

.faq h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: 1px;
    color: #333;
    text-align: center;
}

.faq p {
    color: #5c5c5c;
}

.accordion-button::after {
    display: none;
}

.accordion-button::after {
    background-image: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    margin-left: 0 !important;
    opacity: 0 !important;
    display: none !important;
}

.accordion-button,
.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: transparent !important;
}

.accordion-button {

    color: #BC2C5C !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    padding-left: 0;
}

.accordion-button:not(.collapsed) {
    color: #BC2C5C !important;
}

.accordion-body {
    color: #5c5c5c;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: normal;
    letter-spacing: 0px;
    padding-left: 2rem;
}

.accordion-button .icon {
    display: inline-block;
    width: 1.2rem;
    margin-right: 0.5rem;
    text-align: center;
    color: #BC2C5C;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .icon {
    transform: rotate(180deg);
}

.accordion,
.accordion-item,
.accordion-header,
.accordion-body {
    background-color: transparent !important;
    padding: 0 10px;
}

.about-section {
    padding: 30px 0px;
    background-image: url("https://virginitysurgery.com/wp-content/uploads/2025/06/light-red-gradient-flower-background-scaled.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.about-container {
    /* max-width: 1200px; */
    margin: auto;
    display: flex;
    gap: 30px;
    align-items: center;
}

/* LEFT TEXT */
.about-text {
    flex: 1;
}

.about-tag {
    display: inline-block;
    background: #d65c8b;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-text h1 {
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.about-text h4 {
    font-size: 14px;
    letter-spacing: 2.4px;
    color: #bc2c5c;
    margin-bottom: 25px;
    line-height: 1em;
    font-family: "Roboto", Sans-serif;
    font-weight: 600;

    word-spacing: 0px;

}

.about-text p {
    font-size: 14px;
    line-height: 2em;
    font-family: "DM Sans", Sans-serif;
    font-weight: 400;
    color: #5C5C5C;
    margin-bottom: 20px;
    text-align: justify;
    letter-spacing: 1px;
}

/* RIGHT IMAGES */
.about-images {
    flex: 1;
    padding: 0px;
    margin: 0px;
    position: relative;
}

.about-images img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.img-main {
    max-width: 90%;
    height: 90%;
}

.img-small {
    position: absolute;
    right: 40px;
    max-width: 260px;

}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-images {
        text-align: center;
    }

    .img-small {
        position: static;
        margin-top: 20px;
        border: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .stylishtext-container {
        width: 450px;
    }

    .stylish-text {
        font-size: 35px;
        font-weight: 900;
        color: white;
    }

    .sub-heading {
        font-size: 60px;
        font-weight: 700;
        color: white;
        line-height: 0.9;
        font-family: 'DM Sans', sans-serif;
        margin-bottom: 70px;
        padding-left: 30px;
    }

    .faq h2 {
        font-family: "Poppins", Sans-serif;
        font-size: 30px;
        font-weight: 600;
        line-height: 1.2em;
        letter-spacing: 1px;
        color: #333;
        text-align: center;
    }
}