body {
    font-family: 'Changa', sans-serif !important;
}
h1, h2, h3, h4, h5, h6, p, div {
    font-family: 'Changa', sans-serif !important;
}
/********** Template CSS **********/
:root {
    --primary: #2E9CCA;
    --secondary: #FF0F10;
    --light: #F2F2F2;
    --dark: #1D2833;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 8px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 16px;
    color: black !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: black;/*#FFFFFF;*/
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: #2e9cca;/*ar(--primary);*/
    }
}


/*** Hero Header ***/
.hero-header {
    background:
        url(../img/bg-round.png),
        url(../img/bg-round-2.png),
        url(../img/bg-square.png),
        url(../img/bg-line.png),
        url(../img/bg-bottom-hero.png);
    background-position:
        0px 40%,
        right 0 top 0,
        left 50% top 0,
        left 50% top 50%,
        center bottom -1px;
    background-repeat: no-repeat;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 11px;
    bottom: 0;
    left: 0;
    border-top: 1px solid #5A5A5A;
    border-bottom: 1px solid #5A5A5A;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 1px;
    bottom: 5px;
    left: 0;
    background: var(--primary);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -30px;
}

.section-title.text-center::after {
    width: 120px;
    left: 50%;
    margin-left: -60px;
}


/*** Domain Search ***/
.domain {
    background: url(../img/bg-domain.png) center center no-repeat;
    background-size: contain;
}


/*** Comparison ***/
@media (min-width: 992px) {
    .comparison::after {
        position: absolute;
        content: "";
        width: 1px;
        top: 56px;
        bottom: 20px;
        left: 50%;
        background: #DDDDDD;
    }
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #2e9cca00 !important;
    border-color: var(--secondary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item .position-absolute {
    background: var(--secondary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
    color: var(--dark) !important;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.footer {
    background:
        url(../img/bg-round.png),
        url(../img/bg-round-2.png),
        url(../img/bg-square.png),
        url(../img/bg-line.png),
        url(../img/bg-bottom-footer.png);
    background-position:
        0px 112px,
        right 0 bottom 0,
        left 50% top 80px,
        left 50% bottom 0,
        top center;
    background-repeat: no-repeat;
}

.footer p {
    font-size: 15px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: right;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .3);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

#form-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.radio_form {
    width: 90%;
    max-width: 500px;
}

.radio_form #form-title {
    margin-top: 0;
    font-weight: 400;
    text-align: center;
}

.radio_form #students-number-slider {
    display: flex;
    flex-direction: row;
    align-content: stretch;
    position: relative;
    width: 100%;
    height: 50px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio_form #students-number-slider::before {
    content: " ";
    position: absolute;
    height: 2px;
    width: 100%;
    width: calc(100% * (4 / 5));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2e9cca;
}

.radio_form #students-number-slider input, form #students-number-slider label {
    box-sizing: border-box;
    flex: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.radio_form #students-number-slider label {
    display: inline-block;
    position: relative;
    width: 20%;
    height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio_form #students-number-slider label::before {
    content: attr(data-students-number);
    position: absolute;
    left: 50%;
    padding-top: 10px;
    transform: translate(-50%, 45px);
    font-size: 14px;
    letter-spacing: 0.4px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0.85;
    transition: all 0.15s ease-in-out;
}

.radio_form #students-number-slider label::after {
    content: " ";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid #2e9cca;
    background: #fff;
    border-radius: 20%;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.radio_form #students-number-slider label:hover::after {
    transform: translate(-50%, -50%) scale(1.25);
}

.radio_form #students-number-slider input {
    display: none;
}

.radio_form #students-number-slider input:checked + label::before {
    font-weight: 800;
    opacity: 1;
}

.radio_form #students-number-slider input:checked + label::after {
    border-width: 4px;border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.75);
}

.radio_form #students-number-slider input:checked ~ #students-number-pos {
    opacity: 1;
}

.radio_form #students-number-slider input:checked:nth-child(1) ~ #students-number-pos {
    left: 92.82%;
}

.radio_form #students-number-slider input:checked:nth-child(3) ~ #students-number-pos {
    left: 78.54%;
}

.radio_form #students-number-slider input:checked:nth-child(5) ~ #students-number-pos {
    left: 64.26%;
}

.radio_form #students-number-slider input:checked:nth-child(7) ~ #students-number-pos {
    left: 49.98%;
}

.radio_form #students-number-slider input:checked:nth-child(9) ~ #students-number-pos {
    left: 35.7%;
}

.radio_form #students-number-slider input:checked:nth-child(11) ~ #students-number-pos {
    left: 21.42%;
}

.radio_form #students-number-slider input:checked:nth-child(13) ~ #students-number-pos {
    left: 7.14%;
}


.radio_form #students-number-slider #students-number-pos {
    display: block;
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #2e9cca;
    border-radius: 50%;
    transition: all 0.15s ease-in-out;
    transform: translate(-50%, -50%);
    border: 2px solid #fff;
    opacity: 0;
    z-index: 2;
}

.radio_form:valid #students-number-slider input + label::before {
    transform: translate(-50%, 45px) scale(0.9);
    transition: all 0.15s linear;
}

.radio_form:valid #students-number-slider input:checked + label::before {
    transform: translate(-50%, 45px) scale(1.1);
    transition: all 0.15s linear;
}

