@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&display=swap");


:root {
    --color-primary: #0d71a0;
    --color-primary-dark: #0046ab;
    --color-secondary:#ff6136;
    --color-secondary-dark: rgb(223 191 245);
    --color-bg: #f7f9fc;
    --color-surface: #ffffff;
    --color-surface-soft: #fff8f2;
    --color-text: #1f2a37;
    --color-muted: #596579;
    --color-border: #e5eaf1;
    --color-success: #16a34a;
    --shadow-sm: 0 6px 16px rgba(6, 24, 44, 0.08);
    --shadow-md: 0 14px 34px rgba(6, 24, 44, 0.12);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    /* --font-heading: "Manrope", "Segoe UI", sans-serif; */
    --font-heading: "Merriweather";
    --section-space-desktop: 56px;
    --section-space-tablet: 44px;
    --section-space-mobile: 34px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   font-family: var(--font-heading) !important;
   appearance: none;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
       font-family: var(--font-heading) !important;
}

body {
    font-family: var(--font-heading) !important;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.65;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading) !important;
    color: #151f2c;
    line-height: 1.2;
    margin: 0;
}

p {
    margin-bottom: 0;
}

.fw-400 {
    font-weight: 400;
}

.highlights {
    color: var(--color-secondary);
}

.mb-hide {
    display: inline;
}

.container,
.container-fluid {
    position: relative;
}

/* Common Section Alignment */
:is(.hero-section, .why-choose, .mentor-section, .testimonial-section, .ad-section, .portal-app-section, .faq-section) {
    width: 100%;
}

:is(.why-choose, .mentor-section, .testimonial-section, .ad-section, .portal-app-section, .faq-section) {
    margin-top: var(--section-space-desktop) !important;
    margin-bottom: var(--section-space-desktop) !important;
}

/* Sticky Header */
.sticky-header-container {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.banner-bg {
    background: var(--color-primary);
    color: #fff;
}

.top-header .d-flex {
    min-height: 46px;
    padding-right: 48px;
}

.message-text {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.35;
}

.book-now-btn.btn {
    border: 1px solid #fff;
    background: #fff;
    color: var(--color-primary);
    border-radius: 999px;
    min-width: 108px;
    height: 34px;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.book-now-btn.btn:hover {
    background: #eef4ff;
    color: var(--color-primary-dark);
}

.close-btn {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #fff;
    padding: 4px;
    line-height: 1;
    opacity: 0.85;
}

.close-btn:hover {
    opacity: 1;
}

.header {
    background: var(--color-surface);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.sticky-header {
    position: sticky !important;
    top: 0;
}

.custom-logo {
    width: 66px;
    height: 44px;
}

/* Buttons */
.btn.btns {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 20px;
    background: var(--color-secondary);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1;
    min-height: 39px;
    padding: 0 22px;    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 8px 22px rgba(243, 118, 33, 0.25);
}

.btn.btns:hover {
    transform: translateY(-1px);
    background: var(--color-secondary);
    color: #fff;
    box-shadow: 0 10px 26px rgba(243, 118, 33, 0.33);
}

.btn.btns:focus{
    outline: 3px solid rgba(0, 88, 214, 0.22);
    outline-offset: 2px;
}

.btnSpan {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
    pointer-events: none;
    transition: width 0.45s ease, height 0.45s ease;
}

.btn.btns:hover .btnSpan {
    width: 240px;
    height: 240px;
}

.btn.btns > :not(.btnSpan) {
    position: relative;
    z-index: 1;
}

.contact-btn {
    min-height: 48px;
}

.mobile-contact-btn {
    min-height: 44px;
    height: 44px;
    width: auto !important;
    max-width: 100%;
    padding: 0 12px;
    font-size: 0.8rem;
    white-space: nowrap;
    letter-spacing: 0;
}

/* Hero */
.hero-section {
    background: radial-gradient(
        120% 120% at 0% 0%,
        rgba(0, 88, 214, 0.16) 0%,
        rgba(0, 88, 214, 0.1) 38%,
        rgba(243, 118, 33, 0.14) 76%,
        #ffffff 100%
    );
}

.hero-content-container {
    display: block;
    min-height: auto;
}

.hero-content {
    max-width: 640px;
}

.hero-main-row {
    align-items: center;
    row-gap: 14px;
}

.heading1 {
    font-size: 2.666rem;
    line-height: 1.14;
    color: var(--color-primary);
    margin: 0;
    max-width: max-content;
    text-wrap: balance;
}

.video-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 0;
}

.hero-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit:contain;
    /* border-radius: var(--radius-md); */
    background: black;
}

.hero-form-wrap {
    margin-top: 18px;
    width: 100%;
}

.form-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 28px;
}

.form-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.fill {
    color: var(--color-muted);
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 0.96rem;
}

.form-group {
    margin-bottom: 16px;
}

