:root {
    --site-header-height: 86px;
    --site-header-compact-height: 62px;
    --site-red: #015f77;
    --site-text: #101828;
    --site-muted: #475467;
    --site-border: rgba(16, 24, 40, .10);
}

* {
    box-sizing: border-box;
}

.container-fluid {
    max-width: 1400px;
    margin-inline: auto;
}

html {
    scroll-padding-top: var(--site-header-height);
}

body {
    padding-top: var(--site-header-height);
    color: var(--site-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.header-scrolled,
body:has(.site-header.is-scrolled) {
    padding-top: var(--site-header-compact-height);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -340px;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    transition: .35s ease;
    box-shadow: 0 15px 60px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

.sidebar-close {
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-menu {
    padding: 10px 0;
}

.mobile-menu>a,
.mobile-dropdown-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    color: #222;
    border: none;
    background: none;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #f3f3f3;
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    background: #fafafa;
}

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

.mobile-dropdown.active .material-symbols-outlined {
    transform: rotate(180deg);
}

.mobile-dropdown-content a {
    display: block;
    padding: 13px 40px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.mobile-dropdown-content a:hover {
    color: #0d6efd;
}

.view-all {
    font-weight: 600;
    color: #0d6efd !important;
}

.mobile-contact {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-contact a {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
}

@media(min-width:992px) {

    .mobile-sidebar,
    .mobile-overlay {
        display: none;
    }

}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid var(--site-border);
    box-shadow: 0 8px 24px rgba(16, 24, 40, .06);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-color: rgba(236, 30, 36, .16);
    box-shadow: 0 8px 22px rgba(16, 24, 40, .10);
}

.header-inner {
    min-height: var(--site-header-height);
    display: grid;
    grid-template-columns: minmax(180px, .8fr) minmax(360px, 1.2fr) auto;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    padding-inline: clamp(14px, 3vw, 44px);
    transition: min-height .25s ease;
}

.site-header.is-scrolled .header-inner {
    min-height: var(--site-header-compact-height);
}

.site-header .brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    color: var(--site-text);
    text-decoration: none;
}

.site-header .brand-logo {
    width: auto;
    max-width: 390px;
    height: 64px;
    object-fit: contain;
    transition: height .25s ease, max-width .25s ease;
}

.site-header.is-scrolled .brand-logo {
    max-width: 230px;
    height: 42px;
}

.site-header .brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    transition: width .25s ease, height .25s ease, font-size .25s ease;
}

.site-header.is-scrolled .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 15px;
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.6vw, 24px);
}

.nav-link,
.nav-dropdown-toggle {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 0;
    color: var(--site-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: color .2s ease;
}

.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .nav-dropdown-toggle {
    min-height: 30px;
    font-size: 13px;
}

.nav-link:hover,
.nav-link.active,
.nav-dropdown-toggle.active,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-hovered .nav-dropdown-toggle {
    color: var(--site-red);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle .material-symbols-outlined {
    font-size: 18px;
    line-height: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: min(560px, calc(100vw - 36px));
    padding: 12px;
    display: grid;
    gap: 6px;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, 8px);
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .14);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .14);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-hovered .nav-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

.solution-category {
    position: relative;
}

.nav-mega-menu {
    grid-template-columns: minmax(170px, .72fr) minmax(0, 1fr);
    gap: 12px;
    min-width: 500px;
    max-width: 600px;
}

.nav-mega-intro {
    padding: 14px;
    background: #fff7f7;
    border: 1px solid rgba(236, 30, 36, .10);
    border-radius: 8px;
}

.nav-mega-intro strong {
    display: block;
    margin-bottom: 12px;
    color: #06254b;
    font-size: 13px;
    font-weight: 900;
}

.nav-mega-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nav-mega-tags a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    color: var(--site-red);
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .14);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
}

.nav-mega-list {
    display: grid;
    gap: 5px;
}

.nav-mega-list a {
    display: grid;
    gap: 4px;
    padding: 10px 12px;
    color: var(--site-text);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
    text-decoration: none;
}

.nav-mega-list a:hover,
.nav-mega-tags a:hover {
    color: var(--site-red);
    background: #fff0f1;
}

.nav-mega-list small {
    color: #667085;
    font-size: 11px;
    font-weight: 700;
}

.nav-simple-menu {
    left: 0;
    width: 250px;
    transform: translateY(8px);
}

.nav-dropdown:hover .nav-simple-menu,
.nav-dropdown.is-hovered .nav-simple-menu {
    transform: translateY(0);
}

.nav-simple-menu a {
    display: grid;
    gap: 4px;
    padding: 11px 12px;
    color: var(--site-text);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.25;
    text-decoration: none;
}

.nav-simple-menu a:hover {
    color: var(--site-red);
    background: #fff0f1;
}

.nav-simple-menu small {
    color: #667085;
    font-size: 11px;
    font-weight: 700;
}

.solution-category-link,
.solution-submenu a,
.dropdown-all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    color: var(--site-text);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.solution-category-link:hover,
.solution-submenu a:hover,
.dropdown-all:hover {
    color: var(--site-red);
    background: #fff0f1;
}

.solution-submenu {
    display: grid;
    gap: 4px;
    padding-left: 12px;
}

.dropdown-all {
    grid-column: 1 / -1;
    margin-top: 4px;
    color: var(--site-red);
    background: #fff7f7;
}

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

.header-contact-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    color: #ffffff;
    background: var(--site-red);
    border: 1px solid var(--site-red);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: min-height .25s ease, padding .25s ease, transform .2s ease, background .2s ease;
}

.site-header.is-scrolled .header-contact-btn {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 13px;
}

.header-contact-btn:hover {
    color: #ffffff;
    background: #c9181e;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    place-items: center;
    justify-self: end;
    color: var(--site-red);
    background: #ffffff;
    border: 1px solid rgba(236, 30, 36, .20);
    border-radius: 6px;
}

.menu-toggle .material-symbols-outlined {
    font-size: 24px;
}
/*=========================================
        INNER BREADCRUMB
=========================================*/

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

.inner-breadcrumb::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(1,121,152,.88) 0%,
        rgba(1,121,152,.72) 45%,
        rgba(1,121,152,.45) 100%
    );
}

.inner-breadcrumb-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.08);
}

/* Decorative Circles */

.inner-breadcrumb::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.15);
    right:-120px;
    top:-120px;
}

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

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

/* Breadcrumb */

.inner-breadcrumb-content nav{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    padding:12px 22px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.15);
}

.inner-breadcrumb-content nav a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.inner-breadcrumb-content nav a:hover{
    color:#dff8ff;
}

.inner-breadcrumb-content nav span{
    color:#fff;
    font-weight:600;
}

.inner-breadcrumb-content nav i{
    color:rgba(255,255,255,.75);
    font-size:15px;
}

/* Optional Badge */

.inner-breadcrumb-content::before{
    content:"Vista ENT Clinic";
    display:inline-block;
    margin-bottom:16px;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}

/* Tablet */

@media (max-width:991px){

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

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

}

/* Mobile */

@media (max-width:767px){

    .inner-breadcrumb{
        padding:0px 0 0px;
        text-align:center;
    }

    .inner-breadcrumb-content{
        margin:auto;
    }

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

    .inner-breadcrumb-content nav{
        justify-content:center;
        flex-wrap:wrap;
        gap:8px;
        padding:10px 18px;
    }

}


@media (max-width: 900px) {
    :root {
        --site-header-height: 72px;
        --site-header-compact-height: 60px;
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
        padding-inline: 12px;
    }

    .site-header .brand-logo {
        max-width: 142px;
        height: 46px;
    }

    .site-header.is-scrolled .brand-logo {
        max-width: 112px;
        height: 34px;
    }

    .menu-toggle {
        display: grid;
    }

    .main-nav {
        position: fixed;
        top: var(--site-header-height);
        left: 12px;
        right: 12px;
        max-height: calc(100vh - var(--site-header-height) - 18px);
        padding: 12px;
        display: grid;
        justify-content: stretch;
        gap: 4px;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        background: #ffffff;
        border: 1px solid rgba(236, 30, 36, .14);
        border-radius: 8px;
        box-shadow: 0 18px 45px rgba(16, 24, 40, .16);
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease, top .25s ease;
    }

    .site-header.is-scrolled .main-nav {
        top: var(--site-header-compact-height);
    }

    .main-nav.open {
        visibility: visible;
        opacity: 0;
        transform: translateY(0);
    }

    .nav-link,
    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        min-height: 40px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        max-width: none;
        margin-top: 4px;
        display: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border-radius: 6px;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid;
    }

    .nav-dropdown.is-open .nav-dropdown-toggle .material-symbols-outlined {
        transform: rotate(180deg);
    }

    .nav-simple-menu {
        width: 100%;
    }

    .nav-mega-menu {
        grid-template-columns: 1fr;
    }

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

    .site-header.is-scrolled .header-contact-btn {
        width: 36px;
        min-height: 36px;
        padding: 0;
    }
}

