/* ============================
   Global Typography
============================ */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
}

/* ============================
   Header Section
============================ */
.site-header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;

    &::after {
        height: 104px;
        z-index: -1;
        background-color: #08254f;
        position: absolute;
        content: "";
        width: 100%;
        top: 0;
        left: 0;
    }
}

.header-topbar {
    background-color: #08254f;
    padding: 29px 0 15px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
}

.topbar-contact {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;

    img {
        position: relative;
        top: 2px;
    }
}

.topbar-label {
    font-weight: 600;
    margin: 0 6px;
    color: #ffffff;
    display: block;
}

.topbar-phone {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.topbar-phone:hover {
    color: #d6dce8;
}

.header-main {
    position: absolute;
    width: 100%;
    min-height: 84px;
}

.header-nav-wrapper {
    background-color: #b4cdeb;
    border-radius: 50px;
    padding: 10px 39px;
    position: relative;
    border: #fff 2px solid;
}

.header-logo {
    text-decoration: none;
}

.header-logo-img {
    width: 206px;
    height: auto;
    object-fit: contain;
    margin-right: 10px;
}

.header-brand {
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #0a1f44;
    margin: 0;
    white-space: nowrap;
}

/* .feature-right .feature-img-wrap img {
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    -o-transform: scaleX(-1);
} */

/* StellarNav overrides */
.header-nav-wrapper .stellarnav {
    background: transparent;
    text-align: center;
}

.header-nav-wrapper .stellarnav > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav-wrapper .stellarnav > ul > li {
    list-style: none;
}

.header-nav-wrapper .stellarnav > ul > li:first-child a {
    padding-left: 0;
}

.header-nav-wrapper .stellarnav > ul > li > a {
    color: #464c53;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 28px;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    padding: 12px 9px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-nav-wrapper .stellarnav > ul > li.active > a,
.header-nav-wrapper .stellarnav > ul > li > a:hover {
    color: #464c53;
    font-weight: bold;
}

.header-nav-wrapper .stellarnav li.has-sub > a::after {
    transition: transform 0.3s ease;
}

.header-nav-wrapper .stellarnav > ul > li.has-sub:hover > a::after {
    content: "";
}

.header-nav-wrapper .stellarnav > ul > li {
    position: relative;
}

.header-nav-wrapper .stellarnav > ul > li > ul {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    /* transform: translate(-50%, 15px) !important; */
    background: #ffffff !important;
    border-radius: 14px !important;
    box-shadow: 0 1px 5px rgba(10, 31, 68, 0.18) !important;
    padding: 5px 23px !important;
    min-width: 315px !important;
    margin: 15px 0 0 0 !important;
    list-style: none !important;
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    /* z-index: 999 !important; */
    pointer-events: none;
    overflow: hidden;
}

.header-nav-wrapper .stellarnav > ul > li > ul > li {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.header-nav-wrapper .stellarnav > ul > li.has-sub:hover > ul {
    opacity: 1 !important;
    visibility: visible !important;
    /* transform: translate(-50%, 0) !important; */
    pointer-events: auto;
    margin-top: 0 !important;
}

.header-nav-wrapper .stellarnav > ul > li > ul > li {
    list-style: none !important;
    display: block !important;
    width: 100% !important;
    float: none !important;
    border-bottom: 1px solid #e5e9ed !important;
    margin: 0 !important;
}

.header-nav-wrapper .stellarnav > ul > li > ul > li:first-child {
    border-bottom: 2px solid #e5e9ed !important;
}

.header-nav-wrapper .stellarnav > ul > li > ul > li:last-child {
    border-bottom: none !important;
}

.header-nav-wrapper .stellarnav > ul > li > ul > li > a {
    display: block !important;
    color: #0a1f44 !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    padding: 16px 0px !important;
    border: none !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
    text-align: left !important;
}

.header-nav-wrapper .stellarnav > ul > li > ul > li {
    padding-left: 24px;
    padding-right: 24px;
}

.header-nav-wrapper .stellarnav > ul > li > ul > li > a:hover {
    /* background: #f4f8fc !important; */
    color: #3aa0ff !important;
}

.btn-send-message {
    display: inline-block;
    background-color: rgb(138, 28, 28);
    color: rgb(255, 255, 255);
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-send-message:hover {
    background-color: #7a1717;
    color: #ffffff;
    transform: translateY(-2px);
}

.head_desktop {
    display: flex;
    gap: 19px;
    justify-content: start;
    align-items: center;

    .head_logo {
        width: 206px;
    }

    .right_btn {
        position: absolute;
        right: 20px;
        bottom: -24px;
    }
}

/* ============================
   Footer Section
============================ */
.site-footer {
    background-color: #d7e0ea;
    padding: 60px 0 40px;
    position: relative;
}

.footer-wrapper {
    /* background-color: #e7ebf3;
    border-radius: 20px;
    padding: 50px 40px 30px; */
    position: relative;
}

.footer-top {
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 402px;
    height: auto;
    margin-right: 15px;
    object-fit: contain;
    margin-bottom: 79px;
}

.footer-brand-name {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0a1f44;
    margin: 0;
}

.footer-socials {
    gap: 38px;
    padding-right: 65px;
}

.footer-socials li + li {
    margin-top: -12px;
}

.footer-socials li:not(:first-child) {
    margin-top: -12px;
}

.footer-socials li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #8a1c1c;
    color: #ffffff;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #ffffff;
}

.footer-socials li a:hover {
    background-color: #8a1c1c;
    transform: translateY(-3px);
}

.footer-card {
    background-color: #08254f;
    border-radius: 23px 0 23px 23px;
    min-height: auto;
    padding: 70px 98px 24px 112px;
    color: #ffffff;
    position: relative;
    margin-top: -21px;
}

.footer-card::before {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    top: -86px;
    height: 87px;
    background-color: #08254f;
    clip-path: polygon(0 100%, 101% 100%, 100% 0);
    border-top-right-radius: 20px;
    width: 98%;
}

.footer-top {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    /* padding-bottom: 20px; */
}

.footer-col ul {
    margin-bottom: 0;
}

.footer-heading {
    font-family: "Lufga", "Manrope", sans-serif;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 700;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 22px;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-family: "Lufga", "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: 36px;
    letter-spacing: 0;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #ffffff;
}

.footer-about {
    color: #ffffff;
    font-family: "Lufga", "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0;
    margin: 0;
    width: 100%;
    max-width: 325px;
}

.footer-bottom {
    margin-top: 22px;
}

.footer-bottom p {
    color: #464c53;
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.hero-banner.homeBanner {
    background: url(../img/home-banner-bg.jpg) no-repeat top left;
    background-size: cover !important;
}

.hero-banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* background: linear-gradient(
    180deg,
    rgba(180, 205, 235, 0) 6.57%,
    #b4cdeb 125%
  ); */
    background: url(../img/innerbg.jpg) no-repeat top left;
    background-size: cover;
    min-height: 940px;
    display: flex;
    align-items: center;
}

/* bottom white wave */
/* .hero-banner::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 85px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 85'%3E%3Cpath fill='%23ffffff' d='M0,42 C400,85 1040,0 1440,48 L1440,85 L0,85 Z'/%3E%3C/svg%3E") no-repeat bottom center / cover;
    z-index: 5;
    pointer-events: none;
} */

.banner-inner {
    padding: 130px 0 20px;
}

/* ── Left: text ───────────────────────────────── */
.hero-content {
    position: relative;
    /* z-index: 1; */
}

.craniofacial-hero .hero-content {
    padding-top: 30px;
}

.homeBanner .hero-content h1 {
    font-size: clamp(26px, 4vw, 52px);
    line-height: 1.25;
    background: linear-gradient(
        135deg,
        #b2d6ee 0%,
        #95caed 0%,
        #449bd5 31%,
        #043a5e 70%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    span {
        font-size: clamp(26px, 4vw, 52px);
        line-height: 1.25;
    }
}

.hero-content h1 {
    font-size: 36px;
    line-height: 1.25;

    span {
        font-size: clamp(26px, 4vw, 36px);
        line-height: 1.25;
    }
}

.hero-content h1 em {
    font-style: italic;
    font-weight: 700;
    display: block;
    color: #0d1b2a;
}

.hero-content .hero-sub {
    font-size: 16px;
    font-weight: 400;
    color: #464c53;
    line-height: 2;
    margin-top: 12px;
}

/* CTA row */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    margin-top: 60px;
}

/* Primary button */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #8a1c1c;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 26px 4px 26px 37px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.25s,
        transform 0.2s;
    height: 64px;
}

.btn-hero-primary:hover {
    background: #6f1424;
    color: #fff;
    transform: translateY(-2px);
}

.btn-hero-primary .arrow-wrap {
    width: 55px;
    height: 55px;
    background: #8a1c1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    border: 5px solid #ffffff;
    margin-left: 29px;

    i {
        font-size: 34px;
    }
}

/* Watch Video link */
.btn-hero-video {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #8a1c1c;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.btn-hero-video:hover {
    color: #1560bd;
}

.btn-hero-video .play-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #8a1c1c;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s;
    border: 4.64px solid #ffffff;

    i {
        font-size: 30px;
        color: #fff;
        margin-top: 3px;
        margin-left: 4px;
    }
}

.play-btn svg {
    width: 11px;
    height: 11px;
    margin-left: 2px;
}

.btn-hero-video:hover .play-btn {
    box-shadow: 0 6px 20px rgba(21, 96, 189, 0.3);
}