.form-padding {
    margin-top: 0;
}

.input-container,
.select-container {
    position: relative;
}

.input-container i,
.select-container i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a95a7;
    font-size: 1rem;
    z-index: 1;
}

.form-control,
.form-select {
    height: 48px;
    border-radius: var(--radius-sm);
    border: 1px solid #d7dfea;
    padding: 0 12px 0 38px !important;
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--color-text);
    background-color: #fff;
}

.form-control::placeholder {
    color: #8c98ab;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 88, 214, 0.15) !important;
}

.error-message {
    display: none;
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #dc2626;
}

.submitbtn {
    min-width: 160px;
}

.loader {
    display: none;
    width: 18px;
    height: 18px;
    margin-left: 10px;
    border: 2px solid rgba(89, 101, 121, 0.25);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Why Choose */
.why-choose {
    margin-top: var(--section-space-desktop) !important;
    margin-bottom: var(--section-space-desktop) !important;
}

.why-us.about-us-card {
    margin: 0;
    background: linear-gradient(130deg, #fffefc 0%, #fff4ea 100%);
    border: 1px solid #f0dfd2;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    align-items: stretch;
}

.about-media {
    position: relative;
    height: 100%;
}

.about-media .highlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
}

.about-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 36, 0.45) 100%);
}

.about-media-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #1b2c45;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 20px rgba(6, 24, 44, 0.15);
}

.about-media-badge i {
    color: var(--color-secondary);
}

.why-content {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-kicker {
    margin: 0;
    color: var(--color-primary);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
}

.why-us .h2-color-title {
    margin: 0;
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    line-height: 1.2;
}

.about-intro {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.about-track {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-track-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d2e4ff;
    border-radius: 999px;
    background: #eef5ff;
    color: #1b4a83;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 6px 11px;
}

.module-title {
    margin: 2px 0 0;
    font-family: var(--font-heading) !important;
    font-size: 1.1rem;
    line-height: 1.25;
    color: #162338;
}

.about-module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.about-module-item {
    position: relative;
    background: #fff;
    border: 1px solid #e6edf7;
    border-radius: 12px;
    padding: 11px 11px 11px 14px;
}

.about-module-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 12px 0 0 12px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
}

.about-module-item h4 {
    margin: 0 0 4px;
    font-family: var(--font-heading) !important;
    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1.3;
    color: #1a2739;
}

.about-module-item p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.45;
}

/* Mentors */
.mentor-section {
    margin-top: var(--section-space-desktop) !important;
    margin-bottom: var(--section-space-desktop) !important;
}

.center-title {
    font-size: clamp(1.95rem, 3.2vw, 2.7rem);
    text-align: center;
    margin-bottom: 24px;
}