.radio_form + button {
    display: block;
    position: relative;
    margin: 56px auto 0;
    padding: 10px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.15s ease-in-out;
    font-family: inherit;
    font-size: 24px;
    font-weight: 600;
    background: #fff;
    border: 2px solid #504793;
    border-radius: 8px;
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.radio_form + button:hover {
    background: #504793;
    color: #fff;
}

.radio_form + button:hover:active {
    transform: scale(0.9);
}

.radio_form + button:focus {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff;
    pointer-events: none;
}

.radio_form + button:focus::before {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.radio_form + button::before {
    display: inline-block;
    width: 0;
    opacity: 0;
    content: "";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    margin-right: 0;
    transform: rotate(0deg);
}

.radio_form:invalid + button {
    pointer-events: none;
    opacity: 0.25;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0deg);
        width: 24px;
        opacity: 1;
        margin-right: 12px;
    }
    to {
        transform: rotate(360deg);
        width: 24px;
        opacity: 1;
        margin-right: 12px;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
        width: 24px;
        opacity: 1;
        margin-right: 12px;
    }
    to {
        transform: rotate(360deg);
        width: 24px;
        opacity: 1;
        margin-right: 12px;
    }
}
.pricing1 {
    color: #8d97ad;
    font-weight: 300;
}

.pricing1 h1,
.pricing1 h2,
.pricing1 h3,
.pricing1 h4,
.pricing1 h5,
.pricing1 h6 {
    color: #3e4555;
}

.pricing1 h5 {
    line-height: 22px;
    font-size: 18px;
}


.pricing1 .onoffswitch {
    width: 70px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    margin: 0 auto;
}

.pricing1 .onoffswitch-label {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 20px;
}

.pricing1 .onoffswitch-inner {
    width: 200%;
    margin-left: -100%;
    -webkit-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s;
    transition: margin 0.3s ease-in 0s;
}

.pricing1 .onoffswitch-inner::before,
.pricing1 .onoffswitch-inner::after {
    display: block;
    float: right;
    width: 50%;
    height: 30px;
    padding: 0;
    line-height: 30px;
    font-size: 14px;
    color: white;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pricing1 .onoffswitch-inner::before {
    content: "";
    padding-right: 27px;
    background-color: #2e9cca;
    color: #FFFFFF;
}

.pricing1 .onoffswitch-inner::after {
    content: "";
    padding-right: 24px;
    background-color: #ff241d;
    color: #999999;
    text-align: right;
}

.pricing1 .onoffswitch-switch {
    width: 23px;
    margin: 6px;
    height: 23px;
    top: -1px;
    bottom: 0;
    right: 35px;
    border-radius: 20px;
    -webkit-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}

.pricing1 .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.pricing1 .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px;
}


.pricing1 .pricing sup {
    font-size: 18px;
    top: -20px;
}

.redBackground {
    background-color: red !important;
}

.redBorder {
    border-color: red !important;
}

