/*=====================================================
                HEADER
=====================================================*/

:root {
    --primary: #0f4aa5;
    --secondary: #0d3b85;
    --white: #fff;
    --text: #20242f;
    --light: #f7f9fc;
    --border: #e7eaf3;
    --radius: 14px;
    --shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

/*=====================================================
                TOPBAR
=====================================================*/

.topbar {
    background: var(--primary);
    color: #fff;
}

.topbar-inner {
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.topbar-item i {
    font-size: 18px;
}

.topbar-icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: .35s;
}

.topbar-icon:hover {
    background: #fff;
    color: var(--primary);
}

.emergency {
    font-weight: 600;
}

/*=====================================================
                MAIN HEADER
=====================================================*/

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 65px;
    width: auto;
}

.brand-mark {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
}

/*=====================================================
                NAVIGATION
=====================================================*/

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #303643;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    transition: .3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: .3s;
    border-radius: 20px;
}

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

/*=====================================================
                DROPDOWN
=====================================================*/

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .35s;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: .3s;
}

.nav-dropdown-menu a:hover {
    background: #f4f8ff;
    color: var(--primary);
}

.nav-dropdown-menu span {
    display: block;
    font-weight: 600;
}

.nav-dropdown-menu small {
    color: #7a7a7a;
}

/*=====================================================
                MEGA MENU
=====================================================*/

.nav-mega-menu {
    width: 560px;
}

.nav-mega-intro {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.nav-mega-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.nav-mega-tags a {
    background: #eef5ff;
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
}

.nav-mega-list {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.dropdown-all {
    margin-top: 18px;
    display: block;
    text-align: center;
    background: var(--primary);
    color: #fff !important;
    padding: 12px;
    border-radius: 10px;
}

/*=====================================================
                CONTACT BUTTON
=====================================================*/

.header-actions {
    display: flex;
    align-items: center;
}

.header-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 14px;
    font-weight: 600;
    transition: .35s;
}

.header-contact-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/*=====================================================
                MOBILE
=====================================================*/

.menu-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 32px;
    cursor: pointer;
}

/* Overlay */

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 9998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar */

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: .35s;
    overflow: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, .15);
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-logo img {
    height: 55px;
}

.sidebar-close {
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    padding: 20px;
}

.mobile-menu>a {
    display: block;
    padding: 14px 0;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

/* Mobile Dropdown */

.mobile-dropdown {
    border-bottom: 1px solid #eee;
}

.mobile-dropdown-btn {
    width: 100%;
    border: none;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-weight: 600;
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    padding-bottom: 15px;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #555;
    text-decoration: none;
}

.mobile-dropdown-content a:hover {
    color: var(--primary);
}

.view-all {
    font-weight: 600;
    color: var(--primary) !important;
}

.mobile-contact {
    padding: 20px;
}

.mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
}

/*=====================================================
                RESPONSIVE
=====================================================*/

@media(max-width:1200px) {

    .main-nav {
        gap: 18px;
    }

    .header-contact-btn span {
        display: none;
    }

}

@media(max-width:991px) {

    .topbar {
        display: none;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-inner {
        min-height: 75px;
    }

    .brand-logo {
        height: 55px;
    }

}

@media(max-width:576px) {

    .mobile-sidebar {
        width: 100%;
        right: -100%;
    }

    .brand-logo {
        height: 48px;
    }

}


.site-footer {

    background: #fff;
    padding: 80px 0 30px;

    border-top: 1px solid #ececec;

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.4fr;

    gap: 70px;

}

.footer-brand img {

    height: 60px;

    margin-bottom: 25px;

}

.footer-about p {

    color: #5b6270;

    line-height: 1.8;

    margin-bottom: 30px;

}

.footer-links h4,
.footer-newsletter h4 {

    color: #0f4aa5;

    margin-bottom: 30px;

    font-size: 24px;

    font-weight: 700;

}

.footer-links {

    display: flex;

    flex-direction: column;

}

.footer-links a {

    color: #444;

    text-decoration: none;

    margin-bottom: 18px;

    font-size: 18px;

    transition: .3s;

}

.footer-links a:hover {

    color: #0f4aa5;

    padding-left: 8px;

}

.social-icons {

    display: flex;

    gap: 16px;

}

.social-icons a {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: #edf4ff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #0f4aa5;

    font-size: 20px;

    transition: .3s;

}

.social-icons a:hover {

    background: #0f4aa5;

    color: #fff;

}

.footer-newsletter p {

    color: #5b6270;

    margin-bottom: 22px;

}

.footer-newsletter form {

    display: flex;

}

.footer-newsletter input {

    flex: 1;

    height: 58px;

    border: 1px solid #d9dfea;

    border-radius: 16px 0 0 16px;

    padding: 0 18px;

    font-size: 17px;

    outline: none;

}

.footer-newsletter button {

    width: 70px;

    border: none;

    background: #0f4aa5;

    color: #fff;

    border-radius: 0 16px 16px 0;

    cursor: pointer;

    font-size: 22px;

}

.footer-bottom {

    margin-top: 70px;

    border-top: 1px solid #ececec;

    padding-top: 28px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

}

.footer-bottom p {

    color: #555;

    margin: 0;

}

.footer-bottom div {

    display: flex;

    gap: 30px;

}

.footer-bottom a {

    color: #555;

    text-decoration: none;

}

.footer-bottom a:hover {

    color: #0f4aa5;

}

@media(max-width:991px) {

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 20px;

        text-align: center;

    }

    .footer-bottom div {

        flex-wrap: wrap;

        justify-content: center;

    }

}

.hero-section {

    position: relative;

}

.hero-slide {

    position: relative;

    height: 82vh;

}

.hero-slide img {

    width: 100%;

    height: 82vh;

    object-fit: cover;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(90deg,
            rgba(255, 255, 255, .95) 0%,
            rgba(255, 255, 255, .88) 42%,
            rgba(255, 255, 255, .18) 100%);

}

.hero-content {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    max-width: 650px;

    z-index: 10;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 24px;

    border-radius: 40px;

    background: #edf3ff;

    color: #0f4aa5;

    font-weight: 600;

    margin-bottom: 10px;

    font-size: 16px;

}

.hero-badge i {

    font-size: 18px;

}

.hero-content h1 {

    font-size: 3.4rem;

    line-height: 1.1;

    font-weight: 800;

    color: #083b87;

    margin-bottom: 30px;

}

.hero-content h1 span {

    color: #1565d8;

}

.hero-content p {

    font-size: 18px;
    color: #505968;
    line-height: 1.5;
    margin-bottom: 20px;

}

.hero-buttons {

    display: flex;
    gap: 18px;

    margin-bottom: 20px;

}

.hero-btn {

    padding: 10px 40px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 18px;

    font-weight: 600;

    transition: .3s;

}

.hero-btn-primary {

    background: #0f4aa5;

    color: #fff;

}

.hero-btn-primary:hover {

    background: #083b87;

    color: #fff;

}

.hero-btn-outline {

    border: 2px solid #0f4aa5;

    color: #0f4aa5;

    background: #fff;

}

.hero-btn-outline:hover {

    background: #0f4aa5;

    color: #fff;

}

.hero-stats {

    display: flex;

    gap: 40px;

    border-top: 1px solid rgba(0, 0, 0, .12);

    padding-top: 25px;

}

.hero-stat h3 {

    color: #1565d8;

    font-size: 38px;

    font-weight: 700;

    margin-bottom: 6px;

}

.hero-stat p {

    margin: 0;

    font-size: 20px;

    color: #444;

}

.hero-slider .owl-dots {

    position: absolute;

    left: 50%;

    bottom: 35px;

    transform: translateX(-50%);

}

.hero-slider .owl-dot span {

    width: 12px;

    height: 12px;

    background: #fff;

    opacity: .5;

}

.hero-slider .owl-dot.active span {

    background: #1565d8;

    opacity: 1;

}

@media(max-width:992px) {

    .hero-slide {

        display: flex;

        align-items: flex-end;


        min-height: 640px;

    }

    .hero-slide img {

        position: absolute;

        inset: 0;

        height: 100%;

        object-position: center top;

    }

    .hero-overlay {

        background: linear-gradient(180deg,
                rgba(4, 24, 56, .18) 0%,
                rgba(4, 24, 56, .45) 40%,
                rgba(4, 24, 56, .9) 100%);

    }

    .hero-slide .container {

        position: relative;

        z-index: 2;

    }

    .hero-content {

        position: relative;

        transform: none;

        padding: 118px 0 88px;

        top: auto;

        max-width: 100%;

    }

    .hero-badge {

        padding: 9px 14px;

        max-width: 100%;

        border-radius: 999px;

        background: rgba(255, 255, 255, .92);

        color: #0f4aa5;

        font-size: 14px;

    }

    .hero-content h1 {

 
        margin-bottom: 16px;

        color: #fff;

        font-size: 42px;

        line-height: 1.05;

    }

    .hero-content p {

        max-width: 34rem;

        margin-bottom: 18px;

        color: rgba(255, 255, 255, .88);

        font-size: 17px;

    }

    .hero-buttons {

        gap: 12px;

        flex-wrap: wrap;

        margin-bottom: 18px;

    }

    .hero-btn {

        padding: 11px 22px;

        font-size: 16px;

    }

    .hero-btn-outline {

        border-color: rgba(255, 255, 255, .9);

        background: rgba(255, 255, 255, .12);

        color: #fff;

    }

    .hero-stats {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 10px;

        border-top-color: rgba(255, 255, 255, .25);

        padding-top: 16px;

    }

    .hero-stat {

        min-width: 0;

    }

    .hero-stat h3 {

        color: #fff;

        font-size: 26px;

    }

    .hero-stat p {

        color: rgba(255, 255, 255, .78);

        font-size: 14px;

    }

    .hero-slider .owl-dots {

        bottom: 22px;

    }

}

