body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding-top: 70px;
}

.navbar-custom {
    background: #fff;
    height: 90px;
    border-bottom: 1px solid #eee;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 350px;
    object-fit: contain;
    margin-left: -80px;
}

.navbar-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    margin: auto;
}

.nav-link {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.nav-link:hover {
    color: #1f7ea8;
}

.call-btn {
    background: #153e75;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 650px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu li {
    margin-bottom: 6px;
}

.mega-menu a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

.mega-menu a:hover {
    color: #0b3c78;
}


.navbar-toggler {
    border: none;
    background: none;
    display: none;
    flex-direction: column;
    gap: 4px;
}

.navbar-toggler span {
    width: 25px;
    height: 3px;
    background: #000;
    display: block;
}


@media (max-width:768px) {

    .navbar-custom {
        height: 80px;
        padding: 0 15px;
        display: flex;
        align-items: center;
    }


    .logo {
        width: 253px;
        margin-left: -29px;
        margin-top: -55px;
    }

    .navbar-toggler {
        display: flex;
        position: absolute;
        right: 15px;
        top: 20px;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        padding: 25px;
        transition: 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .navbar-collapse.active {
        left: 0;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-top: 40px;
        width: 100%;
    }

    .nav-link {
        font-size: 16px;
        width: 100%;
    }

    .mega-menu {
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
        box-shadow: none;
        background: none;
        padding: 10px 0;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .mega-menu a {
        display: block;
        padding: 6px 0;
        font-size: 14px;
    }

    .mega-dropdown.active .mega-menu {
        display: block;
    }

    .call-btn {
        display: none;
    }

}

/**************** HERO SECTION ****************/

.hero {
    background: linear-gradient(to bottom, #ffffff, #d6eaf0);
    padding: 60px 0 0px;
    overflow: hidden;
}

.row.align-items-center.hero-row {
    margin-top: -90px;
    margin-left: 50px;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 60px;
}

.hero-title span {
    color: #31B4D0;
}


.rating-box {
    background: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.rating-box strong {
    font-size: 22px;
    margin-right: 6px;
}

.stars {
    color: #F5B400;
    font-size: 16px;
}

.rating-box p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

.hero-qualification {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-qualification span {
    color: #31B4D0;
    font-weight: 600;
}


.appointment-btn {
    background: #153E75;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
}


.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-img {
    height: 520px;
    width: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* mix-blend-mode: multiply; */
    left: -70px;
}


.hero-desc {
    text-align: right;
    font-size: 15px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 55px;
}


.stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.stat h4 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.stat p {
    font-size: 13px;
    margin: 0;
    color: #666;
}


.leaf {
    width: 32px;
    opacity: .9;
    filter: brightness(0) saturate(100%) invert(63%) sepia(38%) saturate(330%) hue-rotate(150deg) brightness(90%) contrast(90%);
}

.leaf.left {
    transform: scaleX(-1);
}


@media(max-width:992px) {

    .hero {
        padding: 80px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-left {
        order: 1;
    }

    .hero-image {
        order: 2;
        margin: 30px 0;
    }

    .hero-right {
        order: 3;
    }

    .hero-desc {
        text-align: center;
        margin-top: 20px;
    }

    .doctor-img {
        height: 360px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

}

/************** MOBILE **************/

@media(max-width:576px) {

    .row.align-items-center.hero-row {
        margin-top: -30px;
        margin-left: 0px;
    }

    .hero-right {
        order: 3;
        margin-top: -32px;
        margin-bottom: -50px;
    }

    .hero-image {
        order: 2;
        margin: 30px 0;
        margin-left: 60px;
        margin-top: 10px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-qualification {
        font-size: 16px;
    }

    .stats-grid {
        /* grid-template-columns: 1fr; */
        gap: 20px;
    }

    .doctor-img {
        height: 300px;
    }

}

/*.......................about section.......................  */
.background-light {
    background: #ffffff;
    padding: 100px 0;
}

.about h2 {
    font-size: 35px;
}

.about-list {
    background: #ebfcff;
    padding: 15px 18px 5px 10px;
    border-radius: 8px;
    font-size: 14px;
}

.about-list li {
    margin-bottom: 8px;
}

.doctor-card {
    position: relative;
    display: inline-block;
}

.doctor-card img {
    max-width: 500px;
    border-radius: 20px;
    object-fit: cover;
}

/* WhatsApp floating box */
.whatsapp-box {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 13px;
}

.whatsapp-box button {
    background: #0a3d78;
    padding: 8px 2px 8px 2px;
    border-radius: 15px;
    width: 230px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 13px;
    color: #fff;
}

/* ================= SECTION ================= */
.sp-services-section {
    padding: 0px 0;
    background: #fff;
}

.sp-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.sp-services-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    margin-bottom: 50px;
}

.sp-services-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f3a5f;
}

.sp-services-text span {
    color: #87CEFA;
}

.sp-services-text p {
    font-size: 15px;
    color: #000;
    max-width: 700px;
    margin-top: 10px;
    line-height: 1.6;
}

.sp-service-btn {
    background: #0a3d78;
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

.sp-carousel-wrapper {
    position: relative;
}

.sp-carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;

    /* hide scrollbar */
    scrollbar-width: none;
}

.sp-carousel-track::-webkit-scrollbar {
    display: none;
}

.sp-service-card {
    flex: 0 0 calc(33.33% - 20px);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sp-service-card:hover {
    transform: translateY(-5px);
}

.sp-service-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.sp-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.4),
        transparent
    );

    color: #fff;
    transition: 0.4s;
}

.sp-card-overlay h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.sp-card-overlay p {
    font-size: 14px;
    opacity: 0;
    max-height: 0;
    transition: 0.4s;
}

/* Hover effect */
.sp-service-card:hover .sp-card-overlay {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sp-service-card:hover .sp-card-overlay p {
    opacity: 1;
    max-height: 200px;
}

.sp-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #153e75;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 5;
}

.sp-left {
    left: -20px;
}

.sp-right {
    right: -20px;
}

@media (max-width: 992px) {

    .sp-services-text h2 {
        font-size: 28px;
    }

    .sp-services-text p {
        font-size: 14px;
        max-width: 100%;
    }

    .sp-service-card {
        flex: 0 0 60%;
    }

    .sp-service-card img {
        height: 350px;
    }

    .sp-arrow {
        display: none;
    }
}

@media (max-width: 576px) {

    .sp-services-section {
        padding: 50px 0;
    }

    .sp-services-text h2 {
        font-size: 24px;
    }

    .sp-services-text p {
        font-size: 13px;
    }

    .sp-service-card {
        flex: 0 0 85%;
    }

    .sp-service-card img {
        height: 300px;
    }
}

/* SECTION */

.treatments-sec {

    padding: 40px 20px;

    background: #ffffff;

}

/* container */

.treatments-container {

    max-width: 1100px;

    margin: auto;

}


.treatments-header {

    text-align: center;

    margin-bottom: 60px;

}

.treatments-header h2 {

    font-size: 36px;

    font-weight: 700;

}

.treatments-header span {

    color: #4bb3cc;

}

.treatments-header p {

    font-size: 14px;

    color: #666;

    max-width: 550px;

    margin: 10px auto 0;

    line-height: 1.6;

}

.treatments-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}


.treatment-card {

    padding: 32px;

    border-radius: 26px;

    text-align: left;

    transition: 0.3s;

}

.treatment-card h3 {

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 12px;

}

.treatment-card p {

    font-size: 14px;

    color: #555;

    line-height: 1.6;

}

/* card colors */

.card-green {

    background: #E4FFEA;

}

.card-blue {

    background: #E0F7FF;

}

.card-gray {

    background: #EDF2FB;

}


.treatment-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

}

/* tablet */

@media (max-width:992px) {

    .treatments-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

/* mobile */

@media (max-width:576px) {

    .treatments-grid {

        grid-template-columns: 1fr;

    }

    .treatments-header h2 {

        font-size: 28px;

    }

}

.video-review-section {
    padding: 50px 0;
    background: #ffffff;
}

.video-review-header {
    text-align: center;
    margin-bottom: 50px;
    margin-left: 85px;
}


.video-review-header h2 {
    font-size: 36px;
    font-weight: 700;
    
}

.video-review-header span {
    color: #6bb8de;
}

.video-review-header p {
    font-size: 14px;
    color: #555;
    max-width: 520px;
    margin-top: 10px;
}

.video-carousel-wrapper {
    position: relative;
    margin-left: 69px;
}

.video-carousel-track {
    display: flex;
    gap: 30px;
    overflow: hidden;
    scroll-behavior: smooth;
}


.video-review-card {
    flex: 0 0 calc(33.333% - 20px);
}

.video-frame {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.video-frame iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

.video-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #1c4c86;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
}

.video-left {
    left: -50px;
}

.video-right {
    right: -50px;
}


@media(max-width:992px) {

    .video-review-card {
        flex: 0 0 calc(50% - 20px);
    }

}

@media(max-width:768px) {

    .video-review-card {
        flex: 0 0 100%;
    }

    .video-arrow {
        display: none;
    }

    .video-review-header h2 {
        font-size: 28px;
    }

}


/* SECTION */
.whyus-section {
    padding: 90px 20px;
    background: linear-gradient(to bottom,
            #ffffff 0%,
            #eaf7fb 100%);

}

.whyus-container {
    max-width: 1100px;
    margin: auto;

}

.whyus-header {
    text-align: center;
    margin-bottom: 60px;

}

.whyus-header h2 {
    font-size: 36px;
    font-weight: 700;

}

.whyus-header span {
    color: #67b9d6;

}

.whyus-header p {
    font-size: 14px;
    color: #666;
    max-width: 520px;
    margin: 10px auto 0;

}


.whyus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

}

.whyus-image img {
    width: 100%;
    border-radius: 28px;
    display: block;

}

.whyus-item {
    margin-bottom: 22px;
}

.whyus-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;

}

.whyus-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;

}

@media (max-width:992px) {

    .whyus-grid {
        grid-template-columns: 1fr;
        gap: 40px;

    }

    .whyus-header h2 {

        font-size: 30px;

    }

}

@media (max-width:576px) {

    .whyus-section {

        padding: 70px 20px;

    }

    .whyus-header p {
        font-size: 13px;
    }

}


.patient-review-section {
    padding: 90px 20px;
    background: #ffffff;

}

.review-container {
    max-width: 1100px;
    margin: auto;

}

.review-header {
    margin-bottom: 50px;
    text-align: center;

}

.review-header h2 {
    font-size: 36px;
    font-weight: 700;

}

.review-header span {
    color: #5bbad5;

}

.review-header p {
    font-size: 14px;
    color: #666;
    margin-top: 8px;

}

/* slider */

.review-slider-wrapper {
    position: relative;

}

.review-slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto; 
    scroll-behavior: smooth;

    scrollbar-width: none;
}

.review-slider-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #EBFCFF;
    padding: 25px;
    border-radius: 28px;

}

