@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #7E5A9B;
    --secondary-color: #A9718C;
    --accent: #C8B6E2;
    --button: #1E6F78;
    --black: #000;
    --white: #fff;
    --primary-dark: #593577;
    --secondary-dark: #79465f;
    --purple-soft: #EFE4FA;
    --purple-softer: #F5EEFC;
    --rose: #C2517A;
    --rose-soft: #FCE9F0;
    --rose-border: #F4C3D6;
    --ink: #241B3D;
    --ink-soft: #4B4368;
    --page-bg: #FFFFFF;
}

a {
    text-decoration: none;
    color: inherit;
}

::selection {
    background: var(--primary-color);
    color: var(--white);
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--black);
    background: #f9f9f9;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
}

/* top nav */


.top-header {
    background: #663092;
    padding: 7px 0;
}

@media (max-width: 991px) {
    .top-header {
        display: none;
    }
}

.top-text {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.top-contact {
    align-items: center;
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-text li,
.top-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: var(--white);

}

.top-text li a {
    /* margin-right: 8px; */
    font-weight: 500;
    font-size: 15px;
    color: var(--white);
}

.top-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 0;
}

.top-social li a {
    transition: color 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 30px;
    background: var(--primary-color);
    height: 30px;
    color: var(--white);
    border: 2px solid var(--white);

}

.top-social li a:hover {
    background: var(--secondary-color);
    color: var(--white);
}





/* menu  */

.custom-navbar {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    /* margin-bottom: -110px; */
}

.custom-navbar .container {
    /* background: var(--white); */
    border-radius: 0 0 20px 20px;
}

@media (max-width: 991px) {
    .custom-navbar .container {
        padding: 0;
    }

    .custom-navbar .container {
        border-radius: 0;
    }
}

.logo img {
    border-radius: 6px;

    margin: 0;
}

.nav-toggle {
    display: none;
    text-align: right;

    button {
        font-size: 24px;
        background: none;
        border: none;
        color: #000;
        cursor: pointer;
    }
}

ul.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    /* gap: 26px; */
    justify-content: space-between;
}

ul.nav-links li {
    position: relative;
}

ul.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    padding: 30px 10px;
    display: block;
}

ul.nav-links a:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: 95%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
    /* overflow: hidden; */
    padding: 0;
    flex-direction: column;
    min-width: 230px;
    width: max-content;
    z-index: 999;
}

.dropdown-menu a {
    padding: 5px 10px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-transform: capitalize !important;
    color: var(--black) !important;
    border-bottom: 1px solid var(--primary-color);
}

.dropdown-menu li:last-child>a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

/* Subdropdown */
.has-subdropdown {
    position: relative;
}

.subdropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border: 1px solid var(--primary-color);
    background: var(--white);
    display: none;
    padding: 0;
    flex-direction: column;
    min-width: 200px;
    width: max-content;
    list-style: none;
}

.subdropdown-menu a {
    padding: 5px 10px !important;
    border-bottom: 1px solid var(--primary-color);
    color: var(--black);
}

.subdropdown-menu a:hover {
    background: var(--primary-color) !important;
    color: var(--white);
}

/* === DESKTOP ONLY: Show dropdown on hover === */
@media (min-width: 992px) {
    .has-dropdown:hover .dropdown-menu {
        display: flex;
    }

    .has-subdropdown:hover>.subdropdown-menu {
        display: flex;
    }

}

/* === MOBILE STYLES === */
@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    ul.nav-links {
        flex-direction: column;
        display: none;
        width: 100%;
        margin-top: 10px;
        gap: 0;
        max-height: 100vh;
        overflow-y: auto;
    }

    ul.nav-links.show {
        display: flex;
    }

    ul.nav-links li {
        width: 100%;
    }

    ul.nav-links a {
        padding: 12px 10px;
        border-bottom: 1px solid #ccc;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        width: 100%;
        border: none;
    }

    .dropdown-menu a {
        padding: 8px 8px 8px 23px !important;
        font-size: 16px !important;
    }

    .has-dropdown .dropdown-menu {
        display: none;
    }

    .has-dropdown.show .dropdown-menu {
        display: flex;
    }


    .subdropdown-menu {
        position: static;
        display: none;
        background: var(--primary-color);
        border: none;
        border-radius: 0;
        width: 100%;
        box-shadow: none;
    }

    .subdropdown-menu.show {
        display: flex;
    }

    .subdropdown-menu a {
        padding: 10px 20px !important;
        border-bottom: 1px solid #333;
        color: #fff !important;
    }

    .sub-subdropdown-menu {
        position: static;
        display: none;
        background: #fff;
        border: none;

        border-radius: 0;
        width: 100%;
    }
}