@media(max-width:576px) {

    .hero-slide {

        min-height: 660px !important;

    }

    .hero-content {

        padding: 104px 0 74px;

    }

    .hero-badge {

        gap: 7px;

        font-size: 12px;

        line-height: 1.3;

    }

    .hero-content h1 {



        font-size: 35px;

    }

    .hero-content p {

        font-size: 15px;

        line-height: 1.55;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-stats {

        gap: 8px;

    }

    .hero-stat h3 {

        font-size: 22px;

    }

    .hero-stat p {

        font-size: 12px;

    }

    .hero-btn {

        width: 100%;

        text-align: center;

    }

}

/*=========================
    Achievement Section
=========================*/

.home-achievement-section {
    padding: 70px 0;
    background: #fcfdff;
}

.home-achievement-wrap {
    max-width: 1330px;
}

.home-achievement-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(2, 1fr);
    gap: 35px;
    align-items: stretch;
}

/* Left Card */

.home-achievement-head {

    background: #fff;

    border: 1px solid #dde5f2;

    border-radius: 15px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height: 430px;
}

.home-achievement-head span {

    display: inline-block;

    color: #1650b8;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.home-achievement-head h2 {

    font-size: 28px;

    line-height: 1.15;

    color: #13223c;

    font-weight: 700;

    margin-bottom: 25px;
}

.home-achievement-head h2 span {

    color: #1650b8;
}

.home-achievement-head p {

    font-size: 16px;

    line-height: 1.8;

    color: #596579;

    margin-bottom: 45px;

    max-width: 700px;
}

/* Feature Boxes */

.achievement-features {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.achievement-feature {

    width: 240px;

    height: 170px;

    background: #dfe9ff;

    border-radius: 15px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 30px;

    transition: .3s;
}

.achievement-feature:hover {

    transform: translateY(-6px);
}

.achievement-feature i {

    font-size: 48px;

    color: #1650b8;

    margin-bottom: 20px;
}

.achievement-feature h5 {

    font-size: 32px;

    color: #1650b8;

    margin-bottom: 8px;
}

.achievement-feature p {

    margin: 0;

    color: #1650b8;

    font-size: 22px;

    line-height: 1.4;
}

/* Counter Cards */

.home-achievement-card {

    background: #fff;

    border: 1px solid #dde5f2;

    border-radius: 15px;
    padding: 30px 10px;
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    transition: .35s;
    margin-top: 20px;
}

.home-achievement-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.home-achievement-card i {

    font-size: 35px;

    color: #1650b8;

    margin-bottom: 30px;
}

.home-achievement-card strong {

    display: block;

    font-size: 47px;

    font-weight: 800;

    line-height: 1;

    color: #14223d;

    margin-bottom: 15px;
}

.home-achievement-card strong span {

    color: #1650b8;
}

.home-achievement-card p {

    font-size: 17px;

    color: #4c5668;

    margin: 0;
}

/* Responsive */

@media(max-width:1200px) {

    .home-achievement-grid {

        grid-template-columns: 1fr;

    }

    .home-achievement-head {

        min-height: auto;

    }

    .home-achievement-card {

        min-height: 300px;

    }

}

@media(max-width:768px) {

    .home-achievement-section {

        padding: 60px 0;

    }

    .home-achievement-head {

        padding: 35px 25px;

    }

    .home-achievement-head h2 {

        font-size: 36px;

    }

    .home-achievement-head p {

        font-size: 17px;

    }

    .achievement-features {

        flex-direction: column;

    }

    .achievement-feature {

        width: 100%;

        height: auto;

    }

    .home-achievement-card strong {

        font-size: 48px;

    }

    .home-achievement-card p {

        font-size: 20px;

    }

}

.home-service-section{
    padding:70px 0;
    background:#F3F7FF;
}

.home-service-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:60px;
    margin-bottom:60px;
}

.home-service-head span{
    color:#0f4aa5;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
}

.home-service-head h2{
    font-size:52px;
    font-weight:700;
    margin-top:12px;
    color:#13233d;
    max-width:650px;
}

.home-service-head p{
    max-width:500px;
    font-size:18px;
    line-height:1.8;
    color:#5c6678;
}

