

html,
body {
    max-width: 100%;
    overflow-x: hidden !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --navy: #071d3a;
    --blue: #123f78;
    --red: #e8322f;
    --gold: #f5b526;
    --cream: #fff8ef;
    --ink: #14233b;
    --muted: #5e6a7b;
    --line: #e2e7ee;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, "Noto Sans Devanagari", sans-serif;
}
a {
    text-decoration: none;
    color: inherit;
}
button,
input,
select {
    font: inherit;
}
/* =========================================
   PROFESSIONAL HEADER
========================================= */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

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


/* =========================================
   LOGO
========================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #151515;
    flex-shrink: 0;
}

.brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 50%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .3px;
    color: #151515;
}

.brand-text small {
    margin-top: 5px;
    color: var(--red);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
}


/* =========================================
   DESKTOP NAV
========================================= */

.main-nav {
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    color: #242424;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 30px 0;
    transition: color .25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 23px;
    width: 0;
    height: 2px;
    background: #b21f2d;
    transition: width .25s ease;
}

.main-nav a:hover {
    color: #b21f2d;
}

.main-nav a:hover::after {
    width: 100%;
}


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

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;

    min-width: 190px;
    padding: 15px 15px;

    color: #ffffff;
    background: #b21f2d;
    border-radius: 8px;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.header-cta:hover {
    color: #ffffff;
    background: #981b28;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(178, 31, 45, .20);
}

.cta-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.15);
    border-radius: 50%;
}

.cta-icon i {
    font-size: 14px;
}

.header-cta span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-cta small {
    font-size: 13px; font-weight:600;

}

.header-cta strong {
    margin-top: 3px;
    font-size: 16px;
   
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.mobile-menu-btn {
    width: 45px;
    height: 45px;

    border: 0;
    border-radius: 8px;

    background: #b21f2d;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 0;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;

    background: #ffffff;
    border-radius: 15px;

    transition: .3s ease;
}


/* =========================================
   OVERLAY
========================================= */

.menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.55);

    z-index: 1990;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

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


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

.mobile-drawer {
    position: fixed;

    top: 0;
    right: 0;

    width: 360px;
    max-width: 88vw;
    height: 100vh;

    background: #ffffff;

    z-index: 2000;

    padding: 24px;

    box-sizing: border-box;

    transform: translateX(105%);

    transition:
        transform .45s cubic-bezier(.77,0,.18,1);

    box-shadow: -15px 0 45px rgba(0,0,0,.16);

    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    transform: translateX(0);
}


/* =========================================
   DRAWER TOP
========================================= */

.drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 11px;

    color: #151515;
    text-decoration: none;
}

.drawer-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}

.drawer-brand div {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.drawer-brand strong {
    font-size: 13px;
    font-weight: 700;
}

.drawer-brand small {
    margin-top: 4px;
    color: #777;
    font-size: 9px;
}


/* CLOSE */

.drawer-close {
    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 50%;

    background: #f5f5f5;

    color: #222;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: .25s ease;
}

.drawer-close:hover {
    background: #b21f2d;
    color: #ffffff;
}


/* =========================================
   DIVIDER
========================================= */

.drawer-divider {
    width: 100%;
    height: 1px;
    background: #eeeeee;
    margin: 25px 0 8px;
}


/* =========================================
   DRAWER NAV
========================================= */

.drawer-nav {
    display: flex;
    flex-direction: column;
}

.drawer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 19px 5px;

    color: #222;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    border-bottom: 1px solid #eeeeee;

    transition:
        color .25s ease,
        padding .25s ease;
}

.drawer-nav a i {
    font-size: 14px;
    color: #999;
    transition: .25s ease;
}

.drawer-nav a:hover {
    color: #b21f2d;
    padding-left: 12px;
}

.drawer-nav a:hover i {
    color: #b21f2d;
    transform: translateX(4px);
}


/* =========================================
   DRAWER BOTTOM
========================================= */

.drawer-bottom {
    margin-top: auto;
}

.drawer-bottom p {
    margin: 0 0 15px;
    color: #777;
    font-size: 12px;
}

.drawer-call {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px;

    background: #b21f2d;
    border-radius: 9px;

    color: #ffffff;
    text-decoration: none;

    transition: .25s ease;
}

.drawer-call:hover {
    color: #ffffff;
    background: #981b28;
}

.drawer-call > i {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.15);
    border-radius: 50%;

    font-size: 13px;
}

.drawer-call span {
    display: flex;
    flex-direction: column;
}

.drawer-call small {
    font-size: 15px;
    opacity: .85;
}

.drawer-call strong {
    margin-top: 3px;
    font-size: 14px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

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

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .brand-text small {
            color: var(--red);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    }

}


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

@media (max-width: 575.98px) {

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

    .brand {
        gap: 9px;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand-text strong {
        font-size: 12px;
    }

    .brand-text small {
        margin-top: 3px;
     color: var(--red);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }

    .mobile-drawer {
        width: 340px;
        padding: 20px;
    }

}

/* =========================================
   DRAWER APP DOWNLOAD
========================================= */

.drawer-bottom {
    padding: 18px 16px 20px;

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

.drawer-bottom > p {
    margin: 0 0 10px;

    color: #111;

    font-size: 14px;
    font-weight: 600;
}


/* APP BUTTON */

.drawer-app {
    display: flex;
    align-items: center;

    gap: 11px;

    width: 100%;

    padding: 9px 11px;

    box-sizing: border-box;

    color: #222;

    background: #f8f9fa;

    border: 1px solid #e4e4e4;

    border-radius: 10px;

    text-decoration: none;

    transition: all .3s ease;
}


/* PLAY ICON */

.drawer-app-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background: #b21f2d;

    border-radius: 9px;
}

.drawer-app-icon i {
    font-size: 17px;
}


/* TEXT */

.drawer-app-text {
    flex: 1;

    display: flex;
    flex-direction: column;

    text-align: left;

    line-height: 1.2;
}

.drawer-app-text small {
    margin-bottom: 3px;

    color: #333;

    font-size: 12px;
}

.drawer-app-text strong {
    color: #222;

    font-size: 16px;
    font-weight: 700;
}


/* ARROW */

.drawer-app-arrow {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b21f2d;

    background: #fff;

    border-radius: 50%;

    transition: transform .3s ease;
}

.drawer-app:hover {
    color: #222;

    border-color: #b21f2d;

    background: #fff;

    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(0,0,0,.07);
}

.drawer-app:hover .drawer-app-arrow {
    transform: translate(2px, -2px);
}



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

.hero {
    position: relative;

    padding: 50px 0;

    background: radial-gradient(circle at 78% 35%, #ffdf9e 0, #fff3dc 18%, transparent 45%), linear-gradient(120deg, #fff 35%, #fff8ee);
    overflow: hidden;
}


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

.hero-content {
    max-width: 700px;
}


/* KICKER */

.hero .kicker {
    margin: 0 0 13px;

    color: #b21f2d;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* HEADING */

.hero h1 {
    margin: 0 0 18px;

    color: #181818;

    font-size: clamp(34px, 4.3vw, 52px);
    line-height: 1.18;

    font-weight: 700;

    letter-spacing: -.8px;
}

.hero h1 span {
    color: #b21f2d;
}


/* SUB HEADING */

.hero h2 {
    margin: 0 0 15px;

    color: #333;

    font-size: clamp(19px, 2vw, 23px);
    line-height: 1.4;

    font-weight: 700;
}

.hero-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    padding: 8px 14px 8px 9px;

    color: #222;

    background: #ffffff;

    border: 1px solid #e2e2e2;

    border-radius: 50px;

    text-decoration: none;

    box-shadow: 0 6px 18px rgba(0, 0, 0, .07);

    transition: all .3s ease;
}

.hero-app-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #b21f2d;

    border-radius: 50%;
}

.hero-app-icon i {
    font-size: 16px;
}

.hero-app-btn span:nth-child(2) {
    display: flex;
    flex-direction: column;

    text-align: left;

    line-height: 1.2;
}

.hero-app-btn small {
    margin-bottom: 3px;

    color: #111;

    font-size: 13px;
    font-weight: 600;
}

.hero-app-btn strong {
    color: #222;

    font-size: 18px;
    font-weight: 700;
}

.hero-app-btn > i {
    margin-left: 5px;

    color: #b21f2d;

    font-size: 13px;

    transition: transform .3s ease;
}

.hero-app-btn:hover {
    color: #222;

    border-color: #b21f2d;

    transform: translateY(-3px);

    box-shadow: 0 10px 24px rgba(178, 31, 45, .14);
}

.hero-app-btn:hover > i {
    transform: translate(3px, -3px);
}


/* MOBILE */

@media (max-width: 767.98px) {

    .hero-app-btn {
        margin: 0 auto;
display: none;
        padding-right: 12px;
    }

}
/* POINTS */

.hero-points {


    margin: 0 0 20px;

    color: #111;
font-weight:600;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   PILL
========================================= */

.hero .pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 25px;

    padding: 8px 13px;

    color: #b21f2d;

    background: rgba(178, 31, 45, .07);

    border: 1px solid rgba(178, 31, 45, .15);

    border-radius: 50px;

    font-size: 16px;
    font-weight: 700;
}

.hero .pill i {
    font-size: 12px;
}


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

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 20px;
}


