:root {
    /* BRAND */
    --primary: #11497b;
    --primary-dark: #0d3a61;
    --secondary: #e53935;
    --secondary-dark: #c62828;
    /* TEXT */
    --text-heading: #0f172a;
    --text-body: #475569;
    --text-light: #64748b;
    /* BACKGROUND */
    --white: #ffffff;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    /* BORDER */
    --border: #e2e8f0;
    /* SHADOW */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: #ffffff;
    overflow-x: hidden;
}
.container-custom {
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
    /*padding-inline: 20px;*/
    padding-inline: clamp(20px, 5vw, 100px);
}

/*@media (min-width: 768px) {*/
/*    .container-custom {*/
/*        padding-inline: 32px;*/
/*    }*/
/*}*/

/*@media (min-width: 1280px) {*/
/*    .container-custom {*/
/*        padding-inline: 40px;*/
/*    }*/
/*}*/

/*@media (min-width: 1600px) {*/
/*    .container-custom {*/
/*        padding-inline: 80px;*/
/*    }*/
/*}*/

/*@media (min-width: 1920px) {*/
/*    .container-custom {*/
/*        padding-inline: 100px;*/
/*    }*/
/*}*/

.section-padding {
    padding-block: 3.5rem;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    font-weight: 700;
    color: white;
    letter-spacing: -0.03em;
}
.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.25rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}
.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.section-subtitle::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--secondary);
    flex-shrink: 0;
}
.section-desc {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-body);
}
.card-title {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-heading);
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding-inline: 24px;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-primary:hover {
    background: var(--primary-dark);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding-inline: 24px;
    border-radius: 8px;
    background: var(--secondary);
    color: white;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-secondary:hover {
    background: var(--secondary-dark);
}
/* =========================================================
LIGHT BUTTON
========================================================= */
.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding-inline: 24px;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    border: 2px solid white;
    transition: 0.3s;
    border-radius: 0.75rem;
}
/* Hover */
.btn-light:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding-inline: 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--text-heading);
    transition: 0.3s;
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.card-modern {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: 0.3s;
}
.card-modern:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}
.form-control {
    width: 100%;
    height: 52px;
    padding-inline: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}
.form-control:focus {
    border-color: var(--primary);
}
textarea.form-control {
    height: auto;
    padding: 16px;
}
.image-modern {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.shadow-soft {
    box-shadow: var(--shadow-md);
}
.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
}
.swiper-pagination {
    margin-top: 32px;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--primary);
}
/* .nav-link{
position:relative;
font-size:15px;
font-weight:600;
color:var(--text-heading);
transition:.3s;
}
.nav-link:hover{
color:var(--primary);
} */
/* CSS for Navigation */
.nav-link {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    transition: 0.3s;
    padding-block: 8px;
}
.nav-link:hover {
    color: var(--primary);
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}
/* History CSS */
.history-year {
    transition: all 0.3s ease;
}
.history-year:hover {
    transform: translateY(-3px);
}
.history-year.active span:first-child {
    background: var(--secondary);
    transform: scale(1.15);
}
.history-year.active span:last-child {
    color: var(--secondary);
}
.story-card:hover {
    border-color: var(--secondary);
}
/* testimonial slider */
.review-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}
.review-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}
/* Award section design */
.award-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}
.award-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}
/* Footer CSS */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}
.footer-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: 0.3s;
}
.footer-link:hover {
    color: white;
}
/* mobile menu css */
.menu-open {
    overflow: hidden;
}
/* MOBILE MENU */
.mobile-menu {
    right: -100%;
}
.mobile-menu.active {
    right: 0 !important;
}
/* Use the ID to match your JS target */
#mobileMenu {
    right: -100%; /* Hidden by default */
    transition: right 0.5s ease; /* Smooth slide in */
}
#mobileMenu.active {
    right: 0 !important; /* Slide in when active */
}
/* OVERLAY Logic */
#mobileOverlay {
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}
#mobileOverlay.active {
    opacity: 1;
    visibility: visible;
}
/* SEARCH */
.search-active {
    opacity: 1 !important;
    visibility: visible !important;
}
/* MOBILE ACCORDION */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}
/* OPEN STATE */
.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px; /* Adjust based on the number of links */
    border-bottom: 1px solid #e2e8f0;
}
/* ARROW ROTATION */
.mobile-arrow {
    transition: transform 0.3s ease;
}
.mobile-dropdown.active .mobile-arrow {
    transform: rotate(180deg);
}
/* OPTIONAL: Sublink styling */
.mobile-sublink {
    display: block;
    padding: 12px 24px;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}