/* hero section  */

.hro-hero-section {
    position: relative;
    padding: 50px 0 40px;
    overflow: hidden;
    background: url(https://gynecroboticsurgeonindia.com/assets/imgs/banner/banner-desktop.png) no-repeat center right/ cover;
}

.hro-tagline {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hro-tagline::before,
.hro-tagline::after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.hro-tagline i {
    color: var(--secondary-color);
}

.hro-hero-title {
    font-size: clamp(1.75rem, 4vw, 3.5rem);
    line-height: 1.12;
    font-weight: 700;
    color: var(--primary-dark);
}

.hro-hero-title span {
    color: var(--secondary-color);
}

.hro-hero-text {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 0;
    max-width: 750px;
    color: #555;
}

.hro-hero-text strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.hro-service-card {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 15px 45px rgba(89, 53, 119, .08);
    border: 1px solid rgba(126, 90, 155, .08);
    height: 100%;
    transition: .35s;
}

.hro-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(89, 53, 119, .15);
}

.hro-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    padding: 15px;
    justify-content: center;
    align-items: center;
    background: #ede1f7;
}

.hro-card-icon.pink {
    background: #f2c4ce;
}

.hro-service-card h4 {
    color: var(--primary-color);
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0;
    font-weight: 700;
    position: relative;
}

.hro-service-card h4::before {
    content: "";
    width: 80px;
    height: 2px;
    background: var(--secondary-color);
    position: absolute;
    bottom: -10px;
    left: 0;
}

.hro-infertility-care h4 {
    color: #C1576E;
}

.hro-infertility-care h4:before {
    background: #C1576E;
}

.hro-service-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hro-service-card ul li {
    padding: 5px 0;
    color: #333;
    position: relative;
    padding-left: 12px;
    font-size: 14px;
}

.hro-service-card ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hro-hero-images {
    position: relative;
    min-height: 680px;
}

.hro-doctor-img {
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 62%;
    z-index: 3;
}

.hro-circle-badge {
    position: absolute;
    bottom: 100px;
    right: -20px;
    width: 190px;
    padding: 15px;
    height: 190px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 15px 45px rgba(89, 53, 119, .18);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 5;
}

.hro-circle-badge i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hro-circle-badge p {
    color: var(--primary-dark);
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
}

.hro-bottom-bar {
    margin-top: 0;
    border-radius: 20px;
    background: linear-gradient(90deg,
            var(--primary-dark),
            var(--primary-color));
    padding: 25px;
    color: white;
    box-shadow: 0 20px 40px rgba(89, 53, 119, .20);
}

.hro-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hro-feature i {
    font-size: 35px;
}

.hro-feature h5 {
    font-size: 22px;
    margin-bottom: 5px;
}

.hro-feature p {
    margin: 0;
    font-size: 12px;
}

@media(max-width:991px) {


    .hro-tagline {
        font-size: 13px;
        gap: 5px;
    }

    .hro-tagline::before,
    .hro-tagline::after {
        width: 30px;
    }

    .hro-hero-images {
        min-height: 380px;
        margin-top: 20px;
    }

    .hro-doctor-img {
        width: 55%;
    }

    .hro-circle-badge {
        width: 160px;
        height: 160px;
        right: 10px;
        bottom: 25px;
    }

    .hro-circle-badge p {
        font-size: 12px;
    }

    .hro-bottom-bar {
        padding: 25px;
    }

    .hro-feature {
        margin-bottom: 25px;
    }
}




.section__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}



/* about us  */

.drp-card-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* ---------- LEFT PHOTO PANEL ---------- */
.drp-photo-panel {
    position: relative;
    background: linear-gradient(180deg, #F1E7FA 0%, #EFE1F7 100%);
    border-radius: 28px;
    overflow: hidden;
    padding: 20px;
    height: 100%;
}

.drp-dot-grid {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 150px;
    height: 110px;
    background-image: radial-gradient(circle, rgba(120, 70, 160, 0.35) 1.6px, transparent 1.6px);
    background-size: 14px 14px;
    opacity: .55;
    pointer-events: none;
}

.drp-mother-baby-illustration {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 190px;
    height: 190px;
    opacity: .55;
    pointer-events: none;
}

.drp-photo-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
}

.drp-photo-frame img {
    width: 100%;
    aspect-ratio: 1/1.25;
    object-position: top;
    display: block;
    object-fit: cover;
}

/* ---------- STATS BAR ---------- */
.drp-stats-bar {
    background: #fff;
    border-radius: 20px;
    margin-top: 22px;
    padding: 22px 10px;
    box-shadow: 0 10px 30px rgba(90, 40, 130, 0.08);
}