.hero-btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 7px 9px 7px 20px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: .4px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


/* ARROW */

.hero-btn i {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    transition: transform .3s ease;
}


/* RED */

.hero-btn-red {
    color: #ffffff;

    background: #b21f2d;

    border: 1px solid #b21f2d;

    box-shadow: 0 8px 20px rgba(178,31,45,.20);
}

.hero-btn-red i {
    background: rgba(255,255,255,.15);
}


/* BLUE */

.hero-btn-blue {
    color: #ffffff;

    background: #245b91;

    border: 1px solid #245b91;

    box-shadow: 0 8px 20px rgba(36,91,145,.18);
}

.hero-btn-blue i {
    background: rgba(255,255,255,.15);
}


/* HOVER */

.hero-btn:hover {
    color: #ffffff;

    transform: translateY(-3px);
}

.hero-btn-red:hover {
    background: #981a28;

    box-shadow: 0 12px 27px rgba(178,31,45,.28);
}

.hero-btn-blue:hover {
    background: #1c4d7e;

    box-shadow: 0 12px 27px rgba(36,91,145,.25);
}

.hero-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   PHONE
========================================= */

.hero-phone {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #111;

    text-decoration: none;

    font-size: 18px;
    font-weight: 700;

    transition: color .25s ease;
}

.hero-phone:hover {
    color: #b21f2d;
}

.hero-phone-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b21f2d;

    background: #fff;

    border: 1px solid #e5e5e5;

    border-radius: 50%;

    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}


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

.hero-photo {
    position: relative;

    width: 100%;

    max-width: 480px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 20px;

    background: #eeeeee;

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

.hero-photo img {
    display: block;

    width: 100%;
 
    object-fit: cover;
}


/* IMAGE OVERLAY */

.hero-photo::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.45),
        transparent 45%
    );

    pointer-events: none;
}


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

.hero-photo aside {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px; width:fit-content;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 13px 16px;

    background: rgba(20,20,20,.78);

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 12px;

}

.hero-photo aside strong {
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.hero-photo aside span {
    color: rgba(255,255,255,.75);

    font-size: 16px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .hero {
        padding: 65px 0;
    }

  
  

}


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

@media (max-width: 767.98px) {

    .hero {
        padding: 42px 0 65px;
    }

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


    .hero .kicker {
        font-size: 13px;

        line-height: 1.7;

        margin-bottom: 16px;
    }


    .hero h1 {
        margin-bottom: 14px;

        font-size: 29px;

        line-height: 1.25;

        letter-spacing: -.3px;
    }


    .hero h2 {
        margin-bottom: 13px;

        font-size: 17px;
    }


    .hero-points {
        margin: 0 auto 17px;

        font-size: 15px;

        line-height: 1.75;
    }


    .hero .pill {
        margin-bottom: 22px;

        font-size: 14px;
    }


    /* BUTTONS */

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        gap: 9px;

        width: 100%;

        margin-bottom: 18px;
    }


    .hero-btn {
        width: 100%;

        min-height: 50px;

        box-sizing: border-box;

        justify-content: space-between;
    }


    /* PHONE */

    .hero-phone {
        justify-content: center;

        font-size: 16px;
    }


    /* IMAGE */

    .hero-photo {
        max-width: 100%;

        border-radius: 15px;
    }

    .hero-photo img {
        width: 100%;

        object-fit: cover;
    }


    .hero-photo aside {
        left: 12px;
        right: 12px;
        bottom: 12px;

        padding: 16px 12px;
    }

    .hero-photo aside strong {
        font-size: 16px;
    }

    .hero-photo aside span {
        font-size:14px; display: block; color:#fff;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .hero {
        padding-top: 35px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero h2 {
        font-size: 16px;
    }

    .hero-points {
        font-size: 15px;
    }

  
}














/* =========================================
   SHRI RAM INSTITUTE - RESULTS SECTION
========================================= */

.sri-results-section {
    position: relative;
    padding: 55px 0;
    background: #fff;
    overflow: hidden;
}


/* Soft Background Decoration */

.sri-results-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    left: -180px;
    border-radius: 50%;
    background: rgba(220, 170, 30, 0.08);
    pointer-events: none;
}

.sri-results-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -160px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(20, 45, 90, 0.05);
    pointer-events: none;
}


/* =========================================
   HEADING
========================================= */

.sri-results-heading {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.sri-results-overline {
    margin: 0 0 12px;
    color: #c79200;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.sri-results-heading h2 {
    margin: 0 auto 18px;
    color: #172033;
    font-size: 44px;
    line-height: 1.18;
    font-weight: 700;
}

.sri-results-heading p {
    max-width: 760px;
    margin: 0 auto 8px;
    color: #111;
    font-size: 16px;
    line-height: 1.7;
}

.sri-exam-list {
    display: inline-block;
    margin-top: 12px;
    color: #172033;
    font-size: 16px;
    font-weight: 700;

}


/* =========================================
   CARDS
========================================= */

.sri-results-cards {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 15px auto 0 !important;
}

.sri-result-card {
    height: 100%;
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e7e9ed;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(20, 30, 50, 0.06);
    transition: .3s ease;
}

.sri-result-card:hover {
    transform: translateY(-5px);
    border-color: #d9ad38;
    box-shadow: 0 16px 35px rgba(20, 30, 50, 0.10);
}


/* ICON */

.sri-result-icon {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;
    background: #fff5d6;
    color: #c58d00;

    font-size: 22px;
}

.sri-result-card strong {
    color: #172033;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
}


/* =========================================
   MISSION
========================================= */

.sri-result-mission {
    position: relative;
    z-index: 2;
    margin-top: 42px;

    color: #172033;
    font-size: 18px;
    font-weight: 700;
}


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

.sri-result-cta {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.sri-result-cta .btn {
    padding: 13px 27px;
    border: 0;
    border-radius: 8px;

    background: #e8322f;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;

    box-shadow: 0 8px 20px rgba(211, 154, 0, 0.25);
    transition: .3s ease;
}

.sri-result-cta .btn:hover {
    background: #b77f00;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .sri-results-heading h2 {
        font-size: 36px;
    }

    .sri-results-cards {
        max-width: 750px;
    }

}


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

@media (max-width: 767px) {

    .sri-results-section {
        padding: 40px 15px;
    }

    .sri-results-heading h2 {
        font-size: 29px;
    }

    .sri-results-heading p {
        font-size: 16px;
        line-height: 1.6;
    }

    .sri-results-overline {
        font-size: 11px;
        letter-spacing: .8px;
    }

    .sri-exam-list {
        font-size: 12px;
        line-height: 1.7;
    }

    .sri-results-cards {
        margin-top: 30px !important;
    }

    .sri-result-card {
        min-height: 40px;
        padding: 17px;
    }

    .sri-result-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .sri-result-card strong {
        font-size: 15px;
    }

    .sri-result-mission {
        margin-top: 32px;
        font-size: 16px;
    }

    .sri-result-cta .btn {
        width: auto;
        padding: 12px 22px;
        font-size: 12px;
    }

}

.sri-result-mission {
    position: relative;
    z-index: 2;

    margin: 40px auto 0;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;

    color: #e8322f;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: .4px;

    animation: sriMissionFloat 2.8s ease-in-out infinite;
}

.sri-result-mission i {
    font-size: 19px;
    animation: sriMissionStar 1.8s ease-in-out infinite;
}


/* Soft floating animation */

@keyframes sriMissionFloat {

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

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


/* Icon animation */

@keyframes sriMissionStar {

    0%,
    100% {
        transform: scale(1);
        opacity: .75;
    }

    50% {
        transform: scale(1.18);
        opacity: 1;
    }
}


@media (max-width: 767px) {

    .sri-result-mission {
        margin-top: 30px;
        font-size: 15px;
    }

    .sri-result-mission i {
        font-size: 16px;
    }

}


.sri-results-overline {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 16px;
    padding: 8px 16px;

    background: #fff8df;
    border: 1px solid #ead18a;
    border-radius: 50px;

    color: #e8322f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;

    box-shadow: 0 5px 15px rgba(190, 140, 0, 0.08);
}

.sri-results-overline i {
    font-size: 15px;
    color: #e8322f;
}






/* =========================================
   LEARNING MODES
========================================= */

.learning-modes {
    position: relative;
    padding: 40px 0;
    background-color: #f7f9fc;
    background-image:
        radial-gradient(rgba(178, 31, 45, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    overflow: hidden;
}

.learning-modes::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(178, 31, 45, 0.06);
    filter: blur(70px);
    top: -120px;
    left: -100px;
    pointer-events: none;
}

.learning-modes::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(40, 100, 180, 0.06);
    filter: blur(70px);
    bottom: -140px;
    right: -100px;
    pointer-events: none;
}

/* HEADING */

.learning-modes .heading {
    max-width: 850px;
    margin: 0 auto 50px;
}

.learning-modes .overline {
    margin-bottom: 15px;
    color: #b21f2d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.learning-modes .heading h2 {
    margin-bottom: 15px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.25;
    font-weight: 700;
    color: #181818;
}

.learning-modes .heading h2 span {
    color: #b21f2d;
}

.learning-modes .heading > p:last-child {
    max-width: 720px;
    margin: 0 auto;
    color: #111;
    font-size: 16px;
    line-height: 1.7;
}


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

.mode-card {
    position: relative;

    padding: 38px 38px 35px;

    background: #ffffff;

    border: 1px solid #e9e9e9;
    border-radius: 16px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);

    display: flex;
    flex-direction: column;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.mode-card:hover {
    transform: translateY(-6px);

    border-color: rgba(178, 31, 45, .25);

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


/* =========================================
   ICON
========================================= */

.mode-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background: #fdf0f1;
    color: #b21f2d;
}

.mode-icon i {
    font-size: 29px;
}


/* =========================================
   TAG
========================================= */

.mode-card .tag {
    margin-bottom: 15px;

    color: #b21f2d;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.1px;
}


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

.mode-card h3 {
    margin-bottom: 14px;

    color: #181818;

    font-size: 25px;
    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   DESCRIPTION
========================================= */

.mode-description {
    margin-bottom: 22px;

    color: #111;

    font-size: 16px;
    line-height: 1.75;
}


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

.mode-list {
    margin: 0 0 28px;
    padding: 0;

    list-style: none;
}

.mode-list li {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 12px;

    color: #111;

    font-size: 16px;
    line-height: 1.4;
}

.mode-list li:last-child {
    margin-bottom: 0;
}

.mode-list li i {
    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fdf0f1;
    color: #b21f2d;

    font-size: 13px;
    font-weight: 700;
}


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


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

@media (max-width: 767.98px) {

    .learning-modes {
        padding: 65px 0;
    }

    .learning-modes .heading {
        margin-bottom: 35px;
    }

    .learning-modes .heading h2 {
        font-size: 28px;
    }

    .learning-modes .heading > p:last-child {
        font-size: 16px;
    }

    .mode-card {
        padding: 28px 24px;
        border-radius: 13px;
    }

    .mode-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }

    .mode-icon i {
        font-size: 25px;
    }

    .mode-card h3 {
        font-size: 21px;
    }

}

.learning-modes .heading h2 {
    max-width: 750px;
    margin: 0 auto 15px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.35;
    font-weight: 700;
    color: #181818;
}

.learning-modes .heading h2 span {
    color: #b21f2d;
    white-space: nowrap;
}

.mode-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: fit-content;
    min-height: 48px;

    padding: 12px 20px 12px 24px;

    background: #b21f2d;
    color: #fff;

    border: 1px solid #b21f2d;
    border-radius: 50px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;

    box-shadow: 0 8px 20px rgba(178, 31, 45, .18);

    transition: all .3s ease;
}

.mode-btn span {
    line-height: 1;
}

.mode-btn i {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #b21f2d;

    border-radius: 50%;

    font-size: 14px;

    transition: all .3s ease;
}


/* HOVER */

.mode-btn:hover {
    color: #fff;
    background: #951a27;

    transform: translateY(-3px);

    box-shadow: 0 12px 28px rgba(178, 31, 45, .28);
}

.mode-btn:hover i {
    transform: rotate(45deg);
}


/* CLICK */

.mode-btn:active {
    transform: translateY(-1px);
}










/* =========================================
   COURSES SECTION
========================================= */

.courses {
    padding: 40px 0;
    background: #071d3a;
}


/* HEADING */

.courses .heading {
    max-width: 750px;
    margin: 0 auto 50px;
}

.courses .overline {
    margin-bottom: 15px;
    color: #f5b526;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.courses .heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.25;
    font-weight: 700;
}

.courses .heading h2 span {
    color: #e8322f;
}


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

.course-card {
    position: relative;

    padding: 32px;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 14px;

    box-shadow: 0 8px 28px rgba(0, 0, 0, .045);

    display: flex;
    flex-direction: column;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* TOP RED LINE */

.course-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #b21f2d;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .35s ease;
}

.course-card:hover {
    transform: translateY(-6px);

    border-color: rgba(178, 31, 45, .25);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .09);
}