/* Modern UI refresh - theme layer only */
:root {
    --primary: #0f8b8d;
    --secondary: #ef4444;
    --accent: #f59e0b;
    --ink: #122023;
    --muted: #5f6f73;
    --surface: #ffffff;
    --surface-soft: #f4f8f8;
    --line: #dbe7e7;
    --shadow-sm: 0 10px 30px rgba(17, 32, 35, .08);
    --shadow-md: 0 18px 45px rgba(17, 32, 35, .12);
    --radius: 8px;
    --bs-primary: var(--primary);
    --bs-secondary: var(--secondary);
    --bs-body-color: var(--ink);
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    font-size: 16px !important;
    line-height: 1.8;
    color: var(--ink);
    background: #f6faf9;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
div {
    letter-spacing: 0;
}

p {
    color: var(--muted);
}

a {
    color: var(--primary);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

a:hover {
    color: #0a6f70;
}

.container-xxl.bg-white.p-0 {
    max-width: 100%;
    background: #f6faf9 !important;
}

.bg-primary,
.btn-primary,
.progress-bar {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.bg-secondary,
.btn-secondary {
    background-color: var(--secondary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.border-secondary {
    border-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--surface-soft) !important;
}

.shadow {
    box-shadow: var(--shadow-sm) !important;
}

.rounded,
.rounded-circle {
    border-radius: var(--radius) !important;
}

.btn {
    min-height: 44px;
    border: 0;
    border-radius: var(--radius);
    font-weight: 700;
    letter-spacing: 0;
    white-space: normal;
    box-shadow: 0 10px 24px rgba(15, 139, 141, .16);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(15, 139, 141, .22);
}

.btn:focus,
.form-control:focus,
.form-select:focus,
.navbar-toggler:focus {
    box-shadow: 0 0 0 .2rem rgba(15, 139, 141, .18) !important;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #fff;
}

.btn.btn-primary:hover {
    background-color: #0b7476 !important;
}

.btn.btn-secondary:hover {
    background-color: #dc2626 !important;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    border-radius: var(--radius);
}

/* Navigation */
.navbar-light {
    direction: rtl;
    transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease;
}

@media (min-width: 992px) {
    .navbar-light {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .sticky-top.navbar-light {
        background: rgba(255, 255, 255, .94);
        border-bottom: 1px solid rgba(219, 231, 231, .9);
        backdrop-filter: blur(14px);
    }
}

.navbar-light .navbar-brand h1 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 1.55rem;
    line-height: 1;
}

.navbar-light .navbar-brand img {
    max-height: 52px;
    margin-left: 8px !important;
}

.navbar-light .navbar-nav {
    align-items: center;
    gap: 4px;
}

.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-link {
    margin-left: 8px;
    padding: 12px 14px;
    color: var(--ink) !important;
    border-radius: var(--radius);
    font-size: 15px;
    text-transform: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(15, 139, 141, .08);
}

.navbar .btn.text-secondary {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary) !important;
    background: rgba(15, 139, 141, .09);
    box-shadow: none;
}

.navbar .btn.text-secondary:hover {
    background: rgba(15, 139, 141, .14);
}

.navbar .btn.btn-secondary {
    padding-inline: 18px !important;
}

.navbar-toggler {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

@media (max-width: 991.98px) {
    .navbar-light,
    .sticky-top.navbar-light {
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-sm);
    }

    .navbar-light .navbar-collapse {
        margin-top: 14px;
        padding-top: 10px;
        border-top: 1px solid var(--line);
    }

    .navbar-light .navbar-nav {
        align-items: stretch;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        margin-left: 0;
        padding: 12px 10px;
    }

    .navbar .btn.text-secondary,
    .navbar .btn.btn-secondary {
        width: 100%;
        margin: 8px 0 0 !important;
    }
}

/* Hero */
.hero-header {
    position: relative;
    overflow: hidden;
    background: #eaf7f5 url(../img/bg-bottom-hero.png) center bottom -1px no-repeat !important;
    background-size: 100% auto !important;
    border-bottom: 1px solid var(--line);
}

.hero-header .container {
    position: relative;
    z-index: 1;
}

.hero-header .row {
    align-items: center;
}

.hero-header h1,
.hero-header .text-black,
.hero-header p {
    color: var(--ink) !important;
}

.hero-header h1.display-5 {
    max-width: 720px;
    margin-inline: auto;
    font-size: 2.75rem;
    line-height: 1.35;
}

.hero-header p {
    max-width: 700px;
    margin-right: 0;
    font-size: 1.02rem;
}

.hero-header h1:not(.display-5) {
    color: #0b7476 !important;
}

.hero-header img {
    width: 100%;
    max-height: 570px;
    object-fit: contain;
    filter: drop-shadow(0 24px 38px rgba(17, 32, 35, .18));
}

.hero-header .btn {
    margin-top: 10px;
    padding: 14px 28px !important;
}

/* Sections and cards */
.container-xxl.py-5:not(.hero-header) {
    background: #fff;
}

.container-xxl.py-5:nth-of-type(odd):not(.hero-header) {
    background: #f6faf9;
}

.section-title {
    color: var(--ink);
}

.section-title::before,
.section-title::after {
    left: auto;
    right: 0;
    border-color: var(--line);
}

.section-title::after {
    background: var(--accent);
}

.section-title.text-center::before {
    left: 50%;
    right: auto;
}

.section-title.text-center::after {
    left: 50%;
    right: auto;
    background: var(--primary);
}

.section-title h1,
.section-title h2,
.section-title h3 {
    color: var(--ink);
    line-height: 1.45;
}

.section-title p {
    font-size: 1rem;
}

.counter-item-icon {
    width: 76px;
    height: 76px;
    border-radius: var(--radius) !important;
    color: #fff;
    background: var(--primary);
    animation: none;
    box-shadow: 0 14px 28px rgba(15, 139, 141, .22);
}

.counter-item-icon i {
    margin-bottom: 0 !important;
}

.row .bg-light.rounded.text-center.p-4 {
    height: 100%;
    padding: 28px 20px !important;
    background: var(--surface) !important;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.row .bg-light.rounded.text-center.p-4:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 139, 141, .3);
    box-shadow: var(--shadow-md);
}

.row .bg-light.rounded.text-center.p-4 h2 {
    margin-top: 18px;
    color: var(--ink);
}

#WhyUs .comparison::after {
    background: var(--line);
}

#WhyUs .comparison [class*="col-sm-"] {
    padding: 20px !important;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(17, 32, 35, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

#WhyUs .comparison [class*="col-sm-"]:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 139, 141, .28);
    box-shadow: var(--shadow-sm);
}

#WhyUs .comparison i.fa {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px !important;
    border-radius: var(--radius);
    color: var(--primary) !important;
    background: rgba(15, 139, 141, .1);
    font-size: 1.45rem;
}

ul.funcs {
    margin: 12px 0 0;
    padding-right: 0;
    list-style: none;
}

ul.funcs li {
    position: relative;
    margin-bottom: 8px;
    padding-right: 22px;
    color: var(--muted);
    font-size: .95rem;
}

ul.funcs li::before {
    position: absolute;
    right: 0;
    top: .75em;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
    background: var(--accent);
}

/* Pricing */
#Plans {
    background: #f6faf9 !important;
}

#Plans .row.gy-5.gx-4 > [class*="col-"] > .position-relative {
    height: 100%;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line) !important;
    border-top: 5px solid var(--primary) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

#Plans .row.gy-5.gx-4 > [class*="col-"] > .position-relative:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
}

#Plans .text-center.border-bottom {
    border-color: var(--line) !important;
}

#Plans h4,
#Plans h1 {
    color: var(--ink);
}

#Plans .p-4 p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
    color: var(--ink);
    border-color: #edf2f2 !important;
    font-size: .95rem;
}

#Plans .p-4 p i {
    margin-right: 0 !important;
    margin-left: 8px;
    padding-top: 5px;
}

.redBackground {
    background-color: var(--secondary) !important;
}

.redBorder {
    border-color: var(--secondary) !important;
}

#form-wrapper,
.pricing1 {
    color: var(--muted);
}

.radio_form {
    max-width: 680px;
}

.radio_form #form-title {
    color: var(--ink);
    font-weight: 700;
}

.radio_form #students-number-slider,
.radio_form #debt-amount-slider {
    margin: 8px auto 30px;
}

.radio_form #students-number-slider::before,
.radio_form #debt-amount-slider::before {
    height: 4px;
    border-radius: 999px;
    background: #d5e4e4;
}