/* ── Right: image col ─────────────────────────── */
.hero-img-col {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.blue-circle {
    position: relative;
    z-index: 1;

    /* &::after {
        position: absolute;
        content: '';
        width: 558px;
        height: 578px;
        border-radius: 50%;
        border: 0.89px solid #00AAFF;
        background: transparent;
        transform: rotate(-16deg);
        z-index: -1;
        bottom: 30px;
        left: 0;
    }

    &::before {
        position: absolute;
        content: '';
        bottom: 0;
        left: 0;
        width: 557px;
        height: 578px;
        background-color: #0766A5;
        border-radius: 50%;
    } */
}

/* .blue-circle img {
  width: 100%;
  height: 654px;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  background: transparent;
} */

.blue-circle img {
    width: 100%;
    height: 644px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    background: transparent;
}

.heroBtm {
    position: absolute;
    bottom: 0;
    left: 33%;
    bottom: -135px;

    img {
        width: 100%;
        max-width: 240px;
        height: auto;
    }

    &.hero_btm2 {
        bottom: -167px;
        left: 43%;
    }
}

/* ── Sparkle decorators ───────────────────────── */
.sparkle {
    position: absolute;
    pointer-events: none;
    z-index: 20;
}

.sp-bot-right {
    bottom: 18%;
    right: auto;
    width: 95px;
    height: 95px;
    left: -7px;
}

.invalid-feedback {
    text-align: left;
}

.sp-left-mid {
    top: 13%;
    left: auto;
    width: 37px;
    height: 37px;
    right: 7%;
}

.dental-section {
    position: relative;
    padding: 62px 0 80px;
    overflow: hidden;

    .heroBtm {
        left: -65px;
        bottom: 110px;
        z-index: 1;

        &::before {
            border: 1.19px solid #ffffff;
            position: absolute;
            top: -45px;
            right: -46px;
            width: 286px;
            height: 277px;
            border-radius: 50%;
            z-index: -1;
            content: "";
            opacity: 20%;
        }
    }
}

/* .dental-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 730px;
    background: #0766A5;
    border-bottom-right-radius: 70px;
    z-index: 0;
} */

.section-inner {
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */
.dental-section .left-content {
    color: #fff;
    padding: 0px 79px 0 0;
    text-transform: capitalize;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 49%;
        height: 737px;
        background: #0766a5;
        border-bottom-right-radius: 106px;
        z-index: 0;
    }
}

.dental-section .left-content .white_title {
    position: relative;
    z-index: 3;
}

.dental-section .left-content p {
    position: relative;
    z-index: 3;
}

.left-content p {
    font-size: clamp(13px, 1.2vw, 18px);
    line-height: 1.8;
    color: #ebf2fa;
    margin-bottom: 10px;
    font-weight: 300;

    &:last-child {
        margin-bottom: 0;
    }
}

.left-content .white_title {
    margin-bottom: 12px;
}

/* RIGHT IMAGE CARD */
.image-card {
    border-radius: 16px;
    padding: 34px 40px 51px 10px;
    position: relative;
    z-index: 1;
    margin-top: 104px;

    &::after {
        position: absolute;
        bottom: 0;
        right: 0;
        content: "";
        width: 868px;
        height: 714px;
        border: 1px solid #0766a5;
        z-index: -1;
        border-radius: 16px;
    }
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 27px 41px;
    align-items: end;
}

.image-grid .large {
    grid-column: 1 / span 2;
    height: 307px;
}

.image-grid img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.small-img {
    height: 205px;
    width: 245px;
    border-radius: 12px;
}

.small-img2 {
    height: 295px;
    width: 295px;
    border-radius: 12px;
}

.large-img {
    height: 100%;
}

section.dental-courses {
    padding: 80px 0 90px;
    background: var(--section-bg);
    position: relative;
    overflow: hidden;
}

section.dental-courses::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(21, 101, 192, 0.07) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

/* ─── HEADINGS ─── */
.section-eyebrow {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.section-eyebrow em {
    font-style: italic;
    color: var(--primary-blue);
    font-weight: 800;
}

.section-subtitle {
    font-size: 18px;
    color: #858e98;
    font-weight: 400;
    margin: 0 auto;
    line-height: 1.9;
}

/* ─── CARD ─── */
.course-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 28px 0px 0;
    /* box-shadow: 0 4px 20px rgba(21, 101, 192, .08);
    transition: transform .3s ease, box-shadow .3s ease; */
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    text-align: center;
    z-index: 1;

    &::after {
        background: rgba(255, 255, 255, 0.5);
        box-shadow: 0px 4px 44px 0px #00000014;
        border-radius: 12px 12px 8px 50px;
        position: absolute;
        content: "";
        bottom: 10px;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        max-height: 400px;
    }

    &.reverse_card {
        margin-top: 40px;
    }
}

.course-card:hover {
    .card-img-wrap {
        background-color: #0766a5;
    }
}

/* ─── IMAGE CIRCLE ─── */
.card-img-wrap {
    width: 228px;
    height: 228px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 0.75px solid #004c8c;
    flex-shrink: 0;
    background: transparent;
    display: flex;
    justify-content: center;
}

.secondRow {
    margin-top: -20px;
}

.card-img-wrap img {
    width: 100%;
    max-width: 195px;
    height: 195px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

/* ─── CARD BODY ─── */
.card-body-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

h3.course-title {
    font-family: "Poppins";
    font-weight: 700;
    font-size: 15px;
    color: #464c53;
    margin-bottom: 8px;
    line-height: 23px;
    padding: 0 10px;
}

p.course-desc {
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    /* flex: 1; */
    margin-bottom: 14px;
    width: 100%;
    max-width: 213px;
    margin-inline: auto;
}

/* ─── READ MORE ─── */
.read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--heading-font);
    font-size: 15px;
    margin-top: 55px;
    font-weight: 700;
    color: #464c53;
    text-decoration: none;

    .arrow-wrap {
        width: 44.27px;
        height: 43.3px;
        border-radius: 50%;
        background: #8a1c1c;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.13);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: box-shadow 0.2s;
        border: 4.64px solid #ffffff;

        i {
            font-size: 24px;
            color: #ffffff;
            transform: rotate(-40deg);
        }
    }
}

.read-more:hover {
    color: var(--primary-blue);
}

.arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--arrow-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        background 0.2s,
        transform 0.2s;
}

.read-more:hover .arrow-btn {
    background: var(--accent-teal);
    transform: scale(1.1);
}

.arrow-btn svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

/* ─── SPACING ─── */
.row-cards {
    row-gap: 28px;
}

.testimonial-section {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;

    /* background: #f8f8f8; */
    .section-subtitle {
        margin-bottom: 45px;
    }

    .explore-btn {
        margin-top: 4rem;
    }
}

.top_row::after {
    width: calc(100% - 15px);
    height: 91px;
    left: 0;
    top: 56%;
    transform: translateY(-40%);
    background: #0766a5;
    border-radius: 12px;
    z-index: -1;
    position: absolute;
    content: "";
    right: 0;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #858e98;
    font-weight: 500;
    margin: 0 auto;
    line-height: 1.9;
    width: 100%;
    max-width: 830px;
}

/* BLUE BAR */
.blue-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 305px;
    width: 78%;
    height: 52px;
    background: #0a69a8;
    border-radius: 8px;
    z-index: 1;
}

.blue-line::before,
.blue-line::after {
    content: "";
    position: absolute;
    top: 0;
    width: 12px;
    height: 52px;
    background: #0a69a8;
}

.blue-line::before {
    left: -10px;
    border-radius: 8px 0 0 8px;
}

.blue-line::after {
    right: -10px;
    border-radius: 0 8px 8px 0;
}

/* CARD */
.video-card {
    width: 140px;
    background: #eef2f6;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    z-index: 3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.video-card .top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 600;
    color: #333;
}

.yt-icon {
    width: 20px;
    height: 20px;
    background: red;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.video-thumb {
    position: relative;
}

.video-thumb img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
}

.video-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(38, 60, 95, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

/* POSITIONING */
.card-left {
    left: 70px;
    top: 155px;
}

.card-left-mid {
    left: 225px;
    top: 98px;
    width: 155px;
}

.card-right-mid {
    right: 225px;
    top: 98px;
    width: 155px;
}

.card-right {
    right: 70px;
    top: 165px;
}

/* CENTER IMAGE */
.center-doctors {
    position: relative;
    z-index: 4;
    text-align: center;
    margin-top: 20px;
}

.center-doctors img {
    max-width: 330px;
    width: 100%;
}

.shadow-base {
    width: 180px;
    height: 42px;
    background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    margin: -12px auto 0;
    border-radius: 50%;
}

/* BUTTON */
.explore-btn {
    margin-top: 25px;
    text-align: center;
}

/* .explore-btn a {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #9d1717;
    color: #fff;
    text-decoration: none;
    padding: 10px 10px 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 18px rgba(157, 23, 23, .25);
} */

.explore-btn span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.reviewSlide {
    position: absolute;
    margin: 0 !important;
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
}

/* ── Section Heading ── */
.reviews-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0;
    line-height: 1.2;
}

.reviews-section .section-title span {
    font-style: italic;
    font-weight: 800;
}

/* ── Google Rating Badge ── */
.google-rating-badge {
    background: #0766a5;
    border-radius: 12px;
    padding: 35px 29px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    min-width: 422px;
}

.google-rating-badge .g-logo {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.google-rating-badge .g-logo img {
    width: 100%;
    max-width: 58px;
    height: auto;
    object-fit: contain;
}

.google-rating-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.google-rating-badge .badge-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #c8d8f8;
    line-height: 1;
    margin-bottom: 4px;
}

.google-rating-badge .badge-review-count {
    font-size: 0.7rem;
    color: #c8d8f8;
    font-weight: 400;
}

.google-rating-badge .badge-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.google-rating-badge .badge-stars {
    color: #ffc107;
    font-size: 0.85rem;
    margin-top: 2px;
}

/* ── Review Card / Slider Content ── */
.reviews-slider-wrapper {
    background: #f0f4f8;
    border: 1.5px solid #d1dce8;
    border-radius: 12px;
    padding: 40px 50px 36px;
    margin-top: 30px;
    position: relative;
}

.review-slide {
    text-align: center;
    outline: none;
}

.review-slide .review-text {
    font-size: 0.875rem;
    font-weight: 400;
    color: #444;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 24px;
}

.review-slide .reviewer-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0;
}

/* ── Custom Arrows ── */
.slick-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.slick-custom-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition:
        background 0.25s,
        transform 0.2s;
}

.slick-custom-btn.prev-btn {
    background: #e53935;
    color: #fff;
}

.slick-custom-btn.next-btn {
    background: #e53935;
    color: #fff;
}

.slick-custom-btn:hover {
    background: #b71c1c;
    transform: scale(1.08);
}

/* Hide default slick arrows */
.slick-prev,
.slick-next {
    display: none !important;
}

.slick-dots {
    display: none !important;
}

.sec_title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: clamp(24px, 3.6vw, 48px);
    line-height: 1.25;
    display: inline-block;
    /* background: linear-gradient(
    172deg,
    #b2d6ee -1.92%,
    #449bd5 5.24%,
    #0b3a58 87.9%
  ); */
    background: linear-gradient(135deg, #b2d6ee 0%, #449bd5 10%, #043a5e 30%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 4px 7px #00000040;
    margin-bottom: 12px;

    span {
        -webkit-text-fill-color: #0b3a58;
        font-weight: 700;
        font-style: italic;
        font-size: clamp(26px, 3.9vw, 52px);
        line-height: 1.25;
        letter-spacing: 5px;
    }
}

.responsiv-inner-banner .sec_title {
    font-size: clamp(26px, 3.9vw, 52px);

    span {
        -webkit-text-fill-color: transparent;
        font-weight: 600;
        font-style: normal;
        font-size: clamp(26px, 3.9vw, 52px);
        line-height: 1.25;
    }
}

.mt-lg-5 {
    margin-top: 4.5rem !important;
}

.white_title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: clamp(22px, 3.3vw, 44px);
    line-height: 1.25;
    background: linear-gradient(90.71deg, #ffffff 0.61%, #ffffff 69.66%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    span {
        font-weight: 700;
        font-style: italic;
    }
}

.why-choose-section {
    background-color: #0766a5;
    position: relative;
    overflow: hidden;
    padding: 74px 0;
    min-height: 851px;
    z-index: 1;

    .white_title {
        margin-bottom: 55px;
    }

    .start_img {
        position: absolute;
        width: 76px;
        height: 67px;
        top: 46px;
        left: 43%;
        transform: translateX(-60%);
        z-index: 1;
        content: "";

        img {
            width: 100%;
            height: 100%;
        }
    }
}

.w-fit-content {
    width: fit-content;
}

/* Decorative circle overlays (matching the Figma arcs) */
.why-choose-section::before,
.why-choose-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Large arc – bottom-left */
.why-choose-section::before {
    width: 584px;
    height: 625px;
    border: 90px solid #d9d9d940;
    bottom: 10px;
    left: -256px;
    border-radius: 50%;
}

