:root {
    --primary-pink: #F23A8A;
    --primary-pink-hover: #d92f76;

    --teal-main: #3C8D93;
    --teal-light: #9FB7C3;

    --black: #000000;
    --white: #FFFFFF;

    --bg-dark: #0a0a0a;
    --text-light: #f5f5f5;
    --btn-hover: #4F8C8D;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.main-header {
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0px;
    z-index: 999;
    height: 120px;
    display: flex;
    align-items: center;
}

.main-header .container {
    position: relative;
}

.navbar {
    width: 100%;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 110px;
    width: auto;
    position: relative;
    top: -5px;
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    color: #000000;
    font-weight: 600;
    margin: 0 12px;
    font-size: 16px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary-pink);
}

.consult-btn {
    background:  var(--btn-hover);;
    color: var(--white);
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.consult-btn:hover {
    background: var(--primary-pink);
}

.custom-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 6px;
}

/* ================= DESKTOP ================= */
@media (min-width: 992px) {

    .custom-dropdown:hover .dropdown-menu {
        display: block;
    }

    .mobile-arrow {
        display: none;
    }
}

@media (max-width: 991px) {

    .main-header {
        height: 90px;
        padding: 10px 0;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler i {
        font-size: 22px;
    }

    .toggle-icon {
        font-size: 24px;
        color: var(--black);
    }

    .toggle-icon {
        font-size: 24px;
        color: var(--black);
    }

    .navbar-brand img {
        height: 90px;
        top: -1px;
    }

    .navbar-collapse {
        background: var(--white);
        margin-top: 200px;
        border-radius: 10px;
        padding: 10px;
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .nav-link {
        padding: 10px 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 10px;
    }

    .mobile-arrow {
        float: right;
        font-size: 14px;
    }

    .consult-btn {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}

.main-header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}


/* ================= MOBILE SLIDE MENU ================= */

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 1000;
    padding: 20px;
    transition: 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: 5px;
}

.mobile-menu ul li {
    margin: 15px 0;
}

.mobile-menu ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #222;
    font-weight: 500;
}

.submenu {
    display: none;
    margin-top: 8px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.submenu li {
    margin: 5px 0;
}

.submenu li a {
    font-size: 15px;
    padding: 10px 10px;
    border-radius: 6px;
}

.submenu li a:hover {
    background: var(--primary-pink);
    color: var(--white);
}

.dropdown.active .submenu {
    display: block;
}

.mobile-menu .consult-btn {
    display: block;
    margin-top: 20px;
    background: var(--primary-pink);
    color: var(--white) !important;
    padding: 12px;
    border-radius: 25px;
    text-align: center;
    font-weight: 500;
}

/* hover */
.mobile-menu .consult-btn:hover {
    background: var(--primary-pink-hover);
    color: var(--white);
}

/* MOBILE ONLY */
@media (min-width: 992px) {

    .mobile-menu,
    .menu-overlay {
        display: none;
    }
}

/* ================= HERO SECTION ================= */

.hero-section {
    background: linear-gradient(135deg,
            rgba(233, 75, 126, 0.10),
            rgba(233, 75, 126, 0.20));
    padding: 40px 0;
    margin: 20px;
    border-radius: 30px;
}

@media (min-width: 1200px) {
    .hero-section {
        margin: 20px 40px;
    }
}

.hero-section .container {
    padding-left: 40px;
    padding-right: 40px;
}

.hero-left {
    padding-left: 20px;
}


.hero-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.hero-heading {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
}

.hero-heading span {
    color: var(--primary-pink);
    font-style: italic;
}

.curve-line {
    width: 180px;
    margin: 10px 0 15px;
}

.hero-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    max-width: 520px;
}


.hero-btns {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-primary {
    background: var(--btn-hover);
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--primary-pink);
}

.btn-link {
     background: #25D366;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;;
}
.btn-link:hover{
    color:#fff;
}


.hero-clients {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.client-imgs {
    display: flex;
}

.client-imgs img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: -10px;
    border: 2px solid #fff;
}

.client-text {
    margin-left: 15px;
}

.client-text strong {
    font-size: 18px;
    color: #000;
}

.client-text span {
    display: block;
    font-size: 13px;
    color: #666;
}

/* ================= IMAGE ================= */

.hero-img img {
    width: auto;
    
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .hero-section {
        margin: 10px;
        padding: 40px 20px;
        text-align: center;
    }

    .hero-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-left {
        padding-left: 0;
    }

    .hero-title {
        font-size: 14px;
    }

    .hero-heading {
        font-size: 28px;
        line-height: 1.4;
    }

    .curve-line {
        width: 120px;
        margin: 10px auto;
    }

    .hero-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary {
        width: 100%;
    }

    .hero-clients {
        flex-direction: column;
        gap: 10px;
    }

    .client-text {
        margin-left: 0;
        text-align: center;
    }

    .hero-img img {
        max-width: 250px;
        margin-top: 20px;
    }
}