/* top area */

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;

}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;

}

.review-user img {
    width: 45px;
    height: 45px;
    border-radius: 50%;

}

.review-user h4 {
    font-size: 15px;
    margin: 0;

}

.stars {
    color: #ffb400;
    font-size: 14px;

}

.google-icon {
    width: 45px;
}

.review-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;

}


.review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #1c4c86;
    color: #fff;
    font-size: 22px;
    cursor: pointer;

}

.review-left {
    left: -60px;
}

.review-right {
    right: -60px;

}


@media(max-width:992px) {
    .review-card {
        flex: 0 0 calc(50% - 20px);
    }

}

@media(max-width:768px) {
    .review-card {
        flex: 0 0 100%;

    }

    .review-arrow {
        display: none;

    }

}



.appoint-sec {
    padding: 0px 20px;
    background: #ffffff;

}

.appoint-container {
    max-width: 1100px;
    margin: auto;

}

.appoint-header {
    text-align: center;
    margin-bottom: 60px;

}

.appoint-header h2 {
    font-size: 36px;
    font-weight: 700;

}

.appoint-header span {
    color: #48b4cc;

}

.appoint-header p {
    font-size: 14px;
    color: #666;
    max-width: 550px;
    margin: 10px auto 0;

}

.appoint-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

}