/* Medium arc – top-right */
.why-choose-section::after {
    width: 584px;
    height: 625px;
    border: 90px solid #d9d9d940;
    top: 34px;
    right: -256px;
    border-radius: 50%;
}

/* ── Heading ─────────────────────────────────────────── */
.section-heading {
    color: #fff;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 6px;
}

.section-heading span {
    font-style: italic;
    font-weight: 700;
}

.sparkle-icon {
    display: inline-block;
    margin-left: 8px;
    font-size: 1.4rem;
    line-height: 1;
    vertical-align: middle;
    color: #fff;
}

/* ── Feature items ───────────────────────────────────── */
.feature-item {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 37px;
    position: relative;
    left: -3%;
}

.feature-item:nth-child(3) {
    left: 4%;
}

.feature-item:last-child {
    margin-bottom: 0;
    position: relative;
    left: 0%;
}

.feature-img-wrap {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #ffffff;
    display: flex;
    justify-content: start;
    align-items: end;
}

.responsiv-inner-banner.hero-banner::after {
    width: 928px;
    clip-path: polygon(0 0, 0% 150%, 100% 0);
}

.responsiv-inner-banner.gallery::after {
    width: 848px;
}

.feature-right .feature-img-wrap {
    justify-content: end;
}

.feature-img-wrap img {
    width: 124px;
    height: 124px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.right-col .right-top .feature-right:first-child {
    position: relative;
    right: -4%;
    /* margin-bottom: 18px; */
}

.feature-label {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

/* ── Right column items (no image, right-aligned) ───── */
.feature-right {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 37px;
    justify-content: flex-end;
    position: relative;
    right: 4%;
}

.feature-right:last-of-type {
    margin-bottom: 0;
    right: 0%;
}

.feature-right .feature-label {
    text-align: right;
}

/* ── CTA Button ──────────────────────────────────────── */
.btn-send-msg {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #b71c1c;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px 12px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.25s ease,
        transform 0.2s ease;
}

.btn-send-msg:hover {
    background-color: #c62828;
    color: #fff;
    transform: translateY(-2px);
}

.btn-send-msg .arrow-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-send-msg .arrow-circle svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Right column layout ─────────────────────────────── */
.right-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-top: 8px;
}

.right-top {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: -20px;
}

.right-bottom {
    display: flex;
    justify-content: flex-end;
    padding-top: 60px;

    .btn-hero-primary {
        position: relative;
        z-index: 2;
    }
}

.our-partners-section {
    padding: 65px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative half-circle arc bottom-left */
/* .our-partners-section::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background-color: #e8f0fe;
    bottom: -160px;
    left: -60px;
    pointer-events: none;
    z-index: 0;
} */

.partners-heading {
    font-family: "Poppins", sans-serif;
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 700;
    color: #1565c0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* .partners-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
} */

.partner-card {
    max-width: 421px;
    min-height: 155px;
    background: #ffffff;
    border: 2px solid #e0e6ed;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 28px;
    transition:
        box-shadow 0.25s ease,
        transform 0.2s ease;
}

.partner-card:hover {
    box-shadow: 0 8px 28px rgba(21, 101, 192, 0.12);
    transform: translateY(-3px);
}

.partner-card img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    display: block;
}

.our-contacts-section {
    /* background-color: #f4f7fb; */
    padding: 50px 0px 55px;
    position: relative;
    overflow: hidden;
}

.contacts-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

/* Outer light-blue ring */
.contacts-img-wrap {
    position: relative;
    flex-shrink: 0;
    /* width: 260px;
    height: 260px; */
    z-index: 2;
    display: flex;
    justify-content: end;
    height: 646px;
}

.contacts-img-wrap::before {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    /* background: #EEF3F8; */
    height: 646px;
    width: 646px;
    border-radius: 50%;
    background-size: cover;
    z-index: 0;
    background-image: url("../img/glob-icon-1.png");
}

/* White gap ring */
/* .contacts-img-wrap::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: #f4f7fb;
    z-index: 1;
} */

.contacts-img-circle {
    position: relative;
    z-index: 2;
    width: 405px;
    height: 390px;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 82px !important;
    margin: auto;
    left: -10px;
}

.contacts-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blue contact card */
.contacts-card {
    background-color: rgb(7, 102, 165);
    border-radius: 12px;
    padding: 35px 130px 35px 55px;
    position: absolute;
    right: 0px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    width: 751px;
    flex: 0 0 751px;
    z-index: 2;
}

/* Ghost graduation/laptop SVG icon right side */
.contacts-deco-icon {
    position: absolute;
    right: 28px;
    top: 52%;
    transform: translateY(-50%);
    opacity: 10.18;
    pointer-events: none;
}

.contacts-card-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    font-size: clamp(20px, 2.7vw, 36px);
    line-height: 1.3;
}