.course-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   NUMBER + CATEGORY
========================================= */

.course-top {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 23px;
}

.course-top i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #fdf0f1;
    color: #b21f2d;

    border-radius: 9px;

    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.course-top b {
    color: #b21f2d;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .8px;
}


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

.course-card h3 {
    margin-bottom: 14px;

    color: #181818;

    font-size: 22px;
    line-height: 1.4;

    font-weight: 700;
}


/* =========================================
   DESCRIPTION
========================================= */

.course-card p {
    margin-bottom: 25px;

    color: #111;

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================
   LINK
========================================= */

.course-card > a {
    margin-top: auto;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    color: #b21f2d;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .5px;

    transition: .25s ease;
}

.course-card > a i {
    font-size: 14px;
    transition: transform .25s ease;
}

.course-card > a:hover {
    color: #941925;
}

.course-card > a:hover i {
    transform: translateX(5px);
}


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

@media (max-width: 767.98px) {

    .courses {
        padding: 65px 0;
    }

    .courses .heading {
        margin-bottom: 35px;
    }

    .courses .heading h2 {
        font-size: 28px;
    }

    .course-card {
        padding: 25px;
    }

    .course-card h3 {
        font-size: 20px;
    }

}





/* =========================================
   PROBLEM SECTION
========================================= */

.problem {
    padding: 40px 0;
    background: #f8f9fb;
}


/* LEFT CONTENT */

.problem-content {
    max-width: 600px;
}

.problem .overline {
    margin-bottom: 12px;

    color: #b21f2d;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.problem-content h2 {
    margin-bottom: 20px;

    color: #181818;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.3;

    font-weight: 700;
}

.problem-content > p:not(.overline) {
    color: #111;

    font-size: 16px;
    line-height: 1.75;

    margin-bottom: 12px;
}


/* =========================================
   PROBLEM LIST
========================================= */

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 15px 17px;

    background: #ffffff;

    border: 1px solid #e9e9e9;
    border-radius: 9px;

    color: #111;

    font-size: 16px;
    line-height: 1.5;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .035);

    transition: all .25s ease; font-weight:600;
}

.problem-item:hover {
    transform: translateX(5px);

    border-color: rgba(178, 31, 45, .25);

    box-shadow: 0 8px 22px rgba(0, 0, 0, .07);
}

.problem-item i {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fdf0f1;
    color: #b21f2d;

    font-size: 11px;
    font-weight: 700;
}


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

.problem-cta {
    padding: 30px 25px;

    background: #071d3a;

    border: 1px solid #e8e8e8;
    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.problem-cta p {
    margin-bottom: 15px;

    color: #fff;

    font-size: 16px;
    font-weight: 600;
}

.problem-cta strong {
    display: block;

    margin-bottom: 22px;

    color: #f5b526;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
}

.problem-cta strong span {
    color: #fff;
    padding: 0 4px;
}

.demo-cta {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 14px 22px 14px 25px;

    background: #b21f2d;
    color: #fff;

    border: 1px solid #b21f2d;
    border-radius: 50px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;

    overflow: hidden;

    box-shadow: 0 8px 22px rgba(178, 31, 45, .22);

    transition: .3s ease;
}


/* INNER SHINE */

.demo-cta::before {
    content: "";

    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        110deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform: skewX(-20deg);

    animation: ctaShine 3s ease-in-out infinite;
}


/* TEXT */

.demo-cta span {
    position: relative;
    z-index: 2;
}


/* ARROW CIRCLE */

.demo-cta i {
    position: relative;
    z-index: 2;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #b21f2d;

    border-radius: 50%;

    font-size: 14px;

    animation: arrowMove 1.8s ease-in-out infinite;

    transition: .3s ease;
}


/* AUTO SHINE */

@keyframes ctaShine {

    0% {
        left: -120%;
    }

    45%,
    100% {
        left: 140%;
    }

}


/* ARROW AUTO MOVEMENT */

@keyframes arrowMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }

}


/* HOVER */

.demo-cta:hover {
    color: #fff;

    background: #981a27;

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(178, 31, 45, .32);
}

.demo-cta:hover i {
    transform: translateX(5px);
}


/* ACTIVE */

.demo-cta:active {
    transform: translateY(-1px);
}
/* CTA BUTTON */

.problem-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 12px 21px;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.problem-cta .btn i {
    transition: transform .25s ease;
}

.problem-cta .btn:hover i {
    transform: translateX(4px);
}


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

@media (max-width: 767.98px) {

    .problem {
        padding: 65px 0;
    }

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

    .problem-content > p:not(.overline) {
        font-size: 15px;
    }

    .problem-item {
        padding: 13px 14px;
        font-size: 16px;
    }

    .problem-cta {
        padding: 25px 18px;
    }

    .problem-cta strong {
        font-size: 16px;
        line-height: 1.8;
    }

}