.appoint-left h3 {
    font-size: 28px;
    font-weight: 700;

}

.appoint-left span {
    color: #48b4cc;

}

.appoint-left p {
    font-size: 14px;
    color: #555;
    margin-top: 15px;
    line-height: 1.6;

}


.appoint-btns {
    display: flex;
    gap: 15px;
    margin-top: 25px;

}

.call-btn {
    background: #153e75;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

.wa-btn {
    border: 1px solid #ccc;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    color: #333;

}

.member-text {
    margin-top: 40px;
    font-size: 14px;
}

.member-logos {
    display: flex;
    gap: 18px;
    margin-top: 15px;
    flex-wrap: wrap;

}

.member-logos img {
    height: 45px;

}

.appoint-form-card {
    background: #EBFCFF;
    padding: 40px;
    border-radius: 28px;

}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;

}

.form-group {
    flex: 1;
}

.form-group label {
    font-size: 14px;
    display: block;
    margin-bottom: 6px;

}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;

}


.form-btn {
    text-align: right;
    margin-top: 20px;
}

.form-btn button {
    background: #153e75;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    cursor: pointer;

}


@media (max-width:992px) {

    .appoint-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
    }
}

.custom-container {
    max-width: 1200px;
    margin: auto;
}

.text-highlight {
    color: #87cefa;
}