.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Desktop drop down link */
/* Desktop Dropdown Links */
.dropdown-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #163a63;
    background: #fff;
    border-bottom: 1px solid #edf1f5;
    transition: all 0.25s ease;
}
/* Last item */
.dropdown-link:last-child {
    border-bottom: none;
}
/* Hover */
.dropdown-link:hover {
    background: #f8fafc;
    color: #d71920;
}
.dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    transition: all 0.3s ease;
}
.dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: #d71920;
    opacity: 0;
    transition: 0.3s;
}
.dropdown-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: #163a63;
    margin-bottom: 2px;
}
.dropdown-item span {
    display: block;
    font-size: 12px;
    color: #64748b;
}
.dropdown-item i {
    font-size: 12px;
    color: #94a3b8;
    transition: 0.3s;
}
.dropdown-item:hover {
    background: #f8fafc;
}
.dropdown-item:hover::before {
    opacity: 1;
}
.dropdown-item:hover i {
    color: #d71920;
    transform: translateX(4px);
}
/*Animations for why ciwec section */
.animate-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.9s ease;
}
.animate-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.9s ease;
}
.animate-show {
    opacity: 1;
    transform: translateX(0);
}
@keyframes mountainFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
.animate-mountain {
    animation: mountainFloat 5s ease-in-out infinite;
}
.specialty-chip {
    padding: 12px 24px;
    border: 1px solid #e2e8f0;
    background: white;
    font-weight: 600;
    transition: all 0.3s ease;
}
.specialty-chip:hover {
    border-color: var(--primary);
}
.active-specialty {
    background: #0a3c69;
    color: white;
    border-color: #0a3c69;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}
.faq-item.active .faq-content {
    max-height: 300px;
}
.faq-item.active .faq-btn {
    border-color: var(--secondary);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.gallery-filter,
.csr-filter {
    position: relative;
    padding: 0 1.5rem;
    height: 3rem;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.gallery-filter:hover,
.csr-filter:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.gallery-filter.active,
.csr-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.gallery-filter.active:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
}
.gallery-filter.active::after,
.csr-filter.active-filter::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--secondary);
}
.knowledge-chip {
    padding: 12px 22px;
    background: white;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    transition: 0.3s;
}
.knowledge-chip:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}
.story-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0;
    cursor: pointer;
}
.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}
.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.05)
    );
}
.story-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    text-align: center;
}
.story-title {
    color: white;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 8px;
}
.story-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}
.story-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    z-index: 20;
    transition: all 0.4s ease;
}
.story-card:hover .story-play-btn {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translate(-50%, -50%) scale(1.08);
}
.story-card:hover .story-image {
    transform: scale(1.08);
}
.patient-story-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    opacity: 1;
}
.patient-story-pagination .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 28px;
    border-radius: 999px;
}
@media (max-width: 767px) {
    .story-title {
        font-size: 16px;
    }
    .story-subtitle {
        font-size: 13px;
    }
    .story-play-btn {
        width: 54px;
        height: 54px;
    }
}
.service-tab {
    padding: 14px 28px;
    border: 1px solid #e2e8f0;
    background: white;
    color: var(--primary);
    font-weight: 600;
    transition: 0.3s;
}
.service-tab:hover {
    border-color: var(--secondary);
}
.active-service-tab {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
}
.service-content {
    animation: fadeService 0.35s ease;
}
@keyframes fadeService {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.active-filter {
    background: #0a3c69;
    border-color: #0a3c69;
}
.active-filter h3 {
    color: white;
}
.active-location {
    background: #0a3c69;
    color: white;
}
.speciality-section {
    background: #ebf0f5;
    position: relative;
    overflow-x: hidden;
}
/* CARD */
.speciality-card {
    position: relative;
    display: block;
    height: 520px;
    overflow: hidden;
}
/* IMAGE */
.speciality-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}
/* OVERLAY */
.speciality-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.15)
    );
}
/* CONTENT */
.speciality-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 28px;
    z-index: 5;
    color: white;
}
/* TITLE */
.speciality-title {
    color: var(--white);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 14px;
}
/* DESCRIPTION */
.speciality-desc {
    font-size: 16px;
    line-height: 1.9;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease;
}
/* LINK */
.speciality-link {
    display: inline-block;
    margin-top: 18px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}