.radio_form #students-number-slider label::before,
.radio_form #debt-amount-slider label::before {
    color: var(--muted);
    font-weight: 600;
}

.radio_form #students-number-slider label::after,
.radio_form #debt-amount-slider label::after {
    width: 28px;
    height: 28px;
    border: 2px solid #b9cccc;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #fff;
}

.radio_form #students-number-slider input:checked + label::after,
.radio_form #debt-amount-slider input:checked + label::after {
    border-color: var(--primary);
    background: var(--primary);
}

.radio_form #students-number-slider #students-number-pos,
.radio_form #debt-amount-slider #debt-amount-pos {
    width: 10px;
    height: 10px;
    background: #fff;
    border: 0;
}

.pricing1 h1,
.pricing1 h2,
.pricing1 h3,
.pricing1 h4,
.pricing1 h5,
.pricing1 h6 {
    color: var(--ink);
}

.pricing1 .onoffswitch {
    width: 78px;
}

.pricing1 .onoffswitch-label {
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(17, 32, 35, .08);
}

.pricing1 .onoffswitch-inner::before,
.pricing1 .onoffswitch-inner::after {
    height: 34px;
    line-height: 34px;
}

.pricing1 .onoffswitch-inner::before {
    background-color: var(--primary);
}

.pricing1 .onoffswitch-inner::after {
    background-color: var(--secondary);
}

.pricing1 .onoffswitch-switch {
    width: 26px;
    height: 26px;
    margin: 5px 7px;
    right: 38px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(17, 32, 35, .2);
}

/* Forms */
.form-floating > .form-control,
.form-control,
.form-select,
select.form-control,
textarea.form-control {
    min-height: 54px;
    color: var(--ink);
    background-color: #fff !important;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: none;
}

textarea.form-control {
    min-height: 140px;
}

.form-floating > label {
    color: var(--muted);
}

.form-control::placeholder {
    color: #8aa0a3;
}

#frmContact {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* Gallery, media, and misc */
#links img,
.portfolio-item img,
.team-item img,
.testimonial-item img {
    border-radius: var(--radius);
}

.testimonial-carousel .owl-item .testimonial-item {
    border: 1px solid var(--line) !important;
    border-radius: var(--radius);
    background: #fff !important;
    box-shadow: var(--shadow-sm);
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-dot {
    height: 10px;
    width: 10px;
    border-radius: 999px;
    background: #c8d8d8;
}

.testimonial-carousel .owl-dot.active {
    width: 28px;
    background: var(--primary);
}

/* Footer */
.footer {
    background: #173c38 url(../img/bg-bottom-footer.png) top center no-repeat !important;
    background-size: 100% auto !important;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, .82);
}

.footer h5 {
    color: #fff !important;
}

.footer .btn.btn-link {
    color: rgba(255, 255, 255, .82);
    letter-spacing: 0;
}

.footer .btn.btn-link:hover {
    color: #fff;
    letter-spacing: 0;
    transform: translateX(-2px);
}

.footer .btn.btn-social {
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .08);
}

.footer .btn.btn-social:hover {
    color: #173c38;
    background: #fff;
}

.footer .copyright {
    border-top-color: rgba(255, 255, 255, .18);
}

.back-to-top {
    right: auto;
    left: 28px;
    bottom: 28px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px !important;
    }

    .hero-header {
        padding-top: 90px !important;
        margin-bottom: 24px !important;
    }

    .hero-header .container {
        margin-top: 0 !important;
        padding-top: 32px !important;
        padding-bottom: 38px !important;
    }

    .hero-header h1.display-5 {
        font-size: 2rem;
        text-align: right !important;
    }

    .hero-header p {
        font-size: .98rem;
    }

    .hero-header img {
        max-height: 360px;
        margin-top: 18px;
    }

    .section-title h1 {
        font-size: 1.65rem !important;
    }

    #WhyUs .comparison [class*="col-sm-"] {
        padding: 18px !important;
    }

    #Plans .row.gy-5.gx-4 > [class*="col-"] > .position-relative {
        margin-bottom: 8px;
    }

    #frmContact {
        padding: 18px;
    }

    .radio_form {
        width: 100%;
    }

    .radio_form #students-number-slider label::before,
    .radio_form #debt-amount-slider label::before {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Complete layout/theme redesign */
:root {
    --primary: #006d77;
    --secondary: #e63946;
    --accent: #ffb703;
    --sky: #118ab2;
    --green: #2a9d8f;
    --ink: #071923;
    --ink-soft: #12303a;
    --muted: #64727a;
    --paper: #ffffff;
    --paper-soft: #f5f8fb;
    --paper-tint: #edf7f5;
    --line: #d8e3e7;
    --shadow-sm: 0 12px 34px rgba(7, 25, 35, .08);
    --shadow-md: 0 22px 60px rgba(7, 25, 35, .14);
    --shadow-lg: 0 34px 90px rgba(7, 25, 35, .2);
    --radius: 8px;
    --bs-primary: var(--primary);
    --bs-secondary: var(--secondary);
}

body {
    color: var(--ink);
    background: var(--paper-soft);
}

p {
    color: var(--muted);
}

.container-xxl.bg-white.p-0 {
    overflow: hidden;
    background: var(--paper-soft) !important;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    position: relative;
}

/* Header */
.navbar-light {
    min-height: 86px;
}