.contacts-card-title span {
    font-style: italic;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-icon-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 78px;
    border-radius: 50%;
    border: 0.82px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-wrap svg {
    /* width: 17px;
    height: 17px; */
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-text-group {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1px;
    line-height: 36px;
}

.contact-value {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    line-height: 32px;
}

.contact-value a {
    color: #fff;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

.testimonials-slider-track {
    position: relative;
}

.testimonials-blue-line {
    position: absolute;
    height: 91px;
    background: var(--blue);
    border-radius: 12px;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.testimonial-video-card {
    background: var(--bg-light);
    border-radius: 12px;
    /* overflow: hidden; */
    position: relative;
    z-index: 2;
    margin: 0 10px;
    height: max-content;

    &.card-1 {
        margin-top: 100px;
    }
}

.center_img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 352px;
    height: 527px;
    top: -20px;
    margin-bottom: 40px;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.center_img::after {
    position: absolute;
    bottom: -75px;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    background-image: url("../img/circle-ellipse.png");
    width: 100%;
    height: 35%;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.testimonial-video-card .card-top {
    padding: 20px 16px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 10px;
}

.testimonial-video-card .yt-icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex: 0 0 36px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.testimonial-video-card .person-name {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #464c53;
}

.testimonial-video-card .thumb-wrap {
    position: relative;
    margin: 10px 13.5px -18px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: -18px !important;
}

.testimonial-video-card .thumb-wrap img {
    width: 100%;
    height: 237px;
    object-fit: cover;
    display: block;
}

.testimonial-video-card .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-video-card .play-overlay .play-icon-sm {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 22px;
    cursor: pointer;
}

.center-doctor-img {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 350px;
    pointer-events: none;
}

.btn-explore-all {
    background: var(--red);
    border-radius: 40px;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 18px 40px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-explore-all:hover {
    background: #a02222;
}

:root {
    --navy: #08254f;
    --blue: #0766a5;
    --light-blue: #b4cdeb;
    --sky-blue: #00aaff;
    --red: #8a1c1c;
    --text-dark: #464c53;
    --text-muted: #858e98;
    --bg-light: #eef3f8;
    --white: #ffffff;
}

.reviews-section {
    padding: 0 0 150px;
    background: #fff;
}

.reviews-bg-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 108px 62px 78px;
    position: relative;
}

.google-rating-badge {
    background: var(--blue);
    border-radius: 12px;
    padding: 37px 39px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    top: -66px;
    right: 119px;
}

.google-rating-badge .g-logo {
    width: 58px;
    height: 61px;
}

.google-rating-badge .rating-label {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 28px;
}

.google-rating-badge .rating-num {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 28px;
}

.google-rating-badge .star-icon {
    font-size: 22px;
    color: #ffd700;
}

.google-rating-badge .review-count {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}
.reviews-slider .slick-slide {padding: 0 15px;}
.review-text {
    font-size: 16px;
    font-weight: 400;
    color: #464c53;
    line-height: 36px;
    text-align: center;
}

.review-divider {
    border: none;
    border-top: 1px solid #858e98;
    margin: 15px auto 10px;
    width: calc(100% - 75px);
}

.reviewer-name {
    font-size: 24px;
    font-weight: 600;
    color: #0b3a58;
    text-align: center;
    line-height: 36px;
    margin-bottom: 0;
}

.review-nav-btn {
    width: 80px;
    height: 80px;
    border: 7.93px solid #ffffff;
    background: #8a1c1c;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;

    i {
        font-size: 44px;
    }
}

.review-nav-btn img {
    width: 100%;
    height: 100%;
}

/* ============================
   About Us Page
============================ */

/* ── About Hero Banner ── */
.about-hero-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(180, 205, 235, 0) 6.57%,
        #b4cdeb 125%
    );
    min-height: 480px;
    display: flex;
    align-items: center;
}

.about-banner-inner {
    padding: 200px 0 80px;
}

.about-hero-banner .sec_title {
    margin-bottom: 0;
}

.about-hero-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 520px;
    margin-left: auto;
}

.about-hero-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Decorative sparkle ellipses */
.about-sparkle {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.about-sparkle img {
    width: 100%;
    height: auto;
    max-width: 220px;
}

.about-sparkle-1 {
    top: 30%;
    left: 5%;
}

.about-sparkle-1 img {
    max-width: 180px;
}

.about-sparkle-2 {
    bottom: -80px;
    left: 30%;
}

.about-sparkle-2 img {
    max-width: 240px;
}

.about-sparkle-3 {
    top: 20%;
    right: 3%;
}

.about-sparkle-3 img {
    max-width: 140px;
    opacity: 0.5;
}

/* ── About EDS Section ── */
.about-eds-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-eds-content {
    padding-right: 10px;
}

.about-eds-content p {
    font-size: 16px;
    line-height: 2;
    color: #464c53;
    margin-bottom: 30px;
}

.about-eds-images {
    position: relative;
    margin-bottom: 24px;
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img-grid .about-img-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.about-img-grid .about-img-item.large {
    grid-column: 1 / span 2;
}

.about-img-grid .about-img-item.large img {
    height: 250px;
}

/* ── Mission Section ── */
.about-mission-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mission-img-wrap {
    position: relative;
}

/* Decorative circles behind mission */
.mission-deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.mission-deco-1 {
    width: 450px;
    height: 450px;
    border: 60px solid rgba(7, 102, 165, 0.08);
    top: -100px;
    right: -150px;
}

.mission-deco-2 {
    width: 350px;
    height: 350px;
    border: 50px solid rgba(7, 102, 165, 0.06);
    bottom: -80px;
    left: -120px;
}

/* ── Commitment Section ── */
.about-commitment-section {
    padding: 122px 0 90px 0;
    position: relative;
    overflow: hidden;
}

.commitment-card {
    padding: 51px 0 94px 51px;
}

.commitment-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: #0b3a58;
    margin-bottom: 20px;
}

.commitment-card p {
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.8;
    color: #464c53;
    margin-bottom: 16px;
    max-width: 700px;
    max-height: 218px;
}

.commitment-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    float: right;
}

.commitment-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================
   Shared Page Hero Banner
============================ */
.page-hero-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* .page-banner-inner {
  padding: 200px 0 80px;
} */
.page-hero-banner .sec_title {
    margin-bottom: 0;
    margin-top: 158px;
    display: inline-block;
    padding-right: 15px;
    /* background: linear-gradient(135deg, #b2d6ee 0%, #95caed 0%, #449bd5 37%, #043a5e 100%);
    background: linear-gradient(135deg,  #b2d6ee 0%,#95caed 0%,#449bd5 55%,#043a5e 86%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    min-width: 50%; */
}

.page-hero-banner .hero-img-col {
    display: flex;
    justify-content: flex-end;
}

.page-hero-banner .blue-circle {
    position: absolute;
    bottom: -444px;
    right: -2px;
}

.page-hero-banner .blue-circle img {
    width: 100%;
    max-width: 534px;
    height: auto;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.page-hero-banner.hero-banner {
    position: relative;
    overflow: visible;
    z-index: 1;
}

.page-hero-banner.hero-banner .container {
    position: relative;
    z-index: 2;
}

/* ============================
   Testimonials Grid Page
============================ */
.testimonials-grid-section {
    padding: 80px 0 100px;
}

.testimonial-grid-card {
    background: var(--bg-light);
    border-radius: 12px;
    position: relative;
    z-index: 2;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.testimonial-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-grid-card .card-top {
    padding: 20px 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.testimonial-grid-card .yt-icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex: 0 0 36px;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background: red;
    color: #fff;
    border-radius: 50%;
}

.testimonial-grid-card .person-name {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #464c53;
}

.testimonial-grid-card .thumb-wrap {
    position: relative;
    margin: 10px 13.5px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: -18px;
}

.testimonial-grid-card .thumb-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.testimonial-grid-card .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-grid-card .play-overlay .play-icon-sm {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.testimonial-grid-card .play-overlay .play-icon-sm:hover {
    transform: scale(1.1);
}

/* ============================
   FAQ Page
============================ */
.faq-section {
    padding: 80px 0 100px;
}

.faq-accordion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border: 1.5px solid #e0e6ed;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    height: fit-content;
}

.faq-item:has(.show) {
    border-color: #0766a5;
    grid-column: 1 / span 2;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #464c53;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question.active-faq,
.faq-question[aria-expanded="true"] {
    background: #0766a5;
    color: #fff;
    border-radius: 12px 12px 0 0;
}

.faq-question.active-faq .faq-icon i,
.faq-question[aria-expanded="true"] .faq-icon i {
    transform: rotate(180deg);
    color: #fff;
}

.faq-icon {
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 16px;
    color: #464c53;
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.faq-answer {
    padding: 20px 24px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #464c53;
}

.faq-answer a {
    color: #0766a5;
    text-decoration: underline;
}

/* ============================
   Gallery Listing Page
============================ */
.gallery-listing-section {
    padding: 177px 0 70px;
    position: relative;
}

.gallery-listing-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(21, 101, 192, 0.07) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.gallery-card {
    /*background: #fff;
    */
    border-radius: 12px 8px 12px 50px;
    overflow: visible;
    z-index: 1;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    -webkit-transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    -moz-transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    -ms-transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    -o-transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.gallery-card::after {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 4px 44px 0px rgba(0, 0, 0, 0.08);
    border-radius: 12px 12px 8px 50px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    max-height: 360px;
    -webkit-border-radius: 12px 12px 8px 50px;
    -moz-border-radius: 12px 12px 8px 50px;
    -ms-border-radius: 12px 12px 8px 50px;
    -o-border-radius: 12px 12px 8px 50px;
}

.gallery-card:hover {
    transform: translateY(-4px);
}

/* INNER IMAGE */
.gallery-card-img {
    position: relative;
    width: 228px;
    /* outer size */
    height: 228px;
    margin: 30px auto;
}

/* OUTER BORDER */
.gallery-card-img::before {
    content: "";
    position: absolute;
    width: 228px;
    height: 228px;
    border: 1px solid #004c8c;
    border-radius: 50%;
    top: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/* IMAGE */
.gallery-card-img img {
    width: 195px;
    height: 195px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
}

.gallery-card-img img {
    width: 195px;
    height: 195px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    margin-top: 8px;
}

.gallery-card-body {
    padding: 18px 21px 33px 33px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-card-desc {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #858e98;
    line-height: 1.6;
    margin-bottom: 19px;
    flex: 1;
}

.btn-explore-gallery {
    display: inline-block;
    background: transparent;
    color: #8a1c1c;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 35px;
    border: 1px solid #8a1c1c;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-explore-gallery:hover {
    background: #6f1424;
    color: #fff;
    transform: translateY(-2px);
}

/* ============================
   Gallery Details Page
============================ */
.custom-gallery {
    padding: 160px 0 100px;
}

.gallery-detail-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #464c53;
    line-height: 1.8;
    margin-top: 16px;
}

.gallery-detail-img {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.gallery-detail-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-detail-img:hover img {
    transform: scale(1.05);
}

/* ============================
   Contact Page
============================ */
.contact-form-section {
    padding: 80px 0;
}

.contact-input {
    background: #f8fbff;
    border: 1.5px solid #e0e6ed;
    border-radius: 10px;
    padding: 16px 20px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #464c53;
    transition: border-color 0.3s ease;
}

.contact-input:focus {
    border-color: #0766a5;
    box-shadow: 0 0 0 3px rgba(7, 102, 165, 0.1);
    outline: none;
}

.contact-input::placeholder {
    color: #858e98;
}

.contact-textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 30px;
}

.contact-info-card {
    background: #0766a5;
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 0.82px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2px;
}

.contact-info-value {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.contact-info-value a {
    color: #fff;
    text-decoration: none;
}

.contact-info-value a:hover {
    text-decoration: underline;
}

.contact-side-img {
    border-radius: 12px;
    overflow: hidden;
}

.contact-side-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* ============================
   Register Page
============================ */
.register-hero .page-banner-inner {
    padding: 180px 0 60px;
}

.register-form-section {
    padding: 60px 0px;
}

.form-section-card {
    background: #eef3f8;
    border: 1.5px solid #e0e6ed;
    border-radius: 16px;
    padding: 30px 35px;
    margin-bottom: 28px;
}

.form-section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(18px, 2.2vw, 28px);
    font-weight: 700;
    color: #307eb1;
    margin-bottom: 20px;
}

.register-input {
    background: #ffffff;
    border: 1.5px solid #e0e6ed;
    border-radius: 10px;
    padding: 14px 20px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #0b3a58;
    transition: border-color 0.3s ease;
    width: 100%;
    height: 62px;
}

.register-input:focus {
    border-color: #0766a5;
    box-shadow: 0 0 0 3px rgba(7, 102, 165, 0.1);
    outline: none;
}

.register-input::placeholder {
    color: #0b3a58;
}

.form-select.register-input {
    appearance: auto;
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #858e98;
}

.terms-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #0766a5;
}

.file-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #f8fbff;
    min-height: 50px;
}

.file-label span {
    color: #858e98;
}

.upload-hint {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #858e98;
    margin-bottom: 4px;
}

.payment-text {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #858e98;
    line-height: 1;
    margin-bottom: 20px;
}

.custom-file-input {
    width: 100%;
    height: 52px;
    background: #ffffff;
    border-radius: 10px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.3s;
}

.custom-file-input:hover {
    border-color: #d0d7de;
}

.file-placeholder {
    font-size: 16px;
    color: #0b3a58;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 30px);
    display: inline-block;
}

.upload-icon {
    font-size: 18px;
    color: #2f6fb3;
}

/* hint text */
.upload-hint {
    font-size: 14px;
    color: #464c53;
    margin-top: 15px;
    letter-spacing: 0.3px;
}

.ref {
    margin-top: 20px;
    font-size: 14px;
    color: #464c53;
}

#termsCheck {
    width: 43px;
    height: 37px;
    border: #307eb1 1px solid;
}

.form-section-card {
    background: #eef3f8;
    border-radius: 12px;
    padding: 36px 40px;
}

.form-section-title {
    margin: 0 0 24px;
    font-size: clamp(18px, 2.2vw, 28px);
    font-weight: 600;
    color: #307eb1;
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.terms-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.terms-icon {
    object-fit: cover;
}

.terms-item p {
    margin: 0;
    color: #858e98;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.form-check-label {
    font-size: 17.8px;
    line-height: 28px;
    font-weight: 500;
    width: calc(100% - 36px);
}

.form-check {
    flex-wrap: wrap;

    .field-error {
        width: 50%;
        padding-left: 37px;
    }
}

.btn-hero-primary1 {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    background: #8a1c1c;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 26px 4px 26px 36px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.25s,
        transform 0.2s;
    height: 64px;
    border: none;

    .btn-loader {
        display: none !important;
    }
}

.why-choose-section .w-fit-content {
    width: fit-content;
    padding-left: 3rem;
}

.btn-hero-primary1 .arrow-wrap1 {
    width: 59px;
    height: 59px;
    background: #8a1c1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    border: 5px solid #ffffff;
}

.btn-hero-primary1:hover {
    background: #6f1424;
    color: #fff;
    transform: translateY(-2px);
}

.btn-hero-primary1 .arrow-wrap1 {
    i {
        font-size: 34px;
    }
}

.custom-select-wrap {
    position: relative;
}

.custom-course-select {
    width: 100%;
    height: 64px;
    padding: 0 60px 0 24px;
    border: none;
    border-radius: 16px;
    background-color: #ffffff;
    color: #0b3a58;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

/* custom arrow */
.custom-select-wrap::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 24px;
    width: 12px;
    height: 12px;
    border-right: 2px solid #4a4a4a;
    border-bottom: 2px solid #4a4a4a;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.custom-course-select:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

.custom-course-select option {
    color: #0b3a58;
}

.register-input {
    height: 64px;
    border: none;
    border-radius: 16px;
    padding: 0 24px;
    font-size: 16px;
    color: #0b3a58;
    background: #ffffff;
    box-shadow: none;
}

.register-input {
    height: 64px;
    border: none;
    border-radius: 16px;
    padding: 0 24px;
    font-size: 16px;
    color: #0b3a58;
    background: #ffffff;
    box-shadow: none;
}

.register-input:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

/* from home css */

.testimonials-grid-section .text-center .sec_title {
    margin-bottom: 24px;
}

.testimonials-grid-section.testimonial {
    padding-top: 200px;
    padding-bottom: 20px;
}

.testimonials-grid-section.testimonial .heading-wrapper {
    margin-bottom: 40px;
}

.testimonials-grid-section.testimonial .testimonial-grid-card .card-top {
    justify-content: start;
    gap: 10px;
}

.testimonials-grid-section.testimonial
    .testimonial-grid-card
    .card-top
    .yt-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
}

.testimonials-grid-section.testimonial
    .testimonial-grid-card
    .card-top
    .person-name {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}

/* .testimonials-grid-section.testimonial .testimonial-grid-card .thumb-wrap {
    margin-top: 17px;
} */

.testimonials-grid-section.testimonial .testimonial-grid-card {
    background-color: transparent;
    position: relative;
    margin-bottom: 42px;
    transition: 0.4s;
}

.testimonials-grid-section.testimonial .testimonial-grid-card .thumb-wrap img {
    height: 304px;
    border-radius: 12px;
}

.testimonials-grid-section.testimonial .testimonial-grid-card::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #eef3f8;
    width: 100%;
    height: 416px;
    z-index: -1;
    border-radius: 12px;
}

.home-testimonial .videoWrap {
    height: 216px !important;
    border-radius: 12px;
    overflow: visible;
}

.home-testimonial .videoWrap iframe {
    height: calc(100% + 20px) !important;
    width: 100% !important;
}

.testimonials-grid-section.testimonial .testimonial-grid-card .card-top {
    padding: 20px 30px 0 19px !important;
}

.testimonials-grid-section.testimonial .testimonial-grid-card .thumb-wrap {
    padding: 17px 30px 0 19px !important;
    margin: 0;
}

.testimonials-grid-section.testimonial .testimonial-grid-card:hover {
    transform: translateY(0px);
    box-shadow: none;
}

.testimonials-grid-section.testimonial .testimonial-grid-card:hover::after {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    background-color: #b4cdeb;
}

/* =========================contact-form-section==================*/
.contact-form-section.contact-page {
    padding-top: 183px;
    padding-bottom: 44px;
}

.contact-form-section.contact-page .sec_title {
    margin-bottom: 40px;
}

.contact-form-section.contact-page .contact-form {
    text-align: right;
}

.contact-form .row > [class*="col-"] {
    margin-bottom: 32px;
    text-align: center;
}

.contact-form-section.contact-page .contact-form .contact-input {
    padding: 0 29px;
    height: 70px;
    border-radius: 12px;
    color: #0b3a58;
    background-color: #eef3f8;
    border: none;
}

.contact-form-section.contact-page .contact-form .contact-input::placeholder {
    color: #0b3a58;
}

.contact-form-section.contact-page
    .contact-form
    .form-control.contact-input.contact-textarea.smessage {
    padding: 23px 29px;
    height: 153px;
    resize: none;
}

.contact-form-section.contact-page .contact-form .btn-send-message {
    overflow: hidden;
    height: 57px;
    border: none;
    outline: none;
    margin-top: 26px;
    float: right;
    max-width: 234px;
    width: 100%;
}

.invalid-feedback.d-block {
    display: block !important;
}

.contact-form-summary.invalid-feedback.d-block {
    display: inline-block !important;
    width: auto !important;
    float: left;
    margin-top: 55px !important;
}

/* .contact-form-section.contact-page .contact-form .btn-send-message:hover span {
    transform: translateY(-100%);
} */

/* .contact-form-section.contact-page .contact-form .btn-send-message span {
    font-size: 14px;
    line-height: 20px;
    height: 57px;
    padding: 7px 63px;
    display: flex;
    flex-direction: column;
    transition: 0.4s;
} */

.contact-form-section.contact-page .contact-form .btn-send-message:hover {
    transform: translateY(0px);
}

.contact-form-section.contact-page .contact-info-cards .contact-info-card {
    padding: 30px 29px;
    gap: 16px;
}

.contact-form-section.contact-page .contact-info-cards .contact-side-img {
    margin-top: 13px;
}

.contact-form-section.contact-page .contact-info-cards .contact-side-img img {
    height: 276px;
}

.contact-form-section.contact-page .contact-info-cards {
    padding-left: 0;
}

.contact-form-section.contact-page
    .contact-info-cards
    .contact-info-text
    .contact-info-label {
    font-size: 18px;
}

.contact-form-section.contact-page
    .contact-info-cards
    .contact-info-text
    .contact-info-value {
    font-size: 20px;
    font-weight: 400;
}

.testimonial-section.home-testimonial .btn-hero-primary .arrow-wrap {
    margin-left: 50px;
}

#reviews .google-rating-badge i {
    color: #3c8fc7;
}

#reviews .google-rating-badge {
    align-items: start;
}

.why-choose-section .feature-right {
    z-index: 3;
}

.why-choose-section .right-bottom {
    display: flex;
    justify-content: flex-end;
    padding-top: 66px;
}

/* program-highlights */
.program-highlights.position-relative {
    overflow: hidden;
}

.program-highlights .row {
    padding-top: 87px;
    padding-bottom: 55px;
}

.program-highlights.position-relative::after {
    width: 582px;
    height: 595px;
    border: 90px solid #d9d9d940;
    right: -175px;
    left: auto;
    top: 53%;
    border-radius: 50%;
    transform: translateY(-50%);
    background: transparent;
}

.highlights-list {
    position: relative;
    width: 100%;
    min-height: 530px;
    list-style: none;
    margin: 0;
    padding: 0;
    top: -76px;
}

.highlight-item {
    position: absolute;
    max-width: 440px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    text-align: right;
    transform: translateY(-50%);
}

/* .highlight-item {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    width: min(480px, 90%);
    text-align: right;
    position: relative;
} */

/* Curve pattern repeats automatically */
/* .highlight-item:nth-child(5n+1) {right: -68px; }
.highlight-item:nth-child(5n+2) {right: -9px; }
.highlight-item:nth-child(5n+3) {right: 40px; }
.highlight-item:nth-child(5n+4) {right: 90px; }
.highlight-item:nth-child(5n+5) {right: 140px; } */
.program-highlights.position-relative .highlight-item p {
    font-size: 16px;
    line-height: 24px;
    color: #ebf2fa;
    font-weight: 400;
}

.program-highlights.position-relative .highlight-item:nth-child(2) p {
    /* max-width: 384px;
  width: 100%; */
}

.program-highlights.position-relative .highlight-item:nth-child(3) {
    /* right: 196px;
  margin-bottom: 24px; */
}

.program-highlights.position-relative .highlight-item:nth-child(3) p {
    /* max-width: 427px;
  width: 100%; */
}

.program-highlights.position-relative .highlight-item:nth-child(4) {
    /* right: 207px;
  margin-bottom: 34px; */
}

.program-highlights.position-relative .highlight-item:nth-child(4) p {
    /* max-width: 388px;
  width: 100%; */
}

.program-highlights.position-relative .highlight-item:nth-child(5) {
    /* right: 197px;
  margin-bottom: 38px; */
}

.program-highlights.position-relative .highlight-item:nth-child(5) p {
    /* max-width: 394px;
  width: 100%; */
}

.program-highlights.position-relative .highlight-item:nth-child(6) {
    /* right: 151px;
  margin-bottom: 35px; */
}

.program-highlights.position-relative .highlight-item:nth-child(6) p {
    /* max-width: 396px;
  width: 100%; */
}

.program-highlights.position-relative .highlight-item:nth-child(7) {
    /* right: 76px; */
}

.program-highlights.position-relative .highlight-item:nth-child(7) p {
    /* max-width: 394px;
  width: 100%; */
}

/* .program-highlights.position-relative::before {
    width: 584px;
    height: 625px;
    border: 90px solid #D9D9D940;
    bottom: 10px;
    left: -300px;
    border-radius: 50%;
} */

.program-highlights.position-relative .highlight-item .highlight-tick {
    background-color: transparent;
}

.program-highlights.position-relative .white_title {
    font-size: 52px;
    line-height: 74px;
    margin-bottom: 20px;
}

.program-highlights.position-relative .white_title samp {
    font-size: clamp(24px, 3.6vw, 48px);
}

.program-highlights.position-relative .program-description {
    font-size: clamp(14px, 1.3vw, 20px);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 64px;
}

.program-highlights.position-relative .btn-hero-primary {
    padding: 2px 4px 2px 74px;
}

.program-highlights.position-relative .btn-hero-primary .arrow-wrap {
    margin-left: 40px;
    height: 50px;
    width: 50px;
}

.program-highlights.position-relative .bottom-img {
    position: absolute;
    bottom: -124px;
    left: -2px;
}

.course-description-section .course-desc-content .course-features-list {
    row-gap: 12px;
    column-gap: 20px;
}

.course-description-section .course-desc-content h3 {
    margin-bottom: 16px;
}

.course-description-section {
    padding: 200px 0 129px;
    position: relative;
    overflow: hidden;
}

.training-different .sec_title {
    margin-bottom: 48px;
}

.training-different .training-cards .training-card {
    padding: 27px 13px !important;
}

.training-different .training-col-2 .training-card,
.training-col-3 .training-card {
    min-height: 444px !important;
    padding: 27px 19px !important;
}

.training-different .training-col-2 .training-card,
.training-col-3 .training-card {
    min-height: 478px !important;
}

.intensive-banner-section {
    padding-top: 0px !important;
}

.whats-included-section {
    padding-bottom: 101px !important;
}

.upcoming-courses {
    padding-top: 0 !important;
}

.upcoming-courses {
    padding-bottom: 0 !important;
}

.course-directors {
    padding-top: 87px !important;
}

.course-directors {
    padding-bottom: 0 !important;
}

.video-testimonials-section {
    padding-top: 97px !important;
}

.about-commitment-section .sp-bot-right {
        top: -30%;
        right: 14px;
        width: 35px;
        height: 55px;
        left: auto;
    }

/* from inner page css */
.commitment-img-wrap {
    position: relative;
    z-index: 1;
    min-height: 497px;

    
    &::after {
        position: absolute;
        left: -22px;
        top: -168px;
        content: "";
        width: 485px;
        height: 496px;
        background: url("../img/commitment.png");
    }

    img {
        height: 388px;
        width: 388px;
        border-radius: 50%;
        position: relative;
        z-index: 1;
        margin-top: auto;
        margin-left: 30px;
        margin-top: -227px;
    }
    .commitment-circle-img {
        height: 388px;
        width: 388px;
        margin-inline: auto;
        margin-top: auto;
        border-radius: 50%;
    }
}

.commitment-card h3 {
    font-size: clamp(20px, 2.4vw, 32px);
    line-height: 1.4;
    margin-bottom: 12px;
    color: #0b3a58;
}

.commitment-card p {
    font-size: clamp(14px, 1.2vw, 18px);
    color: #858e98;
    line-height: 1.75;
}

.commitment-card .btn-hero-primary {
    margin-top: 45px;
}

.commitment_row::after {
    position: absolute;
    content: "";
    width: 100%;
    min-height: 100%;
    border-radius: 12px;
    z-index: -1;
    top: 0;
    background: #eef3f8;
}

.mission-content {
    background: #0766a5;
    color: #ebf2fa;
    border-radius: 12px;
    min-height: 357px;
    padding: 50px 70px;

    p {
        font-size: 18px;
        line-height: 33px;
        font-weight: 300;
        color: #ebf2fa;
        margin-bottom: 3px;
    }
}

.mission-img-wrap {
    min-height: 485px;
    border-radius: 12px;

    img {
        width: 100%;
        height: 485px;
        object-fit: cover;
        border-radius: 12px;
    }
}

.about-mission-section {
    position: relative;
    z-index: 1;

    &::after {
        position: absolute;
        content: "";
        background: #eef3f8;
        top: 0;
        left: 0;
        width: 100%;
        height: 560px;
        z-index: -1;
    }

    .sec_title {
        margin-bottom: 45px;
    }
}

.about-eds-images {
    .about-img-grid {
        display: flex;
        flex-direction: column;
        align-items: end;

        .about-img-item {
            width: 309px;
            height: 256px;
            border-radius: 12px;
            margin-top: -20px;

            &.large {
                width: 100%;
                height: 298px;
                margin-bottom: 31px;
            }

            img {
                width: 100%;
                height: 100%;
                border-radius: 12px;
            }
        }
    }
}

.about-eds-section {
    padding-top: 188px !important;

    .sec_title {
        margin-bottom: 140px;
    }
}

.about-eds-images {
    z-index: 1;
    margin-top: -70px;
}

.about-eds-content {
    position: relative;
    z-index: 1;

    &::after {
        position: absolute;
        content: "";
        z-index: -1;
        left: 0;
        width: 868px;
        min-height: 616px;
        bottom: 0;
        border: 1px solid #0766a5;
        border-radius: 16px;
    }

    .content {
        width: 100%;
        max-width: 646px;
        background: #0766a5;
        border-radius: 12px 12px 0 0;
        padding: 44px 39px 53px;
        text-align: center;
        margin-left: auto;

        p {
            color: #ebf2fa;
            font-size: 18px;
            font-weight: 300;
            line-height: 33px;
            margin-bottom: 0;
        }

        .btn-hero-primary {
            margin-top: 40px;
        }
    }
}

.faq-content-section {
    position: relative;
    padding: 180px 0 100px;
}

.faq-staggered-list {
    /* max-width: 900px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.faq-item {
    width: 100%;
    max-width: 823px;
    /* Takes up 60% of the container width to allow them to "stagger" visually */
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
}

/* Pull odds to the left, evens to the right */
.faq-left {
    align-self: flex-start;
}

.faq-right {
    align-self: flex-end;
}

/* Normal state */
.faq-question {
    background: #ececec;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition:
        background 0.2s,
        color 0.2s;
    border-radius: 8px;
}

.faq-text {
    font-size: 18px;
    font-weight: 500;
    color: #292d32;
}

.faq-icon {
    color: #333;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

/* Answer state by default */
.faq-answer {
    display: none;
    color: #565656;
    /* hidden until active class is added to item */
}

/* Active state */
.faq-active .faq-question {
    background: #0766a5 !important;
    /* Dark navy */
    color: #fff !important;
    border-radius: 8px 8px 0 0;
    /* flat bottom for answer attachment */
}

.faq-active .faq-text,
.faq-active .faq-icon {
    color: #fff !important;
}

.faq-active .faq-question .faq-text {
    color: #ececec !important;
}

.faq-active .faq-answer {
    background: #fff;
    border: 1px solid #1b2d45;
    border-width: 0px, 1px, 1px, 1px;

    border-style: solid;

    border-color: #003984;

    border-top: none;
    padding: 24px 20px;
    border-radius: 0 0 8px 8px;
    display: block;
    /* shows the answer */
}

.faq-answer p {
    font-size: 16px;
    color: #565656;
    line-height: 24px;
    margin: 0;
}

/* Hover effect */
.faq-item:not(.faq-active):hover .faq-question {
    background: #e0e0e0;
}

.faq-question {
    background: #d7e0ea !important;
    padding: 18px 24px !important;
    font-size: 18px;
    color: #0b3a58;

    .faq-text {
        color: #0b3a58 !important;
    }
}

.hero-banner::after {
    position: absolute;
    content: "";
    /* background: url("../img/banner-side.png") no-repeat; */
    background: rgba(255, 255, 255, 0.25);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    left: 0;
    height: 100%;
    width: 940px;
    top: 0;
    z-index: -1;
}

.faq-item {
    border-radius: 8px !important;
}

.footer-links li a {
    color: inherit !important;
    background: linear-gradient(to right, currentcolor 0, currentcolor 100%) 0
        95%/0 1px no-repeat;
    transition: all 500ms ease !important;
}

.footer-links li a:hover,
.footer-links li.active a {
    color: #fff !important;
    background-size: 100% 1px;
}

.footer-socials li {
    --i: 0;
    margin-top: calc(var(--i) * -12px) !important;
}

.footer-socials li:nth-child(1) {
    --i: -0.5;
}

.footer-socials li:nth-child(2) {
    --i: 0;
}

.footer-socials li:nth-child(3) {
    --i: 1;
}

.footer-socials li:nth-child(4) {
    --i: 2;
}

.footer-socials li:nth-child(5) {
    --i: 4;
}

.stellarnav li.has-sub > a::after {
    content: "";
    display: inline-block;
    margin-left: 7px;

    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #1f3a5f;
    /* change color */

    vertical-align: middle;
}

.stellarnav li.has-sub > a::after {
    transition: transform 0.3s ease;
}

/* When hovering the li, rotate the caret */
.stellarnav li.has-sub:hover > a::after {
    transform: rotate(180deg);
}

/* ── Course Description ── */
.course-description-section {
    padding: 186px 0 125px;
    position: relative;
    overflow: hidden;

    .csr_des_img {
        position: absolute;
        width: 303px;
        height: 303px;
        top: 241px;

        .card-img-wrap {
            width: 303px;
            height: 303px;

            img {
                max-width: unset;
                width: 260px;
                height: 260px;
            }
        }

        &.left_img {
            left: 0;
            top: -53px;
        }

        &.right_img {
            right: 23px;
            /* bottom: -39px; */
        }
    }
}

.course-desc-content {
    padding: 57px 36px 70px 100px;
    background: #e8f0fa;
    border-radius: 12px;

    h3 {
        color: #0b3a58;
        font-size: 32px;
        line-height: 42px;
        font-weight: 600;
        font-family: "Poppins";
        margin-bottom: 0;
        padding-right: 30px;
    }

    .content_box {
        width: 100%;
        max-width: 770px;
        padding-right: 90px;

        p {
            color: #858e98;
            font-size: 18px;
            line-height: 32px;
            font-weight: 500;

            &:last-child {
                margin-bottom: 0;
            }
        }
    }
}

.course-features-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.course-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #0b3a58;
    line-height: 1.6;
    margin-bottom: 0;
}

.course-features-list li i {
    color: #0766a5;
    font-size: 20px;
    flex-shrink: 0;
}

.course-features-list2 {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 5px;
}

.course-features-list2 li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #0b3a58;
    line-height: 1.6;
    margin-bottom: 0;
}

.course-features-list2 li i {
    color: #0766a5;
    font-size: 20px;
    flex-shrink: 0;
}

.course-desc-images {
    position: relative;
}

.course-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.course-img-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.course-img-item.large {
    grid-column: 1 / span 2;
}

.course-img-item.large img {
    height: 250px;
}

/* ── Program Highlights ── */
.program-highlights-section {
    padding: 80px 0;
    background: #0766a5;
    position: relative;
    overflow: hidden;
}

.program-highlights-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border: 70px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    bottom: -180px;
    left: -150px;
    pointer-events: none;
}

.program-highlights-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -100px;
    right: -200px;
    pointer-events: none;
}