.drp-stat-item {
    text-align: center;
    padding: 0 8px;
}

.drp-stat-item i {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: inline-block;
}

.drp-stat-num {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-dark);
    line-height: 1.1;
}

.drp-stat-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink-soft);
    line-height: 1.3;
    margin-top: 2px;
}

/* ---------- RIGHT INFO PANEL ---------- */
.drp-info-panel {
    padding: 8px 0 8px 8px;
}

.drp-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose-soft);
    border: 1px solid var(--rose-border);
    color: var(--rose);
    font-weight: 600;
    font-size: .8rem;
    padding: 6px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.drp-badge-pill i {
    color: var(--rose);
    font-size: .95rem;
}

.drp-doctor-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.drp-doctor-name .drp-first {
    color: var(--primary-dark);
}

.drp-doctor-name .drp-last {
    color: var(--rose);
    font-style: italic;
}

.drp-doctor-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 18px;
}

/* feature icon row */
.drp-feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.drp-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 300px;
}

.drp-feature-icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--purple-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
}

.drp-feature-text {
    font-size: .8rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.35;
}

.drp-bio-text p {
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 10px;
}

/* previous experience box */
.drp-experience-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--rose-soft);
    border-radius: 18px;
    padding: 22px;
    margin: 15px 0 15px;
}

.drp-experience-icon {
    flex: 0 0 auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 6px 14px rgba(120, 60, 120, 0.12);
}

.drp-experience-box h5 {
    color: var(--rose);
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.drp-experience-box p {
    font-size: .85rem;
    line-height: 1.65;
    color: var(--ink);
    margin: 0;
}

/* CTA row */
.drp-cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.drp-btn-book {
    background: var(--primary-dark);
    color: #fff;
    border: none;
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.drp-btn-book:hover {
    background: #43206b;
    color: #fff;
}

.drp-btn-talk {
    background: #fff;
    color: var(--primary-dark);
    border: 1.5px solid var(--primary-dark);
    padding: 13px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.drp-btn-talk:hover {
    background: var(--purple-softer);
    color: var(--primary-dark);
}

.drp-call-us {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.drp-call-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex: 0 0 auto;
}

.drp-call-us .drp-label {
    font-size: .78rem;
    color: var(--ink-soft);
    font-weight: 600;
}

.drp-call-us .drp-number {
    font-weight: 700;
    color: var(--ink);
    font-size: 1rem;
}

@media (max-width:991px) {
    .drp-doctor-name {
        font-size: 2.3rem;
    }

    .drp-call-us {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
        margin-top: 8px;
    }

    .drp-info-panel {
        padding-left: 0;
        margin-top: 32px;
    }
}

@media (max-width:575px) {

    .drp-experience-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
    }

    .drp-cta-row {
        gap: 10px;
    }

    .drp-btn-book,
    .drp-btn-talk {
        padding: 10px 13px;
        gap: 6px;
        font-size: .85rem;
    }

    .drp-photo-panel {
        padding: 12px;
    }

    .drp-card-wrap {
        padding: 40px 12px;
    }

    .drp-doctor-name {
        font-size: 1.8rem;
    }
}




/* services */

.lsc-section-title {
    font-size: 32px;
    font-weight: 700;
    position: relative;

    span:first-child {
        color: var(--primary-color);
    }

    span:last-child {
        color: var(--secondary-color);
    }

    &::before {
        content: "";
        position: absolute;
        left: 0px;
        bottom: -10px;
        width: 60px;
        height: 4px;
        background: var(--primary-color);
    }

    &::after {
        content: "";
        position: absolute;
        left: 65px;
        bottom: -10px;
        width: 60px;
        height: 4px;
        background: var(--secondary-color);
    }
}



/* breadcrumb  */

.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-color) 10%, var(--secondary-color) 100%);
    color: white;
    padding: 50px 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 30px 0;
    }
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100' height='100' fill='%2333c89e' fill-opacity='0.1' transform='rotate(45 50 50)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    z-index: 0;
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-item a i {
    font-size: 14px;
    height: 25px;
    width: 25px;
    display: inline-flex;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    color: var(--primary-color);
}

.breadcrumb-item a:hover {
    color: #d4f6ec;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ffffffcc;
    margin: 0;
}

.breadcrumb-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb-subtitle {
    font-size: 16px;
    color: #d9f4eb;
}

@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 28px;
    }
}



/* excelance section  */