.home-service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    text-decoration:none;
    border:1px solid #e6edf7;
    transition:.35s;
    display:flex;
    flex-direction:column;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.service-image{
    height:230px;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

.service-content{
    padding:28px;
}

.service-icon{
    width:65px;
    height:65px;
    background:#edf3ff;
    color:#0f4aa5;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:-60px;
    position:relative;
    z-index:2;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.service-icon i{
    font-size:30px;
}

.service-content h3{
    margin:25px 0 15px;
    color:#13233d;
    font-size:30px;
    font-weight:700;
}

.service-content p{
    color:#5f6675;
    line-height:1.8;
    font-size:16px;
    margin-bottom:25px;
}

.service-btn{
    color:#0f4aa5;
    font-weight:700;
    display:inline-flex;
    gap:8px;
    align-items:center;
}

.service-card:hover .service-btn{
    gap:14px;
}

@media(max-width:1200px){

.home-service-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.home-service-head{
    flex-direction:column;
    align-items:flex-start;
}

.home-service-head h2{
    font-size:36px;
}

.home-service-grid{
    grid-template-columns:1fr;
}

.service-image{
    height:220px;
}

}

.services-page-section{
    padding:84px 0 92px;
    background:
        linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.services-page-wrap{
    max-width:1240px;
}

.services-page-head{
    align-items:flex-start;
    gap:48px;
    margin-bottom:28px;
}

.services-page-head span{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 14px;
    background:#e8f1ff;
    border:1px solid #cfe0fa;
    border-radius:8px;
    color:#0f4aa5;
    letter-spacing:1px;
}

.services-page-head h2{
    max-width:760px;
    margin-top:18px;
    font-size:46px;
    line-height:1.12;
}

.services-page-head p{
    max-width:470px;
    margin-top:8px;
    padding-top:8px;
    color:#4e5b70;
}

.services-page-highlights{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:14px;
    margin:0 0 34px;
}

.services-page-highlights div{
    display:flex;
    align-items:center;
    gap:12px;
    min-height:58px;
    padding:14px 18px;
    background:#fff;
    border:1px solid #dfe8f5;
    border-radius:8px;
    color:#13233d;
    font-weight:700;
    box-shadow:0 12px 30px rgba(15, 74, 165, .06);
}

.services-page-highlights i{
    display:grid;
    place-items:center;
    width:34px;
    height:34px;
    border-radius:8px;
    background:#0f4aa5;
    color:#fff;
    font-size:20px;
}

.service-category-nav{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin:0 0 38px;
}

.service-category-nav a{
    display:inline-flex;
    align-items:center;
    min-height:40px;
    padding:0 16px;
    border:1px solid #cfdcf0;
    border-radius:8px;
    background:#fff;
    color:#0f4aa5;
    font-weight:700;
    text-decoration:none;
    transition:.25s;
}

.service-category-nav a:hover{
    background:#0f4aa5;
    border-color:#0f4aa5;
    color:#fff;
    transform:translateY(-2px);
}

.service-category-list{
    display:grid;
    gap:46px;
}

.service-category-block{
    scroll-margin-top:110px;
}

.service-category-head{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:24px;
    margin-bottom:22px;
    padding-bottom:16px;
    border-bottom:1px solid #d9e4f3;
}

.service-category-head .section-label{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:0 12px;
    border-radius:8px;
    background:#fff;
    color:#0f4aa5;
    font-size:12px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
}

.service-category-head h2{
    margin:8px 0 0;
    color:#13233d;
    font-size:30px;
    font-weight:800;
}

.services-page-section .home-service-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:22px;
}

.services-page-section .service-card{
    min-height:100%;
    border-radius:8px;
    border:1px solid #dfe8f5;
    box-shadow:0 16px 34px rgba(15, 35, 61, .07);
}

.services-page-section .service-card:hover{
    transform:translateY(-5px);
    border-color:#b8ccec;
    box-shadow:0 22px 44px rgba(15, 35, 61, .12);
}

.services-page-section .service-image{
    height:210px;
    background:#dfe8f5;
}

.services-page-section .service-content{
    display:flex;
    flex:1;
    flex-direction:column;
    padding:24px;
}

.services-page-section .service-icon{
    width:52px;
    height:52px;
    margin-top:-50px;
    border-radius:8px;
    background:#fff;
    color:#0f4aa5;
    border:1px solid #dce7f6;
    box-shadow:0 12px 24px rgba(15, 35, 61, .12);
}

.services-page-section .service-icon i{
    font-size:25px;
}

.services-page-section .service-content h3{
    margin:22px 0 12px;
    font-size:24px;
    line-height:1.2;
}

.services-page-section .service-content p{
    flex:1;
    margin-bottom:22px;
    color:#536174;
    line-height:1.7;
}

.services-page-section .service-btn{
    width:max-content;
    min-height:40px;
    padding:0 14px;
    border-radius:8px;
    background:#eef5ff;
}

.service-empty{
    display:grid;
    place-items:center;
    gap:10px;
    min-height:260px;
    padding:34px;
    background:#fff;
    border:1px solid #dfe8f5;
    border-radius:8px;
    text-align:center;
    color:#536174;
}

.service-empty i{
    color:#0f4aa5;
    font-size:42px;
}

.service-empty strong{
    color:#13233d;
    font-size:24px;
}

@media(max-width:1199px){

.services-page-section .home-service-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
}

.services-page-head h2{
    font-size:40px;
}

}

@media(max-width:768px){

.services-page-section{
    padding:58px 0 66px;
}

.services-page-head{
    gap:18px;
    margin-bottom:22px;
}

.services-page-head h2{
    font-size:32px;
}

.services-page-head p{
    font-size:16px;
}

.services-page-highlights{
    grid-template-columns:1fr;
}

.service-category-head{
    display:block;
}

.services-page-section .home-service-grid{
    grid-template-columns:1fr;
}

.services-page-section .service-image{
    height:200px;
}

.services-page-section .service-content h3{
    font-size:22px;
}

}
.journey-section{
    padding:70px 0;
    background:#f6f9ff;
    overflow:hidden;
}

.journey-heading{
    text-align:center;
    margin-bottom:80px;
}

.journey-heading span{
    display:inline-block;
    color:#0b57d0;
    font-weight:700;
    font-size: 15px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.journey-heading h2{
font-size:2.9rem;
    font-weight:800;
    color:#13233d;
    margin-bottom:20px;
}

.journey-heading p{
    max-width:700px;
    margin:auto;
    color:#626b7f;
    font-size:17px;
}

/*=====================*/

.journey-process{
    position:relative;
}

/* Straight Line */

.journey-line{
    position:absolute;
    top:52px;
    left:6%;
    width:88%;
    height:3px;
    background:#ccd4e7;
    z-index:1;
}

/*=====================*/

.journey-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    position:relative;
    z-index:2;
}

.journey-item{
    text-align:center;
    position:relative;
}

.journey-icon{
    width:96px;
    height:96px;
    margin:auto;
    border-radius:50%;
    background:#e9f1ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#1749b6;
    border:10px solid #f6f9ff;
    transition:.4s;
}

.journey-item.active .journey-icon{
    background:#1749b6;
    color:#fff;
}

.journey-item h4{
    margin-top:21px !important;
    font-size:24px;
    font-weight:700;
    color:#1749b6;
}

.journey-item p{
    margin-top:12px;
    color:#4d5566;
    font-size:17px;
    line-height:1.6;
    max-width:230px;
    margin-left:auto;
    margin-right:auto;
}

.journey-item:hover .journey-icon{
    background:#1749b6;
    color:#fff;
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(23,73,182,.20);
}

/*========================*/

@media(max-width:1200px){

.journey-grid{
grid-template-columns:repeat(3,1fr);
row-gap:70px;
}

.journey-line{
display:none;
}

}

@media(max-width:768px){

.journey-heading h2{
font-size:38px;
}

.journey-heading p{
font-size:18px;
}

.journey-grid{
grid-template-columns:1fr;
gap:45px;
}

.journey-item h4{
font-size:28px;
}

.journey-item p{
font-size:17px;
}

.journey-icon{
width:85px;
height:85px;
font-size:36px;
}

}

.about-section{
    padding:70px 0;
    background:#ffffff;
}

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

/* Images */

.about-images{
    position:relative;
}

.main-image{
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.main-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
}

.doctor-card{
    position:absolute;
    right:-30px;
    bottom:80px;
    width:220px;
    border-radius:20px;
    overflow:hidden;
    border:8px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.doctor-card img{
    width:100%;
    display:block;
}

.experience-box{
    position:absolute;
    left:-20px;
    bottom:30px;
    background:#0F4AA5;
    color:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    min-width:150px;
}

.experience-box h2{
    font-size:42px;
    margin:0;
    font-weight:700;
}

.experience-box span{
    font-size:14px;
}

/* Content */

.ab-tag{
    display:inline-block;
    background:#eaf1ff;
    color:#0F4AA5;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h2{
    font-size:2.9rem;
    line-height:1.2;
    margin-bottom:20px;
    color:#1f2937;
    font-weight:700;
}

.about-content p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:35px;
}

/* Features */

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:35px;
}

.feature-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    transition:.3s;
    border:1px solid #e5e7eb;
}

.feature-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(15,74,165,.08);
}

.feature-card i{
    font-size:35px;
    color:#0F4AA5;
    margin-bottom:15px;
}

.feature-card h5{
    margin:0;
    font-size:16px;
}

/* Stats */

.about-stats{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.stat-box{
    background:#fff;
    padding:20px 30px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.stat-box h3{
    color:#0F4AA5;
    font-size:32px;
    margin:0;
    font-weight:700;
}

.stat-box span{
    color:#64748b;
    font-size:14px;
}

/* Buttons */

.about-buttons{
    display:flex;
    gap:15px;
}

.btn-primary,
.btn-outline{
    padding:15px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#0F4AA5;
    color:#fff;
}

.btn-primary:hover{
    background:#083c8b;
    color:#fff;
}

.btn-outline{
    border:2px solid #0F4AA5;
    color:#0F4AA5;
    background:#fff;
}

.btn-outline:hover{
    background:#0F4AA5;
    color:#fff;
}

/*=============================
        ABOUT HIGHLIGHTS
=============================*/

.about-highlights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top: 60px;
}

.highlight-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:24px;
    background:#fff;
    border:1px solid #e7edf7;
    border-radius:18px;
    transition:.35s;
    box-shadow:0 8px 30px rgba(15,74,165,.05);
}

.highlight-item:hover{
    transform:translateY(-6px);
    border-color:#0F4AA5;
    box-shadow:0 20px 40px rgba(15,74,165,.12);
}

.highlight-icon{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:50%;
    background:#EEF4FF;
    color:#0F4AA5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    transition:.35s;
}

.highlight-item:hover .highlight-icon{
    background:#0F4AA5;
    color:#fff;
}

.highlight-content h5{
    margin:0 0 10px;
    font-size:18px;
    font-weight:700;
    color:#1f2937;
}

.highlight-content p{
    margin:0;
    color:#64748b;
    font-size:15px;
    line-height:1.8;
}