/* ================= COUNTER SECTION ================= */

.counter-section {
    background: var(--primary-pink);
    padding: 40px 20px;
    margin: 40px 20px;
    border-radius: 20px;
}

@media (min-width: 1200px) {
    .counter-section {
        margin: 40px 40px;
    }
}

.counter-box {
    color: #fff;
    margin: 15px 0;
}

/* ICON */
.counter-box .icon {
    font-size: 30px;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* NUMBER */
.counter-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 5px 0;
}

/* TEXT */
.counter-box p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {
    .counter-box h3 {
        font-size: 22px;
    }

    .counter-box .icon {
        font-size: 24px;
    }
}

/* ================= ABOUT SECTION ================= */

.about-section {
    background: linear-gradient(135deg,
            rgba(233, 75, 126, 0.10),
            rgba(233, 75, 126, 0.20));
    padding: 90px 0;
    margin: 30px;
    border-radius: 30px;
}

.about-section .container {
    max-width: 1200px;
    padding-left: 40px;
    padding-right: 40px;
}


.about-heading {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.about-heading span {
    display: block;
    color: var(--primary-pink);
    font-weight: 700;
}

.about-curve {
    width: 140px;
    margin: 10px 0 15px;
}

.about-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.about-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
    max-width: 520px;
}


.about-btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--btn-hover);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

.about-btn:hover {
    background: var(--primary-pink);
}


.about-images .img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img1 {
    width: 340px;
    height: 430px;
    left: -57px;
    top: 0;
}

.img2 {
    width: 340px;
    height: 420px;
    left: 240px;
    top: 120px;
    transform: rotate(-6deg);
}

.about-images {
    position: relative;
    height: 500px;
}