.problem-content h2 {
    color: #181818;
}

.problem-content h2 span {
    color: #b21f2d; display: block;
}










/* =========================================
   WHY SECTION
========================================= */

.why {
    padding: 40px 0;
    background: #fff8ef;
}


/* =========================================
   HEADING
========================================= */

.why .heading {
    max-width: 850px;
    margin: 0 auto 50px;
}

.why .overline {
    margin-bottom: 15px;

    color: #b21f2d;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.why .heading h2 {
    margin-bottom: 18px;

    color: #181818;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.3;

    font-weight: 700;
}

.why .heading h2 span {
    color: #b21f2d; display: block;
}

.why .heading > p:last-child {
    max-width: 800px;
    margin: 0 auto;

    color: #111;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   CHECK ITEMS
========================================= */

.checks {
    max-width: 1050px;
    margin: 0 auto;
}

.check-item {
    height: 100%;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 18px;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 15px;

    color: #111;

    font-size: 16px;
    font-weight: 600;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .035);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.check-item:hover {
    transform: translateY(-3px);

    border-color: rgba(178, 31, 45, .25);

    box-shadow: 0 15px 25px rgba(0, 0, 0, .07);
}


/* CHECK ICON */

.check-item i {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fdf0f1;
    color: #b21f2d;

    font-size: 14px;
    font-weight: 700;
}


/* =========================================
   BOTTOM
========================================= */

.why-bottom {
    margin-top: 45px;
}

.mission.dark {
    margin-bottom: 20px;

    color: #222;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: .2px;
}


/* BUTTON */

.why-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    padding: 13px 22px;

    border-radius: 50px;

    text-decoration: none; background: #8f1825; color:#fff;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: .4px;
}

.why-btn i {
    transition: transform .25s ease;
}

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


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

@media (max-width: 767.98px) {

    .why {
        padding: 65px 0;
    }

    .why .heading {
        margin-bottom: 35px;
    }

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

    .why .heading > p:last-child {
        font-size: 16px;
        line-height: 1.7;
    }

    .check-item {
        padding: 14px;
        font-size: 16px;
    }

    .mission.dark {
        font-size: 16px;
        line-height: 1.5;
    }

}







/* =========================================
   ECOSYSTEM
========================================= */

.ecosystem {
    padding: 50px 0;
    background: #f8f9fb;
}


/* HEADING */

.ecosystem .heading {
    max-width: 850px;
    margin: 0 auto 50px;
}

.ecosystem .overline {
    margin-bottom: 15px;
    color: #b21f2d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ecosystem .heading h2 {
    margin: 0;
    color: #181818;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.3;
    font-weight: 700;
}

.ecosystem .heading h2 span {
    color: #b21f2d;
}


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

.support-card {
    height: 100%;

    background: #fff;

    border: 1px solid #e8e8e8;
    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 7px 25px rgba(0, 0, 0, .045);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.support-card:hover {
    transform: translateY(-7px);

    border-color: rgba(178, 31, 45, .25);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}


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

.support-image {
    position: relative;

    width: 100%;
    overflow: hidden;
}

.support-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.18),
        transparent 50%
    );
}

.support-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .5s ease;
}

.support-card:hover .support-image img {
    transform: scale(1.06);
}


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

.support-content {
    position: relative;

    padding: 25px 25px 28px;
}


/* ICON */

.support-icon {
    position: absolute;

    top: -25px;
    right: 22px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #b21f2d;
    color: #fff;

    border: 4px solid #fff;
    border-radius: 50%;

    box-shadow: 0 5px 15px rgba(0,0,0,.12);
}

.support-icon i {
    font-size: 18px;
}


/* TITLE */

.support-content h3 {
    margin-bottom: 15px;

    color: #181818;

    font-size: 20px;
    font-weight: 700;
}


/* TEXT */

.support-content p {
    margin: 0;

    color: #111;

    font-size: 16px;
    line-height: 1.7;
}


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

.ecosystem-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 13px 22px;

    border-radius: 50px;

    text-decoration: none; background: #8f1825;

    font-size: 15px; color:#fff;
    font-weight: 700;
}

.ecosystem-btn i {
    transition: transform .25s ease;
}

.ecosystem-btn:hover i {
    transform: translateX(5px);
}


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

@media (max-width: 767.98px) {

    .ecosystem {
        padding: 65px 0;
    }

    .ecosystem .heading {
        margin-bottom: 35px;
    }

    .ecosystem .heading h2 {
        font-size: 28px;
    }


    .support-content {
        padding: 23px 21px 25px;
    }

    .support-content h3 {
        font-size: 19px;
    }

}







/* =========================================
   FACULTY SECTION
========================================= */

.faculty {
    padding: 50px 0;
    background: #ffffff;
}


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

.faculty-photo {
    position: relative;

    width: 100%;
    height: 500px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}

.faculty-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.18),
        transparent 45%
    );

    pointer-events: none;
}

.faculty-photo img {
    width: 100%;

    transition: transform .5s ease;
}

.faculty-photo:hover img {
    transform: scale(1.04);
}


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

.faculty-content {
    max-width: 650px;
}

.faculty .overline {
    margin-bottom: 15px;

    color: #b21f2d;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.faculty-content h2 {
    margin-bottom: 16px;

    color: #181818;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.25;

    font-weight: 700;
}

.faculty-content h3 {
    margin-bottom: 18px;

    color: #333;

    font-size: 20px;
    line-height: 1.5;

    font-weight: 700;
}

.faculty-content > p:not(.overline) {
    margin-bottom: 25px;

    color: #111;

    font-size: 16px;
    line-height: 1.8;
}


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

.faculty-card {
    display: flex;
    align-items: center;
    gap: 13px;


    padding: 14px 18px;

    margin-bottom: 25px;

    background: #f8f9fb;

    border: 1px solid #e8e8e8;

    border-radius: 15px;
}

.faculty-card-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #b21f2d;
    color: #ffffff;

    border-radius: 50%;
}

.faculty-card-icon i {
    font-size: 17px;
}

.faculty-card div:last-child {
    display: flex;
    flex-direction: column;
}

.faculty-card strong {
    color: #181818;

    font-size: 18px;
    font-weight: 700;
}

.faculty-card span {
    margin-top: 3px;

    color: #111;

    font-size: 16px;
}


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

.faculty-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 13px 22px;

    border-radius: 50px;

    text-decoration: none; background: #8f1825; color: #fff;

    font-size: 15px;
    font-weight:700; margin-bottom: 30px;

}

.faculty-btn i {
    transition: transform .25s ease;
}

.faculty-btn:hover i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .faculty-photo {
        height: 430px;
    }

}


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

@media (max-width: 767.98px) {

    .faculty {
        padding: 65px 0;
    }

    .faculty-photo {
        height: 380px;
        border-radius: 14px;
    }

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

    .faculty-content h3 {
        font-size: 18px;
    }

    .faculty-content > p:not(.overline) {
        font-size: 16px;
    }

    .faculty-card {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

}












/* =========================================
   RESULTS SECTION
========================================= */

.results {
    padding: 60px 0;
    background:linear-gradient(120deg,#071d3a,#123f78);
}


/* =========================================
   HEADING
========================================= */

.results-heading {

    margin: 0 auto 50px;
}

.results .overline {
    margin-bottom: 15px;

    color: #f5b526;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.results-heading h2 {
    margin-bottom: 15px;

    color: #fff;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.3;

    font-weight: 700;
}
.results-heading h2 span {
    color: #f5b526;
}
.results-heading > p:not(.overline) {

    margin: 0 auto 18px;

    color: #fff;

    font-size: 16px;
    line-height: 1.75;
}

.results-heading > strong {
    display: block;

    color: #fff;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: .8px;
}


/* =========================================
   PROOF CARDS
========================================= */

.proof-grid {
    max-width: 1050px;
    margin: 0 auto;
}

.proof-card {
    height: 100%;

    min-height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 25px 15px;

    background: #f8f9fb;

    border: 1px solid #e8e8e8;
    border-radius: 14px;

    text-align: center;

    transition: all .3s ease;
}

.proof-card:hover {
    transform: translateY(-6px);

    background: #ffffff;

    border-color: rgba(178, 31, 45, .25);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}


/* =========================================
   ICON
========================================= */

.proof-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fdf0f1;
    color: #b21f2d;

    transition: all .3s ease;
}

.proof-icon i {
    font-size: 23px;
}

.proof-card:hover .proof-icon {
    background: #b21f2d;
    color: #ffffff;

    transform: scale(1.08);
}


/* CARD TITLE */

.proof-card > strong {
    color: #222;

    font-size: 18px;
    font-weight: 700;
}


/* =========================================
   MISSION
========================================= */

.results .mission {
    margin: 45px 0 0;

    color: #f5b526;

    font-size: 22px;
    font-weight: 700;

    letter-spacing: .3px;
}


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

@media (max-width: 767.98px) {

    .results {
        padding: 65px 0;
    }

    .results-heading {
        margin-bottom: 35px;
    }

    .results-heading h2 {
        font-size: 28px;
    }

    .results-heading > p:not(.overline) {
        font-size: 16px;
    }

    .results-heading > strong {
        font-size: 11px;
        line-height: 1.8;
    }

    .proof-card {
        min-height: 125px;
        padding: 20px 15px;
    }

    .proof-icon {
        width: 48px;
        height: 48px;
    }

    .proof-icon i {
        font-size: 20px;
    }

    .proof-card > strong {
        font-size: 16px;
    }

    .results .mission {
        margin-top: 35px;
        font-size: 17px;
    }

}








/* =========================================
   DEMO SECTION
========================================= */

.demo {
    padding: 50px 0;
    background: #f8f9fb;
}


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

.demo-content {
    max-width: 600px;
}

.demo .overline {
    margin-bottom: 12px;

    color: #b21f2d;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.demo-content h2 {
    margin-bottom: 14px;

    color: #181818;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.3;

    font-weight: 700;
}

.demo-content h3 {
    margin-bottom: 18px;

    color: #b21f2d;

    font-size: 22px;
    line-height: 1.4;

    font-weight: 700;
}

.demo-content > p:not(.overline) {
    margin-bottom: 25px;

    color: #111;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   PHONE
========================================= */

.demo .phone {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    padding: 12px 17px;

    color: #222;
    background: #fff;

    border: 1px solid #e5e5e5;
    border-radius: 9px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 6px 20px rgba(0, 0, 0, .04);

    transition: all .25s ease;
}

.demo .phone i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fdf0f1;
    color: #b21f2d;

    font-size: 12px;
}

.demo .phone:hover {
    transform: translateY(-2px);

    border-color: rgba(178, 31, 45, .25);

    box-shadow: 0 15px 25px rgba(0, 0, 0, .08);
}


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

.demo-form-card {
    padding: 32px;

    background: #fff;

    border: 1px solid #e5e5e5;
    border-radius: 16px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .07);
}