@media(max-width:991px){

    .about-highlights{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .highlight-item{
        padding:20px;
    }

    .highlight-icon{
        width:55px;
        height:55px;
        min-width:55px;
        font-size:24px;
    }

    .highlight-content h5{
        font-size:17px;
    }

    .highlight-content p{
        font-size:14px;
    }

}
/* Responsive */

@media(max-width:991px){

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

    .main-image img{
        height:500px;
    }

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

@media(max-width:767px){

    .about-section{
        padding:70px 0;
    }

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

    .about-stats{
        flex-wrap:wrap;
    }

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

    .doctor-card{
        display:none;
    }

    .about-content h2{
        font-size:30px;
    }

    .main-image img{
        height:380px;
    }
}


/*==================================
        TESTIMONIAL SECTION
==================================*/

.home-review-section{
    padding:70px 0;
    background:#f7f9fd;
    overflow:hidden;
}

.home-review-wrap{
    max-width:1400px;
    margin:auto;
}

.home-review-head{
    text-align:center;

}

.home-review-head span{
    display:inline-block;
    padding:10px 22px;
    background:#EEF4FF;
    color:#0F4AA5;
    border-radius:40px;
    font-weight:600;
    margin-bottom:18px;
}

.home-review-head h2{
font-size:2.9rem;
    font-weight:700;
    color:#1f2937;
    margin:0;
}

.home-review-head h2 span{
    color:#0F4AA5;
    background:none;
    padding:0;
}

/*=============================
        CARD
=============================*/

.home-review-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    padding:35px;
    border:1px solid #e7edf7;
    transition:.35s;
    height:100%;
    box-shadow:0 10px 35px rgba(15,74,165,.05);
}

.home-review-card:hover{
    transform:translateY(-8px);
    border-color:#0F4AA5;
    box-shadow:0 25px 50px rgba(15,74,165,.12);
}

.home-review-quote{
    font-size:42px;
    color:#0F4AA5;
    opacity:.15;
    margin-bottom:20px;
}

.home-review-card .blockquote{
    font-size:16px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:28px;
    min-height:120px;
}

/*=============================
        STARS
=============================*/

.home-review-stars{
    display:flex;
    gap:5px;
    margin-bottom:28px;
}

.home-review-stars i{
    color:#d1d5db;
    font-size:18px;
}

.home-review-stars i.is-active{
    color:#fbbf24;
}

/*=============================
        AUTHOR
=============================*/

.home-review-author{
    display:flex;
    align-items:center;
    gap:16px;
    border-top:1px solid #eef2f7;
    padding-top:22px;
}

.home-review-author img{
    width:70px !important;
    height:70px !important;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #EEF4FF;
}

.home-review-author strong{
    display:block;
    font-size:18px;
    color:#1f2937;
    margin-bottom:4px;
}

.home-review-author span{
    color:#64748b;
    font-size:14px;
}

/*=============================
        OWL NAV
=============================*/

.home-review-carousel .owl-nav{

    display:flex;
    justify-content:center;
    gap:14px;
}
.home-review-carousel .home-review-card{
    margin: 40px 0px !important;
}

.home-review-carousel .owl-nav button{
    width:48px;
    height:48px;
    border-radius:50%!important;
    background:#fff!important;
    border:1px solid #dbe5f3!important;
    color:#0F4AA5!important;
    transition:.3s;
}

.home-review-carousel .owl-nav button:hover{
    background:#0F4AA5!important;
    color:#fff!important;
}

.home-review-carousel .owl-nav i{
    font-size:20px;
}

/*=============================
        DOTS
=============================*/

.home-review-carousel .owl-dots{
    margin-top:25px;
    text-align:center;
}

.home-review-carousel .owl-dot span{
    width:12px;
    height:12px;
    margin:5px;
    background:#cbd5e1!important;
    transition:.3s;
}

.home-review-carousel .owl-dot.active span{
    width:34px;
    border-radius:20px;
    background:#0F4AA5!important;
}

/*=============================
        RESPONSIVE
=============================*/

@media(max-width:991px){

    .home-review-section{
        padding:80px 0;
    }

    .home-review-head h2{
        font-size:36px;
    }

}

@media(max-width:767px){

    .home-review-section{
        padding:70px 0;
    }

    .home-review-head h2{
        font-size:30px;
    }

    .home-review-card{
        padding:28px;
    }

    .home-review-card .blockquote{
        min-height:auto;
    }

}

@media(max-width:576px){

    .home-review-head span{
        font-size:14px;
    }

    .home-review-head h2{
        font-size:26px;
    }

    .home-review-author img{
        width:60px;
        height:60px;
    }

    .home-review-author strong{
        font-size:16px;
    }
    .experience-box {
    position: absolute;
    left: -8px;
    bottom: -35px;
    background: #0F4AA5;
    color: #fff;
    padding: 10px;
    border-radius: 18px;
    text-align: center;
    min-width: 150px;
}

}

/*==================================
            FAQ SECTION
==================================*/

.faq-section{
    padding:70px 0;
    background:#ffffff;
}

.faq-layout{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    align-items:flex-start;
}

/*==============================
        LEFT CONTENT
==============================*/

.faq-sticky{
    position:sticky;
    top:100px;
}

.section-label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 22px;
    background:#EEF4FF;
    color:#0F4AA5;
    border-radius:40px;
    font-weight:600;
    margin-bottom:20px;
}

.faq-sticky h2{
  font-size:2.9rem;
    line-height:1.25;
    color:#1f2937;
    font-weight:700;
    margin-bottom:20px;
}

.faq-sticky p{
    font-size:16px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:30px;
}

/*==============================
        ACCORDION
==============================*/

.custom-faq{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.custom-faq .accordion-item{
    border:none;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 35px rgba(15,74,165,.05);
}

.custom-faq .accordion-button{
    background:#fff;
    color:#1f2937;
    font-size:18px;
    font-weight:600;
    padding:22px 28px;
    box-shadow:none;
    border:none;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#0F4AA5;
    color:#fff;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
}

.custom-faq .accordion-button::after{
    width:32px;
    height:32px;
    background-size:18px;
    background-position:center;
    border-radius:50%;
    background-color:#EEF4FF;
}

.custom-faq .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
    background-color:rgba(255,255,255,.15);
}

.custom-faq .accordion-body{
    padding:24px 28px 28px;
    color:#64748b;
    font-size:15px;
    line-height:1.9;
    border-top:1px solid #eef2f7;
}

/*==============================
        HOVER
==============================*/

.custom-faq .accordion-item:hover{
    transform:translateY(-3px);
    transition:.3s;
    box-shadow:0 18px 40px rgba(15,74,165,.10);
}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:991px){

    .faq-section{
        padding:80px 0;
    }

    .faq-layout{
        grid-template-columns:1fr;
        gap:40px;
    }

    .faq-sticky{
        position:static;
    }

    .faq-sticky h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .faq-section{
        padding:70px 0;
    }

    .faq-sticky h2{
        font-size:28px;
    }

    .custom-faq .accordion-button{
        font-size:16px;
        padding:18px 20px;
    }

    .custom-faq .accordion-body{
        padding:18px 20px 22px;
        font-size:14px;
    }

}

@media(max-width:576px){

    .section-label{
        font-size:14px;
        padding:8px 18px;
    }

    .faq-sticky h2{
        font-size:24px;
    }

}

.why-section{
    padding:70px 0;
    background:#fff;
}
.why-section{
    max-width: 1330px;
    margin: auto;
    overflow: hidden;
}

.why-image{
    position:relative;
}

.why-image img{
    width:100%;
    border-radius:25px;
    height:820px;
    object-fit:cover;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.floating-card{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#fff;
    padding:20px 24px;
    border-radius:18px;
    display:flex;
    gap:18px;
    align-items:center;
    box-shadow:0 20px 45px rgba(15,74,165,.15);
    max-width:340px;
}

.floating-card i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#EEF4FF;
    color:#0F4AA5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.floating-card h4{
    margin:0 0 6px;
    font-size:18px;
    font-weight:700;
}

.floating-card p{
    margin:0;
    color:#64748b;
    font-size:14px;
}

.section-tag{
    display:inline-block;
    background:#EEF4FF;
    color:#0F4AA5;
    padding:10px 22px;
    border-radius:40px;
    font-weight:600;
    margin-bottom:18px;
}

.why-section h2{
font-size:2.9rem;
    font-weight:700;
    line-height:1.25;
    color:#1f2937;
    margin-bottom:20px;
}

.why-text{
    color:#64748b;
    line-height:1.9;
    margin-bottom:10px;
}

.why-box{
    background:#fff;
    border:1px solid #e7edf7;
    border-radius:18px;
    padding:25px;
    transition:.35s;
    height:100%;
    box-shadow:0 10px 30px rgba(15,74,165,.05);
}

.why-box:hover{
    transform:translateY(-6px);
    border-color:#0F4AA5;
    box-shadow:0 18px 40px rgba(15,74,165,.12);
}

.why-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#EEF4FF;
    color:#0F4AA5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:18px;
}

.why-box h5{
    font-weight:700;
    margin-bottom:10px;
    color:#1f2937;
}

.why-box p{
    margin:0;
    color:#64748b;
    line-height:1.7;
}

.why-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 34px;
    background:#0F4AA5;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    margin-top:35px;
    transition:.3s;
}

.why-btn:hover{
    background:#083c8b;
    color:#fff;
}

@media(max-width:991px){

    .why-image img{
        height:500px;
    }

    .why-section h2{
        font-size:36px;
    }

}

@media(max-width:768px){

    .why-section{
        padding:70px 0;
    }

    .why-image img{
        height:380px;
    }

    .floating-card{
        position:static;
        margin-top:20px;
        max-width:100%;
    }

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

}

.gallery-section{
    padding:70px 0;
    background:#f8fbff;
}

.gallery-item{
    position:relative;
    display:block;
    border-radius:20px;
    overflow:hidden;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(15,74,165,.9),
    transparent);
    display:flex;
    align-items:flex-end;
    padding:25px;
    opacity:0;
    transition:.3s;
}

.gallery-overlay h5{
    color:#fff;
    margin:0;
}

.gallery-overlay i{
    position:absolute;
    top:20px;
    right:20px;
    width:48px;
    height:48px;
    border-radius:50%;
    background:#fff;
    color:#0F4AA5;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

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

.swiper{
    overflow:visible;
}

.swiper-slide{
    height:auto;
}

/*======================================
            CONTACT PAGE
======================================*/

.contact-page{
    padding:70px 0;
    background:#f8fbff;
}

/*======================================
            HEADER
======================================*/

.contact-page-head{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.section-label{
    display:inline-block;
    padding:10px 22px;
    border-radius:40px;
    background:#eef4ff;
    color:#0F4AA5;
    font-weight:600;
    margin-bottom:18px;
}

.contact-page-head h1{
    font-size:48px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:18px;
}

.contact-page-head p{
    color:#64748b;
    font-size:16px;
    line-height:1.9;
}

/*======================================
            CONTACT INFO
======================================*/

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:60px;
}

.contact-info-card{
    background:#fff;
    border-radius:22px;
    padding:35px 30px;
    text-align:center;
    text-decoration:none;
    border:1px solid #e5edf8;
    transition:.35s;
    box-shadow:0 10px 30px rgba(15,74,165,.05);
}

.contact-info-card:hover{
    transform:translateY(-8px);
    border-color:#0F4AA5;
    box-shadow:0 20px 45px rgba(15,74,165,.12);
}

.contact-info-card i{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#eef4ff;
    color:#0F4AA5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.contact-info-card span{
    display:block;
    color:#64748b;
    margin-bottom:8px;
}

.contact-info-card strong{
    color:#1f2937;
    font-size:18px;
    line-height:1.5;
    word-break:break-word;
}

/*======================================
            MAIN GRID
======================================*/

.contact-main-layout{
    display:grid;
    grid-template-columns:480px 1fr;
    gap:35px;
    align-items:start;
}

.contact-main-layout aside iframe{
    width:100%;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(15,74,165,.08);
}

/*======================================
            FORM
======================================*/

.contact-form-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    border:1px solid #e8edf7;
    box-shadow:0 15px 45px rgba(15,74,165,.08);
}