.about-content {
    padding-left: 40px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .about-section {
        margin: 15px;
        padding: 50px 20px;
    }

    .about-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .about-images {
        height: auto;
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .about-images .img {
        position: relative;
        width: 45%;
        height: 220px;
        transform: none;
    }

    .img1,
    .img2 {
        left: auto;
        top: auto;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-heading {
        font-size: 24px;
    }

    .about-heading span {
        font-size: 24px;
    }

    .about-content h3 {
        font-size: 16px;
    }

    .about-content p {
        font-size: 14px;
        max-width: 100%;
    }

    .about-curve {
        margin: 10px auto;
    }
}


/* ================= WHAT WE DO ================= */

.what-section {
    padding: 80px 0;
    margin-bottom: 20px;
    text-align: center;
}

.what-section .row {
    row-gap: 20px;
}

.what-heading {
    font-size: 34px;
    font-weight: 700;
}

.what-heading span {
    color: var(--primary-pink);
}

.what-curve {
    width: 120px;
    margin: 8px auto 10px;
}

.what-desc {
    font-size: 14px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.what-card {
    position: relative;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 50px 20px 25px;
    margin-top: 30px;
    transition: 0.3s;
    height: 100%;
}

.what-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-box img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.what-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.what-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-top: 8px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .what-section {
        padding: 50px 20px;
    }

    .what-heading {
        font-size: 26px;
    }
}

@media (max-width: 576px) {

    .what-card {
        padding: 45px 15px 20px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .icon-box img {
        width: 22px;
        height: 22px;
    }
}

/* ================= CERT SECTION ================= */

.cert-section {
    background: linear-gradient(135deg,
            rgba(233, 75, 126, 0.10),
            rgba(233, 75, 126, 0.20));
    padding: 60px 0;
    margin: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.cert-heading {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}


.cert-slider {
    overflow: hidden;
    position: relative;
}

.cert-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0;
    margin-top: 5px;
}

.cert-track::-webkit-scrollbar {
    display: none;
}

.cert-item {
    flex: 0 0 auto;
    width: 240px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    border-radius: 6px;
    transition: 0.3s ease;
}

.cert-item:hover img {
    transform: scale(1.05);
}


.cert-bottom {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 600;
}


@media (max-width: 991px) {

    .cert-section {
        margin: 15px;
        padding: 40px 15px;
    }

    .cert-heading {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .cert-track {
        gap: 20px;
    }

    .cert-item {
        width: 160px;
        height: 200px;
    }

    .cert-bottom {
        font-size: 16px;
        margin-top: 15px;
    }
}


/* ================= AWARD SECTION ================= */

.award-section {
    background: #fff;
    padding: 80px 0;
}

.award-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.award-heading span {
    color: var(--primary-pink);
}

.award-curve {
    width: 150px;
    margin: 10px auto;
    display: block;
}

.award-desc {
    max-width: 700px;
    margin: 10px auto 0;
    color: #555;
    line-height: 1.6;
}


.award-card {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.award-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-btn {
    display: inline-block;
    background: var(--btn-hover);
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.award-btn:hover {
    background: var(--primary-pink);
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .award-heading {
        font-size: 24px;
    }

    .award-card img {
        height: 180px;
    }

    .award-desc {
        font-size: 14px;
        padding: 0 10px;
    }
}


/* ================= WHY SECTION ================= */

.why-section {
    padding: 80px 0;
}

.why-heading {
    font-size: 34px;
    font-weight: 700;
}

.why-heading span {
    color: var(--primary-pink);
}

.why-curve {
    width: 140px;
    margin: 10px auto;
    display: block;
}

.why-sub {
    max-width: 650px;
    margin: 10px auto 0;
    color: #555;
}


.why-box {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.why-icon img {
    width: 22px;
}

.why-box h4 {
    font-size: 16px;
    font-weight: 600;
}

.why-box p {
    font-size: 13px;
    color: #666;
}

.why-box::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #eee;
    margin-top: 15px;
}

.why-img img {
    width: 100%;
    max-width: 380px;
    border-radius: 340px;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .why-box {
        text-align: center;
    }

    .why-left,
    .why-right {
        margin-bottom: 20px;
    }

    .why-img img {
        max-width: 300px;
        margin: 20px 0;
    }

    .why-icon {
    margin-left: 152px;
}
}


/* ================= SECTION ================= */

.step-section {
    background: linear-gradient(135deg,
            rgba(233, 75, 126, 0.10),
            rgba(233, 75, 126, 0.20));
    padding: 80px 0;
    margin: 30px;
    border-radius: 30px;
}

/* ================= HEADING ================= */

.step-heading {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
}

.step-heading span {
    color: var(--primary-pink);
}

.step-curve {
    width: 130px;
    margin-top: 10px;
}

.step-desc {
    color: #555;
    font-size: 15px;
}

/* ================= STEPS ================= */

.step-section .row.text-center {
    row-gap: 40px;
}

.step-box {
    padding: 10px 15px;
}

.step-number {
    width: 70px;
    height: 70px;
    border: 2px solid #0c3b5c;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
    color: #0c3b5c;
}

.step-box h4 {
    font-size: 16px;
    font-weight: 600;
}

.step-box p {
    font-size: 14px;
    color: #666;
}

/* ================= SUCCESS BOX ================= */

.success-box {
    background: #fff;
    margin: 60px auto 0;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
}

.success-heading {
    font-size: 26px;
    font-weight: 700;
}

.success-heading span {
    color: var(--primary-pink);
}

.success-desc {
    color: #555;
    margin-top: 10px;
}

/* ================= SLIDER ================= */

.success-slider {
    overflow: hidden;
    margin-top: 20px;
}

.success-track {
    display: flex;
    gap: 15px;
    animation: scrollLeft 25s linear infinite;
}

.success-track img {
    width: 300px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .step-section {
        padding: 50px 20px;
        margin: 15px;
    }

    .step-heading {
        font-size: 24px;
        text-align: center;
    }

    .step-desc {
        text-align: center;
        margin-top: 10px;
    }

    .success-box {
        padding: 20px;
    }

    .success-track img {
        width: 130px;
        height: 90px;
    }
}

/* ================= SECTION ================= */

.testi-section {
    padding: 80px 0;
}

.testi-small {
    color: #f23a8a;
    font-weight: 500;
}


.testi-heading {
    font-size: 32px;
    font-weight: 700;
}

.testi-desc {
    color: #666;
    margin-bottom: 20px;
}


.testi-slider {
    overflow: hidden;
}

.testi-track {
    display: flex;
    gap: 20px;
    animation: slide 20s linear infinite;
}

.testi-card {
    min-width: 260px;
    background: #f3dbe3;
    padding: 20px;
    border-radius: 15px;
}

.testi-card h5 {
    margin-top: 10px;
    color: var(--primary-pink);
    font-size: 13px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.appoint-box {
    background: #f3dbe3;
    padding: 30px;
    border-radius: 20px;
}

.appoint-box h3 {
    background: #f23a8a;
    color: #fff;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 20px;
}

.appoint-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.appoint-form input,
.appoint-form select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #fff;
    font-size: 14px;
}

/* BUTTON */
.appoint-form button {
    margin-top: 10px;
    background:  var(--btn-hover);
    color: #fff;
    padding: 14px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.appoint-form button:hover {
    opacity: 0.9;
    background: var(--primary-pink);
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .testi-heading {
        font-size: 24px;
    }

    .appoint-box {
        margin-top: 30px;
    }
}


/* ================= VIDEO SECTION ================= */

.video-section {
    padding: 80px 0;
    background: #fff;
}

/* ================= HEADING ================= */

.video-heading {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

.video-heading span {
    color: var(--primary-pink);
}

.video-curve {
    width: 120px;
    margin: 10px auto 40px;
    display: block;
}

/* ================= WRAPPER ================= */

.video-wrapper {
    position: relative;
    padding: 0 70px;
    /* 🔥 spacing fix for arrows */
}

/* ================= SLIDER ================= */

.video-slider {
    overflow: hidden;
    width: 100%;
}

.video-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

/* ================= CARD ================= */

.video-card {
    flex: 0 0 calc(33.33% - 17px);
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    position: relative;
}

/* iframe */
.video-card iframe {
    width: 100%;
    height: 220px;
    border: none;
    display: block;
}

/* ================= NAV BUTTON ================= */

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-pink);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    transition: 0.3s;
}

/* hover */
.nav:hover {
    transform: translateY(-50%) scale(1.05);
}

/* LEFT RIGHT POSITION (FIXED) */
.prev {
    left: 0;
}

.next {
    right: 0;
}

/* ================= SHADOW (PREMIUM LOOK) ================= */

.video-card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .video-heading {
        font-size: 24px;
    }

    .video-wrapper {
        padding: 0 20px;
    }

    .video-card {
        flex: 0 0 100%;
    }

    .video-card iframe {
        height: 200px;
    }

    .prev {
        left: 0;
    }

    .next {
        right: 0;
    }
}


/* ================= FAQ SECTION ================= */

.faq-section {
    padding: 80px 0;
    background: #fff;
}

/* HEADING */
.faq-heading {
    font-size: 36px;
    font-weight: 700;
}

.faq-heading span {
    color: var(--primary-pink);
}

.faq-curve {
    width: 120px;
    margin: 10px auto 40px;
    display: block;
}

/* ================= FAQ LIST ================= */

.faq-list {
    max-width: 900px;
    margin: auto;
}

/* ITEM */
.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

/* QUESTION */
.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

/* ICON */
.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 14px;
    color: #555;
    transition: all 0.3s ease;
}

/* OPEN STATE 🔥 */
.faq-item.active {
    background: linear-gradient(135deg,
            rgba(233, 75, 126, 0.1),
            rgba(233, 75, 126, 0.2));
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

.faq-item.active .faq-icon {
    content: "-";
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .faq-heading {
        font-size: 24px;
    }

    .faq-question {
        font-size: 14px;
    }
}


/* ================= BLOG SECTION ================= */

.blog-section {
    padding: 40px 0;
    background: #fff;
}

.blog-heading {
    font-size: 36px;
    font-weight: 700;
}

.blog-heading span {
    color: var(--primary-pink);
}

.blog-curve {
    width: 120px;
    margin: 10px auto 30px;
    display: block;
}


.blog-card {
    text-align: center;
    margin-bottom: 30px;
}

.blog-img img {
    width: 100%;
    border-radius: 20px;
}

.blog-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
}

.read-btn {
    display: inline-block;
    background: var(--btn-hover);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.read-btn:hover {
    opacity: 0.9;
    background: var(--primary-pink);
}

.view-btn {
    display: inline-block;
    background: var(--btn-hover);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.view-btn:hover{
    background: var(--primary-pink);
}
/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .blog-heading {
        font-size: 24px;
    }

    .blog-card h4 {
        font-size: 16px;
    }
}

/* ================= Footer Section ================= */

.footer-wrapper {
    margin-top: 0px;
    position: relative;
}

.footer-form-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 20px;
    max-width: 950px;
    margin: auto;
    text-align: center;

    position: relative;
    top: 60px;
    z-index: 2;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.footer-form-heading {
    font-size: 28px;
    font-weight: 600;
}

.footer-form-heading span {
    color: var(--primary-pink);
}

.footer-curve {
    width: 100px;
    margin: 5px auto 15px;
    display: block;
}

.footer-form-box p {
    font-size: 14px;
    color: #777;
}

.footer-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.footer-form input,
.footer-form select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.footer-form button {
    grid-column: span 4;
    background:  var(--btn-hover);
    color: #fff;
    padding: 12px;
    border-radius: 25px;
    border: none;
    font-size: 15px;
}

.footer-form button:hover{
    background: var(--primary-pink);
}

/* ================= FOOTER ================= */
.footer-section {
    background: #4f8c8d;
    color: #fff;
    padding: 100px 0 30px;
    border-radius: 30px;
}

.footer-logo {
    width: 90px;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 6px;
    font-size: 14px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
}

.footer-section a:hover {
    color: #fff;
}

.contact {
    list-style: none;
    padding: 0;
}

.contact li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.contact li i {
    color: #fff;
    margin-right: 10px;
    font-size: 14px;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

    font-size: 13px;
    color: #ccc;
}

.footer-links a {
    color: #ffffff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: #fff;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .footer-form {
        grid-template-columns: 1fr;
    }

    .footer-form button {
        grid-column: span 1;
    }

    .footer-form-heading {
        font-size: 22px;
    }

    .footer-section {
        padding-top: 130px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-links a {
        margin: 0 10px;
    }
}


/* ================= MODAL FIX ================= */

.modal-dialog {
    max-width: 500px;
}

.consult-modal {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

.modal-header {
    border-bottom: none;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.modal-title span {
    color: var(--primary-pink);
}

.btn-close {
    background-size: 14px;
    opacity: 1;
}

.modal-body {
    padding: 10px 20px 20px;
}

.appoint-form input,
.appoint-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.appoint-form button {
    width: 100%;
    background:  var(--btn-hover);
    color: #fff;
    padding: 14px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
}


.modal * {
    box-sizing: border-box;
}

.modal {
    border: none !important;
}


/* ================= LEFT CALL ================= */

.float-call {
    position: fixed;
    left: 20px;
    bottom: 60px;
    width: 55px;
    height: 55px;
    background: var(--primary-pink);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}


.float-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
}

.wa-text {
    background: #f1f1f1;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.wa-btn {
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ================= HOVER ================= */

.float-call:hover,
.wa-btn:hover {
    transform: scale(1.1);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .wa-text {
        display: none;
    }

    .float-call,
    .wa-btn {
        width: 50px;
        height: 50px;
    }
}

/* ================= MOBILE BAR ================= */

.mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none; /* desktop pe hide */
    z-index: 999;
}

/* WHATSAPP LEFT */
.mobile-wa {
    width: 50%;
    background: #25D366;
    color: #fff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

/* CALL RIGHT */
.mobile-call {
    width: 50%;
    background: var(--primary-pink);
    color: #fff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

/* ICON */
.mobile-bar i {
    margin-right: 5px;
}

/* ================= MOBILE ONLY ================= */

@media (max-width: 768px) {

    /* SHOW BAR */
    .mobile-bar {
        display: flex;
    }

    /* HIDE FLOATING BUTTONS */
    .float-call,
    .float-whatsapp {
        display: none !important;
    }
}

/* ================= BREADCRUMB SECTION ================= */

.breadcrumb-section {
    margin: 20px;
}

@media (min-width:1200px){
    .breadcrumb-section{
        margin: 20px 40px;
    }
}

.breadcrumb-box {
    position: relative;
    /*background: url('../images/about/about-banner.png') center/cover no-repeat;*/
    border-radius: 30px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.breadcrumb-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    border-radius: 30px;
}

.breadcrumb-content {
    position: relative;
    text-align: center;
    color: #fff;
}

.breadcrumb-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb-content p {
    font-size: 14px;
    margin: 0;
}

.breadcrumb-content a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb-content span {
    margin: 0 5px;
    opacity: 0.7;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .breadcrumb-box {
        height: 180px;
    }

    .breadcrumb-content h1 {
        font-size: 24px;
    }

    .breadcrumb-content p {
        font-size: 12px;
    }
}


/* ================= ABOUT PAGE SECTION ================= */

.aboutpage-section {
    padding: 80px 0;
}

/* IMAGE WRAPPER */
.aboutpage-images {
    position: relative;
    height: 420px;
}

.aboutpage-img-main {
    width: 350px;
    height: 404px;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    left: 20px;
    top: 0;
}

.aboutpage-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutpage-img-small {
    width: 290px;
    height: 270px;
    border-radius: 20px;
    overflow: hidden;
    position: absolute;
    left: 380px;
    top: 96px;
}

.aboutpage-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutpage-badge {
    position: absolute;
    top: -3px;
    left: 380px;
    width: 110px;
    height: 110px;
    background: var(--primary-pink);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.aboutpage-badge h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
}

.aboutpage-badge span {
    font-size: 12px;
}

/* CONTENT */
.aboutpage-content {
    padding-left: 40px;
}

.aboutpage-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.aboutpage-content h2 span {
    color: var(--primary-pink);
}

.aboutpage-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}

.aboutpage-btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--btn-hover);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
}

.aboutpage-btn:hover {
    background: var(--primary-pink);
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .aboutpage-images {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .aboutpage-img-main,
    .aboutpage-img-small {
        position: relative;
        left: auto;
        top: auto;
        width: 90%;
        height: 250px;
    }

    .aboutpage-badge {
        position: relative;
        left: auto;
        top: auto;
        margin-top: -40px;
    }

    .aboutpage-content {
        padding-left: 0;
        text-align: center;
    }
}


/* ================= SECTION ================= */

.vm-section {
    padding: 40px 0;
}

.vm-wrapper {
 background: linear-gradient(135deg, rgba(233, 75, 126, 0.1), rgba(233, 75, 126, 0.2));
    border-radius: 25px;
    padding: 50px;
}

.vm-row {
    margin-bottom: 40px;
}

.vm-row:last-child {
    margin-bottom: 0;
}

.vm-img {
    border-radius: 20px;
    overflow: hidden;
}

.vm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vm-content {
    padding: 0 20px;
}

.vm-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vm-content h2 span {
    color: var(--primary-pink);
}

.vm-content p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}

.vm-reverse {
    flex-direction: row-reverse;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .vm-wrapper {
        padding: 25px;
    }

    .vm-row {
        text-align: center;
    }

    .vm-content {
        padding: 15px 0;
    }

    .vm-content h2 {
        font-size: 22px;
    }

    .vm-img img {
        height: 250px;
    }

    .vm-reverse {
        flex-direction: column;
    }
}


/* SECTION BACKGROUND */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    background: #f4dfe3; /* light pink */
    padding: 40px;
    border-radius: 20px;
}


.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-box h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form-box h3 span {
    color: #e94b7b;
    border-bottom: 2px solid #e94b7b;
}
.form-heading {
    margin-bottom: 20px;
}

.form-heading h3 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 5px;
}

.form-heading h3 span {
    color: #e94b7b;
    position: relative;
}

/* .form-heading h3 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #e94b7b;
} */

.form-curve {
    width: 120px;
}
/* INPUTS */
.contact-form-box input,
.contact-form-box select {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 0 15px;
    margin-bottom: 15px;
    outline: none;
}

.submit-btn {
    width: 100%;
    height: 50px;
    border: none;
    background: #e94b7b;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
}

/* INFO */
.info-card h5 {
    font-weight: 600;
    margin-top: 15px;
}

.info-card p {
    margin-bottom: 5px;
    color: #555;
}

.social-icons i {
    margin-right: 10px;
    cursor: pointer;
}

.working-hours {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.working-hours span {
    display: block;
}

.closed {
    color: red;
}

.map-box iframe {
    border-radius: 20px;
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 20px;
    }
}


/* SECTION */
.blog-wrap-new {
    padding: 60px 0;
    background: #ffffff;
}

.blog-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-item-new {
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    transition: 0.3s;
}

.blog-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.blog-thumb-new img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.4s;
}

.blog-item-new:hover img {
    transform: scale(1.05);
}

.blog-date-new {
    font-size: 13px;
    color: #777;
    margin: 10px 5px;
}

.blog-title-new {
    font-size: 17px;
    font-weight: 600;
    margin: 5px;
}

.blog-title-new a {
    text-decoration: none;
    color: #222;
}

.blog-title-new a:hover {
    color: var(--primary-pink);
}

.blog-btn-new {
    display: inline-block;
    margin: 12px 5px;
    padding: 8px 20px;
    border-radius: 25px;
    background: var(--primary-pink);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.blog-btn-new:hover {
    background: var(--btn-hover);
}

.blog-side-new {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 14px;
}

.side-title-new {
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
}

.side-title-new::after {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--primary-pink);
    position: absolute;
    bottom: -6px;
    left: 0;
}

.side-cat-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cat-link-new {
    padding: 12px;
    border-radius: 10px;
    background: #f1f1f1;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.cat-link-new:hover,
.cat-link-new.active {
    background: var(--primary-pink);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .blog-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-side-new {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .blog-grid-new {
        grid-template-columns: 1fr;
    }
}


/* ================= SECTION ================= */

.contactv2-section {
    padding: 60px 0;
}

/* WRAPPER */
.contactv2-wrapper {
    background: #f4dfe5;
    border-radius: 25px;
    padding: 40px;
}

/* ================= FORM BOX ================= */

.contactv2-formbox {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
}

.contactv2-formbox h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contactv2-formbox h2 span {
    color: var(--primary-pink);
}

/* FORM INPUTS */
.contactv2-form input,
.contactv2-form select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.contactv2-form input:focus,
.contactv2-form select:focus {
    outline: none;
    border-color: var(--primary-pink);
}

/* BUTTON */
.contactv2-form button {
    width: 100%;
    padding: 12px;
    background: var(--primary-pink);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.contactv2-form button:hover {
    background: var(--btn-hover);
}

/* ================= RIGHT INFO ================= */

.contactv2-info {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
}

.info-block {
    margin-bottom: 20px;
}

.info-block h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-block p {
    font-size: 14px;
    margin: 0;
    color: #444;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons i {
    width: 35px;
    height: 35px;
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.closed {
    color: red;
}

/* ================= MAP ================= */

.contactv2-map {
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.contactv2-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .contactv2-wrapper {
        padding: 20px;
    }

    .contactv2-map iframe {
        height: 250px;
    }
}


/* ===============================
   RIRS HERO SECTION
================================ */

.rirs-hero {
    position: relative;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
}

.rirs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(79 140 141) 0%, rgb(79 140 141) 40%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0) 100%);
}

.rirs-hero-content {
    position: relative;
    max-width: 650px;
    z-index: 2;
}

.rirs-hero-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.rirs-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
}


.rirs-breadcrumb {
    margin-bottom: 25px;
    font-size: 17px;
    color: #ffffff;
    margin-top: -40px;
}

.rirs-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.rirs-breadcrumb a:hover {
    color: var(--accent-red);
    /* optional accent */
}

.rirs-breadcrumb span {
    margin: 0 6px;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .rirs-hero {
        padding: 100px 0;
        background-position: center;
    }

    .rirs-hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .rirs-hero {
        padding: 80px 0;
    }

    .rirs-hero-content h1 {
        font-size: 28px;
    }

    .rirs-hero-content p {
        font-size: 15px;
    }
}


/* ================= SECTION ================= */

.ivf-section {
    padding: 60px 0;
}


.ivf-content {
    padding-right: 20px;
}

.ivf-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ivf-content h2 span {
    color: var(--primary-pink);
}

.ivf-content p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}

.ivf-btn {
    display: inline-block;
    margin-top: 10px;
    background: #0c3b5c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
}

.ivf-btn:hover {
    background: var(--primary-pink);
}


.ivf-image {
    border-radius: 15px;
    overflow: hidden;
}

.ivf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .ivf-box {
        padding: 20px;
    }

    .ivf-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .ivf-content h2 {
        font-size: 22px;
    }

    .ivf-image img {
        height: 220px;
    }
}