@media (max-width: 520px) {
    .site-header .brand-logo {
        max-width: 122px;
        height: 42px;
    }

    .site-header.is-scrolled .brand-logo {
        max-width: 96px;
        height: 32px;
    }

    .inner-breadcrumb {
        min-height: 250px;
    }

    .inner-breadcrumb-content {
        padding: 54px 0;
    }

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

    .inner-breadcrumb-content nav {
        margin-top: 18px;
        padding: 9px 12px;
    }

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

.home-banner-section {
    width: 100%;
    overflow: hidden;
}

.home-banner-carousel,
.home-banner-slide {
    width: 100%;

    padding: 5px;
    border-radius: 10px;
    ;
}

.home-banner-slide {
    position: relative;
}

.home-banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    ;
}

/* Optional: slightly shorter on mobile */
@media (max-width:768px) {

    .home-banner-carousel,
    .home-banner-slide,
    .home-banner-image {
        height: auto;
    }
}


.home-banner-carousel.owl-theme .owl-nav {
    position: absolute;
    left: clamp(22px, 5vw, 90px);
    bottom: 34px;
    display: flex;
    gap: 12px;
    margin: 0;
}

.owl-nav {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
}

.owl-carousel .owl-nav button.owl-next {

    width: 46px !important;
    height: 46px !important;
    display: grid;
    place-items: center;
    margin: 0;
    color: white !important;
    background: var(--site-red) !important;
    border: 1px solid rgba(236, 30, 36, .28);
    border-radius: 50%;
    font-size: 22px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;


}

.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 25px !important;
    top: 40% !important;
}

.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: 25px !important;
    top: 40% !important;
}

.owl-carousel .owl-nav button.owl-prev {
    width: 46px !important;
    height: 46px !important;
    display: grid;
    place-items: center;
    margin: 0;
    color: white !important;
    background: var(--site-red) !important;
    border: 1px solid rgba(236, 30, 36, .28);
    border-radius: 50%;
    font-size: 22px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}



.home-banner-carousel.owl-theme .owl-nav {
    width: 46px !important;
    height: 46px !important;
    display: grid;
    place-items: center;
    margin: 0;
    color: var(--site-red);
    background: red !important;
    border: 1px solid rgba(236, 30, 36, .28);
    border-radius: 50%;
    font-size: 22px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.home-banner-carousel.owl-theme .owl-nav [class*=owl-]:hover {
    color: #ffffff;
    background: var(--site-red);
    border-color: var(--site-red);
    transform: translateY(-2px);
}

.home-banner-carousel.owl-theme .owl-dots {
    position: absolute;
    right: clamp(22px, 5vw, 90px);
    bottom: 50px;
    display: flex;
    gap: 8px;
}

.home-banner-carousel.owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0;
    background: rgba(236, 30, 36, .22);
    transition: width .2s ease, background .2s ease;
}

.home-banner-carousel.owl-theme .owl-dots .owl-dot.active span {
    width: 28px;
    background: var(--site-red);
}