.contact-form-head{
    margin-bottom:30px;
}

.contact-form-head h2{
    font-size:34px;
    font-weight:700;
    color:#1f2937;
    margin:15px 0;
}

.contact-form-head p{
    color:#64748b;
}

.contact-form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.contact-form-grid label{
    display:flex;
    flex-direction:column;
}

.contact-email-field,
.contact-message-field{
    grid-column:1/-1;
}

.contact-form-grid span{
    margin-bottom:10px;
    font-weight:600;
    color:#1f2937;
}

.contact-form-grid em{
    color:#dc2626;
    font-style:normal;
}

.contact-form-grid input,
.contact-form-grid textarea{
    width:100%;
    border:1px solid #dbe5f1;
    border-radius:14px;
    padding:15px 18px;
    font-size:15px;
    outline:none;
    transition:.3s;
    background:#fff;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus{
    border-color:#0F4AA5;
    box-shadow:0 0 0 4px rgba(15,74,165,.08);
}

.contact-form-grid textarea{
    min-height:170px;
    resize:vertical;
}

.contact-form-grid small{
    color:#dc2626;
    margin-top:8px;
}

/*======================================
            BUTTON
======================================*/

.contact-submit-btn{
    margin-top:30px;
    border:none;
    background:#0F4AA5;
    color:#fff;
    border-radius:50px;
    padding:16px 35px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:12px;
    transition:.35s;
}

.contact-submit-btn:hover{
    background:#083c8b;
    transform:translateY(-2px);
}

/*======================================
            ALERTS
======================================*/

.contact-alert,
.contact-error{
    padding:15px 20px;
    border-radius:12px;
    margin-bottom:20px;
}

.contact-alert{
    background:#dcfce7;
    color:#166534;
}

.contact-error{
    background:#fee2e2;
    color:#b91c1c;
}

/*======================================
            RESPONSIVE
======================================*/

@media(max-width:1199px){

    .contact-main-layout{
        grid-template-columns:1fr;
    }

    .contact-main-layout aside iframe{
        height:450px;
    }

}

@media(max-width:991px){

    .contact-page{
        padding:80px 0;
    }

    .contact-info-grid{
        grid-template-columns:1fr;
    }

    .contact-page-head h1{
        font-size:38px;
    }

}

@media(max-width:767px){

    .contact-page{
        padding:70px 0;
    }

    .contact-form-card{
        padding:30px 22px;
    }

    .contact-form-grid{
        grid-template-columns:1fr;
    }

    .contact-form-head h2{
        font-size:28px;
    }

    .contact-page-head h1{
        font-size:30px;
    }

    .contact-main-layout aside iframe{
        height:350px;
    }

}

/*======================================
            BREADCRUMB
======================================*/

.inner-breadcrumb{
    position:relative;
    padding:70px 0 90px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
}

.breadcrumb-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(15,74,165,.92),
        rgba(15,74,165,.75)
    );
}

.breadcrumb-pattern{
    position:absolute;
    right:-120px;
    top:-120px;
    width:420px;
    height:420px;
    border-radius:50%;
    border:50px solid rgba(255,255,255,.08);
}

.breadcrumb-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.breadcrumb-subtitle{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,.15);
    color:#fff;
    border-radius:40px;
    font-weight:600;
    margin-bottom:20px;
    backdrop-filter:blur(8px);
}