.section-desc {
    max-width: 650px;
    margin: 10px auto 0;
    color: #6c757d;
}

.form-card {
    background: linear-gradient(to top, #ffffff 0%, #d6eaf0 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: left;
}

.form-control {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: #2bb3c0;
}

/* Buttons */
.btn-primary {
    background: #0d3b66;
    border: none;
    border-radius: 25px;
}

.btn-primary:hover {
    background: #0b2f52;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.logo-row img {
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
}

.btn-outline-success {
    border-radius: 25px;
}


.faq-sec {
    padding: 90px 20px;
    background: #ffffff;

}

.faq-container {
    max-width: 1100px;
    margin: auto;

}

.faq-header {
    text-align: center;
    margin-bottom: 50px;

}

.faq-header h2 {
    font-size: 36px;
    font-weight: 700;

}

.faq-header span {
    color: #4bb3cc;
}

.faq-header p {
    font-size: 14px;
    color: #666;
    max-width: 550px;
    margin: 10px auto 0;

}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;

}


.faq-box {
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    overflow: hidden;

}


.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;

}


.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    font-size: 18px;

}


.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    border-top: 1px solid #e5e5e5;

}

.faq-a p {
    padding: 18px 22px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;

}


.faq-box.active {
    background: #EBFCFF;
}

.faq-box.active .faq-a {
    max-height: 200px;

}


@media (max-width:768px) {
    .faq-header h2 {
        font-size: 28px;

    }

}

/* ================================
IMAGE GALLERY
================================ */

.gallery-section {
    padding: 40px 20px;
    background: #fff;
}

.gallery-container {
    max-width: 1300px;
    margin: auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 36px;
    font-weight: 700;
}

.gallery-header span {
    color: #46b3cc;
}

.gallery-header p {
    font-size: 14px;
    color: #666;
    max-width: 600px;
    margin: 10px auto 0;
}


.gallery-masonry {
    column-count: 5;
    column-gap: 18px;

}


.gallery-masonry img {
    width: 100%;
    margin-bottom: 18px;
    border-radius: 16px;
    display: block;

}

.g-big {
    height: 420px;
    object-fit: cover;
}


@media(max-width:992px) {
    .gallery-masonry {
        column-count: 3;
    }

}


@media(max-width:576px) {
    .gallery-masonry {
        column-count: 2;
    }

}

/* ====================================
LATEST BLOG SECTION
==================================== */

.latest-blog-section {
    padding: 90px 20px;
    background: #fff;

}

.latest-blog-container {
    max-width: 1200px;
    margin: auto;
}

.blog-left h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;

}

.blog-left span {
    color: #4bb3cc;
}

.blog-left p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    max-width: 320px;
}

.blog-btn {
    background: #0a3d78;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.blog-card-row {
    display: flex;
    gap: 30px;
}

.blog-card-new {
    background: #EBFCFF;
    border-radius: 22px;
    overflow: hidden;
    width: 100%;
    transition: 0.3s;
}

.blog-card-new img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    padding: 14px;
    border-radius: 20px;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.read-more-link {
    font-size: 14px;
    color: #0a3d78;
    text-decoration: none;
    font-weight: 500;
}


.blog-card-new:hover {
    transform: translateY(-5px);
}

@media(max-width:992px) {
    .blog-card-row {
        flex-direction: column;
    }

}

/* ================= FOOTER ================= */

