* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
}

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

/* NAVBAR */.navbar {
    position: fixed;
    top: 0;
    background-color: white;
    width: 100%;
    padding: 22px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}

/* LOGO */
.logo {
    font-size: 22px;
    font-weight: 700;
    color: #6b5cff;
}

/* LINKS */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin: 0 18px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #0ea5e9;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: #0ea5e9;
}

/* LOGIN BUTTON */
.btn-login {
    padding: 10px 26px;
    border-radius: 30px;
    border: 2px solid #0ea5e9;
    color: #0ea5e9;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #0ea5e9;
    color: #fff;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}
.nav-right{
    display: flex;
justify-content: center;
align-items: center;
}
/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

/* MOBILE STYLES */
@media (max-width: 921px) {
    .navbar {
        padding: 18px 24px;
    }

    .hamburger {
        display: flex;
    }


    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 30px 0;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        margin: 0;
        font-size: 18px;
    }

    .mobile-login {
        display: inline-block;
    }
}

/* Hide mobile login on desktop */
.mobile-login {
    display: none;
}

/* HERO */
.hero {
    min-height: 100vh;
    background: url('/frontend/images/banner-bg.webp') no-repeat center center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
}

/* LEFT */
.hero-left {
    width: 50%;
}

.hero-left h1 {
    font-size: 74px;
    font-weight: 600;
    color: rgb(43, 38, 93);
}


.hero-left p {
    margin: 22px 0;
    max-width: 480px;
    color: #444;
}

.stats {
    margin-top: 16px;
    display: flex;
    gap: 26px;
    color: #444;
}

/* RIGHT */
.hero-right {
    width: 50%;
    position: relative;
}

/* BADGES */
.badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.129);
    color: #000;
    padding: 10px 14px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.doc-card {
    top: 18%;
    right: 76px;
    gap: 10px;
    align-items: center;
}

.doc-card img {
    width: 68px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.doctor-image {
    will-change: transform;
}

.doctor-image img {
    width: 420px;
    display: block;
}

.checkup {
    bottom: 30px;
    right: -20px;
}
/* LARGE TABLETS */
@media (max-width: 1200px) {
    .hero-left h1 {
        font-size: 60px;
    }

    .doctor-image img {
        width: 360px;
    }

    .doc-card {
        right: 30px;
    }
}

@media(max-width:1025px){
    .hero{
        min-height:fit-content;
    }
}
/* TABLETS */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0 0px;
        min-height: auto;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 0px;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left p {
        max-width: 100%;
        margin: 8px auto;
    }

    .stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-right {
        display: flex;
        justify-content: center;
    }

    .doctor-image img {
        width: 250px;
        margin: auto;
    }

    .doc-card {
        top: 10%;
        right: 20px;
    }

    .checkup {
        right: 10px;
        bottom: 20px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .hero {
        padding: 90px 0 10px;
        background-position: center top;
    }

    .hero-left h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-left p {
        font-size: 15px;
    }

    .stats {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

    .doctor-image img {
        width: 260px;
    }

    .badge {
        font-size: 12px;
        padding: 8px 12px;
    }

    .doc-card {
        right: 15%;
        transform: translateX(50%);
        top: 0;
    }

    .checkup {
        position: static;
        margin-top: 14px;
        display: inline-block;
    }
}

.about-med {
    padding: 120px 0 60px;
    background: #fff;
}

/* TOP INFO */
.info-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 100px;
}

.tag {
    color: #6b5cff;
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
}

.info-row h2 {
    font-size: 42px;
    font-weight: 600;
}

.info-row h4 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.info-row p {
    color: #7a7a7a;
}

/* MAIN CONTENT */
.content-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 80px;
}

/* IMAGE COLLAGE */
.image-collage {
    position: relative;
    width: 420px;
    height: 460px;
}

.image-collage .img {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.image-collage .img:hover {
    transform: scale(1.03);
}

.img-1 {
    width: 290px;
    top: 0;
    left: -46px;
}

.img-2 {
    width: 280px;
    right: -50px;
    top: 126px;
}

.img-3 {
    width: 300px;
    bottom: 0;
    left: 0;
}

/* TEXT SIDE */
.content-text {
    max-width: 500px;
}

.content-text h2 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 18px;
}