.ec-section {
    position: relative;
    width: 100%;
    min-height: 560px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: linear-gradient(120deg, #dff0f5 0%, #eaf6f8 45%, #f0f8fd 100%);
}

.ec-left {
    position: relative;
    z-index: 3;
    width: 58%;
    padding: 56px 30px 48px 6%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ec-kicker {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 6px 16px;
    width: fit-content;
    margin-bottom: 18px;
}

.ec-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
}

.ec-title .ec-accent {
    color: var(--primary-color);
    display: block;
}

.ec-underline {
    width: 52px;
    height: 4px;
    border-radius: 3px;
    background: var(--primary-color);
    margin: 18px 0 20px;
}

.ec-desc {
    font-size: 16px;
    color: var(--ink);
    line-height: 1.75;
    max-width: 675px;
    margin-bottom: 34px;
}

.ec-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 34px;
    gap: 0;
}

.ec-feat {
    padding: 0 10px 0 10px;
    border-right: 1px solid rgba(0, 58, 112, 0.13);
}

.ec-feat:first-child {
    padding-left: 0;
}

.ec-feat:last-child {
    border-right: none;
}

.ec-feat-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 58, 112, 0.2);
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
    font-size: 17px;
    color: var(--secondary-color);
}

.ec-feat strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
    line-height: 1.3;
}

.ec-feat span {
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.55;
    display: inline-block;
}

.ec-cta-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 58, 112, 0.1);
    backdrop-filter: blur(6px);
    /* max-width: 520px; */
    padding: 15px 20px;
}

.ec-cta-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.ec-cta-phone-icon {
    width: 50px;
    height: 50px;
    border-radius: 9px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 20px;
}

.ec-cta-label strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);

}

.ec-cta-label span {
    font-size: 12px;
    line-height: 16px;
    display: block;
    color: var(--ink-soft);
}

.ec-cta-btn {
    background: var(--primary-dark);
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 700;
    padding: 19px 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, gap 0.2s;
}

.ec-cta-btn:hover {
    background: var(--secondary-dark);
    gap: 14px;
}

.ec-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 56%;
    height: 100%;
    z-index: 1;
    clip-path: ellipse(100% 75% at 120% 50%);
}

.ec-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.ec-right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color) 0%, transparent 10%);
    z-index: 3;
    opacity: 0.55;
}

.ec-trust {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 5;
    background: var(--white);
    border-radius: 14px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 410px;
    box-shadow: 0 8px 36px rgba(0, 38, 73, 0.2);
}

.ec-trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #f7c948;
    font-size: 22px;
}

.ec-trust-text strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.ec-trust-text span {
    font-size: 13px;
    color: var(--ink-soft);
    display: inline-block;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .ec-section {
        flex-direction: column;
        min-height: auto;
    }

    .ec-left {
        width: 100%;
        padding: 40px 24px 32px;
    }

    .ec-right {
        position: relative;
        width: 100%;
        height: 320px;
        clip-path: polygon(0% 8%, 100% 0%, 100% 100%, 0% 100%);
    }

    .ec-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }

    .ec-feat {
        border-right: none;
        border-bottom: 1px solid rgba(0, 58, 112, 0.1);
        padding-bottom: 14px;
    }

    .ec-feat:nth-child(odd) {
        padding-right: 12px;
        border-right: 1px solid rgba(0, 58, 112, 0.1);
    }

    .ec-feat:nth-child(even) {
        padding-left: 12px;
    }

    .ec-feat:last-child,
    .ec-feat:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .ec-left {
        padding: 32px 18px 28px;
    }

    .ec-cta-bar {
        flex-direction: column;
        max-width: 100%;
    }

    .ec-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .ec-trust {
        width: calc(100% - 32px);
        right: 16px;
    }

    .ec-features {
        grid-template-columns: 1fr 1fr;
    }
}



/* faq */

.acc-section {
    background: rgba(255, 255, 255, 0.95);
    position: relative;
}

.acc-header {
    text-align: center;
}

.acc-heading {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-dark) !important;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.acc-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.acc-item {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.acc-item:hover {
    box-shadow: 0 20px 45px rgba(31, 181, 185, 0.15);
    transform: translateY(-2px);
}

.acc-item.is-open {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(31, 181, 185, 0.03));
    box-shadow: 0 16px 40px rgba(31, 181, 185, 0.12);
}

.acc-header-btn {
    width: 100%;
    padding: 12px 15px;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.acc-title-wrap {
    flex: 1;
}

.acc-title {
    font-size: 18px !important;
    font-weight: 600;
    color: #333;
    margin: 0 !important;
}

.acc-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 181, 185, 0.08);
    color: var(--primary-color);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.acc-icon svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.acc-item.is-open .acc-icon {
    background: var(--primary-color);
    color: white;
}