.custom-footer {
    background: #000;
    color: #fff;
    padding: 50px 0 30px;
    font-size: 14px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-links-top {
    font-weight: 500;
}

.footer-links-top strong {
    margin-right: 10px;
}

.footer-links-top a {
    color: #fff;
    text-decoration: none;
    margin: 0 6px;
    font-weight: 500;
}

.footer-links-top a:hover {
    color: #1e73ff;
}

.footer-social a {
    color: #fff;
    font-size: 22px;
    margin-left: 15px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #1e73ff;
}

.footer-main {
    margin-top: 25px;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 18px;
}

.footer-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main li {
    margin-bottom: 10px;
}


.footer-main a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-main a:hover {
    color: #fff;
}

.footer-logo {
    height: 300px;
    /* margin-bottom: 15px; */
    margin-left: -90px;
    margin-top: -129px;
}

.footer-about {
    color: #bbb;
    line-height: 1.7;
    max-width: 260px;
}

.footer-main p {
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-main i {
    margin-right: 8px;
    color: #fff;
}

.footer-map iframe {
    width: 100%;
    height: 150px;
    border: 0;
    border-radius: 10px;
    margin-top: 10px;
}

.custom-footer hr {
    border-color: #ffffff;
    margin: 30px 0;
    opacity: 0.35 !important;
}

p.footer-about {
    margin-top: -70px;
    color: #fff;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #fffefe;
}



.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #1e73ff;
}

@media (max-width:991px) {

    .footer-main {
        row-gap: 30px;
    }

    .footer-about {
        max-width: 100%;
    }

}

@media (max-width:768px) {

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links-top {
        line-height: 2;
    }

    .footer-social {
        margin-top: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

}

@media (max-width:480px) {

    .custom-footer {
        padding: 40px 20px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-map iframe {
        height: 120px;
    }

}

/* ================================================ */
/* ================================================ */
/* =================service pages=================== */
/* ================================================ */

.page-hero {
    position: relative;
    height: 450px;
    /* adjust height as needed */
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    /* darken image for text visibility */
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    /* ensure text is above image */
}

.page-hero-content {
    max-width: 600px;
    /* text width */
    text-align: left;
    /* left spacing */
}

.page-hero-content h1 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #87cefa;
}

.page-hero-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-hero {
        height: 350px;
    }

    .page-hero-content h1 {
        font-size: 28px;
    }

    .page-hero-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 300px;
    }

    .page-hero-content {
        padding-left: 10px;
    }

    .page-hero-content h1 {
        font-size: 22px;
    }

    .page-hero-content p {
        font-size: 13px;
    }
}

/*=====Service Form
Section=====*/
.service-form-section {
    background: #ffffff;
    /* light background for contrast */
    padding: 60px 0;
    
}

.service-form-section h2 {
    font-weight: bold;
    margin-bottom: 20px;
    color: #0a3d78;
    font-size: 20px !important;
}

.service-form-section p {
    line-height: 1.7;
    color: #333;
    font-size: 15px !important;
}

/*=====Form
Styling=====*/
.consultation-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.consultation-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0a3d78;
}

.consultation-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    border-color: #0a3d78;
    outline: none;
}

.consultation-form textarea {
    min-height: 120px;
    resize: vertical;
}

.consultation-form button {
    background: #0a3d78;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.consultation-form button:hover {
    background: #072c57;
}

/*=====Layout Adjustments=====*/
.service-form-section .row {
    display: flex;
    align-items: center;
}

.service-form-section .service-text {
    padding-right: 20px;
}