/* ================= SECTION ================= */

.ivfsteps-section {
    padding: 70px 0;
}

/* ================= HEADING ================= */

.ivfsteps-heading {
    margin-bottom: 50px;
}

.ivfsteps-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

/* optional highlight */
.ivfsteps-heading h2 span {
    color: var(--primary-pink);
}

/* ================= CARD ================= */

.ivfstep-card {
    position: relative;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 15px;
    padding: 55px 20px 25px;
    text-align: center;
    transition: 0.3s;
}

.ivfstep-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ================= ICON ================= */

.ivfstep-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 65px;
    background: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ivfstep-icon img {
    width: 40px;
}

/* ================= TITLE ================= */

.ivfstep-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ================= TEXT ================= */

.ivfstep-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* ================= MOBILE ================= */

@media (max-width: 767px) {

    .ivfsteps-heading h2 {
        font-size: 24px;
    }

    .ivfstep-card {
        padding: 50px 15px 20px;
    }
}


/* ================= SECTION ================= */

.faqv2-section {
    padding: 60px 0;
}

.faqv2-wrapper {
    background: #f4dfe5;
    border-radius: 25px;
    padding: 40px;
}

/* ================= LEFT ================= */

.faqv2-left h2 {
    font-size: 28px;
    font-weight: 700;
}