.acc-item.is-open .acc-icon svg {
    transform: rotate(180deg);
}

.acc-content {
    padding: 0 24px 24px;
    display: none;
}

.acc-item.is-open .acc-content {
    display: block;
}

.acc-text {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin: 0;
    word-break: normal;
    white-space: normal;
    overflow-wrap: break-word;
}

.acc-content ul {
    margin: 12px 0 0;
    padding-left: 20px;
    list-style: disc;
}

.acc-content ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    list-style-type: disc;
    word-break: normal;
}

@media (max-width: 768px) {
    .acc-heading {
        font-size: 26px;
    }

    .acc-title {
        font-size: 16px !important;
    }

    .acc-header-btn {
        padding: 12px;
    }

    .acc-content {
        padding: 12px !important;
    }
}


/* form  */

.cf-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(52, 109, 165, 0.13);
    padding: 20px;
    max-width: 520px;
    width: 100%;
    border-top: 4px solid var(--primary-color);
}

.cf-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-family: inherit;
}

.cf-divider {
    height: 3px;
    background: var(--primary-color);
    border-radius: 4px;
    margin-bottom: 20px;
    opacity: 0.18;
}

.cf-label {
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin-bottom: 6px !important;
    display: block;
    font-family: inherit;
}

.cf-icon-group {
    position: relative;
}

.cf-icon-group .cf-control {
    padding-left: 42px !important;
    border-radius: 10px !important;
    border: 1.5px solid #dee2e6 !important;
    font-size: 0.95rem !important;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
    height: 50px;
    outline: none;
    background: #fff;
    color: #374151;
    font-family: inherit;
    box-sizing: border-box;
}

.cf-icon-group .cf-control:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(52, 109, 165, 0.18) !important;
}

.cf-icon-group .cf-field-icon {
    position: absolute !important;
    top: 50% !important;
    left: 13px !important;
    transform: translateY(-50%) !important;
    color: var(--primary-color) !important;
    font-size: 0.95rem !important;
    pointer-events: none;
}

.cf-textarea-group {
    position: relative;
}

.cf-textarea-group .cf-textarea {
    padding-left: 42px !important;
    border-radius: 10px !important;
    border: 1.5px solid #dee2e6 !important;
    font-size: 0.95rem !important;
    resize: vertical;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
    min-height: 110px;
    outline: none;
    background: #fff;
    color: #374151;
    font-family: inherit;
    padding-top: 10px;
    box-sizing: border-box;
}

.cf-textarea-group .cf-textarea:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(104, 172, 182, 0.18) !important;
}

.cf-textarea-group .cf-field-icon {
    position: absolute !important;
    top: 13px !important;
    left: 13px !important;
    color: var(--primary-color) !important;
    font-size: 0.95rem !important;
    pointer-events: none;
}

.cf-mb3 {
    margin-bottom: 16px !important;
}

.cf-mb4 {
    margin-bottom: 24px !important;
}

.cf-btn-submit {
    background: var(--primary-color) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 11px 0 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    color: #fff !important;
    width: 100%;
    cursor: pointer;
    transition: background 0.25s, transform 0.1s;
    font-family: inherit;
}

.cf-btn-submit:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-1px);
}

.cf-btn-submit:active {
    transform: translateY(0);
}

@media (max-width: 576px) {
    .cf-card {
        padding: 28px 18px;
    }

    .cf-title {
        font-size: 1.3rem;
    }
}




/* gallery */


/* ── Grid ── */
.mpgal-grid {
    columns: 4 260px;
    column-gap: 15px;
}

.mpgal-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    margin-bottom: 12px;
    break-inside: avoid;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mpgal-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(11, 103, 178, 0.2);
}

.mpgal-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #dddde0;
    display: block;
    transition: transform 0.5s ease;
}


.mpgal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 103, 178, 0.35);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mpgal-item:hover .mpgal-overlay {
    opacity: 1;
}

.mpgal-overlay-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    backdrop-filter: blur(4px);
    transition: all 0.25s ease;
}

.mpgal-item:hover .mpgal-overlay-icon {
    background: #ffffff;
    color: #0b67b2;
    transform: scale(1.1);
}

/* ── Lightbox ── */
.mpgal-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 18, 36, 0.94);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.mpgal-lightbox.active {
    display: flex;
}

.mpgal-lb-inner {
    position: relative;
    max-width: 900px;
    width: 92%;
    animation: mpgalIn 0.3s ease;
}

@keyframes mpgalIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mpgal-lb-inner img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    /* border-radius: 12px; */
    display: block;
}