@media (max-width: 1100px) {
    .home-banner-content {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {

    .home-banner-carousel,
    .home-banner-carousel .owl-stage-outer,
    .home-banner-carousel .owl-stage,
    .home-banner-carousel .owl-item,
    .home-banner-slide {
        min-height: auto;
    }

    .home-banner-content {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 44px 18px 104px;
    }

    .home-banner-copy {
        max-width: 100%;
    }

    .home-banner-media {
        order: -1;
    }

    .home-banner-media::before {
        inset: 24px -10px -12px 24px;
    }

    .home-banner-image-box {
        min-height: 260px;
    }

    .home-banner-image {
        min-height: 240px;
    }

    .home-banner-points {
        gap: 10px;
    }

    .home-banner-points span {
        min-height: 42px;
        padding: 9px 13px;
    }

    .home-banner-carousel.owl-theme .owl-nav {
        left: 18px;
        bottom: 30px;
    }

    .home-banner-carousel.owl-theme .owl-nav [class*=owl-] {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }

    .home-banner-carousel.owl-theme .owl-dots {
        right: 18px;
        bottom: 44px;
    }
}

@media (max-width: 560px) {
    .home-banner-copy h1 {
        font-size: 34px;
    }

    .home-banner-copy p {
        font-size: 15px;
    }

    .home-banner-points span {
        width: 100%;
        justify-content: flex-start;
    }
}
/*==================================================
    ABOUT SECTION - VISTA ENT CLINIC
    Primary Color : #017998
==================================================*/

.about-section{
    position: relative;
    padding:40px 0;
    background:#ffffff;
    overflow:hidden;
}

/*-----------------------------------
    Layout
------------------------------------*/

.about-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/*-----------------------------------
    Images
------------------------------------*/

.about-images{
    position:relative;
}

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

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

.main-image:hover img{
    transform:scale(1.05);
}

.doctor-image{
    position:absolute;
    width:220px;
    right:-35px;
    bottom:45px;
    overflow:hidden;
    border-radius:22px;
    background:#fff;
    padding:8px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.doctor-image img{
    width:100%;
    display:block;
    border-radius:16px;
}

/*-----------------------------------
    Experience Card
------------------------------------*/

.experience-box{
    position:absolute;
    left:-25px;
    bottom:-25px;
    background:#017998;
    color:#fff;
    padding:22px 30px;
    border-radius:18px;
    min-width:180px;
    box-shadow:0 20px 50px rgba(1,121,152,.28);
}

.experience-box h2{
    margin:0;
    font-size:42px;
    font-weight:700;
    line-height:1;
    color:#fff;
}

.experience-box span{
    display:block;
    margin-top:10px;
    font-size:15px;
    line-height:1.5;
    color:#fff;
}

/*-----------------------------------
    Content
------------------------------------*/

.about-content{
    max-width:620px;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(1,121,152,.08);
    color:#017998;
    font-size:15px;
    font-weight:600;
    margin-bottom:18px;
}

.about-content h2{
    font-size:44px;
    line-height:1.25;
    font-weight:700;
    color:var(--site-red);
    margin-bottom:22px;
}

.about-content p{
    font-size:16px;
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

/*-----------------------------------
    Features
------------------------------------*/

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin:45px 0;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:24px;
    background:#fff;
    border:1px solid #e7f3f5;
    border-radius:18px;
    transition:.35s;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.feature-item:hover{
    transform:translateY(-8px);
    border-color:#017998;
    box-shadow:0 18px 45px rgba(1,121,152,.15);
}

.feature-item i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(1,121,152,.10);
    color:#017998;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.feature-item h5{
    margin:0 0 8px;
    font-size:18px;
    font-weight:600;
    color:#222;
}

.feature-item p{
    margin:0;
    font-size:14px;
    color:#666;
    line-height:1.7;
}

/*-----------------------------------
    Buttons
------------------------------------*/

.about-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-top:10px;
}

.btn-primary,
.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:54px;
    padding:0 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.btn-primary{
    background:#017998;
    color:#fff;
    border:2px solid #017998;
}

.btn-primary:hover{
    background:#026b85;
    border-color:#026b85;
    color:#fff;
    transform:translateY(-2px);
}

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

.btn-outline:hover{
    background:#017998;
    color:#fff;
    transform:translateY(-2px);
}

/*-----------------------------------
    Responsive
------------------------------------*/

@media(max-width:1199px){

    .about-grid{
        gap:50px;
    }

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

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

}

@media(max-width:991px){


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

    .about-content{
        max-width:100%;
    }

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

    .doctor-image{
        right:20px;
    }

    .experience-box{
        left:20px;
        bottom:-20px;
    }

}

@media(max-width:767px){

 

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

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

    .doctor-image{
        width:160px;
        right:15px;
        bottom:20px;
    }

    .experience-box{
        position:relative;
        left:0;
        bottom:0;
        display:inline-block;
        margin-top:20px;
    }

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

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

    .btn-primary,
    .btn-outline{
        width:100%;
    }

}

@media(max-width:576px){

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

    .doctor-image{
        display:none;
    }

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

    .feature-item{
        padding:18px;
    }

}

/* ==========================================
   Contact Page
========================================== */

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

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

.section-label{
    display:inline-block;
    padding:8px 18px;
    background:#e8f5ff;
    color:var(--site-red);
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
    letter-spacing:.5px;
}

.contact-page-head h1{
    font-size:48px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:18px;
    color:#0f172a;
}

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

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

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

.contact-info-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.contact-info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.contact-info-card i{
    width:60px;
    height:60px;
    background:#005F77;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:28px;
}

.contact-info-card span{
    color:#64748b;
    font-size:14px;
}

.contact-info-card strong{
    color:#0f172a;
    font-size:18px;
    line-height:1.6;
}

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

.contact-main-layout{
    display:grid;
    grid-template-columns:50% 50%;
    gap:40px;
    align-items:start;
}

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

.contact-quick-panel{
    background:var(--site-red);
    color:#fff;
    padding:40px;
    border-radius:22px;
}

.contact-quick-panel .section-label{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.contact-quick-panel h2{
    font-size:32px;
    line-height:1.3;
    margin:20px 0;
}

.contact-quick-panel p{
    line-height:1.8;
    color:rgba(255,255,255,.85);
}

.contact-quick-list{
    margin-top:35px;
    display:flex;
    flex-direction:column;
    gap:28px;
}

.contact-quick-list div{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.contact-quick-list i{
    font-size:26px;
    margin-bottom:8px;
}

.contact-quick-list strong{
    font-size:18px;
}

.contact-quick-list span{
    color:rgba(255,255,255,.8);
    line-height:1.7;
}

/* ==========================================
   Form
========================================== */

.contact-form-card{
    background:#fff;
    padding:45px;
    border-radius:22px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

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

.contact-form-head h2{
    font-size:34px;
    color:#0f172a;
    margin-top:15px;
}

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

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

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

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

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

.contact-form-grid input:focus,
.contact-form-grid textarea:focus{
    border-color:var(--site-red);
    box-shadow:0 0 0 4px rgba(11,114,185,.12);
}

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

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

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

/* ==========================================
   Button
========================================== */

.contact-submit-btn{
    margin-top:30px;
    border:none;
    background:var(--site-red);
    color:#fff;
    padding:16px 30px;
    border-radius:12px;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    gap:12px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

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

/* ==========================================
   Alerts
========================================== */

.contact-alert{
    background:#e8fff2;
    color:#0f8b4c;
    padding:15px 18px;
    border-radius:10px;
    margin-bottom:25px;
}

.contact-error{
    background:#fff2f2;
    color:#d62828;
    padding:15px 18px;
    border-radius:10px;
    margin-bottom:25px;
}

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

@media(max-width:992px){

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

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

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

    .contact-form-card{
        padding:35px;
    }

}

@media(max-width:768px){

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

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

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

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

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

    .contact-info-card,
    .contact-form-card,
    .contact-quick-panel{
        padding:28px;
    }

}

/*==========================================
        DOCTOR PROFILE PAGE
==========================================*/

.founder-page{
    padding:80px 0;
    background:#f7fbfc;
}

.founder-page-wrap{
    max-width:1350px;
    margin:auto;
}

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

.founder-hero{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:80px;
}

/*==========================================
        IMAGE
==========================================*/

.founder-portrait{
    position:relative;
}

.founder-portrait img{
    width:100%;
    border-radius:24px;
    display:block;
    object-fit:cover;
    box-shadow:0 20px 50px rgba(49,126,152,.15);
}

.founder-portrait-caption{
    position:absolute;
    left:30px;
    right:30px;
    bottom:30px;
    background:#317E98;
    color:#fff;
    padding:20px;
    border-radius:16px;
    text-align:center;
}

.founder-portrait-caption strong{
    display:block;
    font-size:22px;
    margin-bottom:6px;
}

.founder-portrait-caption span{
    font-size:15px;
    opacity:.9;
}

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

.founder-copy span:first-child{
    display:inline-block;
    background:#eaf4f7;
    color:#317E98;
    padding:8px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.founder-copy h2{
    font-size:48px;
    color:#222;
    margin-bottom:10px;
    font-weight:700;
}

.founder-copy h4{
    color:#317E98;
    font-size:24px;
    margin-bottom:25px;
    font-weight:600;
}

.founder-copy p{
    font-size:17px;
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

/*==========================================
        EXPERIENCE
==========================================*/

.doctor-exp{
    display:inline-flex;
    align-items:center;
    gap:15px;
    padding:18px 25px;
    border-radius:15px;
    background:#fff;
    box-shadow:0 12px 30px rgba(49,126,152,.10);
    margin-bottom:35px;
}

.doctor-exp i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#317E98;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.doctor-exp strong{
    display:block;
    font-size:24px;
    color:#222;
}

.doctor-exp span{
    color:#666;
    font-size:14px;
}

/*==========================================
        BUTTONS
==========================================*/

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

.primary-btn,
.secondary-btn{
    text-decoration:none;
    padding:15px 28px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.primary-btn{
    background:#317E98;
    color:#fff;
}

.primary-btn:hover{
    background:#296d84;
    color:#fff;
}

.secondary-btn{
    border:2px solid #317E98;
    color:#317E98;
    background:#fff;
}

.secondary-btn:hover{
    background:#317E98;
    color:#fff;
}

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

.founder-story{
    background:#fff;
    padding:60px;
    border-radius:25px;
    box-shadow:0 15px 45px rgba(49,126,152,.08);
}

.founder-story .section-label{
    display:inline-block;
    background:#eaf4f7;
    color:#317E98;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:18px;
    font-size:14px;
    font-weight:600;
}

.founder-story h2{
    font-size:40px;
    color:#222;
    margin-bottom:30px;
}

.doctor-description,
.founder-story p{
    font-size:17px;
    color:#666;
    line-height:2;
}

.founder-story ul{
    margin:20px 0;
    padding-left:25px;
}

.founder-story li{
    margin-bottom:12px;
}

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

.founder-empty{
    background:#fff;
    text-align:center;
    padding:80px 30px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(49,126,152,.08);
}

.founder-empty i{
    font-size:70px;
    color:#317E98;
    margin-bottom:20px;
}

.founder-empty strong{
    display:block;
    font-size:28px;
    margin-bottom:10px;
    color:#222;
}

.founder-empty span{
    color:#666;
    font-size:17px;
}

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

@media(max-width:991px){

    .founder-hero{
        grid-template-columns:1fr;
        gap:40px;
    }

    .founder-copy h2{
        font-size:38px;
    }

    .founder-story{
        padding:40px;
    }

}

@media(max-width:767px){

    .founder-page{
        padding:60px 0;
    }

    .founder-copy h2{
        font-size:30px;
    }

    .founder-copy h4{
        font-size:20px;
    }

    .doctor-exp{
        width:100%;
    }

    .founder-actions{
        flex-direction:column;
    }

    .primary-btn,
    .secondary-btn{
        text-align:center;
        width:100%;
    }

    .founder-story{
        padding:25px;
    }

    .founder-story h2{
        font-size:28px;
    }

    .founder-portrait-caption{
        left:15px;
        right:15px;
        bottom:15px;
    }

}
/* --- Container & Reset Fixes --- */
.about-full-page {
    background-color: #ffffff;
    color: #2d3748;

    padding: 60px 0;
    overflow-x: hidden;
}

.about-full-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Global Elements (Spans, Intros) --- */
.about-full-copy > span,
.about-full-intro span,
.about-story-copy > span,
.about-more-list article span,
.about-service-preview-grid a span,
.about-full-cta span {
    display: inline-block;
    color: #317e98;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.about-full-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.about-full-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #2d3748;
    margin: 0;
}

.about-full-intro p {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.7;
    margin: 0;
}

/* --- Section 1: Hero Area --- */
.about-full-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-full-copy h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-full-copy p {
    font-size: 1.15rem;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 36px;
}

.about-full-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.about-full-actions a:first-child {
    background-color: #317e98;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.about-full-actions a:first-child:hover {
    background-color: #266277;
}

.about-full-actions a:last-child {
    color: #317e98;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 20px;
    transition: all 0.3s ease;
}

.about-full-actions a:last-child:hover {
    color: #266277;
}

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

.about-full-media img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(49, 126, 152, 0.08), 0 4px 6px -2px rgba(49, 126, 152, 0.04);
}

.about-full-media-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(49, 126, 152, 0.08), 0 4px 6px -2px rgba(49, 126, 152, 0.04);
    max-width: 280px;
    border-left: 5px solid #317e98;
}

.about-full-media-card strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #2d3748;
}

.about-full-media-card span {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.5;
    display: block;
}

/* --- Section 2: Stats Counter Strip --- */
.about-full-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 90px;
    border: 1px solid #edf2f7;
}

.about-full-stats article {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-full-stats article i {
    font-size: 2rem;
    color: #317e98;
    margin-bottom: 12px;
}

.about-full-stats article strong {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2d3748;
    line-height: 1;
    margin-bottom: 6px;
}

.about-full-stats article span {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
}

/* --- Section 3: Capabilities (Grid Layout) --- */
.about-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 90px;
}

.about-capability-grid article {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
}

.about-capability-grid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(49, 126, 152, 0.08), 0 4px 6px -2px rgba(49, 126, 152, 0.04);
    border-color: transparent;
}

.about-capability-grid article i {
    font-size: 2.2rem;
    color: #317e98;
    background: #eaf2f5;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.about-capability-grid article h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-capability-grid article p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* --- Section 4: Story Panel --- */
.about-story-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 90px;
}

.about-story-images img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(49, 126, 152, 0.08), 0 4px 6px -2px rgba(49, 126, 152, 0.04);
}

.about-story-copy h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-story-copy p {
    font-size: 1.05rem;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* --- Section 5: Process Steps --- */
.about-process-section {
    margin-bottom: 90px;
}

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

.about-process-grid article {
    background: #f7fafc;
    padding: 30px 24px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    position: relative;
}

.about-process-grid article span {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(49, 126, 152, 0.15);
    display: block;
    line-height: 1;
    margin-bottom: 12px;
}

.about-process-grid article h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d3748;
}

.about-process-grid article p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* --- Section 6: Secondary Content Blocks --- */
.about-more-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 90px;
}

.about-more-list article {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
}

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

.about-more-list article h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-more-list article p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* --- Section 7: Service Previews --- */
.about-service-preview {
    margin-bottom: 90px;
    background: #f7fafc;
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid #edf2f7;
}

.about-service-preview .about-full-intro {
    margin-bottom: 36px;
}

.about-service-preview .about-full-intro a {
    justify-self: end;
    background: #ffffff;
    color: #317e98;
    border: 1px solid #317e98;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-service-preview .about-full-intro a:hover {
    background: #317e98;
    color: #ffffff;
}

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

.about-service-preview-grid a {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #2d3748;
    display: flex;
    flex-direction: column;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
}

.about-service-preview-grid a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border-color: #317e98;
}