/* FORM HEADING */

.form-heading {
    margin-bottom: 23px;
}

.form-heading h3 {
    margin: 0 0 5px;

    color: #181818;

    font-size: 22px;
    font-weight: 700;
}

.form-heading p {
    margin: 0;

    color: #111;

    font-size: 16px;
}


/* =========================================
   LABELS
========================================= */

.demo-form-card label {
    display: block;

    color: #111;

    font-size: 14px;
    font-weight: 700;
}


/* =========================================
   INPUTS
========================================= */

.demo-form-card input,
.demo-form-card select {
    width: 100%;

    height: 48px;

    margin-top: 7px;

    padding: 0 14px;

    box-sizing: border-box;

    color: #222;
    background: #fff;

    border: 1px solid #dedede;
    border-radius: 8px;

    outline: none;

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.demo-form-card input::placeholder {
    color: #aaa;
}

.demo-form-card input:focus,
.demo-form-card select:focus {
    border-color: #b21f2d;

    box-shadow: 0 0 0 3px rgba(178, 31, 45, .08);
}


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

.demo-submit {
    width: 100%;

    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    margin-top: 5px;

    border: 0;
    border-radius: 8px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: .4px;

    cursor: pointer;

    transition: all .3s ease;
}

.demo-submit i {
    transition: transform .25s ease;
}

.demo-submit:hover {
    transform: translateY(-2px);

    box-shadow: 0 15px 25px rgba(178, 31, 45, .22);
}

.demo-submit:hover i {
    transform: translateX(5px);
}


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

@media (max-width: 767.98px) {

    .demo {
        padding: 65px 0;
    }

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

    .demo-content h3 {
        font-size: 19px;
    }

    .demo-content > p:not(.overline) {
        font-size: 16px;
    }

    .demo-form-card {
        padding: 23px 20px;
        border-radius: 13px;
    }

    .form-heading h3 {
        font-size: 20px;
    }

}



.phone-contact {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 13px;

    min-width: 280px;

    padding: 11px 13px;

    background: #ffffff;

    border: 1px solid #e7e7e7;
    border-radius: 12px;

    color: #222;
    text-decoration: none;

    box-shadow: 0 7px 22px rgba(0, 0, 0, .05);

    overflow: hidden;

    transition: all .3s ease;
}


/* LEFT RED ACCENT */

.phone-contact::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background: #b21f2d;
}


/* PHONE ICON */

.phone-contact-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fdf0f1;
    color: #b21f2d;

    border-radius: 15px;

    transition: all .3s ease;
}

.phone-contact-icon i {
    font-size: 15px;
}


/* TEXT */

.phone-contact-info {
    display: flex;
    flex-direction: column;

    line-height: 1.2;
}

.phone-contact-info small {
    margin-bottom: 5px;

    color: #111;

    font-size: 13px;
    font-weight: 700;

}

.phone-contact-info strong {
    color: #181818;

    font-size: 17px;
    font-weight: 700;
}


/* ARROW */

.phone-contact-arrow {
    width: 32px;
    height: 32px;

    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7f7f7;
    color: #b21f2d;

    border-radius: 50%;

    transition: all .3s ease;
}

.phone-contact-arrow i {
    font-size: 13px;
}


/* HOVER */

.phone-contact:hover {
    color: #222;

    transform: translateY(-3px);

    border-color: rgba(178, 31, 45, .25);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .09);
}

.phone-contact:hover .phone-contact-icon {
    background: #b21f2d;
    color: #ffffff;
}

.phone-contact:hover .phone-contact-arrow {
    background: #b21f2d;
    color: #ffffff;

    transform: rotate(45deg);
}


/* MOBILE */

@media (max-width: 575.98px) {

    .phone-contact {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .phone-contact-info strong {
        font-size: 18px;
    }

}







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

.faq {
    position: relative;
    padding: 50px 0;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(178, 31, 45, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(40, 90, 150, 0.06),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8f9fb 50%,
            #f3f5f8 100%
        );
    overflow: hidden;
}


/* HEADING */

.faq .heading {
    max-width: 750px;
    margin: 0 auto 45px;
}

.faq .overline {
    margin-bottom: 15px;

    color: #b21f2d;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.faq .heading h2 {
    margin: 0;

    color: #181818;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.3;

    font-weight: 700;
}

.faq .heading h2 span {
    color: #b21f2d;
}


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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}


/* =========================================
   FAQ ITEM
========================================= */

.faq-list details {
    margin-bottom: 12px;

    background: #ffffff;

    border: 1px solid #e7e7e7;
    border-radius: 11px;

    overflow: hidden;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .035);

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.faq-list details[open] {
    border-color: rgba(178, 31, 45, .25);

    box-shadow: 0 15px 28px rgba(0, 0, 0, .07);
}


/* =========================================
   QUESTION
========================================= */

.faq-list summary {
    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 7px 20px;

    cursor: pointer;

    list-style: none;

    color: #222;

    font-size: 17px;
    font-weight: 700;

    transition: color .25s ease;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::marker {
    display: none;
}

.faq-list details[open] summary {
    color: #b21f2d;
}


/* =========================================
   PLUS ICON
========================================= */

.faq-list summary i {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fdf0f1;
    color: #b21f2d;

    font-size: 13px;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}

.faq-list details[open] summary i {
    transform: rotate(45deg);

    background: #b21f2d;
    color: #ffffff;
}


/* =========================================
   ANSWER
========================================= */

.faq-list details p {
    margin: 0;

    padding: 0 65px 22px 20px;

    color: #111;

    font-size: 16px;
    line-height: 1.75;
}


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

.faq-list summary:hover {
    color: #b21f2d;
}


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

@media (max-width: 767.98px) {

    .faq {
        padding: 45px 0;
    }

    .faq .heading {
        margin-bottom: 32px;
    }

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

    .faq-list details {
        margin-bottom: 9px;
    }

    .faq-list summary {
        min-height: 58px;
        padding: 7px 15px;

        font-size: 16px;
        line-height: 1.5;
    }

    .faq-list summary i {
        width: 29px;
        height: 29px;
        flex-basis: 29px;

        font-size: 11px;
    }

    .faq-list details p {
        padding: 0 15px 18px;

        font-size: 16px;
        line-height: 1.7;
    }

}






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

.final-cta {
    position: relative;

    padding: 75px 0;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(255,255,255,.08),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #071d3a 0%,
            #071d3a 50%,
            #071d3a 100%
        );

    color: #ffffff;

    overflow: hidden;
}


/* DECORATIVE GLOW */

.final-cta::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -160px;
    right: -100px;

    border-radius: 50%;

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

    filter: blur(15px);

    pointer-events: none;
}

.final-cta::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    bottom: -150px;
    left: -80px;

    border-radius: 50%;

    background: rgba(0,0,0,.08);

    filter: blur(20px);

    pointer-events: none;
}


/* =========================================
   LOGO
========================================= */

.final-logo {
    position: relative;
    z-index: 1;

    width: 150px;
    height: 150px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 50%;

    padding: 15px;

    box-sizing: border-box;

    box-shadow:
        0 15px 40px rgba(0,0,0,.18),
        0 0 0 8px rgba(255,255,255,.10);
}

.final-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 50%;
}


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

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