.highlights-left {
    position: relative;
    z-index: 1;
}

.highlights-left .white_title {
    margin-bottom: 20px;
}

.highlights-left p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #ebf2fa;
    margin-bottom: 35px;
    max-width: 400px;
}

.highlights-right {
    position: relative;
    z-index: 1;
}

.highlights-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

.highlights-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.highlights-checklist .highlight-text {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    text-align: right;
}

.highlights-checklist li:nth-child(1) {
    max-width: 400px;
}

.highlights-checklist li:nth-child(2) {
    max-width: 370px;
}

.highlights-checklist li:nth-child(3) {
    max-width: 460px;
}

.highlights-checklist li:nth-child(4) {
    max-width: 380px;
}

.highlights-checklist li:nth-child(5) {
    max-width: 360px;
}

.highlights-checklist li:nth-child(6) {
    max-width: 390px;
}

.highlights-checklist li:nth-child(7) {
    max-width: 400px;
}

.highlights-checklist .highlight-check {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlights-checklist .highlight-check i {
    font-size: 30px;
    color: #ffffff;
}

/* ── What Makes Training Different ── */
.training-different-section {
    padding: 80px 0;
}

.diff-card {
    background: #eef3f8;
    border-radius: 16px;
    padding: 35px 28px;
    text-align: center;
    height: 100%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(7, 102, 165, 0.12);
}

.diff-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0766a5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.diff-card-icon i {
    font-size: 28px;
    color: #fff;
}

.diff-card h4 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0b3a58;
    margin-bottom: 12px;
}