@media (min-width: 992px) {
    .navbar-light:not(.sticky-top) {
        background: transparent;
    }

    .navbar-light:not(.sticky-top) .navbar-brand h1,
    .navbar-light:not(.sticky-top) .navbar-nav .nav-link {
        color: #fff !important;
    }

    .navbar-light:not(.sticky-top) .navbar-nav .nav-link:hover,
    .navbar-light:not(.sticky-top) .navbar-nav .nav-link.active {
        color: #fff !important;
        background: rgba(255, 255, 255, .14);
    }

    .navbar-light:not(.sticky-top) .btn.text-secondary {
        color: #fff !important;
        background: rgba(255, 255, 255, .14);
    }

    .sticky-top.navbar-light {
        background: rgba(255, 255, 255, .92);
        box-shadow: 0 14px 38px rgba(7, 25, 35, .1) !important;
    }
}

.navbar-light .navbar-brand h1 {
    font-size: clamp(1.25rem, 1.9vw, 1.7rem);
}

.navbar-light .navbar-brand img {
    max-height: 46px;
    padding: 4px;
    background: #fff;
    border-radius: var(--radius);
}

.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-link {
    font-weight: 700;
}

.navbar .btn.btn-secondary {
    background: var(--accent) !important;
    color: var(--ink) !important;
    box-shadow: 0 14px 34px rgba(255, 183, 3, .25);
}

.navbar .btn.btn-secondary:hover {
    background: #f59f00 !important;
    color: var(--ink) !important;
}

/* Homepage hero */
.hero-header:not(.page-hero) {
    min-height: 86vh;
    margin-bottom: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ink) !important;
    isolation: isolate;
}

.hero-header:not(.page-hero)::before {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(7, 25, 35, .72);
    z-index: 1;
}

.hero-header:not(.page-hero)::after {
    position: absolute;
    inset: auto 0 0;
    height: 26%;
    content: "";
    background: var(--paper);
    clip-path: polygon(0 64%, 100% 26%, 100% 100%, 0 100%);
    z-index: 1;
}

.hero-header:not(.page-hero) .container {
    z-index: 2;
    margin-top: 0 !important;
    padding-top: 136px !important;
    padding-bottom: 96px !important;
}

.hero-header:not(.page-hero) .row {
    min-height: 560px;
    align-items: center;
}

.hero-header:not(.page-hero) .col-lg-6:last-child {
    position: absolute;
    inset: 0 0 0 auto;
    width: 100%;
    max-width: 100%;
    z-index: -1;
}

.hero-header:not(.page-hero) .col-lg-6:last-child img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: left center;
    opacity: .62;
    filter: saturate(1.08) contrast(1.02);
}

.hero-header:not(.page-hero) .col-lg-6:first-child {
    width: min(100%, 720px);
    max-width: 720px;
    flex: 0 0 auto;
    padding-top: 0 !important;
    text-align: right !important;
}

.hero-header:not(.page-hero) h1.display-5 {
    max-width: 760px;
    margin: 0 0 22px;
    color: #fff !important;
    font-size: clamp(2.15rem, 5vw, 4.6rem);
    line-height: 1.15;
    text-align: right !important;
}

.hero-header:not(.page-hero) p {
    max-width: 660px;
    color: rgba(255, 255, 255, .82) !important;
    font-size: clamp(.98rem, 1.4vw, 1.14rem);
    line-height: 1.95;
}

.hero-header:not(.page-hero) h1:not(.display-5) {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    color: var(--accent) !important;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero-header:not(.page-hero) h1:not(.display-5) small {
    color: rgba(255, 255, 255, .76);
}

.hero-header:not(.page-hero) .btn-secondary {
    min-width: 230px;
    margin-top: 18px;
    background: var(--accent) !important;
    color: var(--ink) !important;
    box-shadow: 0 20px 46px rgba(255, 183, 3, .28);
}

/* Compact subpage hero */
.hero-header.page-hero {
    min-height: 230px;
    margin-bottom: 0 !important;
    padding: 0 !important;
    background: var(--ink) !important;
}

.hero-header.page-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        url(../img/bg-domain.png) left center / 520px auto no-repeat,
        rgba(7, 25, 35, .88);
    opacity: 1;
}

.hero-header.page-hero .container {
    margin: 0 !important;
    padding: 0 !important;
}

/* Section rhythm */
.container-xxl.py-5:not(.hero-header) {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
    background: var(--paper) !important;
}

.container-xxl.py-5:not(.hero-header) + .container-xxl.py-5:not(.hero-header) {
    border-top: 1px solid var(--line);
}

.section-title {
    max-width: 840px !important;
}

.section-title h1,
.section-title h2,
.section-title h3,
.position-relative.text-center.mx-auto h1 {
    color: var(--ink);
    font-size: clamp(1.85rem, 3vw, 3rem);
    line-height: 1.28;
}

.section-title p,
.position-relative.text-center.mx-auto p {
    font-size: 1.04rem;
    line-height: 1.95;
}

.section-title::before {
    width: 42px;
    height: 4px;
    bottom: -2px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
}

.section-title::after {
    width: 112px;
    height: 4px;
    bottom: -2px;
    border-radius: 999px;
    background: var(--primary);
}

/* About */
.container-xxl.py-5 .row.g-5.align-items-center {
    align-items: center !important;
}