/* Responsive
Adjustments */
@media (max-width: 992px) {
    .service-form-section .row {
        flex-direction: column;
    }

    .service-form-section .service-text {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .consultation-form {
        margin: 0 auto;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .service-form-section h2 {
        font-size: 26px;
    }

    .consultation-form h3 {
        font-size: 20px;
    }

    .consultation-form button {
        font-size: 15px;
        padding: 10px 15px;
    }
}

/*=====Table Styling=====*/
.table th,
.table td {
    vertical-align: middle;
    font-size: 15px;
}

.table thead th {
    font-weight: 600;
}

.table tr {
    background-color: red;
}

.table tbody tr:hover {
    background-color: #e6f2ff;
    /* light hover effect */
}

@media (max-width: 768px) {

    .table th,
    .table td {
        font-size: 13px;
        padding: 10px;
    }
}

.service-about {
    background: #e6f2ff;
    /* light sky-blue background */
    padding: 60px 15px;
    padding: 60px 0;
}

.service-about h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a3d78;
}

.service-about h2 span {
    color: #87cefa;
    /* sky blue accent */
}

.service-about-list ul {
    list-style: disc inside;
    padding-left: 0;
    margin: 0;
    column-count: 2;
    column-gap: 40px;
}

.service-about-list ul li {
    font-size: 14px;
    color: #555;
}

@media (max-width: 992px) {
    .about .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about .col-lg-6 {
        margin-bottom: 30px;
    }

    .service-about-list ul {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about h2 {
        font-size: 26px;
    }

    .about p {
        font-size: 14px;
    }

    .service-about-list ul li {
        font-size: 13px;
    }
}


/* MOBILE VIEW FIX */
@media (max-width: 768px) {

    .service-about {
        padding: 35px 15px;
        text-align: center;
    }

    .service-about .row {
        flex-direction: column;
    }

    .service-about .col-lg-6 {
        width: 100%;
        margin-bottom: 20px;
    }

    .service-about img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .service-about h2 {
        font-size: 24px;
        margin-top: 10px;
    }

    .service-about p {
        font-size: 14px;
        line-height: 1.6;
    }

    .service-about ul {
        column-count: 1;   /* mobile me single column */
        padding-left: 18px;
        text-align: left;
    }

    .service-about ul li {
        margin-bottom: 6px;
    }
}


/* ===========================
   ABOUT HERO SECTION
=========================== */

.about-hero-section {
    background: #153e75;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
}

.about-hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-hero-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.designation {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #bdbdf5;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #ffffff;
    border-radius: 50px;
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.about-hero-btn:hover {
    background: #ffffff;
    color: #25245c;
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    width: 100%;
    border-radius: 20px;
}

.stat-card {
    position: absolute;
    background: #ffffff;
    color: #25245c;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.stat-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 13px;
    margin: 0;
}

.stat-1 {
    top: 10%;
    left: -40px;
}

.stat-2 {
    bottom: 20%;
    right: -30px;
}

.stat-3 {
    bottom: -20px;
    left: 20%;
}


@media (max-width: 992px) {

    .about-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 30px;
    }

    .about-hero-content h3 {
        font-size: 22px;
    }

    .about-hero-image {
        margin-top: 40px;
    }

    .stat-card {
        position: relative;
        margin: 10px auto;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: 0 !important;
    }
}


/* ===========================
   ABOUT DR SECTION 
=========================== */

.about-dr-section {
    background: linear-gradient(to bottom, #ffffff 0%, #eaf7fb 100%);
    padding: 100px 0;
}

.about-dr-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.about-dr-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-dr-content h2 {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #6bb8de;
}

.about-dr-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 18px;
}

.about-dr-content .sub-heading {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 700;
    color: #25245c;
}

.about-dr-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.about-dr-content ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #000000;
    font-weight: 500;
}

/* MOBILE */

@media (max-width: 992px) {

    .about-dr-section {
        padding: 30px 0;
    }

    .about-dr-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-dr-content h2 {
        font-size: 28px;
    }

    .about-dr-image img {
        border-radius: 18px;
    }
}

/* ===========================
   EXPERTISE SECTION
=========================== */

.expertise-section {
    background: #ffffff;
    padding: 100px 0;
}

.expertise-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.expertise-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #6bb8de;
}

.expertise-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.expertise-tags span {
    padding: 8px 16px;
    border: 1px solid #6bb8de;
    border-radius: 30px;
    font-size: 14px;
    color: #25245c;
    transition: 0.3s ease;
}

.expertise-tags span:hover {
    background: #6bb8de;
    color: #fff;
}

.skill-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #6bb8de;
}

.expertise-list {
    padding-left: 20px;
}

.expertise-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.expertise-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


@media (max-width: 992px) {

    .expertise-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertise-image {
        order: -1;
    }

    .expertise-content h2 {
        font-size: 28px;
    }

    .expertise-image img {
        border-radius: 18px;
    }

    .center-logo {
        position: absolute;
        left: 40%;
        transform: translateX(-50%);
    }
}


/* ===============================
   DOCTOR CHOOSE SECTION
================================ */

.doctor-choose-section {
    background: #153e75;
    padding: 100px 0;
    color: #fff;
}

.doctor-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}


.doctor-content h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
}

.doctor-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #d7d7f0;
    margin-bottom: 20px;
}

/* POINTS LIST */

.doctor-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doctor-points li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
    font-size: 17px;
    color: #e4e4ff;
}


.doctor-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
}

.doctor-points li::after {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: #25245c;
}


.doctor-form-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    color: #000;
}

.doctor-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
    color: #25245c;
}

.doctor-form-box form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.doctor-form-box input,
.doctor-form-box select,
.doctor-form-box textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
}

.doctor-form-box textarea {
    height: 110px;
    resize: none;
    grid-column: span 2;
}

.doctor-form-box button {
    width: 100%;
    padding: 16px;
    background: #6bb8de;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.doctor-form-box button:hover {
    background: #153e75;
}


@media (max-width: 992px) {

    .doctor-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .doctor-content h2 {
        font-size: 30px;
    }

    .doctor-form-box {
        padding: 35px;
    }

}