.diff-card p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #464c53;
    margin-bottom: 0;
}

/* ── Live Surgery Section ── */
.live-surgery-section {
    padding: 80px 0;
    background: #0766a5;
    position: relative;
    overflow: hidden;
}

.live-surgery-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
}

.live-surgery-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border: 60px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.surgery-content {
    position: relative;
    z-index: 1;
}

.surgery-content .white_title {
    margin-bottom: 24px;
}

.surgery-content p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 2;
    color: #ebf2fa;
    margin-bottom: 16px;
}

.surgery-content .btn-hero-primary {
    margin-top: 20px;
}

.surgery-img-wrap {
    position: relative;
    z-index: 1;
}

.surgery-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* ── What's Included ── */
.whats-included-section {
    padding: 80px 0;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #eef3f8;
    border-radius: 12px;
    padding: 20px 24px;
    transition: transform 0.2s ease;
}

.included-item:hover {
    transform: translateX(4px);
}

.included-item i {
    color: #0766a5;
    font-size: 22px;
    flex-shrink: 0;
}

.included-item span {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #0b3a58;
}

/* ── Upcoming Course Dates ── */
.upcoming-dates-section {
    padding: 80px 0;
    background: #f8fbff;
}

.date-card {
    background: transparent;
    border: 1.5px solid #e0e6ed;
    border-radius: 16px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
}

.date-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(7, 102, 165, 0.12);
}

.date-card-header {
    background: #0766a5;
    padding: 24px 28px;
    text-align: center;
}

.date-month {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.date-location {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.date-card-body {
    padding: 30px 28px;
    text-align: center;
}

.date-price {
    margin-bottom: 24px;
}

.price-label {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #858e98;
    margin-bottom: 4px;
}

.price-value {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0b3a58;
}

.date-card-body .btn-hero-primary {
    font-size: 14px;
    padding: 14px 4px 14px 28px;
    height: 56px;
}

.payment-plan-note {
    margin-top: 40px;
}

.payment-plan-note p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #0766a5;
}

/* ── PACE Accreditation ── */
.pace-section {
    padding: 60px 0;
}

.pace-card {
    background: #eef3f8;
    border-radius: 16px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.pace-logo {
    flex-shrink: 0;
    width: 160px;
}

.pace-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.pace-content p {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #464c53;
    margin-bottom: 0;
}

.course-directors {
    padding: 80px 0;
}

.course-directors .sec-heading {
    margin-bottom: 48px;
}

.directors-wrapper {
    background-color: #e8f0fa;
    border-radius: 12px;
    padding: 0px 77px 30px;
    position: relative;
    margin-top: 260px;
}

.director-card {
    text-align: center;
    margin-inline: auto;
    max-width: 515px;
}

.director-image-wrapper {
    width: 422px;
    height: 422px;
    max-width: 100%;
    margin: -211px auto 27px;
    position: relative;

    /* border-radius: 50%;
            background: linear-gradient(135deg, #b2d6ee, #449bd5);
            padding: 30px;
            box-shadow: 0 10px 30px rgba(7,102,165,0.2); */
    .card-img-wrap {
        width: 422px;
        height: 422px;
        background: transparent;

        img {
            width: 362px;
            height: 362px;
            max-width: unset;
        }
    }
}

.director-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    /* background: #fff; */
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-card h3 {
    font-size: 24px;
    font-weight: 900;
    line-height: 35px;
    color: #0b3a58;
    margin-bottom: 8px;
}

.special-edition-btn.btn-hero-primary {
    padding: 26px 37px 26px 37px;
}

.director-card p {
    font-size: 16px;
    line-height: 32px;
    color: #3b3b3b;
    text-align: center;
    margin: 0;
}

.download-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.download-btn-wrap .btn-red {
    min-width: 301px;
}

.video-testimonials-section {
    padding: 80px 0 20px;
}

.video-testimonials-section .sec-heading {
    margin-bottom: 24px;
}

.video-testimonial-subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    color: var(--text-gray);
    max-width: 946px;
    margin: 0 auto 48px;
}

.video-testimonials-slider {
    position: relative;
    margin: 0 -15px;
}

.video-testimonials-slider .slick-slide {
    padding: 10px 15px;
}

.video-testimonial-card {
    background-color: #eef3f8;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    max-height: 450px;
    margin-bottom: 30px;
}

.videoWrap {
    height: 368px !important;
    border-radius: 12px;
    overflow: hidden;
}

.videoWrap iframe {
    height: 100% !important;
    width: 100% !important;
}

.video-testimonial-header {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    margin-bottom: 20px;
    gap: 15px;
}

.sec-subtitle {
    color: #858e98;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 45px;
}

.video-testimonial-header .video-youtube-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: red;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.video-testimonial-header .video-youtube-icon i {
    color: #fff;
    font-size: 28px;
}
.video-testimonial-header .video-testimonial-name {
    font-size: 20px;
    font-weight: 600;
    color: #464c53;
    margin: 0;
}

.video-testimonial-video {
    position: relative;
    width: 100%;
    aspect-ratio: 355 / 421;
    border-radius: 21px;
    overflow: hidden;
}

.video-testimonial-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #08254f80;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #fff;
}