.breadcrumb-content h1{
    color:#fff;
    font-size:54px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.breadcrumb-nav{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.breadcrumb-nav a{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb-nav a:hover{
    color:#dbeafe;
}

.breadcrumb-nav span{
    color:#fff;
    opacity:.9;
}

.breadcrumb-nav .divider{
    color:#fff;
    opacity:.7;
}

/*======================================
            RESPONSIVE
======================================*/

@media(max-width:991px){

.inner-breadcrumb{
    padding:110px 0 90px;
}

.breadcrumb-content h1{
    font-size:42px;
}

}

@media(max-width:767px){

.inner-breadcrumb{
    padding:90px 0 70px;
}

.breadcrumb-content h1{
    font-size:32px;
}

.breadcrumb-subtitle{
    font-size:14px;
    padding:8px 18px;
}

.breadcrumb-nav{
    font-size:14px;
}

.breadcrumb-pattern{
    display:none;
}

}

/*==========================================
            FAQ PAGE
==========================================*/

.faq-page{
    padding:70px 0;
    background:#f8fbff;
}

/*==========================================
            HEADER
==========================================*/

.faq-page-head{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.section-label{
    display:inline-flex;
    align-items:center;
    padding:10px 22px;
    border-radius:50px;
    background:#eef4ff;
    color:#0F4AA5;
    font-size:15px;
    font-weight:600;
    margin-bottom:18px;
}

.faq-page-head h1{
    font-size:48px;
    font-weight:700;
    color:#1f2937;
    line-height:1.2;
    margin-bottom:18px;
}

.faq-page-head p{
    color:#64748b;
    font-size:16px;
    line-height:1.9;
}

/*==========================================
            LAYOUT
==========================================*/

.faq-page-layout{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:35px;
    align-items:start;
}

/*==========================================
            SIDEBAR
==========================================*/

.faq-help-card{
    position:sticky;
    top:120px;
    background:#0F4AA5;
    color:#fff;
    padding:40px 35px;
    border-radius:24px;
    overflow:hidden;
}

.faq-help-card::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-90px;
    right:-80px;
}

.faq-help-card .section-label{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.faq-help-card strong{
    display:block;
    font-size:28px;
    line-height:1.35;
    margin:18px 0;
    position:relative;
    z-index:2;
}

.faq-help-card p{
    color:rgba(255,255,255,.85);
    line-height:1.9;
    margin-bottom:35px;
    position:relative;
    z-index:2;
}

.faq-help-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:15px 28px;
    background:#fff;
    color:#0F4AA5;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.35s;
    position:relative;
    z-index:2;
}

.faq-help-btn:hover{
    background:#eef4ff;
    color:#0F4AA5;
    transform:translateY(-3px);
}

/*==========================================
            FAQ LIST
==========================================*/

.faq-page-item{
    border:none;
    border-radius:18px !important;
    overflow:hidden;
    margin-bottom:20px;
    background:#fff;
    box-shadow:0 10px 30px rgba(15,74,165,.06);
}

.faq-page-item:last-child{
    margin-bottom:0;
}

.faq-page-item .accordion-button{
    background:#fff;
    padding:24px 30px;
    font-size:18px;
    font-weight:600;
    color:#1f2937;
    box-shadow:none;
    border:none;
}

.faq-page-item .accordion-button:not(.collapsed){
    background:#0F4AA5;
    color:#fff;
}

.faq-page-item .accordion-button::after{
    width:36px;
    height:36px;
    background-size:16px;
    border-radius:50%;
    background-color:#eef4ff;
}

.faq-page-item .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
    background-color:rgba(255,255,255,.15);
}

.faq-page-answer{
    padding:25px 30px 30px;
    color:#64748b;
    line-height:1.9;
}

.faq-page-answer p:last-child{
    margin-bottom:0;
}

.faq-page-answer ul,
.faq-page-answer ol{
    padding-left:18px;
}

.faq-page-answer li{
    margin-bottom:8px;
}

/*==========================================
            EMPTY
==========================================*/

.client-empty{
    background:#fff;
    border-radius:24px;
    padding:70px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(15,74,165,.06);
}

.client-empty i{
    width:90px;
    height:90px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#eef4ff;
    color:#0F4AA5;
    font-size:42px;
    margin-bottom:25px;
}

.client-empty strong{
    display:block;
    font-size:24px;
    color:#1f2937;
    margin-bottom:10px;
}

.client-empty span{
    color:#64748b;
}

/*==========================================
            RESPONSIVE
==========================================*/

@media(max-width:1199px){

.faq-page-layout{
    grid-template-columns:300px 1fr;
}

}

@media(max-width:991px){

.faq-page{
    padding:80px 0;
}

.faq-page-layout{
    grid-template-columns:1fr;
}

.faq-help-card{
    position:relative;
    top:0;
}

.faq-page-head h1{
    font-size:38px;
}

}

@media(max-width:767px){

.faq-page{
    padding:70px 0;
}

.faq-page-head{
    margin-bottom:50px;
}

.faq-page-head h1{
    font-size:30px;
}

.faq-page-item .accordion-button{
    font-size:16px;
    padding:20px;
}

.faq-page-answer{
    padding:20px;
}

.faq-help-card{
    padding:30px 25px;
}

.faq-help-card strong{
    font-size:22px;
}

.client-empty{
    padding:50px 20px;
}

}

/*==========================================
    Service Details Page
==========================================*/

.service-detail-full{
    padding:80px 0;
    background:#f8fafc;
}

.service-detail-wrap{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

/*==========================================
Hero
==========================================*/

.service-detail-hero{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:50px;
    align-items:center;
    background:#fff;
    border-radius:24px;
    padding:50px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    margin-bottom:50px;
}

.service-detail-hero-copy span:first-child{
    display:inline-block;
    background:#e8f8fb;
    color:#083b87;;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.service-detail-icon{
    width:75px;
    height:75px;
    background:#083b87;
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:20px;
}

.service-detail-hero h2{
    font-size:42px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
    color:#111827;
}

.service-detail-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.service-detail-hero-actions a{
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.service-detail-hero-actions a:first-child{
    background:#083b87;
    color:#fff;
}

.service-detail-hero-actions a:first-child:hover{
    background:#083b87;;
}

.service-detail-hero-actions a:last-child{
    border:2px solid #083b87;;
    color:#083b87;;
}

.service-detail-hero-actions a:last-child:hover{
    background:#083b87;;
    color:#fff;
}

.service-detail-hero-media{
    position:relative;
}

.service-detail-hero-media img{
    width:100%;
    border-radius:20px;
    height:450px;
    object-fit:cover;
}

.service-detail-media-note{
    position:absolute;
    left:25px;
    bottom:25px;
    right:25px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:20px;
}

.service-detail-media-note strong{
    display:block;
    margin-bottom:8px;
    color:#111;
    font-size:20px;
}

.service-detail-media-note span{
    color:#666;
    line-height:1.7;
}

/*==========================================
Layout
==========================================*/

.service-detail-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
}

.service-detail-main{
    display:flex;
    flex-direction:column;
    gap:30px;
}

/*==========================================
Cards
==========================================*/

.service-detail-card,
.service-process-card,
.service-info-card,
.service-inquiry-card,
.service-related-card{
    background:#fff;
    border-radius:22px;
    padding:35px;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.service-detail-card h2,
.service-process-card h2{
    font-size:30px;
    margin-bottom:20px;
    color:#111827;
}

.service-detail-overview p,
.service-detail-overview div{
    line-height:1.9;
    color:#555;
}

.service-detail-overview ul{
    padding-left:20px;
}

.service-detail-overview li{
    margin-bottom:10px;
}

/*==========================================
Section Heading
==========================================*/

.service-section-head span{
    color:#083b87;;
    font-weight:600;
    display:block;
    margin-bottom:10px;
}

.service-section-head h2{
  font-size:2.9rem;
    margin-bottom:35px;
}

/*==========================================
Process
==========================================*/

.service-process-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.service-process-grid article{
    background:#f8fafc;
    border-radius:18px;
    padding:25px;
    transition:.3s;
}

.service-process-grid article:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.service-process-grid span{
    width:55px;
    height:55px;
    background:#083b87;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:18px;
    font-weight:700;
    margin-bottom:18px;
}

.service-process-grid h3{
    font-size:22px;
    margin-bottom:12px;
}

.service-process-grid p{
    color:#666;
    line-height:1.8;
}

/*==========================================
Sidebar
==========================================*/

.service-detail-side{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.service-info-card h3,
.service-related-card h3{
    margin-bottom:25px;
}

.service-info-card dl{
    margin:0;
}

.service-info-card dl div{
    display:flex;
    justify-content:space-between;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.service-info-card dt{
    font-weight:600;
    color:#555;
}

.service-info-card dd{
    margin:0;
    color:#111;
    font-weight:600;
    text-align:right;
}

.service-inquiry-card{
    background:#083b87;
    color:#fff;
}

.service-inquiry-card span{
    display:block;
    opacity:.9;
    margin-bottom:10px;
}

.service-inquiry-card strong{
    display:block;
    font-size:26px;
    margin-bottom:15px;
}

.service-inquiry-card p{
    line-height:1.8;
    margin-bottom:25px;
}

.service-inquiry-card a{
    display:inline-block;
    padding:14px 30px;
    background:#fff;
    color:#083b87;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.service-related-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.service-related-list a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 18px;
    border-radius:14px;
    background:#f8fafc;
    text-decoration:none;
    color:#222;
    transition:.3s;
}

.service-related-list a:hover{
    background:#017998;
    color:#fff;
}

/*==========================================
Responsive
==========================================*/

@media(max-width:1200px){

.service-detail-hero{
    grid-template-columns:1fr;
}

.service-detail-layout{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.service-detail-full{
    padding:50px 0;
}

.service-detail-hero{
    padding:30px;
}

.service-detail-hero h2{
    font-size:32px;
}

.service-detail-hero-media img{
    height:320px;
}

.service-process-grid{
    grid-template-columns:1fr;
}

.service-detail-card,
.service-process-card,
.service-info-card,
.service-inquiry-card,
.service-related-card{
    padding:25px;
}

}

@media(max-width:576px){

.service-detail-hero{
    padding:20px;
}

.service-detail-hero h2{
    font-size:28px;
}

.service-detail-hero-actions{
    flex-direction:column;
}

.service-detail-hero-actions a{
    width:100%;
    text-align:center;
}

.service-detail-media-note{
    position:static;
    margin-top:15px;
}

}


/*======================================
            ABOUT PAGE
======================================*/

.about-full-page{
    padding:100px 0;
    background:#f8fbff;
}

.about-full-wrap{
    max-width:1400px;
}

/*======================================
            HERO
======================================*/

.about-full-hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    margin-bottom:80px;
}

.about-full-copy span{
    display:inline-block;
    background:#eef4ff;
    color:#0F4AA5;
    padding:10px 22px;
    border-radius:40px;
    font-weight:600;
    margin-bottom:20px;
}

.about-full-copy h2{
    font-size:52px;
    font-weight:700;
    line-height:1.2;
    color:#1f2937;
    margin-bottom:20px;
}

.about-full-copy p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:35px;
}

.about-full-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.about-full-actions a:first-child{
    background:#0F4AA5;
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    display:flex;
    gap:10px;
    align-items:center;
}

.about-full-actions a:last-child{
    border:2px solid #0F4AA5;
    color:#0F4AA5;
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
}

.about-full-media{
    position:relative;
}

.about-full-media img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:28px;
}

.about-full-media-card{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    max-width:330px;
    box-shadow:0 20px 50px rgba(15,74,165,.12);
}

.about-full-media-card strong{
    display:block;
    color:#1f2937;
    margin-bottom:10px;
    font-size:20px;
}

.about-full-media-card span{
    color:#64748b;
    line-height:1.8;
}

/*======================================
            STATS
======================================*/

.about-full-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:90px;
}

.about-full-stats article{
    background:#fff;
    text-align:center;
    padding:35px;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(15,74,165,.07);
}

.about-full-stats i{
    width:70px;
    height:70px;
    background:#eef4ff;
    color:#0F4AA5;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    font-size:30px;
}

.about-full-stats strong{
    display:block;
    font-size:34px;
    color:#0F4AA5;
}

.about-full-stats span{
    color:#64748b;
}

/*======================================
            SECTION TITLE
======================================*/

.about-full-intro{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:40px;
    margin-bottom:50px;
}

.about-full-intro span{
    color:#0F4AA5;
    font-weight:600;
}

.about-full-intro h2{
    font-size:42px;
    margin-top:10px;
    color:#1f2937;
}

.about-full-intro p{
    max-width:500px;
    color:#64748b;
}

/*======================================
            CAPABILITY
======================================*/

.about-capability-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:90px;
}

.about-capability-grid article{
    background:#fff;
    border-radius:22px;
    padding:35px;
    transition:.35s;
}

.about-capability-grid article:hover{
    transform:translateY(-8px);
}

.about-capability-grid i{
    width:65px;
    height:65px;
    background:#eef4ff;
    color:#0F4AA5;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.about-capability-grid h3{
    margin-bottom:15px;
}

.about-capability-grid p{
    color:#64748b;
    line-height:1.8;
}

/*======================================
            STORY
======================================*/

.about-story-panel{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:90px;
}

.about-story-images img{
    width:100%;
    height:550px;
    border-radius:24px;
    object-fit:cover;
}

.about-story-copy span{
    color:#0F4AA5;
    font-weight:600;
}

.about-story-copy h2{
    margin:15px 0 25px;
    font-size:40px;
}

.about-story-copy div,
.about-story-copy p{
    color:#64748b;
    line-height:1.9;
}

/*======================================
            PROCESS
======================================*/

.about-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
    margin-bottom:90px;
}

.about-process-grid article{
    background:#fff;
    border-radius:22px;
    padding:35px;
}

.about-process-grid span{
    display:inline-flex;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#0F4AA5;
    color:#fff;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    font-weight:700;
}

.about-process-grid h3{
    margin-bottom:15px;
}

.about-process-grid p{
    color:#64748b;
}

/*======================================
            MORE
======================================*/

.about-more-list{
    display:grid;
    gap:35px;
    margin-bottom:90px;
}

.about-more-list article{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:35px;
    align-items:center;
}

.about-more-list img{
    width:100%;
    height:280px;
    border-radius:20px;
    object-fit:cover;
}

/*======================================
            SERVICES
======================================*/

.about-service-preview-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.about-service-preview-grid a{
    background:#fff;
    border-radius:22px;
    padding:30px;
    text-decoration:none;
    color:#1f2937;
}

.about-service-preview-grid i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#eef4ff;
    color:#0F4AA5;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.about-service-preview-grid span{
    display:block;
    color:#0F4AA5;
    margin-bottom:8px;
}