.container-xxl.py-5 .row.g-5.align-items-center .col-lg-7 {
    padding: 34px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.container-xxl.py-5 .row.g-5.align-items-center .col-lg-5 {
    text-align: center;
}

img[src="img/about.png"] {
    padding: 20px;
    background: var(--paper-tint);
    border: 1px solid rgba(0, 109, 119, .14);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.row .bg-light.rounded.text-center.p-4 {
    border: 0;
    background: #f8fbfc !important;
    box-shadow: none;
}

.row .bg-light.rounded.text-center.p-4 h2 {
    color: var(--primary);
}

.counter-item-icon {
    background: var(--ink);
}

.row.g-3 .col-sm-4:nth-child(1) .counter-item-icon {
    background: var(--primary);
}

.row.g-3 .col-sm-4:nth-child(2) .counter-item-icon {
    background: var(--sky);
}

.row.g-3 .col-sm-4:nth-child(3) .counter-item-icon {
    background: var(--secondary);
}

/* Feature matrix */
#WhyUs {
    background: var(--paper-soft) !important;
}

#WhyUs .comparison {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

#WhyUs .comparison::after {
    display: none;
}

#WhyUs .comparison > .col-lg-6 {
    width: auto;
    max-width: none;
    padding: 0 !important;
}

#WhyUs .comparison > .col-lg-6 > .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px !important;
    margin: 0;
}

#WhyUs .comparison > .col-lg-6 > .row > [class*="col-"] {
    width: auto;
    max-width: none;
    margin: 0;
}

#WhyUs .comparison > .col-lg-6:first-child > .row > .col-sm-12 {
    grid-column: 1 / -1;
}

#WhyUs .comparison [class*="col-sm-"] {
    position: relative;
    min-height: 100%;
    padding: 24px !important;
    overflow: hidden;
    border: 1px solid rgba(216, 227, 231, .9);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

#WhyUs .comparison [class*="col-sm-"]::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    content: "";
    background: var(--primary);
}

#WhyUs .comparison [class*="col-sm-"]:nth-child(3n + 2)::before {
    background: var(--sky);
}

#WhyUs .comparison [class*="col-sm-"]:nth-child(3n + 3)::before {
    background: var(--accent);
}

#WhyUs .comparison h5 {
    color: var(--ink);
    font-size: 1.12rem;
}

#WhyUs .comparison i.fa {
    background: var(--paper-tint);
}

ul.funcs li::before {
    background: var(--green);
}

/* Pricing and services */
#Plans {
    background: #eef5f7 !important;
}

#Plans .pricing1,
#form-wrapper {
    padding: 0;
}

.switcher-box {
    gap: 10px;
    padding: 12px 16px;
    display: inline-flex !important;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.switcher-box span:first-child {
    color: var(--primary) !important;
}

.switcher-box span:last-child {
    color: var(--secondary) !important;
}

#Plans .row.gy-5.gx-4 {
    align-items: stretch;
}

#Plans .row.gy-5.gx-4 > [class*="col-"] > .position-relative {
    border: 0 !important;
    background: var(--paper);
    box-shadow: var(--shadow-md) !important;
}

#Plans .row.gy-5.gx-4 > [class*="col-"]:nth-child(2) > .position-relative {
    background: var(--ink);
    color: #fff;
    transform: translateY(-14px);
}

#Plans .row.gy-5.gx-4 > [class*="col-"]:nth-child(2) h1,
#Plans .row.gy-5.gx-4 > [class*="col-"]:nth-child(2) h4,
#Plans .row.gy-5.gx-4 > [class*="col-"]:nth-child(2) p,
#Plans .row.gy-5.gx-4 > [class*="col-"]:nth-child(2) small {
    color: #fff !important;
}

#Plans .row.gy-5.gx-4 > [class*="col-"]:nth-child(2) .btn-primary {
    background: var(--accent) !important;
    color: var(--ink) !important;
}

#Plans .row.gy-5.gx-4 > [class*="col-"] > .position-relative > .position-absolute {
    width: 52px !important;
    height: 52px !important;
    margin-top: -5px !important;
    background: var(--accent) !important;
    color: var(--ink) !important;
    box-shadow: 0 16px 32px rgba(255, 183, 3, .28);
}

#Plans .row.gy-5.gx-4 > [class*="col-"] > .position-relative > .position-absolute i {
    color: var(--ink) !important;
}

#Plans .text-center.border-bottom {
    border-color: rgba(216, 227, 231, .75) !important;
}

#Plans h1 small:first-child {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 800;
}

#Plans .p-4 p {
    min-height: 42px;
    padding-bottom: 12px !important;
    border-color: rgba(216, 227, 231, .6) !important;
}

#Plans .p-4 p .fa-check {
    color: var(--green) !important;
}

#Plans .p-4 p .fa-ban {
    color: #c3ccd1 !important;
}

.mx-auto.col-lg-8.col-md-8 > .position-relative {
    overflow: hidden;
    border: 0 !important;
    background: var(--paper);
    box-shadow: var(--shadow-md) !important;
}

.mx-auto.col-lg-8.col-md-8 > .position-relative > .text-center {
    background: var(--ink);
}

.mx-auto.col-lg-8.col-md-8 > .position-relative > .text-center h4 {
    color: #fff;
}

.mx-auto.col-lg-8.col-md-8 .row.py-3 {
    margin: 0 18px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.mx-auto.col-lg-8.col-md-8 .row.py-3:last-child {
    border-bottom: 0;
}

.mx-auto.col-lg-8.col-md-8 .row.py-3 p {
    margin: 0;
    border-bottom: 0 !important;
    color: var(--ink);
}

.mx-auto.col-lg-8.col-md-8 .row.py-3 h1 {
    margin: 0;
    color: var(--primary);
    text-align: left;
}

/* Gallery and client logos */
#Portfolio {
    background: var(--paper) !important;
}

#links.links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 12px;
    text-align: initial !important;
}

#links.links a {
    display: block;
    padding: 0 !important;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f8fbfc;
    box-shadow: 0 8px 22px rgba(7, 25, 35, .07);
}