.about-service-preview-grid a i {
    font-size: 1.8rem;
    color: #317e98;
    margin-bottom: 16px;
}

.about-service-preview-grid a strong {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

/* --- Section 8: Call To Action Panel --- */
.about-full-cta {
    background: #317e98;
    color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 15px -3px rgba(49, 126, 152, 0.08), 0 4px 6px -2px rgba(49, 126, 152, 0.04);
}

.about-full-cta span {
    color: rgba(255, 255, 255, 0.85);
}

.about-full-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
}

.about-full-cta a {
    background: #ffffff;
    color: #317e98;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.about-full-cta a:hover {
    background: #f7fafc;
    transform: scale(1.02);
}

/* --- Responsive Adaptations (Media Queries) --- */
@media (max-width: 1024px) {
    .about-full-hero,
    .about-story-panel {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-full-media img,
    .about-story-images img {
        height: 380px;
    }

    .about-full-media-card {
       position: unset;
        
    }

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

    .about-full-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .about-full-intro {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-service-preview .about-full-intro a {
        justify-self: start;
    }

    .about-more-list article {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-more-list article img {
        width: 100%;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .about-full-page {
        padding: 40px 0;
    }

    .about-full-copy h2 {
        font-size: 2.2rem;
    }

    .about-story-copy h2, 
    .about-full-cta h2,
    .about-full-intro h2 {
        font-size: 1.8rem;
    }

    .about-full-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-full-actions a {
        text-align: center;
        justify-content: center;
    }

    .about-full-stats {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

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

    .about-full-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 24px;
    }
    
    .about-full-cta a {
        width: 100%;
        text-align: center;
    }
}


.faq-page {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
}

.faq-page::before {
    content: "";
    position: absolute;
    top: 90px;
    left: -140px;
    width: 340px;
    height: 340px;
    border: 48px solid rgba(0, 125, 184, 0.06);
    border-radius: 50%;
}

.faq-page .container {
    position: relative;
    z-index: 1;
}

.faq-page-head {

    margin: 0 auto 42px;
    text-align: center;
}

.faq-page-head .section-label {
    justify-content: center;
}

.faq-page-head h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(40px, 3vw, 46px);
    font-weight: 900;
    line-height: 1.04;
}

.faq-page-head p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #5f6b7c;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.72;
}

.faq-page-layout {
    display: grid;
    grid-template-columns: minmax(300px, .62fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.faq-help-card {
    position: sticky;
    top: 98px;
    padding: clamp(28px, 3vw, 40px);
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(0, 124, 129, 0.94), rgba(4, 89, 110, 0.92)),
        url("/uploads/banners/1782288193-banner-6a3b8f41c5af12.63268793.jpg") center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .12);
}

.faq-help-card .section-label {
    color: #000b4f;
}

.faq-help-card strong {
    display: block;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.12;
}

.faq-help-card p {
    margin: 18px 0 26px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.faq-help-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.faq-help-btn:hover {
    color: #ffffff;
    background: #c9181e;
    transform: translateY(-2px);
}

.faq-page-list {
    display: grid;
    gap: 14px;
}

.faq-page-list .faq-page-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

.faq-page-list .accordion-button {
    min-height: 76px;
    gap: 16px;
    padding: 22px 26px;
    color: var(--site-text);
    background: #ffffff;
    border: 0;
    box-shadow: none;
    font-size: clamp(17px, 1.4vw, 21px);
    font-weight: 900;
    line-height: 1.35;
}

.faq-page-list .accordion-button span {
    padding-right: 12px;
}

.faq-page-list .accordion-button::after {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    margin-left: auto;
    background-color: #fff0f1;
    background-position: center;
    background-size: 16px;
    border-radius: 8px;
}

.faq-page-list .accordion-button:not(.collapsed) {
    color: #ffffff;
    background: var(--site-red);
}

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

.faq-page-list .accordion-button:focus {
    box-shadow: 0 0 0 4px rgba(236, 30, 36, .12);
}

.faq-page-list .accordion-collapse {
    border: 0;
}

.faq-page-list .faq-page-answer {
    padding: 24px 26px 28px;
    color: #667085;
    background: #ffffff;
    border-top: 1px solid rgba(16, 24, 40, .08);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
}

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

.faq-page-list .client-empty {
    margin: 0;
}

.why-section {
    padding: 70px 0;
    background: white;
    position: relative;
    overflow: hidden;
}




.why-header {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.tag {
    display: inline-block;
    padding: 8px 18px;
    background: #fff;
    color: var(--site-red);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.why-left h2 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
    color: #111;
}

.why-left h2 span {
    color: var(--site-red);
}

.why-left p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 520px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    transition: .3s;
}

.btn-more:hover {
    background: var(--site-red);
}

.why-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.why-right::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 10px;
    width: 2px;
    height: calc(100% - 20px);
    background: #e4e7eb;
}

.feature {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    position: relative;
}

.number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--site-red);
    color: var(--site-red);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.content {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    flex: 1;
    transition: .3s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.content:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.content h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #111;
}

.content p {
    color: #666;
    line-height: 1.7;
}

.why-stats {
    margin-top: 90px;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(20px);
    border-radius: 22px;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.why-stats h3 {
    font-size: 34px;
    color: var(--site-red);
    margin-bottom: 8px;
}

.why-stats span {
    color: #666;
    font-size: 15px;
}

@media(max-width:991px) {

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

    .why-left h2 {
        font-size: 38px;
    }

    .why-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

}

@media(max-width:576px) {

    .why-stats {
        grid-template-columns: 1fr;
    }

    .why-left h2 {
        font-size: 32px;
    }

    .content {
        padding: 22px;
    }

}

.blogs-page {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
}

.blogs-page::before {
    content: "";
    position: absolute;
    top: 80px;
    right: -130px;
    width: 340px;
    height: 340px;
    border: 48px solid rgba(236, 30, 36, .06);
    border-radius: 50%;
}

.blogs-page .container {
    position: relative;
    z-index: 1;
}

.blog-page-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 36px;
}

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

.blog-page-copy h1 {
    margin: 0;
    color: var(--site-text);
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.04;
}

.blog-page-copy p {
    max-width: 720px;
    margin: 20px 0 0;
    color: #667085;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.72;
}

.blog-page-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

.blog-page-stats div {
    min-height: 108px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 20px;
    border-right: 1px solid rgba(16, 24, 40, .08);
}

.blog-page-stats div:last-child {
    border-right: 0;
}

.blog-page-stats strong {
    color: var(--site-red);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.blog-page-stats span {
    color: #667085;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.blog-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
    overflow: hidden;
    margin-bottom: 28px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(16, 24, 40, .10);
}

.blog-feature-image,
.blog-list-image {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.blog-feature-image {
    min-height: 440px;
}

.blog-feature-image img,
.blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.blog-feature-card:hover .blog-feature-image img,
.blog-list-card:hover .blog-list-image img {
    transform: scale(1.05);
}

.blog-feature-image span,
.blog-list-image span {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 1;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 8px 12px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.blog-feature-content {
    display: grid;
    align-content: center;
    padding: clamp(30px, 4vw, 52px);
}

.blog-pill {
    width: fit-content;
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    color: var(--site-red);
    background: #fff0f1;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.blog-feature-content h2,
.blog-list-content h2 {
    margin: 0;
}

.blog-feature-content h2 a,
.blog-list-content h2 a {
    color: var(--site-text);
    text-decoration: none;
    transition: color .2s ease;
}

.blog-feature-content h2 a:hover,
.blog-list-content h2 a:hover {
    color: var(--site-red);
}

.blog-feature-content h2 {
    font-size: clamp(30px, 3.4vw, 48px);
    font-weight: 900;
    line-height: 1.08;
}

.blog-feature-content p,
.blog-list-content p {
    color: #667085;
    font-weight: 600;
    line-height: 1.65;
}

.blog-feature-content p {
    margin: 18px 0 20px;
    font-size: 16px;
}

.blog-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #667085;
    font-size: 13px;
    font-weight: 800;
}

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

.blog-list-meta i {
    color: var(--site-red);
    font-size: 16px;
}

.blog-read-btn {
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 10px 16px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.blog-read-btn:hover {
    color: #ffffff;
    background: #c9181e;
    transform: translateY(-2px);
}

.blog-page-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .32fr);
    gap: 24px;
    align-items: start;
}

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

.blog-list-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.blog-list-card:hover {
    border-color: rgba(236, 30, 36, .22);
    box-shadow: 0 20px 44px rgba(16, 24, 40, .12);
    transform: translateY(-4px);
}

.blog-list-image {
    height: 230px;
}

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

.blog-list-content h2 {
    margin-top: 14px;
    font-size: clamp(21px, 1.7vw, 28px);
    font-weight: 900;
    line-height: 1.18;
}

.blog-list-content p {
    margin: 12px 0 0;
    font-size: 15px;
}

.blog-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.blog-sidebar-panel {
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

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

.blog-category-list span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 8px 11px;
    color: #06254b;
    background: #f9fafb;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
}

.blog-sidebar-panel.is-dark {
    color: #ffffff;
    background: #06254b;
}

.blog-sidebar-panel.is-dark span {
    color: #ff7378;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.blog-sidebar-panel.is-dark strong {
    display: block;
    margin: 12px 0 20px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.15;
}

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

.blog-empty {
    grid-column: 1 / -1;
    min-height: 240px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 34px;
    color: #667085;
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .10);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(16, 24, 40, .06);
}

.blog-empty i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 26px;
}

.blog-empty strong {
    color: var(--site-text);
    font-size: 22px;
    font-weight: 900;
}

@media (max-width: 620px) {
    .clients-page {
        padding: 58px 0;
    }

    .clients-page-head {
        margin-bottom: 30px;
        text-align: left;
    }

    .clients-page-head .section-label {
        justify-content: flex-start;
    }

    .clients-page-head h1 {
        font-size: 36px;
    }

    .clients-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .clients-logo-card {
        min-height: 126px;
        padding: 18px 12px;
    }

    .clients-logo-card img {
        max-width: 108px;
        height: 52px;
    }
}

@media (max-width: 980px) {

    .contact-info-grid,
    .contact-main-layout,
    .contact-faq-strip,
    .faq-page-layout,
    .why-choose-intro,
    .why-choose-experience,
    .blog-page-head,
    .blog-feature-card,
    .blog-page-body {
        grid-template-columns: 1fr;
    }

    .faq-help-card,
    .why-choose-command,
    .blog-sidebar {
        position: relative;
        top: 0;
    }

    .why-choose-command {
        min-height: auto;
    }

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

@media (max-width: 620px) {
    .contact-page {
        padding: 58px 0;
    }

    .contact-page-head {
        margin-bottom: 26px;
    }

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

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

    .contact-info-grid {
        gap: 12px;
    }

    .contact-info-card {
        min-height: 116px;
        padding: 20px;
    }

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

    .contact-submit-btn {
        width: 100%;
    }

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

    .faq-page-head {
        margin-bottom: 30px;
        text-align: left;
    }

    .faq-page-head .section-label {
        justify-content: flex-start;
    }

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

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

    .faq-page-list .accordion-button {
        min-height: 66px;
        padding: 18px;
    }

    .faq-page-list .faq-page-answer {
        padding: 20px 18px 22px;
        font-size: 15px;
    }

    .why-choose-section {
        padding: 48px 0;
    }

    .why-choose-intro {
        margin-bottom: 30px;
    }

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

    .why-choose-intro p {
        font-size: 14px;
    }

    .why-command-flow {
        grid-template-columns: 1fr;
    }

    .why-command-flow i {
        width: 1px;
        height: 18px;
        justify-self: center;
        background: linear-gradient(180deg, rgba(255, 255, 255, .70), transparent);
    }

    .why-point {
        grid-template-columns: 44px 1fr;
        gap: 12px;
        min-height: auto;
        padding: 14px 16px;
    }

    .why-point-index {
        display: none;
    }

    .why-point-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .why-point h3 {
        font-size: 17px;
    }

    .why-point p {
        font-size: 12px;
        line-height: 1.45;
    }

    .why-point:hover {
        transform: translateY(-4px);
    }

    .why-choose-metrics {
        grid-template-columns: 1fr;
    }

    .why-choose-metrics div {
        min-height: 76px;
        padding: 16px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .why-choose-metrics div:last-child {
        border-bottom: 0;
    }

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

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

    .blog-page-copy p {
        font-size: 15px;
    }

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

    .blog-page-stats div {
        min-height: 86px;
        border-right: 0;
        border-bottom: 1px solid rgba(16, 24, 40, .08);
    }

    .blog-page-stats div:last-child {
        border-bottom: 0;
    }

    .blog-feature-image {
        min-height: 260px;
    }

    .blog-feature-content {
        padding: 26px 20px;
    }

    .blog-feature-content h2 {
        font-size: 28px;
    }

    .blog-list-image {
        height: 210px;
    }

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

.home-achievement-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0px;
    color: #ffffff;
    background:
        radial-gradient(circle at 92% 8%, rgba(2, 89, 91, 0.56), transparent 34%),
        linear-gradient(135deg, #061120 0%, #005F77 48%, #005F77 100%);
}

.home-achievement-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .12), transparent 42%),
        radial-gradient(circle at 18% 88%, rgba(236, 30, 36, .10), transparent 32%);
    pointer-events: none;
}

.home-achievement-wrap {
    position: relative;
    z-index: 1;
    padding-inline: clamp(22px, 5vw, 90px);
}

.home-achievement-head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
    align-items: end;
    gap: clamp(34px, 6vw, 110px);
    margin-bottom: clamp(44px, 5vw, 72px);
}