/*======================================
            CTA
======================================*/

.about-full-cta{
    margin-top:100px;
    background:#0F4AA5;
    border-radius:30px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
}

.about-full-cta h2{
    color:#fff;
    margin-top:10px;
}

.about-full-cta a{
    background:#fff;
    color:#0F4AA5;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

/*======================================
            RESPONSIVE
======================================*/

@media(max-width:1199px){

.about-full-hero,
.about-story-panel{
grid-template-columns:1fr;
}

.about-full-stats,
.about-capability-grid,
.about-process-grid,
.about-service-preview-grid{
grid-template-columns:repeat(2,1fr);
}

.about-more-list article{
grid-template-columns:1fr;
}

}

@media(max-width:767px){

.about-full-page{
padding:70px 0;
}

.about-full-copy h2{
font-size:34px;
}

.about-full-intro{
display:block;
}

.about-full-intro h2{
font-size:30px;
}

.about-full-stats,
.about-capability-grid,
.about-process-grid,
.about-service-preview-grid{
grid-template-columns:1fr;
}

.about-full-media img,
.about-story-images img{
height:350px;
}

.about-full-cta{
padding:40px 25px;
display:block;
text-align:center;
}

.about-full-cta a{
margin-top:20px;
display:inline-block;
}

}

/* ==========================
   BLOG PAGE
========================== */

.blogs-page{
    padding:90px 0;
    background:#f7fafc;
}

.blog-page-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:60px;
}

.blog-page-copy{
    max-width:700px;
}

.blog-page-copy .section-label{
    display:inline-block;
    background:#eaf7f4;
    color:#083b87;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.blog-page-copy h1{
    font-size:48px;
    line-height:1.2;
    font-weight:700;
    color:#0f172a;
    margin-bottom:20px;
}

.blog-page-copy p{
    color:#64748b;
    font-size:17px;
    line-height:1.8;
}

/* ==========================
   Layout
========================== */

.blog-page-body{
    display:grid;
    grid-template-columns:2fr 340px;
    gap:35px;
    align-items:start;
}

.blog-list-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* ==========================
   Card
========================== */

.blog-list-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,23,42,.08);
    transition:.35s;
    border:1px solid #edf2f7;
}

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

.blog-list-image{
    display:block;
    position:relative;
    overflow:hidden;
}

.blog-list-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;
}

.blog-list-card:hover img{
    transform:scale(1.06);
}

.blog-list-image span{
    position:absolute;
    top:18px;
    left:18px;
    background:#083b87;
    color:#fff;
    padding:8px 15px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.blog-list-content{
    padding:28px;
}

.blog-list-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    color:#64748b;
    font-size:14px;
    margin-bottom:16px;
}

.blog-list-meta span{
    display:flex;
    align-items:center;
    gap:6px;
}

.blog-list-content h2{
    font-size:24px;
    line-height:1.35;
    margin-bottom:14px;
}

.blog-list-content h2 a{
    color:#0f172a;
    text-decoration:none;
    transition:.3s;
}

.blog-list-content h2 a:hover{
    color:#083b87;
}

.blog-list-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:22px;
}

.blog-read-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#083b87;
    font-weight:600;
    text-decoration:none;
}

.blog-read-btn i{
    transition:.3s;
}

.blog-read-btn:hover i{
    transform:translate(4px,-4px);
}

/* ==========================
 Sidebar
========================== */

.blog-sidebar{
    position:sticky;
    top:120px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.blog-sidebar-panel{
    background:#fff;
    border-radius:18px;
    padding:28px;
    border:1px solid #edf2f7;
}

.blog-sidebar-panel .section-label{
    display:block;
    color:#083b87;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.blog-category-list{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.blog-category-list span{
    padding:10px 18px;
    border-radius:40px;
    background:#f1f5f9;
    color:#334155;
    font-size:14px;
}

.blog-sidebar-panel.is-dark{
    background:#083b87;
    color:#fff;
}

.blog-sidebar-panel.is-dark span{
    opacity:.85;
    display:block;
    margin-bottom:12px;
}

.blog-sidebar-panel.is-dark strong{
    display:block;
    font-size:24px;
    line-height:1.4;
    margin-bottom:22px;
}

.blog-sidebar-panel.is-dark a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

/* ==========================
 Empty
========================== */

.blog-empty{
    background:#fff;
    border-radius:18px;
    padding:70px 30px;
    text-align:center;
    border:1px solid #edf2f7;
}

.blog-empty i{
    font-size:60px;
    color:#083b87;
    margin-bottom:20px;
}

.blog-empty strong{
    display:block;
    font-size:24px;
    margin-bottom:8px;
}

.blog-empty span{
    color:#64748b;
}

/* ==========================
   BLOG DETAIL
========================== */

.blog-detail-page {
    padding: 90px 0;
    background: #f6f9ff;
}

.blog-detail-wrap {
    max-width: 1400px;
}

.blog-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 34px;
    align-items: stretch;
    padding: 34px;
    background: #fff;
    border: 1px solid #e5ecf7;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(15, 35, 71, .08);
}

.blog-detail-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
}

.blog-pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    color: #0f4aa5;
    background: #eaf2ff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-detail-hero h1 {
    max-width: 900px;
    margin: 18px 0 16px;
    color: #0b2347;
    font-size: 52px;
    line-height: 1.06;
    font-weight: 900;
}

.blog-detail-hero p {
    max-width: 760px;
    margin: 0;
    color: #5c6678;
    font-size: 18px;
    line-height: 1.75;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
    color: #5c6678;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    background: #f6f9ff;
    border: 1px solid #e5ecf7;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.blog-detail-meta i {
    color: #0f4aa5;
}

.blog-detail-hero-image {
    overflow: hidden;
    min-height: 360px;
    border-radius: 8px;
    background: #eaf0f8;
}

.blog-detail-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: 30px;
    align-items: start;
    margin-top: 30px;
}

.blog-detail-main,
.blog-side-panel {
    min-width: 0;
}

.blog-detail-copy {
    padding: 36px;
    background: #fff;
    border: 1px solid #e5ecf7;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 35, 71, .06);
    color: #344054;
    font-size: 18px;
    line-height: 1.85;
}

.blog-detail-copy > *:first-child {
    margin-top: 0;
}

.blog-detail-copy > *:last-child {
    margin-bottom: 0;
}

.blog-detail-copy h2,
.blog-detail-copy h3,
.blog-detail-copy h4 {
    margin: 34px 0 14px;
    color: #0b2347;
    line-height: 1.22;
    font-weight: 900;
}

.blog-detail-copy h2 {
    font-size: 34px;
}

.blog-detail-copy h3 {
    font-size: 26px;
}

.blog-detail-copy p,
.blog-detail-copy ul,
.blog-detail-copy ol {
    margin-bottom: 18px;
}

.blog-detail-copy ul,
.blog-detail-copy ol {
    padding-left: 24px;
}

.blog-detail-copy li {
    margin-bottom: 9px;
}

.blog-detail-copy a {
    color: #0f4aa5;
    font-weight: 800;
}

.blog-detail-copy img {
    max-width: 100%;
    border-radius: 8px;
}

.blog-side-panel {
    position: sticky;
    top: 118px;
    display: grid;
    gap: 22px;
}

.blog-side-box {
    padding: 24px;
    background: #fff;
    border: 1px solid #e5ecf7;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 35, 71, .06);
}

.blog-side-box h3 {
    margin: 0 0 18px;
    color: #0b2347;
    font-size: 22px;
    font-weight: 900;
}

.blog-contact-box {
    color: #fff;
    background: #0f4aa5;
    border-color: #0f4aa5;
}

.blog-contact-box .section-label {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-contact-box strong {
    display: block;
    margin-top: 12px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 900;
}

.blog-contact-box p {
    margin: 14px 0 20px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.7;
}

.blog-contact-box a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    color: #0f4aa5;
    background: #fff;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 900;
}

.blog-related-list {
    display: grid;
    gap: 14px;
}

.blog-related-list a {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    color: #0b2347;
    text-decoration: none;
    font-weight: 900;
}

.blog-related-list img {
    width: 74px;
    height: 64px;
    object-fit: cover;
    border-radius: 7px;
}

.blog-related-list span {
    line-height: 1.35;
}

.blog-related-list p {
    margin: 0;
    color: #667085;
}