.mentor-slider {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mentor-track {
    flex: 1;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 2px 8px;
    scrollbar-width: none;
}

.mentor-track::-webkit-scrollbar {
    display: none;
}

.mentor-slide {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 260px;
    scroll-snap-align: start;
}

.mentor-nav {
    width: 42px;
    height: 42px;
    border: 1px solid #e5dde0;
    border-radius: 50%;
    background: #fff;
    color: var(--color-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.mentor-nav:hover {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

.mentor-nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.mentor-card {
    background: #fff;
    border: 1px solid #f0e3da;
    border-radius: var(--radius-md);
    padding: 10px;
    box-shadow: var(--shadow-sm);
}

.rank-list {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
}

.mentor-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 10px;
    text-align: center;
}

/* Testimonials */
.testimonial-section {
    margin-top: var(--section-space-desktop) !important;
    margin-bottom: var(--section-space-desktop) !important;
    padding: 66px 0 44px;
    background: linear-gradient(180deg, #fffdfb 0%, #fff6ef 100%);
}

.testimonial-head {
    gap: 14px;
    margin-bottom: 8px;
}

.title-testimonial {
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    margin-bottom: 0 !important;
}

.testimonial-card-next-btn {
    margin-top: 0 !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.custom-prev,
.custom-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ecd8cb;
    background: #fff;
    color: var(--color-secondary);
    box-shadow: var(--shadow-sm);
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-prev:hover,
.custom-next:hover {
    background: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
}

.custom-prev:disabled,
.custom-next:disabled {
    opacity: 0.45;
}

.testimonial-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 12px 2px 8px;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc((100% - 32px) / 3);
    min-width: 280px;
    background: #fff;
    border: 1px solid #f1dfd4;
    border-radius: var(--radius-md);
    padding: 20px;
    /* box-shadow: var(--shadow-sm); */
    scroll-snap-align: start;
}

.testimonial-tb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.testimonial-tb h5 {
    font-size: 1.2rem;
}

.quote-icon {
    display: inline-flex;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    /* background: #fff1e8; */
    color: var(--color-secondary);
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: #f5a019;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.rating .badge {
    border-radius: 999px;
    padding: 4px 10px;
    border: 1px solid #ffdf95;
    font-weight: 700;
}

.testimonial-card p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.72;
}

/* CTA Ad */
.ad-section {
    margin: var(--section-space-desktop) 0;
}

.ad-section-container {
    background: linear-gradient(135deg, #fffdf8 0%, #ffefdb 45%, #ffe2c5 100%);
    border: 1px solid #f1dbc8;
    border-radius: 24px;
    padding: 28px 22px;
    box-shadow: var(--shadow-md);
}

.ad-buttons {
    gap: 12px;
}

.ad-image {
    width: min(100%, 420px);
    margin-inline: auto;
}

/* Portal */
.portal-app-section {
    margin-top: var(--section-space-desktop) !important;
    margin-bottom: var(--section-space-desktop) !important;
}

.portal-app-title {
    max-width: auto;
    margin: 0 auto 24px;
    text-align: center;
    color: var(--color-primary);
}

.portal-app-image {
    border-radius: var(--radius-lg);
    border: 1px solid #f0e4db;
    background: #fff;
    padding: 12px;
    box-shadow: var(--shadow-md);
}

/* FAQ */
.faq-section {
    margin-top: var(--section-space-desktop) !important;
    margin-bottom: var(--section-space-desktop) !important;
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.faq-header p {
    margin: 0;
    color: var(--color-secondary);
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.faq-header h2 {
    margin-top: 6px;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.25;
}

.faq-header h2 span {
    color: var(--color-secondary);
}

.accordion-item {
    border: 1px solid #e7edf5;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 10px;
}

.accordion-button {
    font-weight: 700;
    font-size: 0.96rem;
    color: #233044;
    background: #fff;
    box-shadow: none !important;
    padding: 14px 16px;
}

.accordion-button:not(.collapsed) {
    background: #f5f9ff;
    color: #1b3458;
}

.accordion-body {
    color: var(--color-muted);
    font-size: 0.94rem;
    line-height: 1.72;
}

.faq-footer {
    margin-top: 8px;
}

.faq-footer p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.reachbtn {
    align-items: center;
    gap: 10px;
}

.faq-footer .btn {
    border-radius: 999px;
    border: none;
    padding: 11px 18px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-dark {
    background: #111827;
    color: #fff;
}

.btn-orange {
    background: var(--color-secondary) !important;
    color: #fff !important;
}

/* Footer */
.footer {
    background: #0f1724;
    color: #d8dee8;
    padding: 16px 0;
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0;
}

/* Modal */
#bookNowModal .modal-dialog {
    max-width: 820px;
}

#bookNowModal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 22px 52px rgba(8, 25, 51, 0.22);
}

#bookNowModal .modal-body {
    padding: 24px;
    background: var(--color-surface-soft);
}

#bookNowModal .btn-close {
    opacity: 0.55;
}

#bookNowModal .btn-close:hover {
    opacity: 1;
}

/* Tablet */
@media (max-width: 992px) {
    .hero-content-container {
        min-height: auto;
        gap: 20px;
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .heading1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .mentor-slide {
        flex-basis: calc((100% - 18px) / 2);
    }

    .testimonial-card {
        flex-basis: calc((100% - 16px) / 2);
    }
}

/* Mobile / Tablet Core */
@media (max-width: 768px) {
    :root {
        --section-space-desktop: var(--section-space-tablet);
    }

    .container,
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .top-header .d-flex {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 8px;
        padding-right: 34px;
        min-height: 56px;
    }

    .message-text {
        font-size: 0.86rem;
        text-align: center;
    }

    .close-btn {
        top: 7px;
        right: 6px;
        transform: none;
    }

    .header .container > header {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .custom-logo {
        width: 94px;
    }

    .hero-content-container {
        display: block;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .hero-main-row {
        row-gap: 12px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 14px;
    }

    .heading1 {
        font-size: 2.15rem;
        line-height: 1.16;
        max-width: min(100%, 23ch);
        margin-inline: auto;
        text-wrap: balance;
    }

    .video-wrapper {
        margin-bottom: 0;
    }

    .hero-form-wrap {
        margin-top: 14px;
    }

    .form-box {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .form-title {
        font-size: 1.85rem;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group .row > [class*="col-"] {
        margin-bottom: 12px;
    }

    .why-us.about-us-card {
        border-radius: 16px;
    }

    .about-media {
        min-height: 240px;
    }

    .about-media-badge {
        left: 10px;
        bottom: 10px;
        font-size: 0.7rem;
        padding: 7px 10px;
    }

    .why-content {
        padding: 16px 14px;
        gap: 10px;
    }

    .why-us .h2-color-title {
        font-size: 1.72rem;
    }

    .about-intro {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .module-title {
        font-size: 1rem;
    }

    .about-track-item {
        font-size: 0.72rem;
        padding: 5px 9px;
    }

    .about-module-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-module-item h4 {
        font-size: 0.9rem;
    }

    .about-module-item p {
        font-size: 0.8rem;
    }

    .h2-color-title,
    .center-title,
    .title-testimonial,
    .portal-app-title,
    .faq-header h2 {
        font-size: 2rem;
        line-height: 1.22;
    }

    .mentor-nav,
    .custom-prev,
    .custom-next {
        display: none;
    }

    .mentor-slide {
        flex: 0 0 84%;
        min-width: 250px;
    }

    .testimonial-section {
        padding: 54px 0 36px;
    }

    .testimonial-head {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .testimonial-slider {
        gap: 14px;
    }

    .testimonial-card {
        flex: 0 0 88%;
        min-width: 260px;
        padding: 18px 16px;
    }

    .testimonial-tb h5 {
        font-size: 1.1rem;
    }

    .ad-section {
        margin: var(--section-space-desktop) 0;
    }

    .ad-section-container {
        padding: 20px 12px;
        border-radius: 16px;
    }

    .ad-buttons {
        justify-content: center;
    }

    .portal-app-section {
        margin-top: var(--section-space-desktop) !important;
        margin-bottom: var(--section-space-desktop) !important;
    }

    .portal-app-image {
        border-radius: 14px;
        padding: 8px;
    }

    .faq-section {
        margin-top: var(--section-space-desktop) !important;
        margin-bottom: var(--section-space-desktop) !important;
        padding: 20px 16px;
        border-radius: 16px;
    }

    .faq-header p {
        font-size: 0.75rem;
    }

    .faq-footer .reachbtn {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-footer .btn {
        width: 100%;
        text-align: center;
    }

    .header .col-md-3.text-end {
        width: auto;
        margin-left: auto;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .header .col-md-3.text-end > a {
        float: none !important;
    }

    .header .col-md-3.text-end > a.d-none.d-lg-block.d-md-block {
        display: none !important;
    }

    .header .col-md-3.text-end > a.d-sm-block.d-block.d-md-none {
        display: inline-flex !important;
    }
}

/* Small Mobile */
@media (max-width: 425px) {
    :root {
        --section-space-desktop: var(--section-space-mobile);
    }

    .container,
    .container-fluid {
        padding-left: 12px;
        padding-right: 12px;
    }

    .mb-hide {
        display: none;
    }

    .message-text {
        font-size: 0.76rem;
    }

    .book-now-btn.btn {
        min-width: 86px;
        height: 30px;
        font-size: 0.74rem;
        padding: 0 10px;
    }

    .custom-logo {
        width: 86px;
    }

    .mobile-contact-btn {
        min-height: 42px;
        height: 42px;
        padding: 0 10px;
        font-size: 0.76rem;
    }

    .heading1 {
        font-size: 1.75rem;
        line-height: 1.17;
        max-width: min(100%, 23ch);
        margin-inline: auto;
        text-wrap: balance;
    }

    .form-box {
        padding: 16px 12px;
    }

    .form-title {
        font-size: 1.58rem;
    }

    .fill {
        font-size: 0.88rem;
    }

    .form-control,
    .form-select {
        height: 46px;
        font-size: 0.9rem;
    }

    .btn.btns:not(.mobile-contact-btn) {
        min-height: 46px;
        font-size: 0.88rem;
    }

    .h2-color-title,
    .center-title,
    .title-testimonial,
    .portal-app-title,
    .faq-header h2 {
        font-size: 1.64rem;
    }

    .common-text,
    .testimonial-card p,
    .accordion-body {
        font-size: 0.9rem;
    }

    .about-media {
        min-height: 210px;
    }

    .about-media-badge {
        left: 8px;
        bottom: 8px;
        font-size: 0.64rem;
        padding: 6px 9px;
    }

    .why-content {
        padding: 14px 12px;
    }

    .about-kicker {
        font-size: 0.66rem;
    }

    .why-us .h2-color-title {
        font-size: 1.45rem;
    }

    .about-intro {
        font-size: 0.84rem;
    }

    .about-track {
        gap: 6px;
    }

    .about-track-item {
        font-size: 0.67rem;
        padding: 4px 8px;
    }

    .module-title {
        font-size: 0.95rem;
    }

    .about-module-item {
        padding: 10px 10px 10px 12px;
    }

    .about-module-item h4 {
        font-size: 0.85rem;
    }

    .about-module-item p {
        font-size: 0.76rem;
        line-height: 1.4;
    }

    .testimonial-card {
        min-width: 245px;
        padding: 16px 14px;
    }

    .testimonial-tb h5 {
        font-size: 1rem;
    }

    .faq-section {
        padding: 18px 12px;
    }

    .footer p {
        font-size: 0.76rem;
    }
}