.home-achievement-head span {
    display: inline-flex;
    margin-bottom: 22px;
    color: rgb(255, 242, 0);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.home-achievement-head h2 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.home-achievement-head h2 span {
    display: inline;
    margin: 0;
    color: rgb(255, 242, 0);
    font-size: inherit;
    letter-spacing: 0;
}

.home-achievement-head p {
    max-width: 620px;
    margin: 0;
    color: rgba(242, 242, 242, 0.72);
    font-size: 17px;

    line-height: 1.55;
}

.home-achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    background: rgba(4, 10, 22, .86);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 22px;
}

.home-achievement-card {
    min-height: 200px;
    display: grid;
    align-content: center;
    gap: 18px;
    padding: clamp(26px, 3vw, 48px);
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.home-achievement-card:last-child {
    border-right: 0;
}

.home-achievement-card strong {
    display: block;
    color: #ffffff;
    font-size: 3.4rem;
    font-weight: 900;
    line-height: .9;
}

.home-achievement-card strong span {
    color: rgb(255, 242, 0);
}

.home-achievement-card p {
    max-width: 210px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: clamp(12px, .9vw, 15px);
    font-weight: 900;
    letter-spacing: .28em;
    line-height: 1.45;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .home-achievement-head {
        grid-template-columns: 1fr;
    }

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

    .home-achievement-card:nth-child(3n) {
        border-right: 0;
    }
}

@media (max-width: 720px) {
    .home-achievement-section {
        padding: 30px 0;
    }

    .home-achievement-head h2 {
        font-size: 38px;
    }

    .home-achievement-head p {
        font-size: 16px;
    }

    .home-achievement-grid {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .home-achievement-card,
    .home-achievement-card:nth-child(3n) {
        min-height: 150px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .home-achievement-card:last-child {
        border-bottom: 0;
    }
}

/*==================================
      WHY CHOOSE US
==================================*/

.why-section{
    padding:100px 0;
    background:#f7fcfd;
    overflow:hidden;
    position:relative;
}

.why-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(1,121,152,.05);
    border-radius:50%;
    right:-180px;
    top:-180px;
}

.why-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:70px;
    align-items:center;
}

.section-tag{
    display:inline-block;
    background:rgba(1,121,152,.08);
    color:#017998;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.why-content h2{
    font-size:42px;
    line-height:1.25;
    margin-bottom:22px;
    color:#222;
    font-weight: 700;
}

.why-content h2 span{
    color:#017998;
}

.why-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

.why-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    height:54px;
    padding:0 32px;
    background:#017998;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.why-btn:hover{
    background:#026b85;
    color:#fff;
}

.why-btn i{
    transition:.3s;
}

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

/* Cards */

.why-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    display:flex;
    gap:20px;
    align-items:flex-start;
    border:1px solid #e8f3f5;
    transition:.35s;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#017998;
    box-shadow:0 20px 45px rgba(1,121,152,.15);
}

.why-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(1,121,152,.10);
    color:#017998;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    flex-shrink:0;
}

.why-card h3{
    font-size:21px;
    margin-bottom:10px;
    color:#222;
}

.why-card p{
    margin:0;
    color:#666;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .why-grid{
        grid-template-columns:1fr;
    }

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

}

@media(max-width:768px){

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

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

    .why-content h2{
        font-size:32px;
    }

}

@media(max-width:576px){

    .why-content h2{
        font-size:28px;
    }

    .why-card{
        padding:22px;
    }

    .why-icon{
        width:60px;
        height:60px;
        font-size:28px;
    }

}

/*==================================
            BLOG SECTION
==================================*/

.blog-section{
    padding:70px 0;
    background:#f7fcfd;
}

.section-heading{
    max-width:720px;
    margin:0 auto 60px;
}

.center-heading{
    text-align:center;
}

.section-label{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(1,121,152,.08);
    color:#017998;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.blog-title{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:18px;
}

.section-heading p{
    color:#666;
    line-height:1.8;
}

/* Grid */

.cards-grid{
    display:grid;
    gap:30px;
}

.cards-grid-3{
    grid-template-columns:repeat(3,1fr);
}

/* Card */

.blog-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    border:1px solid #e9f2f4;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 55px rgba(1,121,152,.12);
}

/* Image */

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

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

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

/* Category */