#links.links img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 0;
    transition: transform .25s ease;
}

#links.links a:hover img {
    transform: scale(1.04);
}

.testimonial-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonial-carousel .testimonial-item {
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line) !important;
    border-top: 0 !important;
    background: #fff !important;
}

.testimonial-carousel .testimonial-item img {
    max-width: 160px;
    max-height: 160px;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    filter: saturate(.92);
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #fff !important;
    border-color: var(--primary) !important;
}

/* Contact/demo forms */
#frmContact {
    padding: clamp(20px, 3vw, 36px);
    border: 0;
    background: var(--paper);
    box-shadow: var(--shadow-md);
}

.form-floating > .form-control,
.form-control,
.form-select,
select.form-control,
textarea.form-control {
    border: 1px solid var(--line);
    background: #f9fbfc !important;
}

.form-floating > .form-control:focus,
.form-control:focus,
.form-select:focus,
select.form-control:focus,
textarea.form-control:focus {
    border-color: var(--primary);
    background: #fff !important;
}

.col-lg-5.col-md-6.wow.fadeInUp {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--ink);
    box-shadow: var(--shadow-md);
}

.col-lg-5.col-md-6.wow.fadeInUp h3,
.col-lg-5.col-md-6.wow.fadeInUp p,
.col-lg-5.col-md-6.wow.fadeInUp i {
    color: #fff !important;
}

/* Footer */
.footer {
    margin-top: 0 !important;
    background: var(--ink) !important;
}

.footer::before {
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    content: "";
    background: linear-gradient(90deg, var(--primary), var(--sky), var(--accent), var(--secondary));
}

.footer .container.py-5 {
    padding-top: 72px !important;
}

.footer .btn.btn-link::before {
    color: var(--accent);
}

@media (max-width: 1199.98px) {
    #WhyUs .comparison {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .hero-header:not(.page-hero) {
        min-height: auto;
    }

    .hero-header:not(.page-hero) .container {
        padding-top: 118px !important;
        padding-bottom: 70px !important;
    }

    .hero-header:not(.page-hero) .row {
        min-height: 0;
    }

    .hero-header:not(.page-hero) .col-lg-6:last-child {
        position: relative;
        inset: auto;
        z-index: 0;
        margin-top: 24px;
    }

    .hero-header:not(.page-hero) .col-lg-6:last-child img {
        height: auto;
        opacity: .9;
    }

    .hero-header:not(.page-hero)::before {
        background: rgba(7, 25, 35, .86);
    }

    .hero-header.page-hero {
        min-height: 170px;
    }

    .container-xxl.py-5:not(.hero-header) {
        padding-top: 72px !important;
        padding-bottom: 72px !important;
    }

    #Plans .row.gy-5.gx-4 > [class*="col-"]:nth-child(2) > .position-relative {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .navbar-light {
        min-height: 74px;
    }

    .hero-header:not(.page-hero) .container {
        padding-top: 104px !important;
        padding-bottom: 54px !important;
    }

    .hero-header:not(.page-hero) p {
        line-height: 1.75;
    }

    .container-xxl.py-5:not(.hero-header) {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    .container-xxl.py-5 .row.g-5.align-items-center .col-lg-7 {
        padding: 22px;
    }

    #WhyUs .comparison > .col-lg-6 > .row {
        grid-template-columns: 1fr;
    }

    .switcher-box {
        width: 100%;
        flex-wrap: wrap;
    }

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

    .mx-auto.col-lg-8.col-md-8 .row.py-3 {
        margin: 0 10px;
    }

    .mx-auto.col-lg-8.col-md-8 .row.py-3 h1 {
        text-align: right;
        font-size: 1.35rem;
    }
}

/* Alignment, typography, and cooler color refinement */
:root {
    --primary: #087f8c;
    --secondary: #e11d48;
    --accent: #22c55e;
    --sky: #2563eb;
    --green: #14b8a6;
    --ink: #0b1720;
    --ink-soft: #1f3340;
    --muted: #5f6f7a;
    --paper: #ffffff;
    --paper-soft: #f7fafc;
    --paper-tint: #eef8f8;
    --line: #dce7ee;
}

body {
    font-size: 15.5px !important;
    line-height: 1.72;
    background: var(--paper-soft);
}

p,
li {
    font-size: .95rem;
    line-height: 1.72;
}

.btn {
    min-height: 42px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    font-size: .95rem;
}

.navbar-light .navbar-brand h1 {
    font-size: 1.35rem;
}

.navbar-light .navbar-brand img {
    max-height: 42px;
}

.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 12px;
    font-size: .92rem;
}

.navbar .btn.btn-secondary {
    background: var(--accent) !important;
    color: #07211b !important;
    box-shadow: 0 12px 28px rgba(34, 197, 94, .22);
}

.navbar .btn.btn-secondary:hover {
    background: #16a34a !important;
}

.hero-header:not(.page-hero) {
    min-height: 78vh;
    background: #071923 !important;
}

.hero-header:not(.page-hero)::before {
    background: linear-gradient(90deg, rgba(7, 25, 35, .94) 0%, rgba(8, 127, 140, .78) 48%, rgba(37, 99, 235, .38) 100%);
}

.hero-header:not(.page-hero) .container {
    padding-top: 124px !important;
    padding-bottom: 82px !important;
}

.hero-header:not(.page-hero) .row {
    min-height: 500px;
}

.hero-header:not(.page-hero) h1.display-5 {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.22;
}

.hero-header:not(.page-hero) p {
    max-width: 620px;
    font-size: .98rem;
    line-height: 1.82;
}