.desc {
    color: #6b6b6b;
    line-height: 1.8;
}

/* FEATURES */
.features {
    margin: 40px 0;
}

.feature {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
}

.icon {
    width: 44px;
    height: 44px;
    background: #f2f1ff;
    color: #6b5cff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

/* BUTTONS */
.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width:max-content;
    gap: 18px;
}

.btn-primary {
    background: #6b5cff;
    color: #fff;
    padding: 14px 34px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* PRIMARY HOVER */
.btn-primary:hover {
    background: #5848e5;
    box-shadow: 0 12px 30px rgba(107, 92, 255, 0.35);
    transform: translateY(-2px);
}

/* OUTLINE */
.btn-outline {
    background: transparent;
    border: 2px solid #ddd;
    color: #333;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* OUTLINE HOVER */
.btn-outline:hover {
    background: #6b5cff;
    border-color: #6b5cff;
    color: #fff;
    box-shadow: 0 12px 30px rgba(107, 92, 255, 0.25);
    transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE ABOUT MED SECTION
================================ */

/* LARGE TABLETS */
@media (max-width: 1200px) {

    .info-row h2 {
        font-size: 36px;
    }

    .content-text h2 {
        font-size: 38px;
    }

    .content-row {
        gap: 60px;
    }

    .image-collage {
        width: 380px;
        height: 420px;
    }

    .img-1 { width: 260px; left: -30px; }
    .img-2 { width: 250px; right: -30px; }
    .img-3 { width: 270px; }
}

/* TABLETS */
@media (max-width: 991px) {

    .about-med {
        padding: 90px 0 50px;
    }

    /* TOP INFO */
    .info-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 70px;
    }

    .info-row > div:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    /* MAIN CONTENT */
    .content-row {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .features {
        margin: 30px auto;
        max-width: 520px;
    }

    .feature {
        justify-content: center;
        text-align: left;
    }

    .buttons {
        justify-content: center;
    }

    .image-collage {
        margin: auto;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .about-med {
        padding: 70px 0 40px;
    }

    /* INFO ROW */
    .info-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 26px;
        margin-bottom: 60px;
    }

    .info-row h2 {
        font-size: 30px;
    }

    .info-row h4 {
        font-size: 20px;
    }

    /* IMAGE COLLAGE */
    .image-collage {
        width: 100%;
        height: auto;
        position: static;
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .image-collage .img {
        position: static;
        width: 90%;
        max-width: 300px;
    }

    /* TEXT */
    .content-text h2 {
        font-size: 32px;
    }

    .desc {
        font-size: 15px;
    }

    /* FEATURES */
    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* BUTTONS */
    .buttons {
        flex-direction: column;
        gap: 14px;
    }

    .buttons button {
        width: 100%;
    }
}

/* ------- clinic treatments ------ */
.clinic-treatments {
    background: #f5f6ff;
    padding: 60px 0;
}

/* HEADER */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.subtitle {
    color: #6b5cff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 600;
}

.all-link {
    color: #6b5cff;
    text-decoration: none;
    font-weight: 600;
}

/* GRID */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.treatment-card {
    background: #f7f8ff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid #e6e8ff;
    transition: all 0.3s ease;
}

.treatment-card:hover {
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.card-img {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 22px;
}

.card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.treatment-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2b255f;
}

.treatment-card p {
    color: #6b6b6b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.know-more {
    text-decoration: none;
    font-weight: 600;
    color: #2b255f;
    font-size: 15px;
}

/* ------ stats section ------ */
.stats-section {
    padding: 60px 0;
    background: #fff;
}

.stats-container {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat-item h2 {
    font-size: 72px;
    font-weight: 800;
    color: #2b255f;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 18px;
    color: #7a7a9d;
}
/* ==============================
   RESPONSIVE – CLINIC TREATMENTS
============================== */

/* LARGE TABLETS */
@media (max-width: 1200px) {

    .section-header h2 {
        font-size: 38px;
    }

    .treatment-grid {
        gap: 24px;
    }

    .card-img img {
        height: 200px;
    }
}

/* TABLETS */
@media (max-width: 991px) {

    .clinic-treatments {
        padding: 50px 0;
    }

    /* HEADER */
    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        margin-bottom: 40px;
    }

    /* GRID → 2 COL */
    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .clinic-treatments {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    /* GRID → 1 COL */
    .treatment-grid {
        grid-template-columns: 1fr;
    }

    .treatment-card {
        padding: 20px;
    }

    .card-img img {
        height: 180px;
    }

    .treatment-card h3 {
        font-size: 20px;
    }

    .treatment-card p {
        font-size: 14px;
    }
}

/* ==============================
   RESPONSIVE – STATS SECTION
============================== */

/* TABLETS */
@media (max-width: 991px) {

    .stats-container {
        width: 100%;
        padding: 0 24px;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .stat-item h2 {
        font-size: 56px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .stats-section {
        padding: 40px 0;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item h2 {
        font-size: 46px;
    }

    .stat-item p {
        font-size: 16px;
    }
}

/* ----- Doctor Slider ----- */
.doctors-section {
    padding: 60px 0;
    background: #fff;
}

.doctor-nav {
    display: flex;
    gap: 12px;
}

.doctor-prev,
.doctor-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid #0ea5e9;
    background: transparent;
    color: #0ea5e9;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.doctor-prev:hover,
.doctor-next:hover {
    background: #0ea5e9;
    color: #fff;
}

/* HEADER */
.doctors-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.section-tag {
    color: #6b5cff;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.doctors-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: #111;
}

.read-more-btn {
    border: 1.5px solid #0ea5e9;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: #0ea5e9;
    font-weight: 600;
}

/* CARD */
.doctor-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 9px 3px rgb(0 0 0 / 12%);
    overflow: hidden;
}

.doctor-card:hover {
    transform: translateY(-3px);
}

.doctor-img {
    position: relative;
}

.doctor-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.rating {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #14b8a6;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
}

.wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0ea5e9;
    color: #fff;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
}

.doctor-info {
    padding: 22px;
}

.speciality {
    background: #e0f2fe;
    color: #0284c7;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

.doctor-info h3 {
    margin-bottom: 6px;
}

.location {
    font-size: 14px;
    color: #555;
    margin-top: 12px;
}

/* ACTIONS */
.doctor-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #eee;
}

.action-btn {
    padding: 14px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.action-btn:hover {
    background: #f8fafc;
}

.time-btn {
    border-right: 1px solid #eee;
}

.swiper {
    padding-bottom: 60px;
}

.swiper-pagination-bullet {
    background: #0ea5e9;
}

/* ------- blog css ------ */
.blog-section {
    background: #fff7f3;
    padding: 60px 0;
}

/* HEADER */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.blog-nav {
    display: flex;
    gap: 12px;
}

.blog-prev,
.blog-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #0ea5e9;
    background: transparent;
    color: #0ea5e9;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.blog-prev:hover,
.blog-next:hover {
    background: #0ea5e9;
    color: #fff;
}


.blog-tag {
    color: #6b5cff;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.blog-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: #111;
}

/* CARD */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.blog-card:hover {
    transform: translateY(-3px);
}

.blog-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-content {
    padding: 22px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.blog-meta span {
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.socials i {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 14px;
    line-height: 1.4;
}

.read-more {
    color: #0ea5e9;
    font-weight: 600;
    text-decoration: none;
}

/* SWIPER */
.blog-swiper {
    padding-bottom: 60px;
}

.blog-swiper .swiper-pagination-bullet {
    background: #0ea5e9;
}

/* ----- enquiry form ------ */
.medical-network {
    background:
        url('/frontend/images/right-img.png') no-repeat right bottom,
        #eef9fc;
    background-size: auto 90%;
    padding: 100px 0;
    position: relative;
}

.network-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.2fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.network-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin: 20px 0;
    color: #111;
}

.section-tag {
    color: #6b5cff;
    font-weight: 600;
}

.network-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-primary {
    background: #0ea5e9;
    color: #fff;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* FORM CARD */
.enquiry-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.enquiry-form-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.btn-submit {
    width: max-content;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: #0ea5e9;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.btn-submit:hover{
    background-color: #6B5CFF;
}
/* IMAGE */
.network-image img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}
/* ===============================
   RESPONSIVE – MEDICAL NETWORK
================================ */

/* LARGE TABLETS */
@media (max-width: 1200px) {

    .network-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .medical-network {
        background-size: auto 80%;
    }

    .network-content h2 {
        font-size: 36px;
    }
}

/* TABLETS */
@media (max-width: 991px) {

    .medical-network {
        padding: 80px 0;
        background-position: center bottom;
        background-size: auto 60%;
    }

    .network-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .network-content p {
        max-width: 600px;
        margin: 0 auto 30px;
    }

}

/* MOBILE */
@media (max-width: 576px) {

    .medical-network {
        padding: 60px 0;
        background: #eef9fc; /* remove bg image for clarity */
    }

    .section-tag {
        font-size: 13px;
    }

    .network-content h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .network-content p {
        font-size: 15px;
    }

    .enquiry-form-card {
        padding: 24px;
        border-radius: 16px;
    }

    .enquiry-form-card h3 {
        font-size: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .btn-submit {
        padding: 13px;
        font-size: 15px;
    }
}

/* ------ faq's ------ */
.faq-section {
    background: #ffffff;
    padding: 40px 20px 80px;
    position: relative;
    color: #000000;
}

.faq-container {
    max-width: 700px;
    margin: auto;
}

/* HEADER */
.faq-header {
    margin-bottom: 40px;
}

.faq-tag {
    color: #6b5cff;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 600;
}

/* FAQ ITEMS */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(82, 82, 82, 0.4);
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item.active {
    background: #F7E7EE;
    color: #1e3a8a;
}

.faq-item.active .faq-question {
    color: #1e3a8a;
}

.faq-item.active .arrow {
    color: #1e3a8a;
}

/* ANSWER */
.faq-answer {
    padding: 0 22px 20px;
    color: #232323;
    font-size: 15px;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ARROW */
.arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.site-footer {
    background: #2c275f;
    color: #c7c7e1;
    position: relative;
    padding: 60px;
}

/* TOP */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.footer-col h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.logo-icon {
    background: #6b5cff;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.socials a {
    color: #444;
    transition: 0.3s;
}

.socials a:hover {
    color: #6b5cff;
}

/* PHONE */
.phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.phone small {
    background: #6b5cff;
    padding: 3px 10px;
    border-radius: 14px;
    font-size: 12px;
}

/* HOURS */
.hours {
    list-style: none;
}

.hours li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
}

.hours .dots {
    flex: 1;
    border-bottom: 1px dotted #6f6aa8;
    margin: 0 10px;
}

/* BOTTOM */
.footer-bottom {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    border-radius: 18px;
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin-bottom: 0;
}

.footer-menu a {
    color: #c7c7e1;
    text-decoration: none;
}

/* SCROLL TOP */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #6b5cff;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 999;
}

@media (max-width: 991px) {

    .site-footer {
        padding: 40px 30px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    .footer-col h4 {
        font-size: 18px;
    }

    .logo-text {
        font-size: 24px;
    }

    .footer-menu {
        gap: 20px;
    }
    .bottom-inner{
        flex-direction: column-reverse;
        gap: 20px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .site-footer {
        padding: 40px 20px;
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 30px 0;
    }

    .brand .logo {
        justify-content: center;
    }

    .socials {
        display: flex;
        justify-content: center;
    }

    .phone {
        justify-content: center;
    }

    .hours li {
        font-size: 14px;
    }

    .bottom-inner {
        flex-direction: column-reverse;
        gap: 15px;
        text-align: center;
    }

    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 40px;
        height: 40px;
    }
}
/* =============================================
                      ABOUT US
============================================= */
/* ===== BANNER ===== */
.about-banner {
    background: linear-gradient(-45deg, #b8c7eb 0%, #fad7d7 50.5%, #eddff7 91%);
    padding: 160px 0 180px;
    position: relative;
    color: #fff;
    height: auto;
}

.about-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #fff;
    border-radius: 50% 50% 0 0;
}

.banner-content {
    text-align: center;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.banner-content p {
    opacity: 0.9;
}

/* ===== ABOUT INTRO ===== */
.about-intro {
    padding: 40px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    color: #6b5cff;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 44px;
    font-weight: 600;
    margin: 15px 0 20px;
}

.about-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* ===== STATS ===== */
.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: #f5f8ff;
    padding: 26px;
    border-radius: 18px;
    text-align: center;
    min-width: 160px;
    transition: 0.3s;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(107, 92, 255, 0.2);
}

.stat-box h3 {
    font-size: 30px;
    font-weight: bold;
    color: #6b5cff;
}

/* ===== IMAGE ===== */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    background: #6b5cff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
}

/* ===== CORE VALUES ===== */
.core-values {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
}

.core-values h2 {
    font-size: 44px;
    font-weight: 600;
}

.section-sub {
    max-width: 600px;
    margin: 10px auto 50px;
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    color: #6b5cff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
}

.value-card {
    background: #fff;
    padding: 34px 24px;
    border-radius: 18px;
    box-shadow: 0 0 11px 5px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-card h4 {
    margin-bottom: 10px;
}

/* ===== WHY CHOOSE ===== */
.why-choose {
    padding: 60px 0 80px;
    background: #fff;
}

.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.choose-grid h2 {
    font-size: 44px;
    font-weight: 600;
}

.why-choose ul {
    list-style: none;
    padding: 0;
}

.why-choose ul li {
    font-weight: 500;
    padding-left: 26px;
    position: relative;
}

.why-choose ul li::before {
    position: absolute;
    left: 0;
    color: #6b5cff;
}

.choose-image img {
    width: 100%;
    border-radius: 18px;
}

.choose-sub {
    color: #555;
    max-width: 500px;
    margin-bottom: 30px;
}

.choose-list {
    list-style: none;
    padding: 0;
}

.choose-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.choose-list i {
    font-size: 26px;
    color: #6b5cff;
    margin-top: 4px;
}

.choose-list strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.choose-list span {
    font-size: 16px;
    color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid,
    .choose-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
    }

    .banner-content h1 {
        font-size: 36px;
    }
}


/* ================================================
                    Enquiry Page
================================================ */
/* BANNER */
.page-banner {
    height: 260px;
    background: linear-gradient(-45deg, #b8c7eb 0%, #fad7d7 50.5%, #eddff7 91%);
    position: relative;
    display: flex;
    align-items: center;
}


.banner-content {
    position: relative;
    z-index: 2;
    color: #000000;
    text-align: center;
}

.banner-content h1 {
    font-size: 60px;
    font-weight: 700;
}

/* SECTION */
.enquiry-section {
    padding: 60px 0 100px;
    background: #f8fafc;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.enquiry-content .section-tag {
    color: #6b5cff;
    font-weight: 600;
}

.enquiry-content h2 {
    font-size: 44px;
    font-weight: 600;
    margin: 15px 0;
}

.enquiry-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.enquiry-points {
    list-style: none;
    padding: 0;
}

.enquiry-points li {
    margin-bottom: 12px;
    font-weight: 500;
}

/* FORM CARD */
.enquiry-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.enquiry-form-card h3 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
}

/* FORM */
.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-size: 15px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b5cff;
    box-shadow: 0 0 0 3px rgba(107, 92, 255, 0.15);
}

.w-100 {
    width: 100%;
}
@media(max-width: 991px){
    .enquiry-grid{
        gap: 18px;
    }
}
@media (max-width: 910px) {
    .enquiry-grid {
        grid-template-columns: 1fr;
    }
}

/* =======================================
              Blog Detail
======================================== */
.blog-detail {
    padding: 40px 0;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
}

/* CONTENT */
.blog-content {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
}

.blog-main-img {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.blog-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.blog-content h3 {
    margin-top: 30px;
}

.blog-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.blog-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.blog-content li {
    margin-bottom: 8px;
}

blockquote {
    background: #eef2ff;
    padding: 20px;
    border-left: 5px solid #6b5cff;
    margin: 25px 0;
    font-style: italic;
}

/* FOOTER */
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.tags span {
    background: #eef2ff;
    padding: 6px 14px;
    border-radius: 20px;
    margin-right: 6px;
    font-size: 13px;
}

.share i {
    margin-left: 10px;
    cursor: pointer;
    color: #6b5cff;
}

/* AUTHOR */
.author-box {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 16px;
}

.author-box img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

/* SIDEBAR */
.blog-sidebar .sidebar-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.sidebar-box h4 {
    margin-bottom: 15px;
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
}

.sidebar-box li {
    margin-bottom: 10px;
}

.sidebar-box a {
    text-decoration: none;
    color: #444;
}