.faqv2-left h2 span {
    color: var(--primary-pink);
}

.faqv2-desc {
    font-size: 14px;
    margin: 10px 0 25px;
    color: #555;
}

/* ================= ACCORDION ================= */

.faqv2-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faqv2-question {
    padding: 14px 15px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faqv2-question span {
    font-size: 18px;
}

/* ANSWER */
.faqv2-answer {
    display: none;
    padding: 0 15px 15px;
    font-size: 13px;
    color: #555;
}

/* ACTIVE */
.faqv2-item.active .faqv2-answer {
    display: block;
}

.faqv2-item.active .faqv2-question span {
    content: "-";
}

/* ================= FORM ================= */

.faqv2-formbox {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
}

.faqv2-formbox h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.faqv2-formbox span {
    color: var(--primary-pink);
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .faqv2-wrapper {
        padding: 20px;
    }

    .faqv2-left {
        text-align: center;
    }
}


/* ================= SECTION ================= */

.herobar-section {
    margin-top: 0px;
    position: relative;
    z-index: 10;
}

.herobar-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.herobar-form .form-control,
.herobar-form .form-select {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 10px 15px;
}

/* FOCUS */
.herobar-form .form-control:focus,
.herobar-form .form-select:focus {
    border-color: var(--primary-pink);
    box-shadow: none;
}

/* BUTTON */
.herobar-btn {
    width: 100%;
    height: 48px;
    background: var(--primary-pink);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.herobar-btn:hover {
    background: var(--btn-hover);
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .herobar-section {
        margin-top: -30px;
    }

    .herobar-form {
        padding: 15px;
        margin-top: 40px;
    }
}

/* ================= SECTION ================= */

.icsi-section {
    padding: 80px 0;
}

/* ================= IMAGE ================= */

.icsi-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ================= CONTENT ================= */

.icsi-content {
    padding-left: 30px;
}

.icsi-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.icsi-content h2 span {
    color: var(--primary-pink);
}

/* CURVE */
.icsi-curve {
    width: 140px;
    margin: 10px 0 20px;
}

/* TEXT */
.icsi-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .icsi-content {
        padding-left: 0;
        margin-top: 25px;
        text-align: center;
    }

    .icsi-content h2 {
        font-size: 24px;
    }

    .icsi-curve {
        margin: 10px auto 20px;
    }
}


/* ================= GRID ================= */

.gallery-section {
    padding: 60px 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.4s;
    border-radius: 15px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.gallery-lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}

.gallery-lightbox .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
}