.video-play-button i {
    font-size: 52px;
    color: #ffffff;
    margin-left: 8px;
}

/* Navigation */
.video-slick-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 33px;
    margin-top: 40px;
}

.video-slick-nav-wrapper button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 7.93px solid #ffffff;
    background: #8a1c1c;
    color: #ffffff;
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* .video-slick-nav-wrapper button:hover {
    background: #E0E6ED;
    color: #8A1C1C;
    border-color: #8A1C1C;
} */

.video-testimonials-slider .slick-dots {
    display: none !important;
}

.course-program-highlights.program-highlights::before {
    display: none;
}

.program-highlights {
    background-color: #0766a5;
    /* padding: 120px 0; */
    position: relative;
    overflow: hidden;
}

.program-highlights::before {
    content: "";
    position: absolute;
    right: -200px;
    top: 50%;
    width: 585px;
    height: 585px;
    background: transparent;

    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.program-highlights::after {
    content: "";
    position: absolute;
    left: -150px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.program-left {
    max-width: 553px;
    position: relative;
    z-index: 2;
    margin-top: 0%;
}

.program-description {
    font-size: clamp(14px, 1.3vw, 20px);
    font-weight: 500;
    line-height: 1.6;
    color: #ebf2fa;
    margin-bottom: 64px;
    text-transform: capitalize;
}

.highlights-list {
    position: relative;
    z-index: 2;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 12px;
}

/* .highlight-item:nth-child(1) {
  padding-right: 40px;
}

.highlight-item:nth-child(2) {
  padding-right: 20px;
}

.highlight-item:nth-child(3) {
  padding-right: 90px;
}

.highlight-item:nth-child(4) {
  padding-right: 65px;
}

.highlight-item:nth-child(5) {
  padding-right: 45px;
}

.highlight-item:nth-child(6) {
  padding-right: 25px;
}

.highlight-item:nth-child(7) {
  padding-right: 0;
} */

.highlight-item p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #ebf2fa;
    margin: 0;
    text-transform: capitalize;
    text-align: right;

    /* max-width: 450px; */
}

.highlight-item .highlight-tick {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 18px;
    flex-shrink: 0;
}

/* ============ SECTION 3: WHAT MAKES ============ */
.training-different {
    padding: 110px 0 110px;
    background: #fff;
}

.training-different .sec-heading {
    margin-bottom: 48px;
}

.training-cards {
    position: relative;
}

.training-card {
    background-color: #e8f0fa;
    border-radius: 12px;
    padding: 30px 18px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 458px;
}

.training-col-1,
.training-col-4 {
    padding-top: 40px;
}

.training-col-2 .training-card,
.training-col-3 .training-card {
    min-height: 471px;
}

.training-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(11, 58, 88, 0.15);
}

.training-card h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    color: #0b3a58;
    margin-bottom: 6px;
}

.training-card p {
    font-size: 18px;
    line-height: 32px;
    color: #858e98;
    text-transform: capitalize;
    margin: 0;
}

/* ============ SECTION 4: INTENSIVE BANNER ============ */
.intensive-banner-section {
    padding: 80px 0;
}

.intensive-banner {
    background-color: #0766a5;
    border-radius: 12px;
    padding: 50px 60px 35px 90px;
    position: relative;
    overflow: hidden;
    min-height: 482px;
    z-index: 1;

    .bottom-img {
        position: absolute;
        bottom: -158px;
        left: 23px;
        width: 287px;
        height: 277px;
        z-index: -1;
    }
}

