:root {
    --primary-color: #002F6C;
    --secondary-color: #6F7782;
    --accent-color: #0A4A9E;
    --dark-color: #0D1526;
    --light-color: #F5F7FA;
    --white-color: #fff;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Oxygen, Ubuntu,
        Cantarell, "Helvetica Neue", Arial, sans-serif;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1350px;
}

/* TOP HEADER */
.top-header {
    background: linear-gradient(90deg, #002F6C, #78797d);
    padding: 12px 0;
}

.top-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-left a,
.top-right a {
    color: #fff;
    font-size: 15px;
}

/* NAVBAR */

.custom-navbar {
    background: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.navbar-brand {
    flex-shrink: 0;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    display: block;
}

.navbar-nav {
    gap: 40px;
}

.navbar-nav .nav-link {
    color: #111;
    font-weight: 600;
    font-size: 17px;
    padding: 10px 8px;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: .3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* APPOINTMENT BUTTON */

.appoint-btn {
    background: linear-gradient(90deg, #002F6C, #78797d);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

.appoint-btn:hover {
    color: #fff;
    background: var(--primary-color);
    transform: translateY(-2px);
}


.mega-dropdown {
    position: relative;
}

.mega-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 25px;
}

.mega-menu {
    position: absolute;
    top: 157%;
    left: 170%;
    transform: translateX(-50%);
    width: 1100px;

    margin-top: 0;
    /* important */

    border: none;
    border-radius: 18px;
    padding: 25px;

    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

    display: block;
    opacity: 0;
    visibility: hidden;

    transition: all .25s ease;

    z-index: 9999;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mega-column a {
    display: block;
    padding: 10px 12px;
    color: #000000;
    border-radius: 8px;
    font-size: 15px;
    transition: .3s;
    font-weight: 500;
}

.mega-column a:hover {
    background: #F5F7FA;
    color: #002F6C;
    padding-left: 18px;
}

/* MOBILE */

@media(max-width:991px) {

    .top-header {
        display: none;
    }

    .custom-navbar {
        padding: 8px 0;
    }

    .navbar-brand img {
        height: 52px;
    }

    .navbar-toggler {
        border: none;
        box-shadow: none !important;
    }

    .navbar-collapse {
        margin-top: 15px;
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
    }

    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        display: block;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
        border-top: 1px solid #eee;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mega-column a {
        padding: 12px 15px;
        border-bottom: 1px solid #eee;
    }

    .appoint-btn {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
}

/* ==================================
   HERO SECTION
================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #002F6C, #78797d);
    padding: 40px 0;
}


.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .04;
    background-image:
        radial-gradient(circle, #fff 2px, transparent 2px);
    background-size: 45px 45px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    color: #fff;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #ffffff;
}

.hero-content p {
    color: #fff;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* BUTTONS */

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-btn {
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

.primary-btn {
    background: #fff;
    color: #002F6C;
}

.primary-btn:hover {
    color: #002F6C;
    transform: translateY(-3px);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
}

.secondary-btn:hover {
    background: #fff;
    color: #002F6C;
}

/* SERVICES */

.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.hero-services span {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
}

/* STATS */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 55px;
}

.stat-item {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.stat-item:last-child {
    border: none;
}

.stat-item h3 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item span {
    color: #fff;
    font-size: 13px;
}

/* FORM CARD */

.hero-form-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.form-heading {
    text-align: center;
    margin-bottom: 15px;
}

.form-heading h3 {
    color: #002F6C;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-heading p {
    color: #666;
    margin: 0;
}

/* COMMON FORM DESIGN */

.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 15px;
    margin-bottom: 15px;
    outline: none;
    box-shadow: none;
}

.hero-form-card textarea {
    height: 120px;
    padding-top: 15px;
}

.hero-form-card input:focus,
.hero-form-card select:focus,
.hero-form-card textarea:focus {
    border-color: #002F6C;
}

.hero-form-card button {
    width: 100%;
    border: none;
    height: 58px;
    border-radius: 50px;
    background: linear-gradient(135deg,
            #002F6C,
            #0A4A9E);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

/* MOBILE */

@media(max-width:991px) {

    .hero-section {
        padding: 50px 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border: none;
    }

    .hero-form-card {
        margin-top: 40px;
    }

    .hero-services {
        justify-content: center;
    }
}

@media(max-width:576px) {

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-form-card {
        padding: 25px;
    }

    .form-heading h3 {
        font-size: 28px;
    }
}

/* ==========================
   ABOUT DOCTOR SECTION
========================== */

.about-doctor-section {
    padding: 90px 0;
    background: #f8fbff;
    overflow: hidden;
}

.about-doctor-content {
    padding-right: 40px;
}

/* Subtitle */

.doctor-subtitle {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(90deg, #002F6C, #78797d);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Heading */

.about-doctor-content h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    color: #002F6C;
    margin-bottom: 10px;
}

.about-doctor-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #0A4A9E;
    margin-bottom: 15px;
}

/* Paragraph */

.about-doctor-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

/* Button */
.doctor-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(90deg, #002F6C, #78797d);

    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;

    transition: .3s ease;
}

.doctor-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Image Box */

.doctor-image-box {
    position: relative;
    text-align: center;
}

/* Decorative Shape */

.shape {
    position: absolute;

    width: 140px;
    height: 140px;

    background: #0A4A9E;

    border-radius: 24px;

    top: -25px;
    left: 30px;

    z-index: 1;
}

/* Image */

.doctor-image-box img {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 500px;

    border-radius: 28px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .12);
}

/* ==========================
   TABLET
========================== */

@media(max-width:1199px) {

    .about-doctor-content h2 {
        font-size: 44px;
    }

    .about-doctor-content h3 {
        font-size: 24px;
    }

    .about-doctor-content {
        padding-right: 15px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px) {

    .about-doctor-section {
        padding: 60px 0;
    }

    .doctor-image-box {
        margin-bottom: 40px;
    }

    .about-doctor-content {
        padding-right: 0;
        text-align: center;
    }

    .about-doctor-content h2 {
        font-size: 36px;
    }

    .about-doctor-content h3 {
        font-size: 22px;
    }

    .about-doctor-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .shape {
        display: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:576px) {

    .about-doctor-section {
        padding: 50px 0;
    }

    .doctor-subtitle {
        font-size: 12px;
        padding: 8px 15px;
    }

    .about-doctor-content h2 {
        font-size: 30px;
    }

    .about-doctor-content h3 {
        font-size: 20px;
    }

    .about-doctor-content p {
        font-size: 15px;
    }

    .doctor-btn {
        width: 100%;
        justify-content: center;
    }

    .doctor-image-box img {
        max-width: 100%;
        border-radius: 20px;
    }

    .hero-content {

        width: 100%;
    }
}


/*=================================
        SERVICES SECTION
=================================*/

.services-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(0, 47, 108, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 47, 108, .04) 1px, transparent 1px);

    background-size: 72px 72px;

    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

/*=========================
        HEADING
=========================*/

.section-heading {
    max-width: 900px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-block;

    padding: 10px 24px;

    border-radius: 50px;

    background: #EDF4FF;

    color: #002F6C;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: 30px;

    font-weight: 800;

    color: #002F6C;

    line-height: 1.2;

    margin-bottom: 18px;
}

.section-heading p {
    font-size: 17px;

    color: #666;

    line-height: 1.8;
}

/*=========================
          CARD
=========================*/

.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    height: 100%;
    border: 1px solid #eef2f7;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
    transition: .4s;
}

.service-card::before {
    content: '';

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 6px;

    border-radius: 24px 24px 0 0;

    background: linear-gradient(90deg,
            #002F6C,
            #78797d);
}

.service-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0, 47, 108, .12);
}

/*=========================
         ICON
=========================*/

.service-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 25px;

    border-radius: 50%;

    background: #EDF4FF;

    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 45px;
    height: 40px;
    object-fit: contain;
}

/*=========================
         TITLE
=========================*/

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #002F6C;
    line-height: 1.4;
    min-height: 55px;
    margin-bottom: 15px;
}

.service-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 180px;

    height: 52px;

    border-radius: 50px;

    background: linear-gradient(90deg,
            #002F6C,
            #78797d);

    color: #fff;

    font-weight: 600;

    transition: .3s;
}

.service-btn:hover {
    color: #fff;

    transform: translateY(-2px);
}

/*=========================
     VIEW MORE BUTTON
=========================*/

.all-services-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 260px;

    height: 58px;

    border-radius: 50px;

    background: linear-gradient(90deg,
            #002F6C,
            #78797d);

    color: #fff;

    font-size: 16px;

    font-weight: 700;

    transition: .3s;
}

.all-services-btn:hover {
    color: #fff;

    transform: translateY(-3px);
}

/*=========================
        TABLET
=========================*/

@media(max-width:991px) {

    .services-section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 20px;
        min-height: auto;
    }
}

/*=========================
        MOBILE
=========================*/

@media(max-width:576px) {

    .services-section {
        padding: 55px 0;
    }

    .section-tag {
        font-size: 12px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .service-icon {
        width: 90px;
        height: 90px;
    }

    .service-icon img {
        width: 48px;
        height: 48px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-btn,
    .all-services-btn {
        width: 100%;
    }
}

/*=================================
    CONDITIONS MARQUEE
=================================*/

.conditions-marquee-section {
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

.conditions-marquee {
    overflow: hidden;
    position: relative;
}

.marquee-track {

    display: flex;
    align-items: center;

    gap: 80px;

    width: max-content;

    animation: marqueeScroll 45s linear infinite;
}

.conditions-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {

    display: flex;
    align-items: center;

    gap: 20px;

    flex-shrink: 0;
}

.marquee-item i {
    font-size: 30px;
    background: linear-gradient(90deg, #002F6C, #78797d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.marquee-item span {
    font-size: 20px;
    font-weight: 800;
    white-space: nowrap;
    background: linear-gradient(90deg, #04326d, #0f386e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    color: #000;
}

/* Animation */

@keyframes marqueeScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*=========================
      Tablet
=========================*/

@media(max-width:991px) {

    .conditions-marquee-section {
        padding: 50px 0;
    }

    .marquee-track {
        gap: 50px;
    }

    .marquee-item i {
        font-size: 40px;
    }

    .marquee-item span {
        font-size: 38px;
    }
}

/*=========================
      Mobile
=========================*/

@media(max-width:576px) {

    .conditions-marquee-section {
        padding: 35px 0;
    }

    .marquee-track {
        gap: 30px;
    }

    .marquee-item {
        gap: 10px;
    }

    .marquee-item i {
        font-size: 24px;
    }

    .marquee-item span {
        font-size: 22px;
        font-weight: 700;
    }
}

.uro-care-section {
    padding: 80px 0;
    background: #f0f8ffb0
}

.uro-care-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* LEFT */
.uro-care-left {
    width: 48%;
}

.uro-care-left img {
    width: 100%;
    border-radius: 20px;
    margin-left: 40px;
}

/* RIGHT */
.uro-care-right {
    width: 52%;
    background: linear-gradient(90deg, #002F6C, #78797d);
    padding: 50px;
    border-radius: 10px;
    color: #fff;
}

.uro-care-right h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.uro-care-right p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #fff;
}

/* STATS */
.uro-stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.uro-stat {
    flex: 1;
    background: #fff;
    color: #000;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
}

.uro-stat .num {
    font-size: 26px;
    font-weight: 700;
    display: block;
}

.uro-stat .label {
    font-size: 13px;
    margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .uro-care-wrapper {
        flex-direction: column;
    }

    .uro-care-left,
    .uro-care-right {
        width: 100%;
    }

    .uro-care-right {
        padding: 30px;
    }

    .uro-care-left img {
        margin-left: 10px;
    }

    .uro-care-right h2 {
    font-size: 21px;
   
}

    .uro-stats {
        flex-direction: column;
    }
}


/* ============================
   FACILITY SECTION
============================ */

.facility-section {
    background: var(--primary-color);
    padding: 60px 0;
}

.facility-heading {
    max-width: 900px;
    margin: 0 auto 70px;
}

.facility-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.facility-heading h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 15px;
}

.facility-heading p {
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
}

/* EXACT 6 ITEMS ROW */

.facility-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.facility-item {
    text-align: center;
}

.facility-icon {
    width: 80px;
    height: 80px;

    background: #fff;
    border-radius: 50%;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.facility-item h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

/* Tablet */

@media(max-width:1200px) {

    .facility-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px;
    }

}

/* Mobile */

@media(max-width:767px) {

    .facility-heading h2 {
        font-size: 25px;
    }

    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .facility-icon {
        width: 85px;
        height: 85px;
    }

    .facility-icon img {
        width: 40px;
        height: 40px;
    }

    .facility-item h3 {
        font-size: 16px;
    }

}


/* Review Section  */
.review-sec {
    background: #fdfdfd;
    padding: 70px 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.review-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
}

.review-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
}

.review-header p {
    color: #64748b;
}

.review-btn {
    border: 1px solid var(--primary-color);
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--primary-color);
    transition: 0.3s;
}

.review-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

.reviewSlider .swiper-slide {
    height: auto;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user span {
    width: 42px;
    height: 42px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-user h4 {
    margin: 0;
    font-size: 15px;
}

.review-user small {
    font-size: 12px;
    color: #777;
}

.g-icon {
    width: 22px;
}

.review-stars {
    color: #f59e0b;
    margin: 10px 0;
}

.review-card p {
    font-size: 14px;
    color: #555;
}

.review-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.review-prev,
.review-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.review-prev:hover,
.review-next:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 991px) {
    .review-header {
        flex-direction: column;
        text-align: center;
    }

    .review-header h2 {
        font-size: 26px;
    }
}


/* =========================
   FAQ SECTION
========================= */

.faq-section {
       background: linear-gradient(90deg, #002F6C, #78797d);
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.faq-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* =========================
   HEADING
========================= */

.faq-heading {
    text-align: center;
    margin-bottom: 45px;
}

.faq-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-heading h2 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.faq-heading p {
    color: rgba(255, 255, 255, .85);
    font-size: 17px;
    margin: 0;
}

/* =========================
   FAQ WRAPPER
========================= */

.faq-wrapper {
    max-width: 1100px;
    margin: auto;
}

/* =========================
   FAQ CARD
========================= */

.faq-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, .08);

    transition: .3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, .12);
}

/* =========================
   QUESTION
========================= */

.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 19px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: .3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question span {
    font-size: 28px;
    font-weight: 700;
    color: #0d4ca1;
    transition: .3s;
    flex-shrink: 0;
}

/* =========================
   ANSWER
========================= */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    background: #fff;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 22px;

    font-size: 15px;
    line-height: 1.9;

    color: #475569;
}

/* =========================
   ACTIVE STATE
========================= */

.faq-item.active {
    box-shadow:
        0 15px 35px rgba(20, 184, 166, .15);
}

.faq-item.active .faq-question {
    background: var(--accent-color);
    color: #fff;
}

.faq-item.active .faq-question span {
    color: #fff;
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    background: #ffffff;
    border-top: 1px solid rgba(20, 184, 166, .15);
}

.faq-item.active .faq-answer p {
    padding-top: 20px;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .faq-section {
        padding: 70px 0;
    }

    .faq-heading h2 {
        font-size: 38px;
    }

    .faq-question {
        font-size: 17px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:767px) {

    .faq-section {
        padding: 60px 0;
    }

    .faq-heading {
        margin-bottom: 35px;
    }

    .faq-heading h2 {
        font-size: 30px;
    }

    .faq-heading p {
        font-size: 15px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 18px;
        line-height: 1.5;
    }

    .faq-question span {
        font-size: 22px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.8;
        padding: 0 18px 18px;
    }

}

/* =========================
   EXTRA SMALL
========================= */

@media(max-width:480px) {

    .faq-heading h2 {
        font-size: 26px;
    }

    .faq-tag {
        font-size: 13px;
        padding: 7px 16px;
    }

}


/*==================================
CONTACT MAP + FORM SECTION
==================================*/

.contact-map-section{
    padding:90px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

/* Heading */

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading span{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;

    background:#EAF2FF;
    color:#002F6C;

    font-size:14px;
    font-weight:700;

    margin-bottom:15px;
}

.section-heading h2{
    font-size:30px;
    font-weight:800;
    color:#002F6C;
    margin-bottom:15px;
}

.section-heading p{
    max-width:750px;
    margin:auto;

    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* Row */

.contact-map-section .row{
    align-items:stretch;
}

/* Map */

.map-box{
    height:500px;
    overflow:hidden;

    border-radius:24px;

    border:1px solid #E3EAF3;

    background:#fff;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

/* Form */

.appointment-form-box{
    background:#fff;

    padding:40px;

    height:100%;

    border-radius:24px;

    border:1px solid #E3EAF3;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}

/* Form Heading */

.form-head{
    margin-bottom:25px;
}

.form-head h3{
    font-size:30px;
    font-weight:800;
    color:#002F6C;
    margin-bottom:10px;
    text-align: center;
}

.form-head p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* Form Fields */

.appointment-form-box input,
.appointment-form-box select,
.appointment-form-box textarea{

    width:100%;

    height:58px;

    border:1px solid #DCE4ED;

    border-radius:14px;

    padding:0 18px;

    font-size:16px;

    color:#333;

    outline:none;

    transition:.3s;

    margin-bottom:15px;

    background:#fff;
}

.appointment-form-box textarea{
    height:120px;
    padding-top:16px;
    resize:none;
}

.appointment-form-box input:focus,
.appointment-form-box select:focus,
.appointment-form-box textarea:focus{

    border-color:#002F6C;

    box-shadow:
    0 0 0 4px rgba(0,47,108,.08);
}

/* Submit Button */

.appointment-form-box button,
.appointment-form-box .submit-btn,
.appointment-form-box input[type="submit"]{

    width:100%;

    height:58px;

    border:none;

    border-radius:14px;

    background:
    linear-gradient(
    90deg,
    #002F6C,
    #78797d
    );

    color:#fff;

    font-size:18px;

    font-weight:700;

    transition:.3s;
}

.appointment-form-box button:hover,
.appointment-form-box .submit-btn:hover,
.appointment-form-box input[type="submit"]:hover{

    transform:translateY(-2px);

    box-shadow:
    0 12px 25px rgba(0,47,108,.25);
}

/* Tablet */

@media(max-width:991px){

    .contact-map-section{
        padding:70px 0;
    }

    .section-heading h2{
        font-size:38px;
    }

    .map-box{
        height:350px;
    }

    .appointment-form-box{
        padding:30px;
    }

    .form-head h3{
        font-size:34px;
    }
}

/* Mobile */

@media(max-width:767px){

    .contact-map-section{
        padding:60px 0;
    }

    .section-heading{
        margin-bottom:35px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .section-heading p{
        font-size:15px;
    }

    .map-box{
        height:280px;
        border-radius:18px;
    }

    .appointment-form-box{
        padding:25px;
        border-radius:18px;
    }

    .form-head{
        text-align:center;
    }

    .form-head h3{
        font-size:28px;
    }

    .form-head p{
        font-size:15px;
    }

    .appointment-form-box input,
    .appointment-form-box select,
    .appointment-form-box textarea{
        height:54px;
        font-size:15px;
    }

    .appointment-form-box button,
    .appointment-form-box .submit-btn,
    .appointment-form-box input[type="submit"]{
        height:54px;
        font-size:16px;
    }
}

/* ===================================
FOOTER
=================================== */

.footer-area {
    background: #0b0b0b;
    padding: 70px 0 25px;
    color: #fff;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quick-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.quick-links span {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.quick-links a {
    color: #d6d6d6;
    font-size: 16px;
    transition: .3s;
}

.quick-links a:hover {
    color: #ffffff;
}

/* SOCIAL */

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #002050;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: .3s;
}

.footer-social a:hover {
    background: #002050;
    color: #fff;
    transform: translateY(-4px);
}

/* DIVIDER */

.footer-divider {
    border-color: rgba(255, 255, 255, .08);
    margin-bottom: 50px;
}

/* LOGO */

.footer-logo img {
    max-width: 250px;
    margin-bottom: 25px;
}

.footer-about {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 2;
    margin: 0;
}

/* TITLES */

.footer-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #1d5db3;
}

/* LINKS */

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.7;
    transition: .3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

/* CONTACT */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d8d8d8;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact i {
    color: #1d5db3;
    font-size: 18px;
    margin-top: 4px;
}

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 40px;
    padding-top: 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom div {
    color: #d6d6d6;
    font-size: 15px;
}

.developer-text {
    text-align: center;
}

.developer-text a {
    color: #5d9cff;
    font-weight: 700;
    text-decoration: none;
}

.developer-text a:hover {
    color: #fff;
}

.privacy-link {
    color: #d6d6d6;
}

.privacy-link:hover {
    color: #fff;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .footer-main {
        row-gap: 40px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-title {
        margin-top: 10px;
    }

}

@media(max-width:767px) {

    .footer-area {
        padding: 50px 0 20px;
    }

    .quick-links {
        gap: 12px;
    }

    .quick-links span {
        width: 100%;
    }

    .footer-social {
        margin-top: 10px;
    }

    .footer-logo img {
        max-width: 200px;
    }

    .footer-about {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-contact li {
        font-size: 14px;
    }

}

/* ================= Mdal Form ================= */

.consultation-modal .modal-dialog {
    max-width: 500px;
}

.consultation-modal .modal-content {
    border-radius: 26px;
    padding: 35px 32px;
    border: none;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.modal-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* FORCE ONE COLUMN LAYOUT */
.modal-form-fix .row {
    display: block !important;
}

.modal-form-fix [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
}

.modal-form-fix input,
.modal-form-fix select,
.modal-form-fix textarea {
    width: 100% !important;
    height: 50px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px !important;
    background: #f8f9fb;
    transition: all 0.2s ease;
}

.modal-form-fix input:focus,
.modal-form-fix select:focus {
    border-color: #3d6de0;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(61, 109, 224, 0.1);
}

.modal-form-fix select {
    height: 52px;
}

.modal-form-fix button,
.modal-form-fix input[type="submit"] {
    width: 100%;
    border: none;
    height: 52px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
      background: linear-gradient(90deg, #002F6C, #78797d);
    color: #fff;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.modal-form-fix button:hover,
.modal-form-fix input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 109, 224, 0.3);
    background: var(--primary-color)
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .consultation-modal .modal-content {
        padding: 25px 20px;
    }
}



/*==================================
SERVICE BANNER
==================================*/

.service-banner-section {
    padding: 40px 0;
    background: linear-gradient(90deg, #002F6C, #78797d);
    position: relative;
    overflow: hidden;
}

.service-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(rgba(255, 255, 255, .10) 1px,
            transparent 1px);

    background-size: 30px 30px;

    opacity: .15;
}

.service-banner-content,
.service-form-box {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */

.breadcrumb-wrap {
    margin-bottom: 25px;
    color: #fff;
    font-size: 15px;
}

.breadcrumb-wrap a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-wrap span {
    margin: 0 8px;
}

/* Badge */

.service-badge {
    display: inline-block;

    background: rgba(255, 255, 255, .12);

    border: 1px solid rgba(255, 255, 255, .15);

    color: #fff;

    padding: 10px 22px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 25px;
}

/* Heading */

.service-banner-content h1 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.service-banner-content h1 span {
    display: block;
    color: #ffffff;
}

/* Paragraph */

.service-banner-content p {
    color: rgba(255, 255, 255, .92);

    font-size: 18px;
    line-height: 1.9;

    margin-bottom: 18px;

    max-width: 95%;
}

/* Highlights */
.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    padding: 12px 18px;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;
}

.highlight-item i {
    margin-right: 8px;
}

/* Form Box */
.service-form-box {
    background: #fff;

    padding: 35px;

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .15);
}

.form-title {
    margin-bottom: 20px;
}

.form-title h3 {
    font-size: 30px;
    font-weight: 800;
    color: #002F6C;
    margin-bottom: 10px;
}

.form-title p {
    color: #666;
    line-height: 1.7;
}

/* Form Fields */

.service-form-box input,
.service-form-box select,
.service-form-box textarea {
    width: 100%;
    height: 55px;

    border: 1px solid #d9e3ee;

    border-radius: 12px;

    padding: 0 18px;

    margin-bottom: 15px;

    outline: none;
}

.service-form-box textarea {
    height: 120px;
    padding-top: 15px;
}

.service-form-box button,
.service-form-box .submit-btn,
.service-form-box input[type="submit"] {

    width: 100%;
    height: 56px;

    border: none;

    border-radius: 12px;

    background: linear-gradient(90deg,
            #002F6C,
            #78797d);

    color: #fff;

    font-size: 17px;
    font-weight: 700;
}

/* Responsive */

@media(max-width:991px) {

    .service-banner-section {
        padding: 70px 0;
    }

    .service-form-box {
        margin-top: 35px;
    }

    .service-banner-content h1 {
        font-size: 42px;
    }

    .service-banner-content p {
        font-size: 16px;
    }
}

@media(max-width:576px) {

    .service-banner-section {
        padding: 55px 0;
    }

    .breadcrumb-wrap {
        font-size: 13px;
    }

    .service-banner-content h1 {
        font-size: 34px;
    }

    .service-highlights {
        flex-direction: column;
    }

    .form-title h3 {
        font-size: 28px;
    }

    .service-form-box {
        padding: 25px;
    }
}

/*==================================
WHAT IS NECK PAIN
==================================*/

.neck-pain-info-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.neck-info-content {
    padding-right: 10px;
}

/* Badge */

.section-badge {
    display: inline-block;

    padding: 10px 22px;

    background: #EAF2FF;

    color: #002F6C;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 20px;
}

.neck-info-content h2 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    color: #002F6C;
    margin-bottom: 25px;
}

/* Paragraph */

.neck-info-content p {
    color: #444;

    font-size: 18px;

    line-height: 2;

    margin-bottom: 18px;
}

/* Features */

.neck-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;

    background: #F8FAFD;

    border: 1px solid #E6EDF7;

    padding: 14px 18px;

    border-radius: 12px;

    color: #002F6C;

    font-weight: 600;
}

.feature-item i {
    color: #002F6C;
}

/* Image */

.neck-info-image {
    position: relative;
    text-align: right;
}

.image-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(90deg, #002F6C, #78797d);
    border-radius: 80px;
    left: 0px;
    top: -50px;
    opacity: .15;
}

.neck-info-image img {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 600px;

    border-radius: 120px 20px 120px 20px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .12);
}

/*==================================
TABLET
==================================*/

@media(max-width:991px) {

    .neck-pain-info-section {
        padding: 70px 0;
    }

    .neck-info-content {
        padding-right: 0;
        margin-top: 40px;
    }

    .neck-info-content h2 {
        font-size: 38px;
    }

    .neck-info-content p {
        font-size: 16px;
    }

    .neck-info-image {
        text-align: center;
    }

    .neck-info-image img {
        max-width: 100%;
    }

    .image-shape {
        display: none;
    }
}

/*==================================
MOBILE
==================================*/

@media(max-width:576px) {

    .neck-pain-info-section {
        padding: 55px 0;
    }

    .neck-info-content {
        margin-top: 30px;
        text-align: left;
    }

    .neck-info-content h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .neck-info-content p {
        font-size: 15px;
        line-height: 1.9;
    }

    .section-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .neck-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        font-size: 14px;
    }

    .neck-info-image img {
        border-radius: 40px 12px 40px 12px;
    }
}

/*==================================
SYMPTOMS SECTION
==================================*/

.neck-symptoms-section {
    padding: 60px 0;
    background: #F7FAFF;
    position: relative;
    overflow: hidden;
}

.symptoms-heading {
    text-align: center;
    margin-bottom: 35px;
}

.symptoms-heading span {
    display: inline-block;

    padding: 10px 22px;

    background: #EAF2FF;

    color: #002F6C;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 15px;
}

.symptoms-heading h2 {
    font-size: 40px;
    font-weight: 800;
    color: #002F6C;
    margin-bottom: 15px;
}

.symptoms-heading p {
    max-width: 700px;
    margin: auto;

    color: #666;

    font-size: 18px;
    line-height: 1.8;
}

/* Card */
.symptom-card {
    background: #fff;
    height: 100%;
    padding: 20px 28px;
    border-radius: 20px;
    border: 1px solid #E5ECF5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .35s;
}


.symptom-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 35px rgba(0, 0, 0, .08);
}

.symptom-icon {
    width: 70px;
    height: 70px;
    background: #EAF2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
}


.symptom-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Title */
.symptom-card h3 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #002F6C;
    margin-bottom: 0px;
}

/* Description */

.symptom-card p {
    color: #555;

    font-size: 15px;
    line-height: 1.8;

    margin: 0;
}

/* Responsive */

@media(max-width:991px) {

    .neck-symptoms-section {
        padding: 70px 0;
    }

    .symptoms-heading h2 {
        font-size: 38px;
    }

    .symptom-card {
        padding: 28px 22px;
    }
}

@media(max-width:576px) {

    .neck-symptoms-section {
        padding: 55px 0;
    }

    .symptoms-heading {
        margin-bottom: 40px;
    }

    .symptoms-heading h2 {
        font-size: 30px;
    }

    .symptoms-heading p {
        font-size: 15px;
    }

    .symptom-icon {
        width: 70px;
        height: 70px;
    }

    .symptom-icon img {
        width: 34px;
        height: 34px;
    }

    .symptom-card h3 {
        font-size: 18px;
    }

    .symptom-card p {
        font-size: 14px;
    }
}

/*==================================
COMMON CAUSES OF NECK PAIN
==================================*/

.neck-causes-section{
    padding:60px 0;
    background:#ffffff;
}

.causes-heading{
    text-align:center;
    margin-bottom:60px;
}

.causes-heading span{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;

    background:#EAF2FF;
    color:#002F6C;

    font-size:14px;
    font-weight:700;

    margin-bottom:15px;
}

.causes-heading h2 {
    color: #002F6C;
    font-size: 40px;
    font-weight: 800;
    margin: 0;
}

/* Card */

.cause-card{
    height:100%;

    display:flex;
    align-items:flex-start;
    gap:22px;

    background:#fff;

    border:1px solid #DDE7F5;

    border-radius:24px;

    padding:30px;

    transition:.35s;

    box-shadow:
    0 8px 25px rgba(0,0,0,.05);
}

.cause-card:hover{
    transform:translateY(-6px);

    border-color:#002F6C;

    box-shadow:
    0 15px 35px rgba(0,47,108,.10);
}

/* Icon */

.cause-icon{
    width:90px;
    min-width:90px;
    height:90px;

    border-radius:18px;

    background:#EAF2FF;

    display:flex;
    align-items:center;
    justify-content:center;
}

.cause-icon img{
    width:45px;
    height:45px;
    object-fit:contain;
}

.cause-content h3 {
    color: #002F6C;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cause-content p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */

@media(max-width:991px){

    .neck-causes-section{
        padding:70px 0;
    }

    .causes-heading h2{
        font-size:38px;
    }

    .cause-card{
        padding:25px;
    }

    .cause-content h3{
        font-size:22px;
    }

    .cause-content p{
        font-size:16px;
    }
}

@media(max-width:576px){

    .neck-causes-section{
        padding:55px 0;
    }

    .causes-heading{
        margin-bottom:40px;
    }

    .causes-heading h2{
        font-size:30px;
    }

    .cause-card{
        flex-direction:column;
        text-align:center;
        align-items:center;
        padding:22px;
    }

    .cause-icon{
        width:80px;
        min-width:80px;
        height:80px;
    }

    .cause-icon img{
        width:40px;
        height:40px;
    }

    .cause-content h3{
        font-size:20px;
    }

    .cause-content p{
        font-size:15px;
        line-height:1.7;
    }
}

/*=================================
DIAGNOSIS SECTION
=================================*/

.diagnosis-section{
    padding:60px 0;
    background:#F7FAFF;
}

.diagnosis-top{
    max-width:1050px;
    margin:0 auto 70px;
    text-align:center;
}

.diagnosis-badge{
    display:inline-block;
    background:#EAF2FF;
    color:#002F6C;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.diagnosis-top h2{
    color:#002F6C;
    font-size:40px;
    font-weight:800;

    margin-bottom:25px;
}

.diagnosis-top p {
    color: #444;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 10px;
}

/* Image */

.diagnosis-image img{
    width:100%;
    border-radius:30px;

    display:block;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

/* Benefits */

.benefits-content{
    padding-left:18px;
}

.benefits-content h3 {
    color: #002F6C;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}


.benefits-content ul{
    margin:0;
    padding:0;

    list-style:none;
}

.benefits-content ul li{
    position:relative;

    padding-left:38px;

    margin-bottom:22px;

    color:#444;

    font-size:18px;
    line-height:1.8;
}

.benefits-content ul li::before{
    content:"\f00c";

    font-family:"Font Awesome 6 Free";
    font-weight:900;

    position:absolute;

    left:0;
    top:5px;

    width:24px;
    height:24px;

    border-radius:50%;

    background:#002F6C;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:11px;
}

/* Tablet */

@media(max-width:991px){

    .diagnosis-section{
        padding:70px 0;
    }

    .diagnosis-top{
        margin-bottom:50px;
    }

    .diagnosis-top h2{
        font-size:42px;
    }

    .benefits-content{
        padding-left:0;
    }

    .benefits-content h3{
        font-size:32px;
        margin-top:10px;
    }
}

/* Mobile */

@media(max-width:576px){

    .diagnosis-section{
        padding:55px 0;
    }

    .diagnosis-top{
        text-align:left;
        margin-bottom:35px;
    }

    .diagnosis-top h2{
        font-size:32px;
        line-height:1.3;
    }

    .diagnosis-top p{
        font-size:16px;
    }

    .benefits-content h3{
        font-size:26px;
    }

    .benefits-content ul li{
        font-size:15px;
        padding-left:34px;
        margin-bottom:18px;
    }
}

/*=================================
WHY CHOOSE SECTION
=================================*/

.why-choose-section{
    padding:60px 0;
    background:#ffffff;
}

.why-choose-box{

    background:linear-gradient(
        90deg,
        rgb(0, 47, 108),
        rgb(120, 121, 125)
    );

    border-radius:30px;

    padding:70px;

    position:relative;

    overflow:hidden;
}

.why-choose-box::before{
    content:'';

    position:absolute;

    width:300px;
    height:300px;

    right:-120px;
    top:-120px;

    background:rgba(255,255,255,.08);

    border-radius:50%;
}

.why-badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#fff;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;
    font-weight:700;

    margin-bottom:20px;

    backdrop-filter:blur(10px);
}

.why-choose-content h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-choose-content p{

    color:rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

    max-width:1100px;
}

.why-list{

    list-style:none;

    padding:0;
    margin:0;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px 30px;
}

.why-list li{

    display:flex;
    align-items:flex-start;

    gap:14px;

    color:#fff;

    font-size:17px;
    line-height:1.7;

    font-weight:500;

    background:rgba(255,255,255,.08);

    padding:18px 20px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.12);
}

.why-list li i{

    min-width:32px;
    width:32px;
    height:32px;

    border-radius:50%;

    background:#fff;

    color:#002F6C;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:13px;

    margin-top:2px;
}

/* Tablet */

@media(max-width:991px){

    .why-choose-section{
        padding:70px 0;
    }

    .why-choose-box{
        padding:45px;
    }

    .why-choose-content h2{
        font-size:36px;
    }

    .why-list{
        grid-template-columns:1fr;
    }
}

/* Mobile */

@media(max-width:576px){

    .why-choose-box{
        padding:30px 22px;
        border-radius:20px;
    }

    .why-badge{
        font-size:13px;
    }

    .why-choose-content h2{
        font-size:28px;
    }

    .why-choose-content p{
        font-size:16px;
        line-height:1.8;
    }

    .why-list li{
        font-size:15px;
        padding:15px;
    }

    .why-list li i{
        width:28px;
        height:28px;
        min-width:28px;
        font-size:11px;
    }
}


/*=========================================
ROHAN PROFILE SECTION
=========================================*/

.rohan-profile-section {
    padding: 0;
    overflow: hidden;
}

.rohan-profile-wrapper {
    background: linear-gradient(90deg, #002F6C, #78797d);
    position: relative;
    overflow: hidden;
    padding: 60px 60px;
}

/* Circle Shape */

.rohan-profile-wrapper::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.rohan-profile-wrapper .row {
    --bs-gutter-x: 50px;
    align-items: center;
}

/*=========================================
LEFT CONTENT
=========================================*/

.rohan-profile-content {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.rohan-profile-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 35px;
}

.rohan-profile-content p {
    color: #fff;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
    font-weight: 400;
}

/*=========================================
BUTTON
=========================================*/

.rohan-profile-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 28px 10px 10px;
    background: #fff;
    color: #002F6C;
    text-decoration: none;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    transition: .3s;
}

.rohan-profile-btn:hover {
    color: #002F6C;
    transform: translateY(-3px);
}

.rohan-profile-btn i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1d4f93;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.rohan-profile-btn span {
    margin-left: 5px;
}

/*=========================================
RIGHT IMAGE
=========================================*/

.rohan-profile-image-box {
    position: relative;
    height: 400px;
}

.rohan-profile-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

/*=========================================
STAT CARDS
=========================================*/

.rohan-profile-stat {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 8px 20px;
    min-width: 190px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    z-index: 5;
}

.rohan-profile-stat h4 {
    font-size: 25px;
    font-weight: 800;
    color: #002F6C;
    margin-bottom: 6px;
    line-height: 1;
}

.rohan-profile-stat p {
    margin: 0;
    color: #444;
    font-size: 16px;
    line-height: 1.5;
}

/* Years Experience */

.stat-exp {
    top: 55px;
    left: -70px;
}

/* Patients */

.stat-patient {
    bottom: -25px;
    left: 90px;
}

/* Advanced */

.stat-procedure {
    right: -45px;
    bottom: 110px;
}

.stat-procedure h4 {
    font-size: 25px;
}

/*=========================================
LARGE SCREEN
=========================================*/

@media(max-width:1400px) {

    .rohan-profile-content h2 {
        font-size: 52px;
    }

    .rohan-profile-content p {
        font-size: 17px;
    }

    .rohan-profile-wrapper .row {
        --bs-gutter-x: 60px;
    }
}

/*=========================================
LAPTOP
=========================================*/

@media(max-width:1199px) {

    .rohan-profile-content h2 {
        font-size: 46px;
    }

    .rohan-profile-content p {
        font-size: 16px;
    }

    .rohan-profile-image-box {
        height: 500px;
    }

    .stat-exp {
        left: -40px;
    }

    .stat-procedure {
        right: -25px;
    }
}

/*=========================================
TABLET
=========================================*/

@media(max-width:991px) {

    .rohan-profile-wrapper {
        padding: 60px 30px;
    }

    .rohan-profile-wrapper .row {
        --bs-gutter-x: 0;
    }

    .rohan-profile-content {
        text-align: center;
        margin-bottom: 40px;
        padding-right: 0;
    }

    .rohan-profile-content h2 {
        font-size: 42px;
    }

    .rohan-profile-image-box {
        height: 500px;
        max-width: 650px;
        margin: auto;
    }

    .stat-exp {
        top: 20px;
        left: 20px;
    }

    .stat-patient {
        left: 20px;
        bottom: 20px;
    }

    .stat-procedure {
        right: 20px;
        bottom: 120px;
    }
}

/*=========================================
MOBILE
=========================================*/

@media(max-width:767px) {

    .rohan-profile-wrapper {
        padding: 40px 20px;
    }

    .rohan-profile-content {
        text-align: left;
        margin-bottom: 30px;
    }

    .rohan-profile-content h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .rohan-profile-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .rohan-profile-btn {
        width: 100%;
        justify-content: center;
        font-size: 16px;
    }

    .rohan-profile-image-box {
        height: auto;
    }

    .rohan-profile-image-box img {
        height: auto;
        border-radius: 18px;
    }

    .rohan-profile-stat {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 280px;
        margin: 15px auto;
    }

    .rohan-profile-stat h4 {
        font-size: 28px;
    }

    .rohan-profile-stat p {
        font-size: 14px;
    }
}


/*=====================================
MISSION VISION SECTION
=====================================*/

.mission-vision-section {
    background: #f8fbff;
    padding: 60px 0;
    overflow: hidden;
}

.mission-vision-image {
    position: relative;
}

.mission-vision-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.mission-vision-content {
    padding-left: 30px;
}

.mission-block {
    margin-bottom: 20px;
}

.mission-block h2,
.vision-block h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 10px;
}

.mission-block p,
.vision-block p {
    font-size: 17px;
    line-height: 1.9;
    color: #222;
    margin: 0;
}

/*========================
LAPTOP
========================*/

@media(max-width:1400px) {

    .mission-block h2,
    .vision-block h2 {
        font-size: 48px;
    }

    .mission-block p,
    .vision-block p {
        font-size: 20px;
    }
}

/*========================
TABLET
========================*/

@media(max-width:991px) {

    .mission-vision-section {
        padding: 70px 0;
    }

    .mission-vision-image {
        margin-bottom: 40px;
    }

    .mission-vision-image img {
        height: 500px;
    }

    .mission-vision-content {
        padding-left: 0;
    }

    .mission-block {
        margin-bottom: 40px;
    }

    .mission-block h2,
    .vision-block h2 {
        font-size: 42px;
    }

    .mission-block p,
    .vision-block p {
        font-size: 18px;
        line-height: 1.8;
    }
}

/*========================
MOBILE
========================*/

@media(max-width:767px) {

    .mission-vision-section {
        padding: 50px 0;
    }

    .mission-vision-image img {
        height: auto;
        border-radius: 20px;
    }

    .mission-block {
        margin-bottom: 30px;
    }

    .mission-block h2,
    .vision-block h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .mission-block p,
    .vision-block p {
        font-size: 16px;
        line-height: 1.8;
    }
}

/*=====================================
ROHAN EXPERTISE SECTION
=====================================*/

.rohan-expertise-section {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.rohan-expertise-content h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rohan-expertise-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    max-width: 850px;
}

.rohan-expertise-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.expertise-tags a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1.5px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: .3s;
    background: #fff;
}

.expertise-tags a:hover {
    background: linear-gradient(90deg, #002F6C, #78797d);
    color: #fff;
}

.rohan-expertise-image {
    position: relative;
}

.rohan-expertise-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

/*========================
LAPTOP
========================*/

@media(max-width:1400px) {

    .rohan-expertise-content h2 {
        font-size: 48px;
    }

    .rohan-expertise-content h3 {
        font-size: 34px;
    }

    .rohan-expertise-content p {
        font-size: 19px;
    }

    .rohan-expertise-image img {
        height: 620px;
    }
}

/*========================
TABLET
========================*/

@media(max-width:991px) {

    .rohan-expertise-section {
        padding: 80px 0;
    }

    .rohan-expertise-content h2 {
        font-size: 42px;
    }

    .rohan-expertise-content h3 {
        font-size: 30px;
    }

    .rohan-expertise-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .rohan-expertise-image {
        margin-top: 20px;
    }

    .rohan-expertise-image img {
        height: 550px;
    }

    .expertise-tags {
        gap: 14px;
    }

    .expertise-tags a {
        font-size: 16px;
        padding: 12px 18px;
    }
}

/*========================
MOBILE
========================*/

@media(max-width:767px) {

    .rohan-expertise-section {
        padding: 60px 0;
    }

    .rohan-expertise-content h2 {
        font-size: 34px;
    }

    .rohan-expertise-content h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .rohan-expertise-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .expertise-tags {
        gap: 10px;
    }

    .expertise-tags a {
        width: 100%;
        justify-content: flex-start;
        font-size: 15px;
        padding: 12px 16px;
    }

    .rohan-expertise-image img {
        height: auto;
        border-radius: 20px;
    }
}


/*=====================================
WHY PATIENTS TRUST DR ROHAN SINHA
=====================================*/

.rohan-trust-section {
    padding: 60px 0;
    background: linear-gradient(90deg, #002F6C, #78797d);
    overflow: hidden;
}

.rohan-trust-content {
    padding-right: 60px;
}

.rohan-trust-content h2 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.rohan-trust-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, .92);
    line-height: 1.9;
    margin-bottom: 35px;
}

.rohan-trust-content h3 {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.rohan-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rohan-trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}


.rohan-trust-list li i {
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #002F6C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 2px;
}

/*=====================================
FORM BOX
=====================================*/

.rohan-trust-form-box {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .15);
}

/* FORM */

.rohan-trust-form-box form {
    width: 100%;
}

.rohan-trust-form-box .form-group {
    margin-bottom: 20px;
}

.rohan-trust-form-box label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.rohan-trust-form-box input,
.rohan-trust-form-box select,
.rohan-trust-form-box textarea {
    width: 100%;
    height: 60px;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    background: #fff;
    padding: 0 18px;
    font-size: 16px;
    color: #333;
    outline: none;
    transition: .3s;
}

.rohan-trust-form-box textarea {
    height: 120px;
    resize: none;
    padding: 15px 18px;
}

.rohan-trust-form-box input:focus,
.rohan-trust-form-box select:focus,
.rohan-trust-form-box textarea:focus {
    border-color: #002F6C;
    box-shadow: 0 0 0 4px rgba(0, 47, 108, .08);
}

.rohan-trust-form-box select {
    cursor: pointer;
}

.rohan-trust-form-box button,
.rohan-trust-form-box .btn,
.rohan-trust-form-box .submit-btn,
.rohan-trust-form-box input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 58px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #002F6C, #78797d);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
}