.blog-category{
    position:absolute;
    top:18px;
    left:18px;
    background:#017998;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/* Content */

.blog-content{
    padding:28px;
}

.blog-meta{
    display:flex;
    justify-content:space-between;
    color:#888;
    font-size:14px;
    margin-bottom:15px;
}

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

.blog-content h3 a{
    text-decoration:none;
    color:#222;
    transition:.3s;
}

.blog-content h3 a:hover{
    color:#017998;
}

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

/* Read More */

.text-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#017998;
    font-weight:600;
    transition:.3s;
}

.text-link span{
    font-size:20px;
    transition:.3s;
}

.blog-card:hover .text-link span{
    transform:translateX(6px);
}

/* Button */

.section-action{
    text-align:center;
    margin-top:50px;
}

.btn-dark{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:54px;
    padding:0 34px;
    background:#017998;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-dark:hover{
    background:#026b85;
    color:#fff;
}

/* Empty */

.empty-card{
    grid-column:1/-1;
    background:#fff;
    border-radius:20px;
    padding:50px;
    text-align:center;
    border:1px solid #e9f2f4;
}

.empty-card h3{
    color:#222;
    margin-bottom:10px;
}

.empty-card p{
    color:#666;
}

/* Responsive */

@media(max-width:991px){

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

    .blog-title{
        font-size:34px;
    }

}

@media(max-width:768px){

    .blog-section{
        padding:30px 0;
    }

    .cards-grid-3{
        grid-template-columns:1fr;
    }

    .blog-title{
        font-size:28px;
    }

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

}

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

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

.cta-box{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#017998 0%,#026b85 100%);
    border-radius:28px;
    padding:70px;
    text-align:center;
    color:#fff;
    box-shadow:0 25px 60px rgba(1,121,152,.28);
}

/* Decorative Shapes */

.cta-box::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-160px;
    right:-120px;
}

.cta-box::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    left:-70px;
    bottom:-70px;
}

/* Badge */

.cta-badge{
    position:relative;
    z-index:2;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    border-radius:40px;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.20);
    font-size:14px;
    font-weight:600;
    margin-bottom:24px;
}

.cta-badge i{
    font-size:18px;
}

/* Heading */

.cta-box h2{
    position:relative;
    z-index:2;
    font-size:48px;
    font-weight:700;
    line-height:1.25;
    margin-bottom:22px;
}

.cta-box h2 span{
    color:#d8f9ff;
}

/* Text */

.cta-box p{
    position:relative;
    z-index:2;
    max-width:760px;
    margin:0 auto 40px;
    font-size:17px;
    line-height:1.9;
    color:rgba(255,255,255,.92);
}

/* Buttons */

.cta-buttons{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    height:56px;
    padding:0 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

/* Primary */

.btn-primary{
    background:#fff !important;
    color:#017998;
}

.btn-primary:hover{
    background:#f5f5f5 !important;
    transform:translateY(-3px);
 color:#017998 !important;
}

/* Outline */

.btn-outline{
 color:#017998;
    border:2px solid #005F77 !important;
    background:transparent;
}

.btn-outline:hover{
    background:#fff;
    color:#017998;
    border-color:#fff;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:992px){

    .cta-box{
        padding:60px 40px;
    }

    .cta-box h2{
        font-size:38px;
    }

}

@media(max-width:768px){

    .cta-section{
        padding:30px 0;
    }

    .cta-box{
        padding:50px 25px;
    }

    .cta-box h2{
        font-size:30px;
    }

    .cta-box p{
        font-size:16px;
    }

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

    .btn-primary,
    .btn-outline{
        width:100%;
    }

}


/*==================================
      TESTIMONIALS
==================================*/

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

.home-review-head{
    text-align:center;
    margin-bottom:50px;
}

.home-review-head span{
    display:inline-block;
    color:#017998;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.home-review-head h2{
    font-size:42px;
    font-weight:700;
    color:#222;
}

.home-review-head h2 span{
    color:#017998;
}

/* Card */

.home-review-card{
    position:relative;
    background:#fff;
    border:1px solid #e8eef1;
    border-radius:18px;
    padding:35px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.35s;
}

.home-review-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

/* Google Quote */

.home-review-quote{
    position:absolute;
    right:30px;
    top:28px;
    font-size:38px;
    color:#017998;
    opacity:.12;
}

/* Review */

.home-review-card .blockquote{
    padding: 20px !important;
    margin: 20px 0px !important;
    font-size:16px;
    line-height:1.8;
    color:#555;
    font-style:normal;
}

/* Stars */

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

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

.home-review-stars i.is-active{
    color:#fbbc04;     /* Google yellow */
}

/* Author */

.home-review-author{
    display:flex;
    align-items:center;
    gap:15px;
    padding-top:20px;
    border-top:1px solid #edf1f3;
}

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

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

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

/* Google Badge */

.home-review-card::before{
    content:"Google Review";
    position:absolute;
    left:35px;
    top:25px;
    font-size:13px;
    font-weight:600;
    color:#017998;
    background:#eaf8fb;
    padding:6px 14px;
    border-radius:30px;
}

/* Owl */

.home-review-carousel .owl-stage{
    display:flex;
}

.home-review-carousel .owl-item{
    display:flex;
}

.home-review-carousel .owl-item .home-review-card{
    width:100%;
}

/* Dots */

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

.home-review-carousel .owl-dot span{
    width:10px;
    height:10px;
    margin:5px;
    display:block;
    border-radius:50%;
    background:#cfd8dc;
    transition:.3s;
}

.home-review-carousel .owl-dot.active span{
    width:28px;
    border-radius:30px;
    background:#017998;
}

/* Navigation */

.home-review-carousel .owl-nav{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
}

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

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

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

/* Mobile */

@media(max-width:768px){

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

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

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

}

.gallery-page {
    overflow: hidden;
    padding: 76px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fff7f8 42%, #f7f9fc 100%);
}

.gallery-page-wrap {
    padding-inline: clamp(18px, 5vw, 90px);
}

.gallery-page-head {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .62fr);
    align-items: end;
    gap: clamp(24px, 5vw, 76px);
    margin-bottom: 30px;
}

.gallery-page-head span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--site-red);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.gallery-page-head h2 {
    margin: 0;
    color: #06254b;
    font-size: clamp(36px, 4.6vw, 66px);
    font-weight: 950;
    line-height: 1.04;
}

.gallery-page-head p {
    margin: 0;
    color: #586678;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.68;
}

.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.gallery-filter-bar button {
    min-height: 38px;
    padding: 10px 18px;
    color: var(--site-red);
    background: #ffffff;
    border: 1px solid #dde5ef;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(16, 24, 40, .04);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.gallery-filter-bar button:hover,
.gallery-filter-bar button.is-active {
    color: #ffffff;
    background: var(--site-red);
    border-color: var(--site-red);
    transform: translateY(-1px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 18px;
}

.gallery-card {
    min-height: 300px;
    margin: 0;
    overflow: hidden;
    background: #06254b;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(6, 37, 75, .12);
}

.gallery-card.is-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 620px;
}

.gallery-card.is-hidden {
    display: none;
}

.gallery-card a {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    color: #ffffff;
    text-decoration: none;
}

.gallery-card a::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 37, 75, .04) 0%, rgba(6, 37, 75, .22) 42%, rgba(2, 18, 38, .92) 100%);
    opacity: .92;
    transition: opacity .25s ease, background .25s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .55s ease, filter .25s ease;
}

.gallery-card:hover img {
    filter: saturate(1.08);
    transform: scale(1.08);
}

.gallery-card figcaption {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 8px;
}

.gallery-card figcaption small {
    justify-self: start;
    max-width: 100%;
    padding: 7px 10px;
    color: #06254b;
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
}

.gallery-card figcaption span {
    padding-right: 46px;
    color: #ffffff;
    font-size: clamp(18px, 1.45vw, 24px);
    font-weight: 950;
    line-height: 1.15;
}

.gallery-card figcaption i {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    font-size: 18px;
    transition: background .2s ease, transform .2s ease;
}

.gallery-card:hover figcaption i {
    background: var(--site-red);
    transform: translate(3px, -3px);
}

.gallery-empty {
    grid-column: 1 / -1;
}

body.gallery-lock {
    overflow: hidden;
}

.gallery-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: clamp(18px, 5vw, 70px);
    visibility: hidden;
    opacity: 0;
    background: rgba(2, 8, 18, .92);
    transition: opacity .2s ease, visibility .2s ease;
}

.gallery-fullscreen.active {
    visibility: visible;
    opacity: 1;
}

.gallery-fullscreen img {
    max-width: min(1120px, 100%);
    max-height: 78vh;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

.gallery-fullscreen-title {
    max-width: min(900px, 100%);
    margin-top: 18px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 850;
    text-align: center;
}

.gallery-fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    font-size: 22px;
}

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

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gallery-page {
        padding: 58px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-card,
    .gallery-card.is-large {
        grid-column: auto;
        grid-row: auto;
        min-height: 340px;
    }

    .gallery-filter-bar button {
        min-height: 36px;
        padding: 9px 14px;
        font-size: 11px;
    }
}


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

.home-service-section{
    padding:70px 0;
    background:#f7fcfd;
    position:relative;
    overflow:hidden;
}

.home-service-section::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:rgba(1,121,152,.05);
    border-radius:50%;
    top:-150px;
    left:-120px;
}

