: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: #003253;
}

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(--primary-pink);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.consult-btn:hover {
    background: var(--btn-hover);
}

.custom-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    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: 80px 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(--primary-pink);
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--btn-hover);
}

.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: 100%;
    max-width: 380px;
    border-radius: 50%;
}

/* ================= 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(--primary-pink);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

.about-btn:hover {
    background: #0c3b5c;
}


.about-images {
    position: relative;
    height: 420px;
}

.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: 240px;
    height: 320px;
    left: 40px;
    top: 0;
}

.img2 {
    width: 240px;
    height: 320px;
    left: 200px;
    top: 120px;
    transform: rotate(-6deg);
}


.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(--primary-pink);
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.award-btn:hover {
    background: var(--btn-hover);
}

/* ================= 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(--primary-pink);
    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(--btn-hover);
}

/* ================= 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(--primary-pink);
    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(--btn-hover);
}

.view-btn {
    display: inline-block;
    background: var(--primary-pink);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.view-btn:hover{
    background: var(--btn-hover);
}
/* ================= 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(--primary-pink);
    color: #fff;
    padding: 12px;
    border-radius: 25px;
    border: none;
    font-size: 15px;
}

.footer-form button:hover{
    background: var(--btn-hover);
}

/* ================= FOOTER ================= */
.footer-section {
    background: #003253;
    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(--primary-pink);
    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;
    }
}