.final-cta .overline {
    margin-bottom: 15px;

    color: #ffd45a;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
}

.final-content h2 {
    max-width: 750px;

    margin-bottom: 15px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.25;

    font-weight: 700;
}


/* EXAM */

.exam-line {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .8px;
}


/* SELECTION */

.selection-line {
    display: block;

    margin-bottom: 15px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}


/* DESCRIPTION */

.final-description {
    max-width: 700px;

    margin-bottom: 25px;

    color:#fff;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   ACTIONS
========================================= */

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;

    margin-bottom: 20px;
}


/* COMMON BUTTON */

.final-btn {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 18px;

    border-radius: 50px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .4px;

    text-decoration: none;

    transition: all .3s ease;
}

.final-btn i {
    font-size: 13px;

    transition: transform .25s ease;
}


/* RED */

.final-btn.red {
    background: #ffffff;
    color: #b21f2d;

    border: 1px solid #ffffff;

    box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.final-btn.red:hover {
    color: #b21f2d;

    transform: translateY(-3px);

    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}


/* WHITE */

.final-btn.white {
    background: transparent;
    color: #ffffff;

    border: 1px solid rgba(255,255,255,.65);
}

.final-btn.white:hover {
    color: #b21f2d;

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-3px);
}


/* GREEN */

.final-btn.green {
    background: #159447;
    color: #ffffff;

    border: 1px solid #159447;
}

.final-btn.green:hover {
    background: #107b3a;
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 15px 25px rgba(0,0,0,.16);
}


/* ARROW */

.final-btn:hover i.bi-arrow-right {
    transform: translateX(4px);
}


/* =========================================
   PHONE
========================================= */

.light-phone {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition: opacity .25s ease;
}

.light-phone:hover {
    color: #ffffff;
    opacity: .8;
}

.light-phone > i {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

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

    border-radius: 50%;

    font-size: 16px;
}


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

@media (max-width: 991.98px) {

    .final-cta {
        padding: 65px 0;
    }

    .final-logo {
        width: 120px;
        height: 120px;
    }

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

    .final-description {
        margin-left: auto;
        margin-right: auto;
    }

    .actions {
        justify-content: center;
    }

    .light-phone {
        justify-content: center;
    }

}


@media (max-width: 575.98px) {

    .final-cta {
        padding: 55px 0;
    }

    .final-logo {
        width: 100px;
        height: 100px;
    }

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

    .exam-line {
        font-size: 15px;
        line-height: 1.8;
    }

    .selection-line {
        font-size: 16px;
    }

    .final-description {
        font-size: 16px;
    }

    .actions {
        flex-direction: column;
        width: 100%;
    }

    .final-btn {
        width: 100%;
        max-width: 300px;
    }

    .light-phone {
        font-size: 16px;
    }

}


.final-content h2 {
    color: #ffffff;
}

.final-content h2 span {
    color: #ffd45a;
}


/* =========================================
   FINAL CTA ACTIONS
========================================= */

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;
}


/* COMMON BUTTON */

.final-action {
    position: relative;

    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 8px 15px 8px 21px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: .45px;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.final-action span {
    position: relative;
    z-index: 2;
}

.final-action > i {
    position: relative;
    z-index: 2;
}


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

.demo-action {
    background: #ffffff;
    color: #b21f2d;

    border: 1px solid #ffffff;

    box-shadow: 0 8px 22px rgba(0,0,0,.14);
}

.demo-action > i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #b21f2d;
    color: #ffffff;

    border-radius: 50%;

    font-size: 13px;

    transition: transform .3s ease;
}


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

.course-action {
    background: rgba(255,255,255,.08);
    color: #ffffff;

    border: 1px solid rgba(255,255,255,.65);
}

.course-action > i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

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

    border-radius: 50%;

    font-size: 13px;

    transition:
        background .3s ease,
        transform .3s ease;
}


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

.whatsapp-action {
    padding-left: 17px;

    background: #159447;
    color: #ffffff;

    border: 1px solid #159447;

    box-shadow: 0 7px 20px rgba(0,0,0,.10);
}

.whatsapp-action > .bi-whatsapp {
    font-size: 17px;
}

.whatsapp-action .action-arrow {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 2px;

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

    border-radius: 50%;

    font-size: 12px;

    transition: transform .3s ease;
}


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

.final-action:hover {
    transform: translateY(-4px);
}

.demo-action:hover {
    color: #b21f2d;

    box-shadow: 0 13px 30px rgba(0,0,0,.20);
}

.demo-action:hover > i {
    transform: translateX(4px);
}

.course-action:hover {
    color: #ffffff;

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

    border-color: #ffffff;

    box-shadow: 0 15px 25px rgba(0,0,0,.12);
}

.course-action:hover > i {
    background: #ffffff;
    color: #b21f2d;

    transform: translateX(4px);
}

.whatsapp-action:hover {
    color: #ffffff;

    background: #107d3b;

    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.whatsapp-action:hover .action-arrow {
    transform: rotate(45deg);
}


/* =========================================
   SUBTLE SHINE ON DEMO
========================================= */

.demo-action::before {
    content: "";

    position: absolute;
    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        110deg,
        transparent,
        rgba(255,255,255,.75),
        transparent
    );

    transform: skewX(-20deg);

    animation: finalButtonShine 3.5s ease-in-out infinite;
}

@keyframes finalButtonShine {

    0%,
    55% {
        left: -100%;
    }

    75%,
    100% {
        left: 150%;
    }

}


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

@media (max-width: 767.98px) {

    .actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .final-action {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;

        box-sizing: border-box;
    }

}







.about {
    padding: 50px 0;
    background: #ffffff;
}

.about-inner {
    position: relative;

    max-width: 900px;
    margin: 0 auto;

    padding: 0 0 5px;

    text-align: center;
}



/* HEADING */

.about-heading {
    padding-bottom: 28px;

    border-bottom: 1px solid #e8e8e8;
}

.about .overline {
    margin-bottom: 15px;

    color: #b21f2d;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.about-heading h2 {
    margin: 0 0 15px;

    color: #181818;

    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.2;

    font-weight: 700;
}

.about-heading h3 {
    margin: 0;

    color: #555;

    font-size: 18px;
    line-height: 1.5;

    font-weight: 600;
}


/* CONTENT */

.about-content {
    padding-top: 28px;
}

.about-content h4 {
    margin: 0 0 18px;

    color: #181818;

    font-size: 20px;
    font-weight: 700;
}

.about-content p {

    margin: 0 auto 16px;

    color: #111;

    font-size: 16px;
    line-height: 1.85;
}

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


/* MOBILE */

@media (max-width: 767.98px) {

    .about {
        padding: 65px 0;
    }

    .about-inner::before {
        width: 45px;
        margin-bottom: 22px;
    }

    .about-heading {
        padding-bottom: 22px;
    }

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

    .about-heading h3 {
        font-size: 16px;
    }

    .about-content {
        padding-top: 22px;
    }

    .about-content h4 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.75;
    }

}








/* =========================================
   FOOTER
========================================= */

.site-footer {
    position: relative;

    padding: 65px 0 25px;

    background: #15171b;

    color: #ffffff;

    overflow: hidden;
}


/* TOP ACCENT */

.site-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 75px;
    height: 3px;

    transform: translateX(-50%);

    background: #b21f2d;

    border-radius: 0 0 15px 15px;
}


/* SUBTLE BACKGROUND */

.site-footer::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -200px;
    bottom: -250px;

    border-radius: 50%;

    background: rgba(178, 31, 45, .045);

    filter: blur(30px);

    pointer-events: none;
}


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

.footer-main {
    position: relative;
    z-index: 1;

    text-align: center;
}


/* =========================================
   BRAND
========================================= */

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-bottom: 18px;
}