/* HOVER EFFECT */
.speciality-card:hover .speciality-image {
    transform: scale(1.08);
}
.speciality-card:hover .speciality-desc,
.active-speciality .speciality-desc {
    opacity: 1;
    max-height: 200px;
}
.speciality-card:hover .speciality-link,
.active-speciality .speciality-link {
    opacity: 1;
    transform: translateY(0);
}
/* MOBILE */
@media (max-width: 768px) {
    .speciality-card {
        height: 420px;
    }
    .speciality-content {
        padding: 22px;
    }
    .speciality-title {
        font-size: 26px;
    }
    .speciality-desc {
        font-size: 15px;
        line-height: 1.7;
    }
}
/* =========================
SWIPER PAGINATION
========================= */
.speciality-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}
.speciality-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid var(--primary);
    background: transparent;
    opacity: 1;
    transition: 0.35s ease;
}
.speciality-pagination .swiper-pagination-bullet-active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.15);
}
/* =========================
WHATS NEW SECTION
========================= */
.whatsnew-card {
    background: #ffffff;
    /* border-radius: 20px; */
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.whatsnew-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}
/* IMAGE */
.whatsnew-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.whatsnew-card:hover .whatsnew-img {
    transform: scale(1.05);
}
/* CONTENT */
.whatsnew-content {
    padding: 24px;
}
/* TITLE */
.whatsnew-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 12px;
}
/* DESCRIPTION */
.whatsnew-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.65);
}
/* BOTTOM AREA */
.whatsnew-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
}
/* LINK */
.whatsnew-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s ease;
}
.whatsnew-link:hover {
    color: var(--secondary);
}
/* ARROW */
.whatsnew-arrow {
    width: 30px;
    height: 30px;
    /* border-radius: 100%; */
    background: var(--secondary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: 0.3s ease;
}

.whatsnew-link:hover .whatsnew-arrow {
    transform: translateX(3px);
}
/* ICON */
.whatsnew-icon {
    font-size: 30px;
    color: rgba(0, 0, 0, 0.12);
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .whatsnew-img {
        height: 200px;
    }
    .whatsnew-content {
        padding: 20px;
    }
    .whatsnew-title {
        font-size: 20px;
    }
    .whatsnew-desc {
        font-size: 14px;
    }
    .whatsnew-icon {
        font-size: 24px;
    }
}
.faq-content {
    display: none;
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.model-item {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.model-item:hover {
    transform: translateY(-8px);
    border-color: #11497b;
    box-shadow: 0 20px 40px rgba(17, 73, 123, 0.12);
}
.model-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: #11497b;
    margin-bottom: 8px;
}
.model-item p {
    color: #64748b;
    line-height: 1.7;
}
.model-item.active {
    background: linear-gradient(135deg, #11497b, #1d5e95);
    border-color: #11497b;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 60px rgba(17, 73, 123, 0.28);
}
.model-item.active h3,
.model-item.active p,
.model-item.active i {
    color: white;
}
.ciwec-image-wrapper {
    width: 420px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    border: 10px solid white;
    box-shadow: 0 30px 80px rgba(17, 73, 123, 0.15);
    position: relative;
    z-index: 5;
}
.ciwec-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}
.ciwec-ring {
    position: absolute;
    width: 560px;
    height: 560px;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    border: 3px dashed rgba(17, 73, 123, 0.12);
    transform: translate(-50%, -50%);
    animation: rotateRing 60s linear infinite;
}

.ciwec-ring::before,
.ciwec-ring::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e53935;
}

.ciwec-ring::before {
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
}

.ciwec-image-wrapper::after {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 50px;
    border: 1px solid rgba(17, 73, 123, 0.08);
    z-index: -1;
}

.ciwec-ring::after {
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
}

#centerImage {
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

#centerImage.changing {
    opacity: 0;
    transform: scale(0.92) rotate(2deg);
}