.gallery-lightbox .prev {
    left: 30px;
}

.gallery-lightbox .next {
    right: 30px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .gallery-item img {
        height: 150px;
    }
}


.media-logo-section {
    padding: 60px 0;
    text-align: center;
}

.media-heading {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
}

.media-heading span {
    color: var(--primary-pink);
}

.media-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.media-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: 0.3s;
}

.media-logo:hover img {
    transform: scale(1.1);
}

/* responsive */
@media (max-width: 991px) {
    .media-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .media-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.news-section {
    padding: 60px 0;
}

.news-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.news-heading span {
    color: var(--primary-pink);
}

/* CARD */
.news-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #ddd;
    cursor: pointer;
}

.news-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.3s;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.news-lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.news-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* mobile */
@media (max-width: 576px) {
    .news-card img {
        height: 160px;
    }
}



/* ===========================
   BLOG DETAIL PAGE
=========================== */

.blog-breadcrumb {
    background:var(--primary-pink);
    padding: 18px 0;
}

.breadcrumb-wrapper {
    font-size: 15px;
    color: #ffffff;
}

.breadcrumb-wrapper a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.breadcrumb-wrapper a:hover {
    opacity: 0.8;
}

.breadcrumb-wrapper span {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-wrapper .active {
    font-weight: 600;
    color: #ffffff;
}

.blog-detail-section {
    padding: 90px 0;
    background: #ffffff;
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}


.blog-feature-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 35px;
}