.rohan-trust-form-box button:hover,
.rohan-trust-form-box .btn:hover,
.rohan-trust-form-box .submit-btn:hover,
.rohan-trust-form-box input[type="submit"]:hover {
    transform: translateY(-2px);
}

/* Bootstrap row support */

.rohan-trust-form-box .row {
    margin-left: -10px;
    margin-right: -10px;
}

.rohan-trust-form-box .row>div {
    padding-left: 10px;
    padding-right: 10px;
}

/*=====================================
LAPTOP
=====================================*/

@media(max-width:1400px) {

    .rohan-trust-content h2 {
        font-size: 46px;
    }

    .rohan-trust-content p {
        font-size: 20px;
    }

    .rohan-trust-list li {
        font-size: 18px;
    }
}

/*=====================================
TABLET
=====================================*/

@media(max-width:991px) {

    .rohan-trust-section {
        padding: 80px 0;
    }

    .rohan-trust-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .rohan-trust-content h2 {
        font-size: 40px;
    }

    .rohan-trust-content p {
        font-size: 18px;
    }

    .rohan-trust-content h3 {
        font-size: 28px;
    }

    .rohan-trust-list li {
        font-size: 17px;
    }

    .rohan-trust-form-box {
        padding: 30px;
    }
}

/*=====================================
MOBILE
=====================================*/