.footer-brand img {
    width: 55px;
    height: 55px;

    padding: 3px;

    object-fit: contain;

    background: #ffffff;

    border-radius: 50%;

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

.footer-brand strong {
    color: #ffffff;

    font-size: 18px;
    font-weight: 700;

    letter-spacing: .6px;
}


/* =========================================
   EXAM LINE
========================================= */

.footer-exams {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: .8px;
}

.footer-mode {
    margin: 0 0 22px;

    color: #fff;

    font-size: 15px;
}


/* =========================================
   PHONE
========================================= */

.footer-phone {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

    padding: 15px 17px;

    color: #ffffff;

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

    border: 1px solid rgba(255,255,255,.11);

    border-radius: 50px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    transition: all .3s ease;
}

.footer-phone i {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #b21f2d;

    border-radius: 50%;

    font-size: 15px;
}

.footer-phone:hover {
    color: #ffffff;

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

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

    transform: translateY(-2px);
}


/* =========================================
   SOCIAL
========================================= */

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-bottom: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

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

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 50%;

    text-decoration: none;

    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.footer-social a i {
    font-size: 15px;
}

.footer-social a:hover {
    color: #ffffff;

    background: #b21f2d;

    border-color: #b21f2d;

    transform: translateY(-4px);

    box-shadow: 0 8px 20px rgba(178,31,45,.25);
}


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

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    max-width: 950px;

    margin: 0 auto;

    padding: 22px 15px;

    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-nav a,
.footer-nav span {
    position: relative;

    padding: 4px 15px;

    color: #fff;

    font-size: 16px;

    text-decoration: none;

    transition: color .25s ease;
}

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


/* SEPARATOR */

.footer-nav a:not(:last-of-type)::after,
.footer-nav span::after {
    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    width: 1px;
    height: 12px;

    transform: translateY(-50%);

    background:#fff;
}


/* =========================================
   BOTTOM
========================================= */

.footer-bottom {
    padding-top: 23px;
}

.footer-bottom small {
    color: #b21f2d;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .5px;
}


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

@media (max-width: 767.98px) {

    .site-footer {
        padding: 50px 0 22px;
    }


    .footer-brand {
        gap: 15px;
    }

    .footer-brand img {
        width: 46px;
        height: 46px;
    }

    .footer-brand strong {
        font-size: 14px;
    }


    .footer-exams {
        max-width: 320px;

        margin-left: auto;
        margin-right: auto;

        font-size: 15px;

        line-height: 1.8;
    }

    .footer-mode {
        font-size: 16px;
    }


    .footer-phone {
        font-size: 15px;

        margin-bottom: 22px;
    }


    .footer-social {
        gap: 8px;

        margin-bottom: 25px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social a i {
        font-size: 14px;
    }


    .footer-nav {
        padding: 17px 5px;
    }

    .footer-nav a,
    .footer-nav span {
        padding: 6px 9px;

        font-size: 15px;
    }

    .footer-nav a::after,
    .footer-nav span::after {
        display: none;
    }


    .footer-bottom {
        padding-top: 18px;
    }

}


.footer-copyright {
    margin-top: 22px;
  

    text-align: center;
}

.footer-copyright p {
    margin: 0;

    color: #fff;

    font-size: 16px;
    line-height: 1.6;
}






/* =========================================
   STUDENT SHOWCASE
========================================= */

.student-showcase {
    padding: 45px 0;
    background: #ffffff;
}


/* =========================================
   HEADING
========================================= */

.student-showcase-heading {
    max-width: 750px;
    margin: 0 auto 35px;
}

.student-showcase .overline {
    margin-bottom: 15px;

    color: #b21f2d;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.student-showcase-heading h2 {
    margin: 0 0 12px;

    color: #181818;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.25;

    font-weight: 700;
}

.student-showcase-heading h2 span {
    color: #b21f2d;
}

.student-showcase-heading > p:last-child {

    margin: 0 auto;

    color: #111;

    font-size: 16px;
    line-height: 1.8;
}


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

.student-showcase-image {
    position: relative;

    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 18px;

    border: 1px solid #e5e5e5;

    background: #f5f5f5;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .10);
}

.student-showcase-image::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);

    pointer-events: none;
}

.student-showcase-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;

    transition: transform .5s ease;
}

.student-showcase-image:hover img {
    transform: scale(1.02);
}


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

@media (max-width: 767.98px) {

    .student-showcase {
        padding: 60px 0;
    }

    .student-showcase-heading {
        margin-bottom: 28px;
    }

    .student-showcase-heading h2 {
        font-size: 28px;
    }

    .student-showcase-heading > p:last-child {
        font-size: 16px;
    }

    .student-showcase-image {
        border-radius: 12px;
    }

    .student-showcase-image img {
        max-height: none;
    }

}






/* ================================
   LEFT FLOATING BUTTONS
================================ */

.sr-left-float {
    position: fixed !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 50px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    gap: 12px !important;

    z-index: 999999 !important;
}


/* BUTTON */

.sr-left-float a {
    position: relative !important;

    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 0 !important;
    outline: 0 !important;

    border-radius: 50% !important;

    color: #fff !important;

    text-decoration: none !important;

    box-sizing: border-box !important;

    line-height: 1 !important;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .22);

    transition: transform .25s ease;
}


/* CALL */

.sr-left-float .sr-call {
    background: #b21f2d !important;
}

.sr-left-float .sr-call i {
    margin: 0 !important;
    padding: 0 !important;

    color: #fff !important;

    font-size: 17px !important;
    line-height: 1 !important;
}


/* WHATSAPP */

.sr-left-float .sr-whatsapp {
    background: #159447 !important;
}

.sr-left-float .sr-whatsapp i {
    margin: 0 !important;
    padding: 0 !important;

    color: #fff !important;

    font-size: 21px !important;
    line-height: 1 !important;
}


/* HOVER */

.sr-left-float a:hover {
    transform: scale(1.08) !important;
}


/* MOBILE */

@media (max-width: 767px) {

    .sr-left-float {
        left: 8px !important;
    }

}


/* DESKTOP HIDE */

@media (max-width: 767px) {

    .sr-left-float {
        display: none !important;
    }

}





/* =========================================
   MOBILE FIXED FOOTER CTA
========================================= */

.sr-mobile-footer-cta {
    display: none;
}


@media (max-width: 767.98px) {

    .sr-mobile-footer-cta {
        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;

        height: 62px;

        display: grid;
        grid-template-columns: 1fr 1fr 1.15fr;

        background: #ffffff;

        border-top: 1px solid #dddddd;

        box-shadow: 0 -5px 20px rgba(0, 0, 0, .15);

        z-index: 999999;

        padding-bottom: env(safe-area-inset-bottom);

        box-sizing: content-box;
    }


    /* =====================================
       COMMON
    ===================================== */

    .sr-mobile-footer-cta a {
        min-width: 0;

        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;
        justify-content: center !important;

        gap: 4px;

        padding: 5px;

        box-sizing: border-box;

        text-decoration: none !important;

        font-size:15px;
        font-weight: 700;

        line-height: 1;

        border-right: 1px solid #e5e5e5;

        transition: opacity .2s ease;
    }


    .sr-mobile-footer-cta a:last-child {
        border-right: 0;
    }


    .sr-mobile-footer-cta i {
        margin: 0 !important;
        padding: 0 !important;

        font-size: 17px;

        line-height: 1;
    }


    /* =====================================
       CALL
    ===================================== */

    .sr-mobile-footer-cta .sr-mob-call {
        color: #b21f2d !important;
        background: #ffffff !important;
    }


    /* =====================================
       WHATSAPP
    ===================================== */

    .sr-mobile-footer-cta .sr-mob-whatsapp {
        color: #159447 !important;
        background: #ffffff !important;
    }


    /* =====================================
       ENQUIRE NOW
    ===================================== */

    .sr-mobile-footer-cta .sr-mob-enquire {
        color: #ffffff !important;
        background: #b21f2d !important;
    }


    .sr-mobile-footer-cta .sr-mob-enquire i {
        font-size: 16px;
    }


    /* =====================================
       CLICK EFFECT
    ===================================== */

    .sr-mobile-footer-cta a:active {
        opacity: .75;
    }


    /* =====================================
       BODY SPACE
    ===================================== */

    body {
        padding-bottom: 72px !important;
    }

}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 768px) {

    .sr-mobile-footer-cta {
        display: none !important;
    }

}








/* =========================================
   CONSULTATION MODAL
========================================= */

#consultationModal .modal-dialog {
    max-width: 470px;
}


/* MODAL BOX */

#consultationModal .modal-content {
    border: 0;
    border-radius: 18px;

    overflow: hidden;

    background: #ffffff;

    box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
}


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

#consultationModal .modal-header {
    position: relative;

    display: block;

    padding: 28px 30px 20px;

    background:
        linear-gradient(
            135deg,
            #b21f2d,
            #8f1825
        );

    border: 0;
}


/* TITLE */

#consultationModal .modal-title {
    margin: 0;

    padding-right: 35px;

    color: #ffffff;

    font-size: 24px;
    font-weight: 700;

    line-height: 1.3;
}


/* SMALL TOP TEXT */

#consultationModal .modal-header::before {
    content: "FREE DEMO / COURSE COUNSELLING";

    display: block;

    margin-bottom: 7px;

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

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* CLOSE BUTTON */

#consultationModal .btn-close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 30px;
    height: 30px;

    margin: 0;

    padding: 0;

    opacity: 1;

    border-radius: 50%;

    background-color: rgba(255,255,255,.15);

    background-size: 11px;

    filter: brightness(0) invert(1);

    transition: .25s ease;
}

#consultationModal .btn-close:hover {
    background-color: rgba(255,255,255,.28);

    transform: rotate(90deg);
}


/* =========================================
   BODY
========================================= */

#consultationModal .modal-body {
    padding: 28px 30px 30px;
}


/* =========================================
   LABEL
========================================= */

#consultationModal .form-label {
    margin-bottom: 7px;

    color: #333;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   INPUT / SELECT
========================================= */

#consultationModal .form-control,
#consultationModal .form-select {
    height: 48px;

    padding: 16px 14px;

    border: 1px solid #e2e2e2;

    border-radius: 9px;

    background: #fafafa;

    color: #333;

    font-size: 13px;

    box-shadow: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


#consultationModal .form-control::placeholder {
    color: #999;
}