.hero-header:not(.page-hero) h1:not(.display-5) {
    font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.hero-header:not(.page-hero) .btn-secondary {
    background: var(--accent) !important;
    color: #07211b !important;
    box-shadow: 0 16px 38px rgba(34, 197, 94, .24);
}

.hero-header:not(.page-hero) .col-lg-6:last-child img {
    opacity: .54;
}

.container-xxl.py-5:not(.hero-header) {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
}

.section-title h1,
.section-title h2,
.section-title h3,
.position-relative.text-center.mx-auto h1 {
    font-size: clamp(1.55rem, 2.35vw, 2.35rem);
    line-height: 1.34;
}

.section-title p,
.position-relative.text-center.mx-auto p {
    font-size: .96rem;
    line-height: 1.78;
}

.section-title::before,
.section-title::after {
    height: 3px;
}

.counter-item-icon {
    width: 66px;
    height: 66px;
}

.counter-item-icon i {
    font-size: 1.75rem !important;
}

.row .bg-light.rounded.text-center.p-4 {
    min-height: 178px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.row .bg-light.rounded.text-center.p-4 h2 {
    font-size: 1.8rem;
}

/* One aligned feature grid instead of two independent columns */
#WhyUs .comparison {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

#WhyUs .comparison > .col-lg-6,
#WhyUs .comparison > .col-lg-6 > .row {
    display: contents;
}

#WhyUs .comparison > .col-lg-6:first-child > .row > .col-sm-12 {
    grid-column: span 2;
}

#WhyUs .comparison [class*="col-sm-"] {
    width: auto;
    max-width: none;
    min-width: 0;
    min-height: 218px;
    padding: 20px !important;
    display: flex;
    flex-direction: column;
}

#WhyUs .comparison [class*="col-sm-"] i.fa {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
}

#WhyUs .comparison h5 {
    min-height: 42px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.35;
}

ul.funcs li {
    margin-bottom: 6px;
    font-size: .88rem;
    line-height: 1.55;
}

/* Align pricing cards and reduce price scale */
#Plans .row.gy-5.gx-4 {
    align-items: stretch;
}

#Plans .row.gy-5.gx-4 > [class*="col-"] {
    display: flex;
}

#Plans .row.gy-5.gx-4 > [class*="col-"] > .position-relative {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

#Plans .row.gy-5.gx-4 > [class*="col-"]:nth-child(2) > .position-relative {
    transform: none;
}

#Plans .row.gy-5.gx-4 > [class*="col-"] > .position-relative > .p-4:last-child {
    flex: 1;
}

#Plans .text-center.border-bottom.p-0.pt-4 {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#Plans .text-center.border-bottom.p-4 {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#Plans h1 small:first-child {
    font-size: clamp(1.9rem, 3vw, 2.55rem);
}

#Plans .text-center.border-bottom.p-4 h4 {
    font-size: 1rem;
    line-height: 1.55;
}

#Plans .p-4 p {
    min-height: 38px;
    font-size: .88rem;
    line-height: 1.55;
}

.radio_form {
    max-width: 620px;
}

.radio_form #students-number-slider label::before,
.radio_form #debt-amount-slider label::before {
    font-size: .78rem;
}

.switcher-box {
    font-size: .9rem;
}

.mx-auto.col-lg-8.col-md-8 > .position-relative {
    max-width: 920px;
    margin: 0 auto;
}

.mx-auto.col-lg-8.col-md-8 .row.py-3 h1 {
    font-size: 1.45rem;
}

#links.links {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.testimonial-carousel .testimonial-item {
    height: 190px;
}

.testimonial-carousel .testimonial-item img {
    max-width: 138px;
    max-height: 138px;
}

#frmContact {
    max-width: 100%;
}

.form-floating > .form-control,
.form-control,
.form-select,
select.form-control,
textarea.form-control {
    min-height: 50px;
    font-size: .94rem;
}

.form-floating > label {
    font-size: .9rem;
}

@media (max-width: 1199.98px) {
    #WhyUs .comparison {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .hero-header:not(.page-hero) {
        min-height: auto;
    }

    .hero-header:not(.page-hero) .container {
        padding-top: 104px !important;
        padding-bottom: 58px !important;
    }

    .hero-header:not(.page-hero) .row {
        min-height: 0;
    }

    .container-xxl.py-5:not(.hero-header) {
        padding-top: 62px !important;
        padding-bottom: 62px !important;
    }

    #WhyUs .comparison > .col-lg-6:first-child > .row > .col-sm-12 {
        grid-column: span 2;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px !important;
    }

    p,
    li {
        font-size: .9rem;
    }

    .hero-header:not(.page-hero) h1.display-5 {
        font-size: clamp(1.65rem, 8vw, 2.2rem);
    }

    .hero-header:not(.page-hero) p {
        font-size: .9rem;
    }

    .container-xxl.py-5:not(.hero-header) {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .section-title h1,
    .section-title h2,
    .section-title h3,
    .position-relative.text-center.mx-auto h1 {
        font-size: 1.45rem;
    }

    #WhyUs .comparison {
        grid-template-columns: 1fr;
    }

    #WhyUs .comparison > .col-lg-6:first-child > .row > .col-sm-12 {
        grid-column: auto;
    }

    #WhyUs .comparison [class*="col-sm-"] {
        min-height: 0;
    }

    #WhyUs .comparison h5 {
        min-height: 0;
    }

    #Plans .text-center.border-bottom.p-4 {
        min-height: 158px;
    }

    #Plans h1 small:first-child {
        font-size: 1.9rem;
    }

    #links.links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}