@media(max-width:767px) {

    .rohan-trust-section {
        padding: 60px 0;
    }

    .rohan-trust-content h2 {
        font-size: 32px;
    }

    .rohan-trust-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .rohan-trust-content h3 {
        font-size: 24px;
    }

    .rohan-trust-list li {
        font-size: 15px;
        gap: 12px;
        margin-bottom: 15px;
    }

    .rohan-trust-list li i {
        width: 32px;
        min-width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .rohan-trust-form-box {
        padding: 20px;
        border-radius: 20px;
    }

    .rohan-trust-form-box input,
    .rohan-trust-form-box select,
    .rohan-trust-form-box textarea {
        height: 54px;
        font-size: 15px;
    }

    .rohan-trust-form-box textarea {
        height: 100px;
    }

    .rohan-trust-form-box button,
    .rohan-trust-form-box .btn,
    .rohan-trust-form-box .submit-btn,
    .rohan-trust-form-box input[type="submit"] {
        width: 100%;
        min-width: 100%;
    }
}

.rohan-form-heading {
    text-align: center;
    margin-bottom: 30px;
}

.rohan-form-heading h3 {
    font-size: 36px;
    font-weight: 700;
    color: #002F6C;
    margin-bottom: 10px;
}

.rohan-form-heading p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

@media(max-width:767px) {

    .rohan-form-heading h3 {
        font-size: 28px;
    }

    .rohan-form-heading p {
        font-size: 14px;
    }
}



.custom-select-wrap {
    position: relative;
    width: 100%;
}

.custom-select-wrap .form-select {
    width: 100%;
    height: 60px;
    border: 1px solid #d9d9d9;
    border-radius: 18px;
    padding: 0 55px 0 20px;
    font-size: 18px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /*background: #fff;*/
    cursor: pointer;
}

.custom-select-wrap i {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #fff;
    pointer-events: none;
    line-height: 1;
}


/*=================================
CARE & TECHNOLOGY SECTION
=================================*/

.rohan-care-tech-section {
    padding: 80px 0;
    background: #ffffff;
}

/* LEFT CARD */

.rohan-care-card {
    background: rgb(255, 255, 255);
    border-radius: 30px;
    padding: 55px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 15px 40px;
}

.rohan-care-card h2 {
    font-size: 25px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.rohan-care-card p {
    font-size: 17px;
    line-height: 1.9;
    color: #2c2c2c;
    margin-bottom: 25px;
}

/* RIGHT CARD */

.rohan-tech-card {
    background: linear-gradient(90deg, #002F6C, #78797d);
    border-radius: 30px;
    padding: 55px;
    height: 100%;
}

.rohan-tech-card h2 {
    color: #fff;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.tech-intro {
    color: #fff;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* LIST BOX */

.tech-item {
    background: rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 15px 19px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.tech-item i {
    width: 30px;
    height: 30px;
    min-width: 30px;

    background: #fff;
    color: var(--primary-color);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* TABLET */

@media(max-width:991px) {

    .rohan-care-card,
    .rohan-tech-card {
        padding: 40px;
    }

    .rohan-care-card h2,
    .rohan-tech-card h2 {
        font-size: 38px;
    }

    .rohan-care-card p,
    .tech-intro {
        font-size: 18px;
    }

    .tech-item {
        font-size: 18px;
    }
}

/* MOBILE */

@media(max-width:767px) {

    .rohan-care-tech-section {
        padding: 50px 0;
    }

    .rohan-care-card,
    .rohan-tech-card {
        padding: 25px;
        border-radius: 20px;
    }

    .rohan-care-card h2,
    .rohan-tech-card h2 {
        font-size: 28px;
    }

    .rohan-care-card p,
    .tech-intro {
        font-size: 15px;
        line-height: 1.8;
    }

    .tech-item {
        font-size: 15px;
        padding: 15px;
    }

    .tech-item i {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }
}



/*====================================
MEDIA BANNER SECTION
====================================*/

.media-banner-section {
    position: relative;
    height: 350px;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.media-banner-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(11, 90, 143, 0.65) 0%,
            rgba(24, 79, 150, 0.55) 35%,
            rgba(33, 95, 168, 0.45) 70%,
            rgba(67, 197, 196, 0.35) 100%);

    z-index: 1;
}

.media-banner-content {
    position: relative;
    z-index: 2;

    text-align: center;
}

.media-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 5px 14px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;

    margin-bottom: 25px;
}

.media-breadcrumb a {
    text-decoration: none;
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    transition: 0.3s ease;
}

.media-breadcrumb a:hover {
    color: #43c5c4;
}

.media-breadcrumb span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.media-banner-content h1 {
    color: #fff;

    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;

    margin: 0;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.media-banner-content h1::after {
    content: "";

    display: block;

    width: 120px;
    height: 4px;

    margin: 18px auto 0;

    border-radius: 50px;

    background: linear-gradient(90deg,
            #ffffff,
            #43c5c4);
}

/*====================================
TABLET
====================================*/

@media (max-width: 991px) {

    .media-banner-section {
        height: 360px;
    }

    .media-banner-content h1 {
        font-size: 52px;
    }

    .media-breadcrumb {
        margin-bottom: 20px;
    }
}

/*====================================
MOBILE
====================================*/

@media (max-width: 767px) {

    .media-banner-section {
        height: 280px;
        padding: 20px;
    }

    .media-banner-content h1 {
        font-size: 34px;
    }

    .media-banner-content h1::after {
        width: 80px;
        margin-top: 12px;
    }

    .media-breadcrumb {
        padding: 8px 16px;
        gap: 8px;
        margin-bottom: 15px;
    }

    .media-breadcrumb a,
    .media-breadcrumb span {
        font-size: 13px;
    }
}

/*====================================
SMALL MOBILE
====================================*/

@media (max-width: 480px) {

    .media-banner-section {
        height: 240px;
    }

    .media-banner-content h1 {
        font-size: 28px;
    }

    .media-breadcrumb {
        padding: 7px 14px;
    }

    .media-breadcrumb a,
    .media-breadcrumb span {
        font-size: 12px;
    }
}

/*=================================
FEATURED MEDIA SECTION
=================================*/

.featured-media-section {
    padding: 80px 0;
    background: #f8fbff;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading span {
    display: inline-block;
    padding: 8px 18px;

    background: rgba(67, 197, 196, .12);
    color: #184f96;

    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;

    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #184f96;

    margin-bottom: 15px;
}

.section-heading p {
    max-width: 700px;
    margin: auto;

    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.media-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.media-logo-card {
    background: #fff;

    border-radius: 20px;

    padding: 25px;

    min-height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    border: 1px solid #e7edf5;

    transition: .35s ease;

    box-shadow: 0 5px 25px rgba(0, 0, 0, .05);
}

.media-logo-card:hover {
    transform: translateY(-8px);

    border-color: #43c5c4;

    box-shadow: 0 15px 40px rgba(24, 79, 150, .15);
}

.media-logo-card img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
}

/*=========================
TABLET
=========================*/

@media(max-width:991px) {

    .media-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2 {
        font-size: 34px;
    }
}

/*=========================
MOBILE
=========================*/

@media(max-width:767px) {

    .featured-media-section {
        padding: 60px 0;
    }

    .media-logo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .media-logo-card {
        min-height: 140px;
        padding: 20px;
    }

    .media-logo-card img {
        max-height: 90px;
    }
}


/*=================================
NEWS GALLERY
=================================*/

.news-gallery-section {
    padding: 80px 0;
    background: #f8fbff;
}

.news-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.news-item {
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;

    background: #fff;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

    transition: .35s ease;
}

.news-item:hover {
    transform: translateY(-8px);
}

.news-item img {
    width: 100%;
    height: 320px;

    object-fit: cover;
    display: block;

    transition: .4s ease;
}

.news-item:hover img {
    transform: scale(1.05);
}

/*=================================
MODAL
=================================*/

.news-modal {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, .92);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 99999;

    padding: 40px;
}

.news-modal.active {
    display: flex;
}

.news-modal img {
    max-width: 90%;
    max-height: 90vh;

    border-radius: 12px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.news-close {
    position: absolute;

    top: 20px;
    right: 30px;

    color: #fff;

    font-size: 55px;
    font-weight: 700;

    cursor: pointer;

    line-height: 1;
}

/*=================================
TABLET
=================================*/

@media(max-width:991px) {

    .news-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-item img {
        height: 280px;
    }
}

/*=================================
MOBILE
=================================*/

@media(max-width:767px) {

    .news-gallery-section {
        padding: 60px 0;
    }

    .news-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-item img {
        height: auto;
    }

    .news-modal {
        padding: 20px;
    }

    .news-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}


.gallery-section {
    padding: 70px 0;
    background: #f5f7fb;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 350px;
}

.gallery-item:hover {
    transform: translateY(-6px);
}

.gallery-item img {
    width: 100%;
    display: block;
    height: 350px;
    object-fit: cover;

    border-radius: 20px;
}


.gallery-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    justify-content: center;
    align-items: center;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 15px;
    object-fit: contain;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
}

.gallery-close:hover {
    opacity: .8;
}

/* Tablet */
@media(max-width:991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 300px;
    }
}

/* Mobile */
@media(max-width:576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item img {
        height: 280px;
    }
}



/* =========================
   BLOG PAGE SECTION
========================= */

.blog-page-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 35px;
    align-items: start;
}

/* =========================
   BLOG GRID
========================= */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    border: 1px solid #e8edf5;
    transition: .4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(29, 79, 163, .18);
}

/* =========================
   IMAGE
========================= */

.blog-image {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.blog-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #fff;
    display: block;
    transition: .5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.03);
}

/* =========================
   TAG
========================= */

.blog-tag {
    position: absolute;
    top: 18px;
    left: 18px;

    background: linear-gradient(90deg,
            #1d4fa3,
            #45c4c6);

    color: #fff;
    padding: 10px 18px;
    border-radius: 40px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;

    z-index: 2;
}


.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 22px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;
    color: #1d4fa3;

    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;

    transition: .3s ease;
}

.read-more:hover {
    color: #45c4c6;
}

.read-more i {
    font-size: 16px;
}

/* =========================
   SIDEBAR
========================= */

.category-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid #e8edf5;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

    position: sticky;
    top: 120px;
}