.blog-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-tag-list a,
.blog-tag-list span {
    display: inline-flex;
    padding: 8px 13px;
    color: #344054;
    background: #f1f5f9;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

/* ==========================
 Responsive
========================== */

@media(max-width:991px){

.blog-page-body{
    grid-template-columns:1fr;
}

.blog-detail-hero,
.blog-detail-layout {
    grid-template-columns: 1fr;
}

.blog-sidebar{
    position:static;
}

.blog-side-panel {
    position: static;
}

.blog-list-grid{
    grid-template-columns:1fr;
}

.blog-page-copy h1{
    font-size:36px;
}

.blog-page-head{
    margin-bottom:40px;
}

.blog-detail-hero h1 {
    font-size: 40px;
}

}

@media(max-width:576px){

.blogs-page{
    padding:70px 0;
}

.blog-detail-page {
    padding: 58px 0;
}

.blog-detail-hero,
.blog-detail-copy,
.blog-side-box {
    padding: 20px;
}

.blog-detail-hero-copy,
.blog-detail-hero-image,
.blog-detail-hero-image img {
    min-height: 0;
}

.blog-detail-hero-image {
    aspect-ratio: 1.2;
}

.blog-page-copy h1{
    font-size:30px;
}

.blog-detail-hero h1 {
    font-size: 32px;
}

.blog-detail-hero p,
.blog-detail-copy {
    font-size: 16px;
}

.blog-detail-copy h2 {
    font-size: 26px;
}

.blog-detail-copy h3 {
    font-size: 22px;
}

.blog-list-image img{
    height:220px;
}

.blog-list-content{
    padding:22px;
}

.blog-sidebar-panel{
    padding:22px;
}

}

/* =========================
   Footer
========================= */
.site-footer {
    background: #ffffff;
    color: #555;
    border-top: 1px solid #e9ecef;
    padding: 70px 0 0;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.site-footer .footer-brand img {
    max-width: 180px;
    margin-bottom: 20px;
}

.site-footer .footer-brand h2 {
    color: #0d6efd;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.site-footer p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.site-footer h4 {
    color: #222;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 22px;
}

.site-footer .footer-links {
    display: flex;
    flex-direction: column;
}

.site-footer .footer-links a {
    color: #666;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all .3s ease;
}

.site-footer .footer-links a:hover {
    color: var(--primary-color, #0d6efd);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item i {
    color: var(--primary-color, #0d6efd);
    font-size: 20px;
    margin-top: 3px;
}

.footer-contact-item span,
.footer-contact-item a {
    color: #666;
    text-decoration: none;
    line-height: 1.6;
}

.footer-contact-item a:hover {
    color: var(--primary-color, #0d6efd);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    background: var(--primary-color, #0d6efd);
    border-color: var(--primary-color, #0d6efd);
    color: #fff;
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid #e5e5e5;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: #777;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
    transition: .3s;
}

.footer-bottom a:hover {
    color: var(--primary-color, #0d6efd);
}

.home-doctors-section,
.doctors-page,
.doctor-detail-page {
    padding: 90px 0;
    background: #f6f9ff;
}

.home-doctors-wrap,
.doctors-page-wrap,
.doctor-detail-wrap {
    max-width: 1400px;
}

.home-doctors-head,
.doctors-page-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.doctors-page-head {
    display: block;
    max-width: 860px;
}

.home-doctors-title {
    max-width: 760px;
}

.home-doctors-head span,
.doctors-page-head span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #0f4aa5;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-doctors-head h2,
.doctors-page-head h1 {
    max-width: 760px;
    margin: 0;
    color: #0b2347;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
}

.doctors-page-head p {
    max-width: 720px;
    margin: 16px 0 0;
    color: #5c6678;
    font-size: 17px;
    line-height: 1.7;
}

.home-doctors-head > a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    color: #fff;
    background: #0f4aa5;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 800;
}

.home-doctors-grid,
.doctors-page-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.doctors-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.doctor-profile-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5ecf7;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(15, 35, 71, .08);
}

.doctor-profile-photo {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #eaf0f8;
}

.doctor-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.doctor-profile-card:hover .doctor-profile-photo img {
    transform: scale(1.04);
}

.doctor-profile-body {
    padding: 22px;
}

.doctor-profile-body span {
    color: #0f4aa5;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.doctor-profile-body h3 {
    margin: 8px 0 8px;
    color: #0b2347;
    font-size: 24px;
    font-weight: 900;
}

.doctor-profile-body p {
    min-height: 48px;
    margin: 0 0 14px;
    color: #667085;
    line-height: 1.5;
}

.doctor-profile-body div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    color: #344054;
}

.doctor-profile-body strong,
.doctor-profile-body small {
    font-size: 13px;
    font-weight: 800;
}

.doctor-profile-body a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    color: #fff;
    background: #0f4aa5;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 800;
}

.doctor-empty-state {
    grid-column: 1 / -1;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 56px 24px;
    color: #667085;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    text-align: center;
}

.doctor-empty-state i {
    color: #0f4aa5;
    font-size: 42px;
}

.doctor-empty-state strong {
    color: #0b2347;
    font-size: 20px;
}

.doctor-detail-hero {
    display: grid;
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    padding: 34px;
    background: #fff;
    border: 1px solid #e5ecf7;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(15, 35, 71, .08);
}

.doctor-detail-photo {
    overflow: hidden;
    aspect-ratio: 4 / 4.5;
    border-radius: 8px;
    background: #eaf0f8;
}

.doctor-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.doctor-detail-copy > span {
    color: #0f4aa5;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.doctor-detail-copy h1 {
    margin: 12px 0 10px;
    color: #0b2347;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 900;
}

.doctor-detail-copy p {
    margin: 0;
    color: #5c6678;
    font-size: 20px;
    font-weight: 700;
}

.doctor-detail-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.doctor-detail-facts article {
    padding: 18px;
    background: #f6f9ff;
    border: 1px solid #e5ecf7;
    border-radius: 8px;
}

.doctor-detail-facts i {
    color: #0f4aa5;
    font-size: 26px;
}

.doctor-detail-facts strong,
.doctor-detail-facts span {
    display: block;
}

.doctor-detail-facts strong {
    margin-top: 8px;
    color: #0b2347;
    font-size: 17px;
    font-weight: 900;
}

.doctor-detail-facts span {
    margin-top: 4px;
    color: #667085;
    font-size: 13px;
    font-weight: 800;
}

.doctor-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: 28px;
    align-items: start;
    margin-top: 28px;
}

.doctor-detail-main,
.doctor-appointment-panel {
    display: grid;
    gap: 22px;
}

.doctor-detail-card,
.doctor-appointment-panel,
.doctor-related-block {
    padding: 28px;
    background: #fff;
    border: 1px solid #e5ecf7;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 35, 71, .06);
}

.doctor-detail-card h2 {
    margin: 0 0 16px;
    color: #0b2347;
    font-size: 28px;
    font-weight: 900;
}

.doctor-detail-card p,
.doctor-detail-card div {
    color: #5c6678;
    line-height: 1.8;
}

.doctor-info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.doctor-info-list div {
    padding: 16px;
    border: 1px solid #e5ecf7;
    border-radius: 8px;
    background: #f6f9ff;
}

.doctor-info-list dt {
    color: #667085;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.doctor-info-list dd {
    margin: 7px 0 0;
    color: #0b2347;
    font-weight: 900;
}

.doctor-related-block {
    margin-top: 28px;
}

@media(max-width:1100px) {
    .home-doctors-grid,
    .doctors-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .doctor-detail-layout,
    .doctor-detail-hero {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {
    .home-doctors-section,
    .doctors-page,
    .doctor-detail-page {
        padding: 30px 0;
    }

    .home-doctors-head {
        display: grid;
        align-items: start;
        gap: 20px;
    }

    .home-doctors-head h2,
    .doctors-page-head h1,
    .doctor-detail-copy h1 {
        font-size: 34px;
    }

    .home-doctors-grid,
    .doctors-page-grid,
    .doctor-detail-facts,
    .doctor-info-list {
        grid-template-columns: 1fr;
    }

    .doctor-detail-hero,
    .doctor-detail-card,
    .doctor-appointment-panel,
    .doctor-related-block {
        padding: 20px;
    }
}

/* =========================
   Responsive
========================= */

@media (max-width:991px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width:767px) {
    .site-footer {
        padding-top: 50px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom div {
        justify-content: center;
    }
    .home-service-section{
        padding: 30px 0px;
    }
    .journey-section{
        padding: 30px 0px;
    }
    .home-review-section{
        padding: 30px 0px;
    }
    .faq-section{
          padding: 30px 0px;
    }
    .gallery-section{
         padding: 30px 0px;
    }
}

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

.gallery-item{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.3s;
}

.gallery-overlay i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#fff;
    color:#0d6efd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    transform:scale(.7);
    transition:.3s;
}

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

.gallery-item:hover .gallery-overlay i{
    transform:scale(1);
}

@media(max-width:1199px){
    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:991px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-item img{
        height:240px;
    }
}

@media(max-width:575px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:230px;
    }
}