/* ===============================
   MOBILE
================================ */

@media (max-width: 600px) {

    .doctor-choose-section {
        padding: 70px 0;
    }

    .doctor-content h2 {
        font-size: 26px;
    }

    .doctor-content p {
        font-size: 16px;
    }

    .doctor-points li {
        font-size: 15px;
    }

    .doctor-form-box form {
        grid-template-columns: 1fr;
    }

    .doctor-form-box textarea {
        grid-column: span 1;
    }

    .doctor-form-box button {
        grid-column: span 1;
    }

}


/* ===============================
   CONTACT HERO SECTION
================================ */

.contact-hero {
    position: relative;
    background: url('https://dummyimage.com/1405x307/000/fff') no-repeat center;
    background-size: cover;
    padding: 155px 0 80px;
    color: #fff;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgb(107 184 222 / 50%);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb-contact {
    font-size: 16px;
}

.breadcrumb-contact a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.breadcrumb-contact span {
    margin: 0 8px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
    }

    .contact-content h1 {
        font-size: 32px;
    }
}


/* ================= INNER PAGE VIDEOS ================= */

.inner-videos-section {
    background: #ffffff;
}

.inner-section-title {
    font-size: 38px;
    font-weight: 700;
    color: #6bb8de;
}

.inner-video-card {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 20px;
    overflow: hidden;
}

.inner-video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.inner-view-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #6bb8de;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.inner-view-more-btn:hover {
    background: #153e75;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .inner-section-title {
        font-size: 28px;
    }
}


/* ================= News Logo ================= */

.news-logos-section {
    background: #ffff;
}

.news-title {
    font-size: 26px;
    font-weight: 600;
}

.news-logos-wrapper {
    row-gap: 40px;
}

.news-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s ease;
}

.news-logo-box img {
    max-height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.news-logo-box:hover {
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .news-logo-box {
        height: 90px;
    }
}

@media (max-width: 576px) {
    .news-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .news-logo-box {
        height: 80px;
        padding: 8px;
    }

    .news-logo-box img {
        max-height: 50px;
    }
}


/* ===============================
   GLIMPSE  SECTION
================================ */

.glimpse-section {
    background: #f4f6f9;
    padding: 90px 0;
    text-align: center;
    overflow: hidden;
}

.glimpse-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2c4c7a;
    margin-bottom: 20px;
}

.glimpse-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    color: #67b9d6;
}

.glimpse-slider {
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.glimpse-slider:active {
    cursor: grabbing;
}

.glimpse-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: autoScroll 60s linear infinite;
    will-change: transform;
}

.glimpse-slider:hover .glimpse-track {
    animation-play-state: paused;
}

.glimpse-track:hover {
    animation-play-state: paused;
}

.glimpse-card {
    min-width: 300px;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
}

.glimpse-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 22px;
    transition: 0.4s ease;
}

.glimpse-card:hover img {
    transform: scale(1.05);
}

/* Smooth Infinite Scroll */
@keyframes autoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive */

@media (max-width: 992px) {
    .glimpse-heading {
        font-size: 30px;
    }

    .glimpse-card {
        min-width: 250px;
    }

    .glimpse-card img {
        height: 260px;
    }
}

@media (max-width: 600px) {

    .glimpse-slider {
        overflow: hidden;
    }

    .glimpse-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        animation: autoScroll 60s linear infinite;
    }

    .glimpse-card {
        min-width: 250px;
        flex-shrink: 0;
    }

    .glimpse-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

}



/* ===============================
   CONTACT SECTION
================================ */

.contact-section {
    padding: 100px 0;
    background: #f7f7f7;
}

.contact-left {
    padding-right: 40px;
}

.contact-subtitle {
    font-weight: 600;
    color: #67b9d6;
    display: inline-block;
    margin-bottom: 10px;
}

.contact-left h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 3px solid #67b9d6;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
}