.intensive-banner::before {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.intensive_content {
    max-width: 421px !important;
    margin-top: -50px;
}

.intensive-banner h2 {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.intensive-banner p {
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    color: #fff;
    margin-bottom: 18px;
}
.contactBanner.page-hero-banner .sec_title {
    span {
        font-style: italic;
    }
}

.intensive-images {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.intensive-img-1 {
    position: absolute;
    right: 0;
    top: 0;
    width: 331px;
    height: 256px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
}

.intensive-img-2 {
    position: absolute;
    left: 0;
    top: 120px;
    width: 308px;
    height: 276px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 1;
}

.intensive-img-1 img,
.intensive-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============ SECTION 5: WHAT'S INCLUDED ============ */
.whats-included-section {
    padding: 0 0 80px;
}

.whats-included-wrapper {
    background-color: #e8f0fa;
    border-radius: 12px;
    padding: 55px 61px;
}

.whats-included-wrapper .sec-heading {
    margin-bottom: 40px;
}

.included-card {
    background-color: #0766a5;
    border-radius: 12px;
    padding: 18px 68px 10px 34px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 85px;
}

.included-card .tick-circle {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 14px;
    flex-shrink: 0;
}

.included-card p {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #ebf2fa;
    margin: 0;
}

.info-block h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #0766a5;
    margin-bottom: 4px;
}

.info-block p {
    font-size: 18px;
    line-height: 30px;
    color: #3b3b3b;
    margin: 0;
}

.mt-40 {
    margin-top: 40px !important;
}

/* ============ SECTION 6: UPCOMING COURSES ============ */
.upcoming-courses {
    padding: 80px 0 120px;
    position: relative;
}

.upcoming-banner {
    background-color: #0766a5;
    border-radius: 12px;
    padding: 55px 50px 35px;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.effect1 {
    position: absolute;
    bottom: 72px;
    left: -13%;
}

.effect2 {
    position: absolute;
    bottom: 92px;
    right: -13%;
}

.upcoming-banner h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.date-card {
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 17px 20px;
    text-align: center;
    min-height: 161px;
    max-width: 420px;
    margin: 0 auto;
}

.date-card .date-text {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 18px;
}

.date-card .date-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;

    .btn-hero-primary {
        width: 136px;
        height: 43px;
        line-height: 43px;
        padding: 0;
        font-size: 13px;
        text-align: center;
        justify-content: center;
    }
}

.date-btn {
    background: linear-gradient(135deg, #f4d03f, #e8b73a);
    color: #0766a5;
    border: none;
    border-radius: 8px;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 500;
    min-width: 136px;
    height: 43px;
    transition: all 0.3s ease;
}

.date-btn.register {
    background: linear-gradient(135deg, #a61e1e, var(--red-btn));
    color: #fff;
}

.date-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.investment-box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px 40px;
    text-align: center;
    margin: 40px auto 25px;
    max-width: 416px;
    backdrop-filter: blur(10px);
}

.investment-box p {
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 30px;
    font-weight: 300;
}

.investment-box .investment-price {
    font-size: 32px;
    font-weight: 700;
}

.investment-box.prf-pricing-box {
    max-width: 1000px;
    padding: 22px 40px;
}

.prf-pricing-box p {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 48px;
    font-size: 28px;
    line-height: 1.3;
    white-space: nowrap;
}

.prf-pricing-box .price-group {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 8px;
    color: #fff;
    white-space: nowrap;
}

.prf-pricing-box .price-label {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
}

.prf-pricing-box .price-extra {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    margin-left: 4px;
}

@media (max-width: 767px) {
    .investment-box.prf-pricing-box {
        padding: 20px 20px;
    }

    .prf-pricing-box p {
        flex-wrap: wrap;
        gap: 10px 24px;
        white-space: normal;
        font-size: 20px;
    }

    .prf-pricing-box .price-label {
        font-size: 20px;
    }

    .prf-pricing-box .investment-price {
        font-size: 24px;
    }

    .prf-pricing-box .price-extra {
        font-size: 14px;
    }
}

.flexible-payment {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    line-height: 52px;
    text-transform: capitalize;
    margin: 0;
}

.flexible-payment .italic {
    font-style: italic;
}

.pace-wrapper {
    /* border: 1px solid #0766A5; */
    border-radius: 16px;
    padding: 55px 30px;
    background: transparent;
    position: relative;
    z-index: 2;
    max-width: 1096px;
    margin: 0 auto 0;

    /* box-shadow: 0 10px 30px rgba(7, 102, 165, 0.1); */
    &::after {
        width: 95%;
        height: 416px;
        top: auto;
        bottom: 0;
        left: 0;
        z-index: -1;
        position: absolute;
        content: "";
        border: 1px solid #0766a5;
        border-radius: 16px;
        right: 0;
        margin: 0 auto;
    }
}

.pace-wrapper img {
    width: 100%;
    max-width: 769px;
    margin: 0 auto;
    display: block;
    border-radius: 45px;
}

header {
    z-index: 9;
}

/* sourav */
.dental-section {
    padding-bottom: 62px;
}

.dental-courses .text-center .sec_title {
    margin-bottom: 24px;
}

.about-eds-section .about-eds-content .content {
    position: relative;
    overflow: hidden;
}

.about-eds-section .about-eds-content .content a {
    position: relative;
    z-index: 2;
}

.about-eds-section .about-eds-content .content .heroBtm::before {
    border: 1.19px solid #ffffff;
    position: absolute;
    top: -45px;
    right: -46px;
    width: 286px;
    height: 277px;
    border-radius: 50%;
    z-index: 1;
    content: "";
    opacity: 20%;
}

.about-eds-section .about-eds-content .content .heroBtm {
    left: -14%;
}

/* .about-commitment-section{
  background-image: url(../img/commit_ico.png);
  background-size: 157px;
  background-position: bottom 20px right 50px;
  background-repeat: no-repeat;
} */
.about-commitment-section .commitment-card {
    position: relative;
}

.about-commitment-section .commitment-card {
    position: relative;
}

.about-commitment-section .commitment-card .position-image {
    position: absolute;
    bottom: 72px;
    right: -113px;
}

.about-commitment-section .commitment-img-wrap {
    position: relative;
    right: 20px;
    top: -40px;
}

.videoWrap {
    padding: 0 19px !important;
}

.about-commitment-section .commitment-img-wrap::before {
    background-image: url(../img/heroside.png);
    background-size: 77px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    content: "";
    /* top: 0; */
    left: -454px;
    z-index: 2;
    /* top: 0; */
    left: -14%;
    /* right: 0; */
    bottom: 58%;
    width: 100px;
    height: 100px;
}

.about-commitment-section .commitment-img-wrap img {
    margin-left: 41px;
}

.register-form .g-3,
.register-form .gy-3 {
    --bs-gutter-y: 20px;
}

/* .about-commitment-section .commitment-img-wrap img::before {
    background-image: url(../img/heroside.png);
    background-size: 33px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    content: "";
    top: -179px;
    left: -424px;
    z-index: 2;
    right: 0;
    bottom: 0;
   } */
.about-commitment-section .commitment-img-wrap span img {
    width: 33px;
    height: 26px;
}

.about-commitment-section .commitment-img-wrap span {
    position: absolute;
    right: 35px;
    top: -19px;
}

.page-hero-banner.hero-banner {
    padding-top: 10px;
}

.about-eds-section {
    position: relative;

    &::before {
        position: absolute;
        left: 0;
        bottom: -50%;
        content: "";
        background: url(../img/glow4.png) no-repeat left bottom;
        background-size: contain;
        width: 688px;
        height: 100%;
    }
}

.stellarnav {
    width: auto;
    z-index: 9900;
}

.coursebanner.page-hero-banner {
    min-height: 515px;
}

.coursebanner.page-hero-banner.craniofacial-hero {
    padding-bottom: 80px;
}

.course-directors.craniofacial-directors {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.coursebanner.page-hero-banner .blue-circle {
    position: absolute;
    bottom: -444px;
}

.hero-banner .banner-inner {
    padding-top: 230px;
}

.hero-banner.responsiv-inner-banner .blue-circle img {
    height: 520px;
}

.coursebanner p {
    margin-top: 12px;
    font-size: 16px;
}

.register-hero.page-hero-banner .sec_title {
    margin-bottom: 0;
    margin-top: 0;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 19px 20px;
    border-radius: 50px;
    border: 1px solid #8b1a1a;
    background: #fff;
    color: #8b1a1a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow:
        rgba(0, 0, 0, 0.3) 0px 2px 12px,
        rgba(255, 255, 255, 0.6) 0px 1px 0px inset;
    white-space: nowrap;
}

.call-btn:hover {
    background: linear-gradient(135deg, #c9daea 0%, #d8eaf5 50%, #c5d8ea 100%);
    transform: translateY(-1px);
}

.coursebanner .sec_title {
    font-size: 36px;
    background: linear-gradient(
        135deg,
        #b2d6ee 0%,
        #95caed 0%,
        #449bd5 18%,
        #043a5e 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    span {
        -webkit-text-fill-color: transparent;
        font-size: 36px;
    }
}

/* offer */
.offers-section {
    padding: 89px 0 100px;
}

/* CARD */
.offer-card {
    width: 100%;
    max-width: 646px;
    min-height: 201px;
    background: #0766a5;
    border-radius: 12px;
    padding: 30px 51px 28px;
    color: #ffffff;
    margin-bottom: 43px;
}

.offer-card:last-child {
    margin-bottom: 0;
}

/* RIGHT COLUMN ALIGN + OFFSET */
@media (min-width: 992px) {
    .right-card {
        margin-left: auto;
    }

    .right-card:first-child {
        margin-top: 50px;
    }
}

/* TEXT */
.offer-card h4 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 12px;
    color: #ffffff;
}

.offer-card p {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 13px;
    color: #d4d4d4;
}

.offer-card p:last-child {
    margin-bottom: 0;
}

/* HIGHLIGHT BOX */
.offer-card span {
    display: inline-block;
    min-width: 432px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 11px;
    padding: 10px 18px;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 18px;
}
.testimonials-grid-section {
    position: relative;
}
.testiSlide {
    display: none;
}
.gallerySlide {
    display: none;
}

/* TABLET */
@media (max-width: 991px) {
    .offers-section {
        padding: 60px 0;
    }

    .offer-card {
        max-width: 100%;
        min-height: auto;
        padding: 28px 32px;
        margin-bottom: 24px;
    }

    .right-card {
        margin-left: 0px;
        margin-top: 24px;
    }

    .offer-card span {
        min-width: auto;
        width: 100%;
    }
}

/* MOBILE */
@media (max-width: 575px) {
    .offers-section {
        padding: 45px 0;
    }

    .offer-card {
        padding: 24px 20px;
        margin-bottom: 20px;
    }

    .offer-card h4 {
        font-size: 16px;
    }

    .offer-card p {
        font-size: 13px;
    }

    .offer-card span {
        font-size: 12px;
        padding: 9px 14px;
    }
}

.blue-circle img.circle-img {
    position: absolute;
    width: 400px !important;
    height: 400px !important;
    border-radius: 50%;
    bottom: 0px;
    left: 14%;
    right: 0;
    margin: 0 auto;
}

.gallery-item img {
    border-radius: 12px; width: 100%;
    height: 250px; object-fit: cover;
}

.about.responsiv-inner-banner .sec_title {
    background: linear-gradient(
        135deg,
        #b2d6ee 0%,
        #70bbea 0%,
        #218cd3 70%,
        #043a5e 100%
    );

    text-transform: uppercase;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    span {
        /* font-style: italic; */
    }
}

.about.text-capitalize.responsiv-inner-banner .sec_title {
    text-transform: capitalize;
}

.com_icon {
    position: absolute;
    top: 46%;
    left: 30%;
    right: 0;
    margin: 0 auto;
    z-index: 0;
    width: 150px;
}

.testimonial .sec_title,
.faq-content-section .sec_title,
.cc-testimonials .sec_title {
    background: linear-gradient(
        135deg,
        #b2d6ee 0%,
        #8bc4e8 0%,
        #218cd3 22%,
        #043a5e 60%
    );
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.faq .sec_title,
.c-testimonials .sec_title {
    background: linear-gradient(
        135deg,
        #b2d6ee 0%,
        #8bc4e8 0%,
        #218cd3 22%,
        #043a5e 100%
    );
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.gallery.responsiv-inner-banner .sec_title {
    span {
        font-style: italic;
        letter-spacing: normal;
    }
}

.gallery-listing-section {
    position: relative;

    &::before {
        position: absolute;
        right: -5%;
        top: -100px;
        content: "";
        background: url(../img/glow3.png) no-repeat right top;
        background-size: cover;
        width: 22%;
        height: 60%;
        z-index: -1;
        /* transform: rotate(90deg); */
    }
}

.video-testimonials-section.pt-0 {
    padding-top: 0 !important;
}

.slick-slide {
    height: auto;
}
.homeBanner .blue-circle img.circle-img {
    position: absolute;
    border-radius: 50%;
    bottom: 0px;
    left: 12%;
    right: 0px;
    margin: 0px auto;
    width: 450px !important;
    height: 450px !important;
    bottom: 51px;
}
.gallery-listing-section.custom-gallery {
    padding: 200px 0px 70px;
    position: relative;
}
.site-header.fixed {
    .header-topbar {
        display: none;
    }
    .header-nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        border: none;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }
    .head_desktop {
        .right_btn {
            right: 40px;
            bottom: 8px;
        }
    }
}
.gallery-listing-section .gallery-card-img {
    margin: 0 auto 30px auto;
}

.ccs-skelCard{
  width:55%; height:100%;
  position: absolute;
  right: 0; top: 0; z-index: 2;
  padding:200px 50px;
  /* background: linear-gradient(-45deg, #0766a5, #1e6fa8, #2bb0e6, #0f4c81, #218cd3); */
  background: #0766a5;
  background-size: 400% 400%;
  /* animation: ccsSkelBg 12s ease infinite; */
  opacity:1;
  visibility:visible;
  overflow:hidden;
  transition: opacity .45s ease, visibility 0s linear .45s;
}
/* .ccs-skelCard::before,
.ccs-skelCard::after{
  content:"";
  position:absolute;
  border-radius:50%;
  filter: blur(60px);
  opacity:.55;
  pointer-events:none;
  z-index:0;
}
.ccs-skelCard::before{
  width:340px; height:340px;
  background: radial-gradient(circle, rgba(255,255,255,.45), rgba(255,255,255,0) 70%);
  top:-80px; left:-80px;
  animation: ccsSkelBlob1 9s ease-in-out infinite;
} */
.ccs-skelCard::after{
  width:280px; height:280px;
  background: radial-gradient(circle, rgba(43,176,230,.6), rgba(43,176,230,0) 70%);
  bottom:-60px; right:-60px;
  animation: ccsSkelBlob2 11s ease-in-out infinite;
}
.ccs-skelCard > *{ position:relative; z-index:1; }

@keyframes ccsSkelBg{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}
@keyframes ccsSkelBlob1{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(60px,40px) scale(1.15); }
}
@keyframes ccsSkelBlob2{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-50px,-30px) scale(1.2); }
}
.ccs-skelCard.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}
.ccs-skelLine{
  height:14px;
  border-radius:999px;
  margin:12px 0;
  background:
    linear-gradient(135deg,
      rgba(255,255,255,.10) 0%,
      rgba(255,255,255,.20) 40%,
      rgba(255,255,255,.10) 55%,
      rgba(255,255,255,.20) 100%);
  background-size: 260% 100%;
  animation: ccsSkel 1.35s ease-in-out infinite;
}
.ccs-w45{ width:45%; }
.ccs-w60{ width:60%; }
.ccs-w80{ width:80%; }
.ccs-w90{ width:90%; }

@keyframes ccsSkel{
  0%{ background-position: 0% 50%; opacity:.85; }
  50%{ opacity:1; }
  100%{ background-position: 260% 50%; opacity:.85; }
}

.ccs-loadingText{
  display:inline-block;
  animation: ccsLoadingPulse 1.6s ease-in-out infinite;
}
.ccs-loadingDots{
  display:inline-block;
  margin-left:2px;
}
.ccs-loadingDots span{
  display:inline-block;
  opacity:0;
  animation: ccsLoadingDot 1.4s ease-in-out infinite;
}
.ccs-loadingDots span:nth-child(1){ animation-delay: 0s; }
.ccs-loadingDots span:nth-child(2){ animation-delay: .2s; }
.ccs-loadingDots span:nth-child(3){ animation-delay: .4s; }

@keyframes ccsLoadingPulse{
  0%, 100%{ opacity:.7; }
  50%{ opacity:1; }
}
@keyframes ccsLoadingDot{
  0%   { opacity:0; transform: translateY(0); }
  25%  { opacity:1; transform: translateY(-4px); }
  50%  { opacity:1; transform: translateY(0); }
  100% { opacity:0; transform: translateY(0); }
}
.about-mourao{
        color: rgb(121, 129, 139);
        p {margin: 0;}
  img {
    border-radius: 12px;
    width: 300px;
    height: 300px;
    object-fit: cover;
    float: left;
    margin: 0 20px 20px 0;

}
   
}
.text-color-red {
    background: none;
    -webkit-text-fill-color: #A7171C;
    color: #A7171C;
    text-shadow: 2px 3px #fff;
    letter-spacing: 1px; margin-right: 10px;
}
.white_title.home-white-text{
    background:none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}
.bg-text-wrapper p{
    background-color: #3985B7;
    color: #fff;
    padding: 6px 10px;
    border-radius: 16px;
}
.bg-text-wrapper{
    margin-bottom: 22px;
}
.home-testimonial .testimonial-video-card .card-top {
    padding: 20px 16px 0;
}