#consultationModal .form-control:focus,
#consultationModal .form-select:focus {
    background: #ffffff;

    border-color: #b21f2d;

    box-shadow:
        0 0 0 3px rgba(178,31,45,.08);
}


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

#consultationModal .mb-3 {
    margin-bottom: 16px !important;
}


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

#consultationModal .btn-danger {
    width: 100%;

    min-height: 50px;

    margin-top: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border: 0;

    border-radius: 9px;

    background: #b21f2d;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: .5px;

    transition: all .3s ease;
}


#consultationModal .btn-danger i {
    transition: transform .25s ease;
}


#consultationModal .btn-danger:hover {
    background: #951a27;

    transform: translateY(-2px);

    box-shadow:
        0 9px 22px rgba(178,31,45,.25);
}


#consultationModal .btn-danger:hover i {
    transform: translateX(4px);
}


/* =========================================
   MODAL BACKDROP
========================================= */

.modal-backdrop.show {
    opacity: .72;
}


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

@media (max-width: 575.98px) {

    #consultationModal {
        padding: 12px;
    }

    #consultationModal .modal-dialog {
        margin: 0 auto;

        max-width: 100%;
    }

    #consultationModal .modal-content {
        border-radius: 15px;
    }

    #consultationModal .modal-header {
        padding: 24px 22px 18px;
    }

    #consultationModal .modal-title {
        font-size: 21px;
    }

    #consultationModal .modal-body {
        padding: 23px 20px 22px;
    }

}







/* =========================================
   CLASSROOM GALLERY
========================================= */

.classroom-gallery {
    padding: 45px 0;

    background: #f8f9fb;
}


/* =========================================
   HEADING
========================================= */

.classroom-heading {
    max-width: 720px;

    margin: 0 auto 38px;
}

.classroom-heading .overline {
    margin: 0 0 10px;

    color: #b21f2d;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.classroom-heading h2 {
    margin: 0 0 12px;

    color: #181818;

    font-size: clamp(30px, 4vw, 42px);

    line-height: 1.25;

    font-weight: 800;
}

.classroom-heading h2 span {
    color: #b21f2d;
}

.classroom-heading > p:last-child {
    max-width: 650px;

    margin: 0 auto;

    color: #111;

    font-size: 16px;

    line-height: 1.8;
}


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

.classroom-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #e9e9e9;

    border-radius: 16px;

    box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}


.classroom-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}


/* IMAGE OVERLAY */

.classroom-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.18),
        transparent 45%
    );

    pointer-events: none;
}


/* HOVER */

.classroom-image:hover img {
    transform: scale(1.04);
}


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

@media (max-width: 767.98px) {

    .classroom-gallery {
        padding: 40px 0;
    }

    .classroom-heading {
        margin-bottom: 28px;
    }

    .classroom-heading h2 {
        font-size: 28px;
    }

    .classroom-heading > p:last-child {
        font-size: 16px;
    }

    .classroom-image,
    .classroom-image.large {
        height: 230px;

        border-radius: 12px;
    }

}










/* ==========================================
   GOOGLE REVIEWS SECTION
========================================== */

.google-reviews-section {
    position: relative;
    padding: 80px 0;
    background: #f2f2f2;
    overflow: hidden;
}

.google-reviews-container {
    width: 92%;
    max-width: 1350px;
    margin: 0 auto;
}


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

.google-reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.google-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.google-logo {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
}

.google-g {
    font-size: 38px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    background: linear-gradient(
        90deg,
        #4285f4 25%,
        #34a853 25%,
        #34a853 50%,
        #fbbc05 50%,
        #fbbc05 75%,
        #ea4335 75%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.google-title h2 {
    margin: 0;
    color: #202124;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.google-title p {
    margin: 5px 0 0;
    color: #111;
    font-size: 16px;
}


/* RATING */

.google-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,.06);
}

.rating-number {
    font-size: 30px;
    font-weight: 700;
    color: #202124;
}

.rating-details .stars {
    color: #fbbc04;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1;
}

.rating-details span {
    display: block;
    color: #70757a;
    font-size: 12px;
    margin-top: 4px;
}


/* ==========================================
   SLIDER
========================================== */

.reviews-wrapper {
    position: relative;
    padding: 0 45px;
}

.reviews-track {
    display: flex;
    gap: 18px;
    overflow: hidden;
    scroll-behavior: smooth;
}


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

.google-review-card {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px;
    min-height: 245px;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    transition: transform .3s ease,
                box-shadow .3s ease;
}

.google-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.10);
}


/* ==========================================
   REVIEWER
========================================== */

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    background: #4285f4;
}

.reviewer-info {
    min-width: 0;
    flex: 1;
}

.reviewer-info h3 {
    margin: 0 0 5px;
    color: #202124;
    font-size: 15px;
    font-weight: 600;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 7px;
}

.review-meta span {
    color: #fbbc04;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-meta small {
    color: #70757a;
    font-size: 11px;
}

.google-small-logo {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #4285f4;
}


/* ==========================================
   REVIEW TEXT
========================================== */

.review-text {
    position: relative;
    margin: 0;
    color: #111;
    font-size: 16px;
    line-height: 1.65;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
}


/* READ MORE */

.read-more {
    border: 0;
    padding: 0;
    margin-top: 8px;
    background: transparent;
    color: #1a73e8;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.read-more:hover {
    text-decoration: underline;
}


/* ==========================================
   ARROWS
========================================== */

.review-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 42px;
    height: 42px;

    border: 1px solid #dadce0;
    border-radius: 50%;

    background: #fff;
    color: #3c4043;

    font-size: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transform: translateY(-50%);

    box-shadow: 0 4px 12px rgba(0,0,0,.10);

    transition: .25s ease;
}

.review-arrow:hover {
    background: #f1f3f4;
    transform: translateY(-50%) scale(1.05);
}

.review-prev {
    left: 0;
}

.review-next {
    right: 0;
}


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

.review-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 25px;
}

.review-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c5c7ca;
    cursor: pointer;
    transition: .25s ease;
}

.review-dot.active {
    width: 22px;
    border-radius: 10px;
    background: #4285f4;
}


/* ==========================================
   FOOTER
========================================== */

.google-review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 30px;
    padding-top: 22px;

    border-top: 1px solid #e5e7eb;
}

.google-review-footer strong {
    display: block;
    color: #202124;
    font-size: 16px;
}

.footer-stars {
    color: #fbbc04;
    font-size: 17px;
    letter-spacing: 1px;
    margin-right: 7px;
}

.google-review-footer small {
    color: #70757a;
    font-size: 11px;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 20px;

    border: 1px solid #dadce0;
    border-radius: 7px;

    background: #fff;
    color: #1a73e8;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: .25s ease;
}

.google-review-btn:hover {
    background: #f8faff;
}


/* ==========================================
   AVATAR VARIATIONS
========================================== */

.avatar-1,
.avatar-8,
.avatar-15,
.avatar-22 {
    background: #4285f4;
}

.avatar-2,
.avatar-9,
.avatar-16,
.avatar-23 {
    background: #34a853;
}

.avatar-3,
.avatar-10,
.avatar-17,
.avatar-24 {
    background: #ea4335;
}

.avatar-4,
.avatar-11,
.avatar-18,
.avatar-25 {
    background: #7e57c2;
}

.avatar-5,
.avatar-12,
.avatar-19,
.avatar-26 {
    background: #00897b;
}

.avatar-6,
.avatar-13,
.avatar-20,
.avatar-27 {
    background: #f4511e;
}

.avatar-7,
.avatar-14,
.avatar-21 {
    background: #5c6bc0;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1050px) {

    .google-review-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }

}


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

@media (max-width: 767px) {

    .google-reviews-section {
        padding: 55px 0;
    }

    .google-reviews-container {
        width: 90%;
    }

    .google-reviews-header {
        display: block;
        margin-bottom: 25px;
    }

    .google-title {
        align-items: flex-start;
    }

    .google-logo {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .google-g {
        font-size: 31px;
    }

    .google-title h2 {
        font-size: 23px;
    }

    .google-title p {
        font-size: 12px;
        line-height: 1.5;
    }

    .google-rating {
        width: fit-content;
        margin-top: 18px;
    }

    .rating-number {
        font-size: 25px;
    }

    .reviews-wrapper {
        padding: 0 32px;
    }

    .reviews-track {
        gap: 12px;
    }

    .google-review-card {
        flex: 0 0 100%;
        padding: 20px;
        min-height: 230px;
    }

    .review-arrow {
        width: 35px;
        height: 35px;
        font-size: 17px;
    }

    .review-prev {
        left: -2px;
    }

    .review-next {
        right: -2px;
    }

    .google-review-footer {
        display: block;
        text-align: center;
    }

    .google-review-btn {
        margin-top: 15px;
        width: 100%;
    }

}


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

@media (max-width: 400px) {

    .google-title h2 {
        font-size: 21px;
    }

    .google-title p {
        font-size: 11px;
    }

    .google-review-card {
        padding: 17px;
    }

    .review-text {
        font-size: 13px;
    }

}