.category-card h3 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.category-card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-card li {
    border-bottom: 1px solid #edf2f7;
}

.category-card li:last-child {
    border-bottom: none;
}

.category-card a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 0;

    color: #475569;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;

    transition: .3s ease;
}

.category-card a:hover {
    color: #1d4fa3;
    padding-left: 10px;
}

.category-card a::after {
    content: "›";
    font-size: 24px;
    color: #45c4c6;
    font-weight: 700;
}

/* =========================
   PAGINATION
========================= */

.blog-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.blog-pagination a,
.blog-pagination span {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #fff;
    color: #1d4fa3;

    text-decoration: none;
    font-weight: 700;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);

    transition: .3s;
}

.blog-pagination a:hover,
.blog-pagination .active {
    background: linear-gradient(90deg,
            #1d4fa3,
            #45c4c6);
    color: #fff;
}

/* =========================
   TABLET
========================= */

@media(max-width:1200px) {

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        position: relative;
        top: 0;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .blog-page-section {
        padding: 50px 0;
    }

    .blog-layout {
        gap: 25px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-image img {
        height: 220px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 22px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .read-more {
        font-size: 16px;
    }

    .category-card {
        padding: 25px;
    }

    .category-card h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .category-card a {
        font-size: 16px;
        padding: 14px 0;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px) {

    .blog-image img {
        height: 200px;
    }

    .blog-tag {
        font-size: 11px;
        padding: 8px 14px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .category-card {
        border-radius: 18px;
    }

    .blog-card {
        border-radius: 18px;
    }
}



.blog-breadcrumb {
   background: var(--primary-color);
    padding: 18px 0;
}
.blog-breadcrumb {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ddd;
}

.blog-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.blog-breadcrumb span {
    margin: 0 6px;
    color: #fff;
}

@media (max-width: 991px) {

    .blog-hero-sec {
        height: 220px;
    }

    .blog-hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {

    .blog-hero-sec {
        height: 180px;
    }

    .blog-hero-content h1 {
        font-size: 26px;
    }

    .blog-breadcrumb {
        font-size: 12px;
    }
}


.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: var(--primary-color);
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.blog-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    color: #333;
}

.blog-content h2 {
    margin-top: 45px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.blog-category-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
    border: 1px solid #f0f0f0;
}

.blog-category-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.blog-category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-card ul li {
    margin-bottom: 14px;
}

.blog-category-card ul li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f5f7fb;
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: 0.3s ease;
}

.blog-category-card ul li a:hover {
   background: var(--primary-color);
    color: #ffffff;
    transform: translateX(5px);
}

.blog-form-card {
        background: linear-gradient(90deg, #002F6C, #78797d);
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.blog-form-card h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.blog-form-card form {
    width: 100%;
}

.blog-form-card form input,
.blog-form-card form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.blog-form-card form input::placeholder,
.blog-form-card form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.blog-form-card form textarea {
    min-height: 120px;
    resize: none;
}

.blog-form-card form button {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: var(--accent-red);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.blog-form-card form button:hover {
   background: var(--primary-color);
    color: #fff;
}

.blog-form-card form select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.blog-form-card form select {
    /*background-image: url("data:image/svg+xml,%3Csvg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5H5z'/%3E%3C/svg%3E");*/
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.blog-form-card form select {
    color: #fff;
}

.blog-form-card form select option {
    color: #000;
    background: #fff;
}

a {
    text-decoration: none;
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width: 992px) {

    .blog-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-feature-image img {
        border-radius: 15px;
    }

    .blog-category-card,
    .blog-form-card {
        padding: 25px;
    }
}



/*=========================
CONTACT SECTION
=========================*/

.contact-connect-section {
    padding: 90px 0;
    background: #f5f8fc;
}

.contact-connect-wrapper {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
    align-items: start;
}

/* LEFT */

.contact-tag {
    display: inline-block;
    color:#09356d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-form-area h2 {
    font-size: 54px;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 25px;
}

.contact-desc {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    border-left: 4px solid #45c4c6;
    padding-left: 18px;
    margin-bottom: 35px;
}

.contact-form-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

/*=========================
FORM DESIGN
=========================*/

.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    width: 100%;
    height: 58px;
    border: 1px solid #dbe4ee;
    border-radius: 14px;
    padding: 0 20px;
    font-size: 16px;
    background: #fff;
    transition: .3s;
}

.contact-form-card textarea {
    height: 130px;
    padding-top: 15px;
    resize: none;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    border-color: #45c4c6;
    outline: none;
    box-shadow: 0 0 0 4px rgba(69, 196, 198, .15);
}

.contact-form-card button,
.contact-form-card input[type="submit"] {
    border: none;
    height: 60px;
    border-radius: 14px;

    background: linear-gradient(90deg, #002F6C, #78797d);

    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.contact-form-card button:hover,
.contact-form-card input[type="submit"]:hover {
    transform: translateY(-3px);
}

/*=========================
RIGHT CARD
=========================*/

.contact-info-card {
    padding: 40px;

  background: linear-gradient(90deg, #002F6C, #78797d);

    border-radius: 30px;
    color: #fff;

    box-shadow: 0 15px 40px rgba(29, 79, 163, .25);
}

.contact-info-card h3 {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;

    background: rgba(255, 255, 255, .15);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.contact-info-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-info-item p {
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
    color: rgba(255, 255, 255, .92);
}

/*=========================
SOCIAL ICONS
=========================*/

.contact-socials {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.contact-socials a {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: #fff;
    color: #1d4fa3;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    transition: .3s;
}

.contact-socials a:hover {
    transform: translateY(-5px);
}

/*=========================
TABLET
=========================*/

@media(max-width:991px) {

    .contact-connect-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-area h2 {
        font-size: 42px;
    }

    .contact-info-card {
        margin-top: 10px;
    }
}

/*=========================
MOBILE
=========================*/

@media(max-width:576px) {

    .contact-connect-section {
        padding: 60px 0;
    }

    .contact-form-area h2 {
        font-size: 32px;
    }

    .contact-desc {
        font-size: 15px;
    }

    .contact-form-card {
        padding: 20px;
        border-radius: 20px;
    }

    .contact-info-card {
        padding: 25px;
        border-radius: 20px;
    }

    .contact-info-card h3 {
        font-size: 28px;
    }

    .contact-info-item {
        gap: 12px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 16px;
    }

    .contact-info-item h4 {
        font-size: 17px;
    }

    .contact-info-item p {
        font-size: 14px;
    }
}

/* =========================
   LOCATION MAP
========================= */

.location-map-area{
    padding:20px 0;
    background:#f8fafc;
}

.location-map-box{
    width:100%;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:.4s ease;
}

.location-map-box:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.location-map-box iframe{
    width:100%;
    height:550px;
    border:0;
    display:block;
}

@media (max-width:991px){
    .location-map-box iframe{
        height:450px;
    }
}

@media (max-width:576px){
    .location-map-area{
        padding:50px 15px;
    }

    .location-map-box{
        border-radius:15px;
    }

    .location-map-box iframe{
        height:320px;
    }
}



/*====================================
MOBILE STICKY CONTACT BAR
====================================*/

.mobile-contact-bar{
    display:none;
}

/* MOBILE */

@media (max-width:767px){

.mobile-contact-bar{

    position:fixed;

    left:0;
    right:0;
    bottom:0;

    width:100%;

    display:flex;

    z-index:999999;

    box-shadow:0 -8px 25px rgba(0,0,0,.18);
}

.mobile-contact-bar a{

    width:50%;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    color:#fff;

    text-decoration:none;

    font-size:16px;

    font-weight:700;
}

/* WhatsApp */

.mobile-whatsapp{

    background:#25D366;
}

/* Call */

.mobile-call{

    background:linear-gradient(90deg,#002F6C,#78797d);
}

.mobile-contact-bar i{

    font-size:18px;
}

/* Bottom content hide na ho */

body{

    padding-bottom:56px;
}

}

/*====================================
DESKTOP FLOATING BUTTONS
====================================*/

.desktop-call-btn,
.desktop-whatsapp-btn{

    position:fixed;

    width:62px;
    height:62px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    font-size:28px;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    transition:.35s;

    z-index:99999;
}

/* LEFT CALL */

.desktop-call-btn{

    left:25px;
    bottom:20px;

    background:linear-gradient(135deg,#002F6C,#0b4ea2);
}

/* RIGHT WHATSAPP */

.desktop-whatsapp-btn{
    right:25px;
    bottom:20px;
    background:#25D366;
}

/* Hover */

.desktop-call-btn:hover,
.desktop-whatsapp-btn:hover{

    color:#fff;

    transform:translateY(-6px) scale(1.08);

    box-shadow:0 18px 35px rgba(0,0,0,.35);
}

/* Pulse Animation */

.desktop-call-btn::before,
.desktop-whatsapp-btn::before{

    content:"";

    position:absolute;

    inset:-6px;

    border-radius:50%;

    animation:pulseRing 2s infinite;

    opacity:.45;
}

.desktop-call-btn::before{
    border:2px solid #0b4ea2;
}

.desktop-whatsapp-btn::before{
    border:2px solid #25D366;
}

@keyframes pulseRing{

    0%{
        transform:scale(.8);
        opacity:.6;
    }

    70%{
        transform:scale(1.35);
        opacity:0;
    }

    100%{
        opacity:0;
    }

}


@media(max-width:767px){

    .desktop-call-btn,
    .desktop-whatsapp-btn{

        display:none;

    }

}

@media (max-width:991px){

    .top-header{
        display:none;
    }

    .custom-navbar{
        padding:8px 0;
    }

    .navbar-brand img{
        height:52px;
    }

    .navbar-toggler{
        border:0;
        box-shadow:none !important;
    }

    .navbar-collapse{
        margin-top:15px;
    }

    .navbar-nav{
        gap:0;
    }

    .navbar-nav .nav-item{
        width:100%;
    }

    .navbar-nav .nav-link{
        display:block;
        padding:14px 0;
    }

    .mega-dropdown::after{
        display:none;
    }

    .mega-menu{

        position:static;
        left:0;
        top:0;
        transform:none;

        width:100%;

        opacity:1;
        visibility:visible;

        display:none;

        background:#f8f8f8;
        box-shadow:none;
        border-radius:0;

        padding:0;
        margin:0;
    }

    .mega-dropdown.show .mega-menu{
        display:block;
    }

    .mega-grid{
        display:block;
    }

    .mega-column a{
        display:block;
        padding:12px 15px;
        border-bottom:1px solid #ececec;
    }

    .appoint-btn{
        width:100%;
        justify-content:center;
        margin-top:15px;
    }

}

/* Services Arrow */

.service-arrow{
    margin-left:8px;
    font-size:12px;
    transition:.3s ease;
}

/* Desktop Hover */

@media(min-width:992px){

    .mega-dropdown:hover .service-arrow{
        transform:rotate(180deg);
    }

}

/* Mobile Click */

@media(max-width:991px){

    .dropdown-toggle::after{
        display:none;   /* Bootstrap default arrow hide */
    }

    .service-arrow{
        float:right;
        margin-top:5px;
    }

    .mega-dropdown.show .service-arrow{
        transform:rotate(180deg);
    }

}