.home-service-wrap{
    position:relative;
    z-index:2;
}

/* Heading */

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

.home-service-head span{
    color:#017998;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.home-service-head h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-top:10px;
    max-width:650px;
    line-height:1.25;
}

.home-service-head p{
    max-width:520px;
    color:#666;
    line-height:1.9;
}

/* Grid */

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

/* Card */

.service-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    text-decoration:none;
    transition:.35s;
    box-shadow:0 12px 40px rgba(0,0,0,.06);
    border:1px solid #edf3f5;
}

.service-card:hover{
    transform:translateY(-10px);

}

/* Image */

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

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

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

/* Content */

.service-content{
    position:relative;
    padding:60px 30px 30px;
}

/* Floating Icon */

.service-icon{
    position:absolute;
    top:-32px;
    left:30px;
    width:65px;
    height:65px;
    border-radius:18px;
    background:#017998;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 12px 30px rgba(1,121,152,.35);
}

.service-content h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
    font-weight:700;
}

.service-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:28px;
}

/* Button */

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#017998;
    font-weight:600;
    transition:.3s;
}

.service-btn i{
    transition:.3s;
}

.service-card:hover .service-btn i{
    transform:translateX(6px);
}


/* Responsive */

@media(max-width:1200px){

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

}

@media(max-width:991px){

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

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

}

@media(max-width:768px){

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

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

    .service-image{
        height:220px;
    }

}

@media(max-width:576px){

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

    .service-content{
        padding:55px 24px 24px;
    }

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

}


.service-detail-full {
    overflow: hidden;
    padding: 72px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fff7f8 48%, #f7f9fc 100%);
}

.service-detail-wrap {
    padding-inline: clamp(18px, 5vw, 90px);
}

.service-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
    align-items: center;
    gap: clamp(30px, 5vw, 76px);
    margin-bottom: 56px;
}

.service-detail-hero-copy>span,
.service-detail-card>span,
.service-section-head span,
.service-inquiry-card>span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--site-red);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.service-detail-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 31px;
    box-shadow: 0 16px 34px rgba(236, 30, 36, .22);
}

.service-detail-hero-copy h2,
.service-detail-card h2,
.service-section-head h2 {
    margin: 0;
    color: #06254b;
    font-size: 3.7rem;
    font-weight: 950;
    line-height: 1.04;
}

.service-detail-hero-copy p {
    max-width: 720px;
    margin: 20px 0 0;
    color: #586678;
    font-size: 18px;
    font-weight: 650;
    line-height: 1.68;
}

.service-detail-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.service-detail-hero-actions a:first-child,
.service-inquiry-card a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;

}

.service-detail-hero-actions a:last-child {
    color: var(--site-red);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.service-detail-hero-media {
    position: relative;
    overflow: hidden;
    background: #e9eef6;
    border-radius: 8px;

}

.service-detail-hero-media img {
    width: 100%;
    min-height: clamp(420px, 42vw, 620px);
    display: block;
    object-fit: cover;
}

.service-detail-media-note {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    max-width: 430px;
    padding: 20px;
    color: #ffffff;
    background: rgba(6, 37, 75, .88);

    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.service-detail-media-note strong {
    display: block;
    font-size: 20px;
    font-weight: 950;
}

.service-detail-media-note span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    align-items: start;
    gap: clamp(28px, 4vw, 56px);
}

.service-detail-main,
.service-detail-side {
    display: grid;
    gap: 24px;
}

.service-detail-card,
.service-process-card,
.service-info-card,
.service-inquiry-card,
.service-related-card,
.service-highlight-grid article {
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(16, 24, 40, .06);
}

.service-detail-card,
.service-process-card,
.service-info-card,
.service-inquiry-card,
.service-related-card {
    padding: clamp(24px, 3vw, 36px);
}

.service-detail-card h2,
.service-section-head h2 {
    font-size: clamp(28px, 3vw, 44px);
}

.service-detail-overview div,
.service-detail-overview p {
    margin-top: 18px;
    color: #586678;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
}

.service-detail-overview p,
.service-detail-overview ul,
.service-detail-overview ol {
    margin-bottom: 16px;
}

.service-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-highlight-grid article {
    min-height: 230px;
    padding: 24px;
}

.service-highlight-grid i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 8px;
    font-size: 24px;
}

.service-highlight-grid h3,
.service-process-grid h3,
.service-info-card h3,
.service-related-card h3 {
    margin: 18px 0 10px;
    color: #06254b;
    font-size: 21px;
    font-weight: 950;
    line-height: 1.2;
}

.service-highlight-grid p,
.service-process-grid p {
    margin: 0;
    color: #667085;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.6;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.service-process-grid article {
    padding: 22px;
    background: #f8fafc;
    border: 1px solid rgba(16, 24, 40, .07);
    border-radius: 8px;
}

.service-process-grid article>span {
    color: rgba(236, 30, 36, .18);
    font-size: 46px;
    font-weight: 950;
    line-height: 1;
}

.service-info-card h3,
.service-related-card h3 {
    margin-top: 0;
}

.service-info-card dl {
    display: grid;
    gap: 14px;
    margin: 0;
}

.service-info-card dl div {
    padding-bottom: 14px;
    border-bottom: 1px solid #edf1f6;
}

.service-info-card dt {
    margin-bottom: 4px;
    color: #8993a3;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.service-info-card dd {
    margin: 0;
    color: #06254b;
    font-size: 15px;
    font-weight: 850;
}

.service-inquiry-card {
    color: #ffffff;
    background: #06254b;
}

.service-inquiry-card>span {
    color: #ffffff;
}

.service-inquiry-card strong {
    display: block;
    color: #ffffff;
    font-size: 25px;
    font-weight: 950;
    line-height: 1.18;
}

.service-inquiry-card p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.55;
}

.service-inquiry-card a {
    margin-top: 22px;
    background: #ffffff;
    color: var(--site-red);
    box-shadow: none;
}

.service-related-list {
    display: grid;
    gap: 8px;
}

.service-related-list a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    color: #06254b;
    background: #f8fafc;
    border: 1px solid rgba(16, 24, 40, .06);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.service-related-list a:hover {
    color: var(--site-red);
    background: #fff0f1;
}

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