.mpgal-lb-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.mpgal-lb-close:hover {
    background: #0b67b2;
    border-color: #0b67b2;
}

.mpgal-lb-prev,
.mpgal-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mpgal-lb-prev {
    left: -60px;
}

.mpgal-lb-next {
    right: -60px;
}

.mpgal-lb-prev:hover,
.mpgal-lb-next:hover {
    background: #0b67b2;
    border-color: #0b67b2;
}

.mpgal-lb-counter {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

/* Thumbnail strip */
.mpgal-lb-thumbs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
    flex-wrap: wrap;
}

.mpgal-lb-thumb {
    width: 52px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.45;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.mpgal-lb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mpgal-lb-thumb.active {
    opacity: 1;
    border-color: #0b67b2;
}

.mpgal-lb-thumb:hover {
    opacity: 0.85;
}

@media (max-width: 767px) {
    .mpgal-grid {
        columns: 2 160px;
    }

    .mpgal-lb-prev {
        left: 6px;
        z-index: 2;
    }

    .mpgal-lb-next {
        right: 6px;
        z-index: 2;
    }

    .mpgal-lb-thumbs {
        display: none;
    }
}




/* contact us  */

.custom-contact-hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.custom-hero-title-section {
    text-align: center;
    margin-bottom: 30px;
}

.custom-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.custom-main-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 30%, rgba(255, 255, 255, 0.5));
    border-radius: 2px;
}

.custom-contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
}

.custom-contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
}

.custom-form-section {
    padding: 30px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(248, 249, 250, 1) 100%);
}

.custom-info-section {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color) 40%, var(--secondary-color) 100%);
    color: white;
    height: 100%;
    position: relative;
}

.custom-info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 80px 80px;
    opacity: 0.3;
}

.custom-section-header {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    position: relative;
}

.custom-section-header-white {
    color: #ffffff;
}

.custom-form-group {
    margin-bottom: 20px;
    position: relative;
}

.custom-form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    display: block;
}

.custom-form-input {
    width: 100%;
    padding: 12px !important;
    height: auto !important;
    border: 2px solid #e9ecef;
    border-radius: 10px !important;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #ffffff;
    color: var(--black);
    outline: none;
    font-family: "Poppins", sans-serif;
}

.custom-form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(34, 79, 163, 0.1);
    transform: translateY(-2px);
}

.custom-form-input::placeholder {
    color: #999;
    font-weight: 300;
}

.custom-form-textarea {
    min-height: 110px;
    resize: vertical;
    font-family: "Poppins", sans-serif;
}

.custom-submit-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(34, 79, 163, 0.3);
    width: 100%;
    font-family: "Poppins", sans-serif;
}

.custom-submit-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s ease;
}

.custom-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 79, 163, 0.4);
}

.custom-submit-button:hover::before {
    left: 100%;
}

.custom-submit-button:active {
    transform: translateY(-1px);
}


.custom-info-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
}

.custom-info-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.custom-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 15px 0 0;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.custom-info-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.custom-info-content {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.custom-social-links {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.custom-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.1));
    margin: 0 12px 12px 0;
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.custom-social-link:hover {
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.9));
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

@media (max-width: 768px) {

    .custom-form-section,
    .custom-info-section {
        padding: 30px 12px;
    }

    .custom-main-title {
        font-size: 2rem;
    }

    .custom-section-header {
        font-size: 2rem;
    }

    .custom-info-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
        margin-right: 10px;
    }

    .custom-social-links {
        margin-top: 30px;
    }

    .custom-contact-card {
        border-radius: 15px;
    }

    .custom-contact-hero {
        padding: 40px 0;
    }
}


/*==================================================
Blog
==================================================*/

.pq-blog-post {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
    -moz-box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
    box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
}

.pq-light-bg .pq-blog-post {
    background: #eee;
}