.contact-form-wrapper button {
    width: 100%;
    padding: 15px;
    background: #67b9d6;
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.contact-form-wrapper button:hover {
    background: #25245c;
}

/* RIGHT BOX */
.contact-info-box {
    background: #6bb8de;
    color: #fff;
    padding: 50px;
    border-radius: 4px;
    height: 100%;
}

.contact-info-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.info-label {
    font-size: 17px;
    /* opacity: 0.8; */
    font-weight: 700;
}

.info-value {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-box hr {
    border: none;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    margin: 25px 0;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #67b9d6;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 992px) {
    .contact-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-left h2 {
        font-size: 30px;
    }

    .contact-info-box {
        padding: 30px;
    }
}


/* ================= FULL WIDTH MAP ================= */

.contact-map-section {
    width: 100%;
    /*margin-top: 60px;*/
}

.contact-map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-map-section iframe {
        height: 300px;
    }
}


/* ===============================
   BLOG SECTION
================================ */

.blog-section {
    background: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.blog-title {
    font-size: 40px;
    font-weight: 700;
    color: #67b9d6;
    margin-bottom: 10px;
}

.blog-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 70px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #222;
    line-height: 1.4;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.calendar-icon {
    font-size: 16px;
}

.blog-btn-wrap {
    margin-top: 50px;
}

.blog-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #67b9d6;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.blog-btn:hover {
    background: #25245c;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-content h3 {
        font-size: 16px;
    }
}


/* ===========================
   BLOG DETAIL PAGE
=========================== */

.blog-breadcrumb {
    background: #67b9d6;
    padding: 18px 0;
    margin-top: 20px;
}

.breadcrumb-wrapper {
    font-size: 15px;
    color: #ffffff;
}

.breadcrumb-wrapper a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.breadcrumb-wrapper a:hover {
    opacity: 0.8;
}

.breadcrumb-wrapper span {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-wrapper .active {
    font-weight: 600;
    color: #ffffff;
}


.blog-detail-section {
    padding: 90px 0;
    background: #ffffff;
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}


.blog-feature-image img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 35px;
}

.blog-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #67b9d6;
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.blog-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #333;
}

.blog-content h2 {
    margin-top: 45px;
    font-size: 28px;
    font-weight: 700;
    color: #67b9d6;
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.blog-category-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
    border: 1px solid #f0f0f0;
}

.blog-category-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #67b9d6;
}

.blog-category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-card ul li {
    margin-bottom: 14px;
}

.blog-category-card ul li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f5f7fb;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s ease;
}

.blog-category-card ul li a:hover {
    background: #67b9d6;
    color: #ffffff;
    transform: translateX(5px);
}

.blog-form-card {
    background: #153e75;
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.blog-form-card h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.blog-form-card form {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.blog-form-card label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.blog-form-card form input,
.blog-form-card form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.blog-form-card form input::placeholder,
.blog-form-card form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.blog-form-card form textarea {
    min-height: 120px;
    resize: none;
}

.blog-form-card form button {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: #67b9d6;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.blog-form-card form button:hover {
    background: #25245c;
    color: #fff;
}

.blog-form-card form select {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #000000;
    font-size: 15px;
    outline: none;
}

.blog-form-card .form-row {
    display: block !important;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 992px) {

    .blog-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-feature-image img {
        border-radius: 15px;
    }

    .blog-category-card,
    .blog-form-card {
        padding: 25px;
    }
}


/* SECTION */

.appointment-section {
    padding: 90px 20px;
    background: #ffffff;
}

/* HEADER */

.h-custom {
    font-size: 36px;
    font-weight: 700;
}

.highlight {
    color: #4bb3cc;
}

.section-desc {
    font-size: 14px;
    color: #666;
    max-width: 550px;
    margin: 10px auto 0;
}

/* FAQ LIST */

.faq-wrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ BOX */

.faq-item {
    border: 1px solid #e2e2e2;
    border-radius: 16px;
    overflow: hidden;
}

/* QUESTION */

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
}

/* ICON */

.icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    font-size: 18px;
}

/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    border-top: 1px solid #e5e5e5;
    padding: 0 22px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ACTIVE */

.faq-item.active {
    background: #EBFCFF;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 18px 22px;
}


.consultation-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.consultation-box {
    background: #fff;
    width: 600px;
    max-width: 95%;
    padding: 35px;
    border-radius: 20px;
    position: relative;
}

.consultation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consultation-header h2 {
    font-size: 30px;
    color: #153e75;
    font-weight: 600;
}

.consultation-close {
    font-size: 28px;
    cursor: pointer;
    color: #999;
}

/* FORM */

.consultation-box input,
.consultation-box select,
.consultation-box textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 15px;
}

/* SUBMIT BUTTON */

.consultation-box button {
    width: 100%;
    background: #153e75;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.consultation-box button:hover {
    background: #67b9d6;
}

@media(max-width:768px) {

    .consultation-box {
        padding: 25px;
    }

    .consultation-header h2 {
        font-size: 22px;
    }

}