@media (max-width: 1100px) {

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

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

@media (max-width: 760px) {
    .service-detail-full {
        padding: 58px 0;
    }

    .service-detail-hero {
        gap: 24px;
        margin-bottom: 36px;
    }

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

    .service-detail-media-note {
        position: static;
        max-width: none;
        border-radius: 0;
    }

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

@media (max-width: 1180px) {
    .home-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-service-head {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {
    .home-service-section {
        padding: 30px 0;
    }

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

    .home-service-head p {
        font-size: 16px;
    }

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

    .home-service-card {
        min-height: 230px;
        padding: 28px 24px;
    }

    .service-category-nav {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-category-head {
        display: grid;
        align-items: start;
    }
}


.reviews-page-wrap {
    padding-inline: clamp(18px, 5vw, 90px);
    padding: 70px 50px;
}

.reviews-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    align-items: end;
    gap: clamp(28px, 5vw, 76px);
    margin-bottom: 36px;
}

.reviews-page-copy>span,
.reviews-score-panel>span,
.reviews-cta span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--site-red);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.reviews-page-copy h2,
.reviews-cta h2 {
    max-width: 900px;
    margin: 0;
    color: #06254b;
    font-size: clamp(30px, 3.6vw, 50px);
    font-weight: 750;
    line-height: 1.12;
}

.reviews-page-copy p {
    max-width: 720px;
    margin: 20px 0 0;
    color: #586678;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.68;
}

.reviews-page-copy>a,
.reviews-cta>a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 13px 20px;
    color: #ffffff;
    background: var(--site-red);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(236, 30, 36, .22);
}

.reviews-score-panel,
.reviews-featured-card,
.reviews-card {
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(16, 24, 40, .06);
}

.reviews-score-panel {
    padding: 28px;
}

.reviews-score-panel strong {
    display: block;
    color: #06254b;
    font-size: 52px;
    font-weight: 750;
    line-height: 1;
}

.reviews-score-panel p {
    margin: 14px 0 0;
    color: #667085;
    font-size: 13px;
    font-weight: 500;
}

.reviews-stars {
    display: flex;
    gap: 4px;
    color: #d7dee9;
    font-size: 16px;
}

.reviews-stars .is-active {
    color: var(--site-red);
}

.reviews-featured-card {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
    padding: clamp(28px, 4vw, 48px);
    color: #ffffff;
    background: #06254b;
}

.reviews-featured-card>i {
    color: #ff4850;
    font-size: 38px;
}

.reviews-featured-card blockquote {

    margin: 0;
    color: #ffffff;
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 600;
    line-height: 1.35;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.reviews-card {
    min-height: 300px;
    display: grid;
    gap: 22px;
    align-content: start;
    padding: 26px;
}

.reviews-card p {
    margin: 0;
    color: #586678;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
}

.reviews-card-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.reviews-card-footer img {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 50%;
}

.reviews-card-footer strong {
    display: block;
    color: #06254b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
}

.reviews-card-footer span {
    display: block;
    margin-top: 4px;
    color: #667085;
    font-size: 12px;
    font-weight: 500;
}

.reviews-featured-card .reviews-card-footer strong,
.reviews-featured-card .reviews-card-footer span {
    color: #ffffff;
}

.reviews-featured-card .reviews-stars {
    margin-left: auto;
}

.reviews-empty {
    grid-column: 1 / -1;
}

.reviews-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 56px;
    padding: clamp(28px, 4vw, 46px);
    color: #ffffff;
    background: #06254b;
    border-radius: 8px;
}

.reviews-cta span,
.reviews-cta h2 {
    color: #ffffff;
}

.reviews-cta h2 {
    max-width: 760px;
    font-size: clamp(26px, 2.8vw, 38px);
}

.reviews-cta>a {
    flex: 0 0 auto;
    margin-top: 0;
    background: #ffffff;
    color: var(--site-red);
    box-shadow: none;
}

@media (max-width: 1100px) {

    .reviews-page-hero,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .reviews-page {
        padding: 30px 0;
    }

    .reviews-featured-card .reviews-card-footer,
    .reviews-cta {
        display: grid;
    }

    .reviews-featured-card .reviews-stars {
        margin-left: 0;
    }
}





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

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

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

.section-label {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--site-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.faq-sticky h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.faq-sticky p {
    font-size: 16px;
    line-height: 1.8;
    color: #6b7280;
}

.faq-info-box {
    margin-top: 35px;
    display: flex;
    gap: 18px;
    padding: 25px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.faq-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #005F77 !important;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.custom-faq .accordion-item {
    border: 0;
    margin-bottom: 18px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

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

.custom-faq .accordion-button:not(.collapsed) {
    background: #005F77 !important;
    color: #fff;
}

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

.custom-faq .accordion-body {
    padding: 25px 28px;
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
}

@media (max-width: 991px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-sticky {
        position: relative;
        top: 0;
    }

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


.site-footer {
    position: relative;
    z-index: 2;
    background: #015f77;
    color: white;
    padding: 70px 8% 35px;
    font-family: Arial, sans-serif;
}

.site-footer a {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 3.3fr 1.2fr 2.8fr 2.9fr 1.3fr;
    gap: 45px;
}

.footer-logo {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 900;
}

.footer-logo span {
    color: white;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    max-width: 210px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    text-transform: lowercase;
}

.footer-brand:hover {
    color: #ffffff;
}

.footer-brand img {
    width: auto;
    max-width: 190px;
    max-height: 58px;
    display: block;
    object-fit: contain;
}

.footer-brand em {
    color: #ffffff;
    font-style: normal;
}

.footer-about p {
    max-width: 320px;
    line-height: 1.7;
    font-size: 15px;
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.footer-info li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-bottom: 14px;
    line-height: 1.5;
    font-size: 14px;
}

.footer-info i {
    color: #f5c800;
    font-size: 18px;
    line-height: 1.4;
}

.footer-info a {
    color: #d8dde7;
    text-decoration: none;
}

.footer-info a:hover {
    color: #ffffff;
}

.footer-info small {
    display: block;
    margin-top: 4px;
    color: #858c99;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #151c2a;
    color: #fff;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ef3d4f;
}

.footer-links h4,
.footer-newsletter h4 {
    color: #fcac00;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 22px;
}

.footer-links a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.footer-links a:hover {
    color: #fff;
}

.footer-newsletter h3 {
    color: #fff;
    font-size: 23px;
    line-height: 1.25;
    margin-bottom: 18px;
}

.footer-newsletter p {
    max-width: 320px;
    margin: 0 0 22px;
    color: #a6adba;
    font-size: 14px;
    line-height: 1.7;
}

.footer-cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    color: #ffffff;
    background: #ef3d4f;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.footer-cta:hover {
    color: #ffffff;
    background: #d92f41;
}

.footer-newsletter form {
    display: flex;
    max-width: 280px;
    background: #151c2a;
    border-radius: 35px;
    overflow: hidden;
    border: 1px solid #252d3a;
}

.footer-newsletter input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    padding: 16px 18px;
}

.footer-newsletter button {
    width: 58px;
    border: 0;
    background: #ef3d4f;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.footer-newsletter small {
    display: block;
    margin-top: 13px;
    color: #747b88;
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid #18202d;
    margin-top: 60px;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
}

.footer-bottom a {
    color: #858c99;
    text-decoration: none;
    margin-left: 25px;
}

.footer-bottom a:hover {
    color: #fff;
}

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

    .footer-about,
    .footer-newsletter {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 20px 28px;
    }

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

    .footer-about,
    .footer-newsletter {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
    }

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

    .footer-bottom a {
        margin-left: 0;
        margin-right: 0;
    }
}

.process-section {
    padding: 120px 40px 100px;
    background: #ffffff;
    font-family: Arial, sans-serif;
    color: #082b59;
    text-align: center;
    position: relative;
}

.process-header span {
    display: block;
    color: #ef3445;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.process-header h2 {
    margin: 0 auto 90px;
    max-width: 980px;
    font-size: 70px;
    line-height: 1.05;
    font-weight: 900;
    color: #062856;
}

.process-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 57%;
    height: 1px;
    background: #dce2eb;
    z-index: 0;
}

.process-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 35px;
    max-width: 1500px;
    margin: 0 auto;
}

.process-card {
    text-align: center;
}

.icon-box {
    width: 78px;
    height: 78px;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 2px solid #e1e6ee;
    background: #fff;
    color: #062856;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    position: relative;
}

.icon-box span {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #062856;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 11px;
    border-radius: 20px;
}

.process-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #062856;
    font-weight: 900;
}

.process-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #586274;
    max-width: 240px;
    margin: auto;
}

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

    .process-line {
        display: none;
    }

    .process-header h2 {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 70px 20px;
    }

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

    .process-header h2 {
        font-size: 36px;
    }

    .process-card p {
        max-width: 100%;
    }

.reviews-page-wrap {
   
    padding: 0px 7px;
}
}

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

.blog-detail-page {
    padding: 70px 0;
    background: #f8fafc;
}

.blog-detail-head {
    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
}

.blog-pill {
    display: inline-block;
    background: #e8f3ff;
    color: #0d6efd;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.blog-detail-head h1 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 20px;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #666;
    font-size: 15px;
}

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

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

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

.blog-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 45px;
    align-items: start;
}

/* ======================
MAIN CONTENT
====================== */

.blog-detail-main {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0, 0, 0, .05);
}

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

.blog-detail-copy {
    padding: 40px;
    color: #444;
    line-height: 1.9;
    font-size: 17px;
}

.blog-detail-copy h2,
.blog-detail-copy h3,
.blog-detail-copy h4 {
    margin-top: 35px;
    margin-bottom: 18px;
    color: #111;
    font-weight: 700;
}

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

.blog-detail-copy img {
    max-width: 100%;
    border-radius: 10px;
    margin: 25px 0;
}

.blog-detail-copy ul,
.blog-detail-copy ol {
    margin: 20px 0 20px 25px;
}

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

.blog-detail-copy blockquote {
    background: #f5f9ff;
    border-left: 5px solid #0d6efd;
    padding: 20px ;
    margin: 30px 0;
    font-style: italic;
    border-radius: 6px;
}

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

.blog-side-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
}

.blog-side-box {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.blog-side-box h3 {
    margin-bottom: 22px;
    font-size: 20px;
    color: #111;
}

/* Contact */

.blog-contact-box {
    background: linear-gradient(135deg, #0d6efd, #4b8cff);
    color: #fff;
}

.blog-contact-box .section-label {
    display: inline-block;
    background: rgba(255, 255, 255, .2);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 18px;
}

.blog-contact-box strong {
    display: block;
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-contact-box p {
    opacity: .95;
    margin-bottom: 25px;
}

.blog-contact-box a {
    display: inline-block;
    background: #fff;
    color: #0d6efd;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.blog-contact-box a:hover {
    transform: translateY(-2px);
}

/* Related */

.blog-related-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-related-list a {
    display: flex;
    gap: 14px;
    text-decoration: none;
    color: #222;
    transition: .3s;
}

.blog-related-list a:hover {
    color: #0d6efd;
}

.blog-related-list img {
    width: 95px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.blog-related-list span {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

/* Tags */

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

.blog-tag-list a,
.blog-tag-list span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: #eef4ff;
    color: #0d6efd;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.blog-tag-list a:hover {
    background: #0d6efd;
    color: #fff;
}

/* ======================
TABLES
====================== */

.blog-detail-copy table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.blog-detail-copy table th,
.blog-detail-copy table td {
    border: 1px solid #ddd;
    padding: 12px;
}

.blog-detail-copy table th {
    background: #f5f5f5;
}

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

@media (max-width:991px) {

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

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

    .blog-detail-head h1 {
        font-size: 34px;
    }

    .blog-detail-image img {
        height: 360px;
    }

}

@media (max-width:767px) {

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

    .blog-detail-head h1 {
        font-size: 28px;
    }

    .blog-detail-copy {
        padding: 25px;
        font-size: 16px;
    }

    .blog-detail-image img {
        height: 250px;
    }

    .blog-side-box {
        padding: 22px;
    }

    .blog-detail-meta {
        gap: 15px;
        font-size: 14px;
    }

    .home-brand-section {
        padding: 30px 0px;
    }

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