.pq-blog-img img {
    transform: scale(1);
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: 0.5s ease-in-out;
    width: 100%;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.pq-blog-post:hover .pq-post-media img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pq-post-media .pq-post-date {
    background: #68acb6;
    padding: 4px 8px;
    line-height: normal;
    text-transform: capitalize;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 15px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.pq-blog-contain {
    padding: 20px;
    display: inline-block;
    position: relative;
    width: 100%;
}

.pq-blog-contain .pq-blog-title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 25px;
    overflow: hidden;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.pq-blog-info p {
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    z-index: 9;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.pq-post-meta ul {
    padding: 0 0 15px;
    margin: 0 0 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ededed;
}

.pq-post-meta ul li {
    list-style: none;
    float: left;
    display: inline-block;
    margin-right: 20px;
    letter-spacing: 0.04em;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    text-transform: uppercase;
}

.pq-post-meta ul li:last-child {
    margin-right: 0;
}

.pq-post-meta ul li a {
    color: #016f75;
    text-decoration: none;
}

.pq-post-meta ul li a:hover {
    color: #013c47;
}

.pq-post-meta ul li i {
    margin-right: 10px;
    color: #013c47;
}


.pq-button .pq-button-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 5px;
}



.primary-theme-btn {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    letter-spacing: 0.5px;
    position: relative;
}

.secondary-theme-btn {
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    letter-spacing: 0.5px;
    position: relative;
}

.primary-theme-btn::after,
.secondary-theme-btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    opacity: 0;
    transition: all 0.5s ease;
}

.primary-theme-btn:hover::after,
.secondary-theme-btn:hover::after {
    width: 100%;
    opacity: 0.5;
    transform: scale(1.2);
}



.cts-contact-page {
    font-family: 'Poppins', sans-serif;
    background: var(--page-bg);
    color: var(--ink);
}

.cts-hub-card {
    position: relative;
    margin-top: -70px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(89, 53, 119, 0.2);
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    z-index: 3;
}

.cts-hub-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex: 1 1 220px;
    background: #fce9f03f;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 12px;
}


.cts-hub-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(126, 90, 155, 0.35);
}


.cts-hub-label {
    display: block;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.cts-hub-item p,
.cts-hub-item a {
    font-size: 15px;
    margin: 0;
    color: var(--white);
    text-decoration: none;
    line-height: 1.5;
}

.cts-hub-item a:hover {
    color: var(--rose);
}

.cts-hub-social-item {
    align-items: center;
}

.cts-social-row {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.cts-social-row a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--purple-soft);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all .25s ease;
}

.cts-social-row a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    .cts-hub-divider {
        display: none;
    }

    .cts-hub-item {
        flex: 1 1 100%;
        padding: 10px;
        border-bottom: 1px solid var(--purple-soft);
    }

    .cts-hub-item:last-child {
        border-bottom: none;
    }
}

.cts-form-section {
    margin: 70px 0 90px;
}

.cts-deco-panel {
    background: linear-gradient(160deg, var(--primary-dark), #21003c);
    border-radius: 24px 0 0 24px;
    padding: 40px 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.cts-deco-icon {
    font-size: 34px;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.12);
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.cts-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cts-deco-title {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 16px;
}

.cts-deco-text {
    color: var(--accent);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 34px;
}

.cts-deco-hours {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    width: fit-content;
}

.cts-deco-dots {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.18) 2px, transparent 2px);
    background-size: 16px 16px;
    border-radius: 50%;
    opacity: 0.6;
}

.cts-form-panel {
    background: var(--white);
    border-radius: 0 24px 24px 0;
    padding: 54px 48px;
    box-shadow: 0 30px 60px rgba(89, 53, 119, 0.12);
    height: 100%;
}

.cts-floating .cts-input {
    border: none;
    border-bottom: 2px solid var(--purple-soft);
    border-radius: 0;
    background: transparent;
    padding-left: 4px;
    font-size: 15px;
    color: var(--ink);
}

.cts-floating .cts-input:focus {
    border-color: var(--button);
    box-shadow: none;
    background: transparent;
}

.cts-floating label {
    color: var(--ink-soft);
    padding-left: 4px;
    font-size: 14px;
}

.cts-floating .cts-input:focus~label,
.cts-floating .cts-input:not(:placeholder-shown)~label {
    color: var(--button);
    transform: scale(.85) translateY(-.85rem) translateX(.05rem);
}

.cts-submit-btn {
    background: var(--button);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all .35s ease;
    box-shadow: 0 14px 26px rgba(30, 111, 120, 0.3);
}

.cts-submit-btn i {
    transition: transform .35s ease;
}

.cts-submit-btn:hover {
    background: var(--primary-dark);
    padding-right: 42px;
}

.cts-submit-btn:hover i {
    transform: translateX(6px);
}

.cts-form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: var(--rose-soft);
    border: 1.5px solid var(--rose-border);
    color: var(--rose);
    padding: 13px 18px;
    border-radius: 10px;
    margin-top: 22px;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .cts-deco-panel {
        border-radius: 24px 24px 0 0;
        padding: 20px 12px;
    }

    .cts-form-panel {
        border-radius: 0 0 24px 24px;
        padding: 20px 12px;
    }

    .cts-form-section {
        margin: 50px 0 70px;
    }
}


/* service page  */

.sp-wrapper {
    padding: 50px 0;
}

.sp-hero-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(90, 50, 140, .12);
}