@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.03);
        opacity: 0.15;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@media (max-width: 1024px) {
    .ciwec-image-wrapper {
        width: 380px;
        height: 380px;
    }

    .ciwec-ring {
        width: 450px;
        height: 450px;
    }

    .ciwec-ring-pulse {
        width: 420px;
        height: 420px;
    }
}

@media (max-width: 640px) {
    .ciwec-image-wrapper {
        width: 280px;
        height: 280px;
    }

    .ciwec-ring {
        width: 330px;
        height: 330px;
    }

    .ciwec-ring-pulse {
        width: 300px;
        height: 300px;
    }

    .model-item {
        padding: 20px;
    }

    .model-item h3 {
        font-size: 18px;
    }
}

.model-item::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 2px solid #11497b;
    /* border-radius: 999px; */
    border-radius: 40px;
    transform: translateY(-50%);
    z-index: 5;
}

.model-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.8s;
}

.model-item:hover::before {
    left: 120%;
}

.left-card::after {
    right: -38px;
}

.right-card::after {
    left: -38px;
}

.left-card::after {
    content: "";
    position: absolute;
    right: -35px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid #11497b;
    border-radius: 50%;
    transform: translateY(-50%);
}

.right-card::after {
    content: "";
    position: absolute;
    left: -35px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: white;
    border: 2px solid #11497b;
    border-radius: 50%;
    transform: translateY(-50%);
}

@keyframes floatUp {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatDown {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.left-card {
    animation: floatUp 6s ease-in-out infinite;
}

.right-card {
    animation: floatDown 6s ease-in-out infinite;
}

.ciwec-image {
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.ciwec-image-wrapper::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(
        circle,
        rgba(17, 73, 123, 0.15),
        transparent 70%
    );
    z-index: -1;
}

@keyframes imageFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.ciwec-center-wrap {
    position: relative;
    width: 520px;
    height: 520px;
    animation: imageFloat 8s ease-in-out infinite;
}
/* terms and condition and privacy policy page css */
.editor-content {
    color: #475569;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 400;
    word-break: break-word;
}
.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 0.9rem;
    letter-spacing: -0.02em;
}

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

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

.editor-content h3 {
    font-size: 26px;
}

.editor-content h4 {
    font-size: 22px;
}

.editor-content h5 {
    font-size: 19px;
}

.editor-content h6 {
    font-size: 17px;
}

.editor-content > *:first-child {
    margin-top: 0;
}
.editor-content p {
    margin: 0 0 1.25rem;
    color: #5f6f7f;
}
.editor-content a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.25s ease;
}

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

.editor-content ul,
.editor-content ol {
    margin: 1.25rem 0 1.5rem;
    padding-left: 1.75rem;
}

.editor-content ul {
    list-style-type: square !important;
}

.editor-content ol {
    list-style-type: decimal !important;
}

.editor-content ul li,
.editor-content ol li {
    display: list-item !important;
    margin-bottom: 0.65rem;
    padding-left: 0.35rem;
    color: #5f6f7f;
    line-height: 1.75;
}

.editor-content ul li::marker {
    color: var(--secondary);
    font-size: 1.05em;
}

.editor-content ol li::marker {
    color: var(--primary);
    font-weight: 700;
}

.editor-content ul ul,
.editor-content ol ul {
    list-style-type: square !important;
    margin: 0.6rem 0;
}

.editor-content ul ul ul {
    list-style-type: square !important;
}