.blog-title {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-pink);
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.blog-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #333;
}

.blog-content h2 {
    margin-top: 45px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-teal);
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.blog-category-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
    border: 1px solid #f0f0f0;
}

.blog-category-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-pink);
}

.blog-category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-card ul li {
    margin-bottom: 14px;
}

.blog-category-card ul li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f5f7fb;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s ease;
}

.blog-category-card ul li a:hover {
    background:var(--btn-hover);
    color: #ffffff;
    transform: translateX(5px);
}

.blog-form-card {
    background: var(--btn-hover);
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.blog-form-card h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.blog-form-card form {
    width: 100%;
}

.blog-form-card form input,
.blog-form-card form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.blog-form-card form input::placeholder,
.blog-form-card form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.blog-form-card form textarea {
    min-height: 120px;
    resize: none;
}

.blog-form-card form button {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: var(--accent-red);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.blog-form-card form button:hover {
    background: var(--primary-pink);
    color: #fff;
}

.blog-form-card form select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.blog-form-card form select {
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5H5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.blog-form-card form select {
    color: #fff;
}

.blog-form-card form select option {
    color: #000;
    background: #fff;
}

a {
    text-decoration: none;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 992px) {

    .blog-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-feature-image img {
        border-radius: 15px;
    }

    .blog-category-card,
    .blog-form-card {
        padding: 25px;
    }
}