.sp-content {
    font-family: "Roboto", sans-serif;
}

.sp-content h2 {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 15px;
}

.sp-content h3 {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: clamp(20px, 3.5vw, 28px);
    margin: 0 0 18px;
    padding-left: 14px;
    border-left: 4px solid var(--secondary-color);
}

.sp-content p {
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 400;
}

.sp-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.sp-list-grid li {
    position: relative;
    padding-left: 25px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
}

.sp-list-grid li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.sp-card-box {
    background: #fff;
    border: 1px solid var(--rose-border);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 10px;
    box-shadow: 0 6px 18px rgba(90, 50, 140, .06);
}

.sp-why-box {
    background: linear-gradient(135deg, #3a1f6b, #6d3fae);
    color: #fff;
    border-radius: 16px;
    padding: 32px;
    margin: 34px 0;
}

.sp-why-box h3 {
    color: #fff;
    border-left: 4px solid #fff;
}

.sp-why-box p {
    color: #e7ddf5;
    margin-bottom: 0;
}

.sp-alert-box {
    background: #fff5f8;
    border: 1px solid #f5c9dc;
    border-radius: 14px;
    padding: 28px;
}

.sp-alert-box h3 {
    color: var(--secondary-color);
    border-left: 4px solid var(--secondary-color);
    margin-top: 0;
}

.sp-alert-box ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 14px;
}

.sp-alert-box ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
}

.sp-alert-box ul li::before {
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #e0447a;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
}

.sp-alert-note {
    font-style: italic;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0 !important;
}

.sp-sidebar>div {
    margin-bottom: 26px;
}

.sp-side-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(90, 50, 140, .08);
    overflow: hidden;
}

.sp-doc-card {
    text-align: center;
    padding-bottom: 22px;
}

.sp-doc-card img {
    width: 100%;
    /* height: 220px; */
    object-fit: cover;
    background: var(--accent);
}

.sp-doc-card .sp-doc-info {
    padding: 18px 20px 0;
}

.sp-doc-card h5 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 2px;
}

.sp-doc-card .sp-doc-role {
    color: var(--secondary-color);
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sp-doc-card .sp-doc-desc {
    font-size: 13.5px;
    color: var(--ink);
    padding: 0 6px;
    margin-bottom: 14px;
}

.sp-doc-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--purple-soft);
    color: var(--primary-color);
    margin: 0 4px;
    font-size: 14px;
    transition: .2s;
}

.sp-doc-social a:hover {
    background: var(--primary-color);
    color: #fff;
}

.sp-side-title {
    background: var(--primary-dark);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 20px;
    margin: 0;
}

.sp-service-list {
    list-style: none;
    padding: 14px 0 0;
    margin: 0;
}

.sp-service-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 12px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--rose-border);
    font-size: 14.5px;
    transition: .2s;
    border-left: 3px solid transparent;
}

.sp-service-list li:last-child a {
    border-bottom: none;
}

.sp-service-list li a:hover,
.sp-service-list li a.active {
    background: var(--purple-soft);
    color: var(--primary-dark);
    border-left: 3px solid var(--secondary-color);
    font-weight: 600;
}

.sp-service-list li a i.fa-chevron-right {
    font-size: 11px;
    color: var(--secondary-color);
}

.sp-contact-card {
    padding: 18px 12px;
}

.sp-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.sp-contact-item:last-child {
    margin-bottom: 0;
}

.sp-contact-icon {
    width: 38px;
    height: 38px;
    background: var(--purple-soft);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.sp-contact-item h6 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.sp-contact-item p {
    font-size: 13.5px;
    margin-bottom: 0;
    color: var(--ink);
}

.sp-form-card {
    padding: 20px 12px 20px;
}

.sp-form-card .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.sp-form-card .form-control,
.sp-form-card .form-select {
    border: 1px solid var(--rose-border);
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 12px;
    background: var(--purple-soft);
}

.sp-form-card .form-control:focus,
.sp-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(109, 63, 174, .12);
    background: #fff;
}

.sp-btn-submit {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    width: 100%;
    font-size: 15px;
    letter-spacing: .3px;
    transition: .2s;
}

.sp-btn-submit:hover {
    opacity: .9;
    color: #fff;
}

@media (max-width:991px) {
    .sp-list-grid {
        grid-template-columns: 1fr;
    }

    .sp-sidebar {
        margin-top: 40px;
    }

    .sp-card-box {
        padding: 20px 12px;
    }

    .sp-alert-box {
        padding: 20px 12px;
    }

    .sp-alert-box ul li {
        font-size: 14px;
        padding-left: 22px;
    }
}