.editor-content ol ol {
    list-style-type: lower-alpha !important;
    margin: 0.6rem 0;
}

.editor-content li > ul,
.editor-content li > ol {
    margin-top: 0.6rem;
    margin-bottom: 0.4rem;
}

.editor-content strong,
.editor-content b {
    color: #334155;
    font-weight: 700;
}

.editor-content em,
.editor-content i {
    color: #475569;
}

.editor-content hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 2.5rem 0;
}

.editor-content img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 1.75rem 0;
    border-radius: 8px;
}

.editor-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.75rem 0;
    font-size: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
}

.editor-content table th {
    background: var(--primary);
    color: #fff;
    padding: 13px 15px;
    text-align: left;
    font-weight: 600;
    border: 1px solid var(--primary);
}

.editor-content table td {
    padding: 13px 15px;
    color: #5f6f7f;
    border: 1px solid #e2e8f0;
    vertical-align: top;
}

.editor-content table tr:nth-child(even) {
    background: #f8fafc;
}

.editor-content blockquote {
    position: relative;
    margin: 1.75rem 0;
    padding: 20px 24px;
    border-left: 4px solid var(--secondary);
    background: #f7fafb;
    color: #526271;
    font-style: italic;
    line-height: 1.8;
    border-radius: 0 6px 6px 0;
}

.editor-content blockquote p:last-child {
    margin-bottom: 0;
}

.editor-content pre {
    margin: 1.75rem 0;
    padding: 20px;
    background: #0f172a;
    color: #e2e8f0;
    overflow-x: auto;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.7;
}

.editor-content code {
    padding: 2px 6px;
    background: #f1f5f9;
    color: #334155;
    border-radius: 4px;
    font-size: 0.9em;
}

.editor-content pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}

.editor-content figure {
    margin: 1.75rem 0;
}

.editor-content figure img {
    margin-bottom: 0.65rem;
}

.editor-content figcaption {
    color: #94a3b8;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
}

.editor-content .table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 1.75rem 0;
}

@media (max-width: 768px) {
    .editor-content {
        font-size: 15.5px;
        line-height: 1.8;
    }

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

    .editor-content h2 {
        font-size: 27px;
    }

    .editor-content h3 {
        font-size: 23px;
    }

    .editor-content h4 {
        font-size: 20px;
    }

    .editor-content h5 {
        font-size: 18px;
    }

    .editor-content h6 {
        font-size: 16px;
    }

    .editor-content h1,
    .editor-content h2,
    .editor-content h3,
    .editor-content h4,
    .editor-content h5,
    .editor-content h6 {
        margin-top: 1.6rem;
    }

    .editor-content ul,
    .editor-content ol {
        padding-left: 1.4rem;
    }

    .editor-content table {
        font-size: 14px;
    }

    .editor-content table th,
    .editor-content table td {
        padding: 10px 12px;
    }

    .editor-content blockquote {
        padding: 16px 18px;
    }
}

@media (max-width: 480px) {
    .editor-content h1 {
        font-size: 28px;
    }

    .editor-content h2 {
        font-size: 24px;
    }

    .editor-content h3 {
        font-size: 21px;
    }
}
/* Inquiry css */
#success {
    position: relative;
    min-height: 80vh;
    background: #f7f9fb;
}

#success .success-box {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    max-width: 520px;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #e8f8ef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 48px;
    font-weight: bold;
}

.success-box h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.success-box h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.success-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.success-divider {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 25px auto;
    border-radius: 10px;
}

.success-box .btn-home {
    display: inline-block;
    padding: 13px 28px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.success-box .btn-home:hover {
    background: #082b40;
}

@media (max-width: 600px) {
    #success .success-box {
        width: 90%;
        padding: 30px 20px;
    }

    .success-box h1 {
        font-size: 26px;
    }
}
.grecaptcha-badge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Fix sticky CTA overlap on large desktop screens */
/* Large desktop sticky CTA fix */
@media (min-width: 1536px) {
    #stickyBar {
        right: max(
            16px,
            calc((100vw - 1320px) / 2 - 84px)
        );
    }
}
