@import"https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap";
:root {
    --primary-color: #4FA0CB;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #4FA0CB;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529
}

html {
    overflow-x: hidden
}

* {
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden
}

.promo-bar {
    background: linear-gradient(135deg, #4fa0cb, #3a8bb0) !important;
    font-size: .9rem
}

.navbar {
    transition: all .3s ease;
    padding: 1rem 0
}

img {
    object-fit: cover;
    object-view-box: inset(0%)
}

img:hover {
    object-fit: cover;
    object-view-box: inset(2%);
    transition: all .3s ease-in-out
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700
}

.nav-link {
    font-weight: 500;
    margin: 0 .5rem;
    transition: color .3s ease
}

.nav-link:hover {
    color: var(--primary-color) !important
}

.hero-section {
    height: 100vh;
    position: relative
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative
}

.hero-slide:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4fa0cbcc, #3a8bb099);
    z-index: 1
}

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

.hero-buttons .btn {
    padding: .75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all .3s ease
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #00000026
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: #fff3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all .3s ease
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff80;
    opacity: 1;
    transition: all .3s ease
}

.feature-card {
    transition: all .3s ease;
    border: 1px solid rgba(0, 0, 0, .05)
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px #0000001a !important
}

.feature-icon {
    flex-shrink: 0
}
a {
  text-decoration: none !important;
}
.feature-content h5 {
    color: var(--dark-color);
    margin-bottom: .5rem
}

.footer-section {
    background: var(--light-color);
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.social-links a {
    transition: all .3s ease;
    display: inline-block
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px)
}

@media(max-width:768px) {
    .hero-section,
    .hero-slide {
        height: 70vh
    }
    .display-4 {
        font-size: 2rem
    }
    .hero-buttons .btn {
        padding: .6rem 1.5rem;
        margin-bottom: .5rem
    }
    .feature-card {
        margin-bottom: 1rem
    }
}

@media(max-width:576px) {
    .promo-bar {
        font-size: .8rem;
        padding: .5rem 0
    }
    .navbar-brand {
        font-size: 1.2rem
    }
    .display-4 {
        font-size: 1.8rem
    }
    .lead {
        font-size: 1rem
    }
}

html {
    scroll-behavior: smooth
}

.scroll-animate {
    opacity: 0;
    transition: all .8s ease
}

.scroll-animate.visible {
    opacity: 1
}

.fade-in-up,
.fade-in-top {
    opacity: 0;
    transform: translateY(100px);
    transition: all .8s ease
}

.fade-in-up.visible,
.fade-in-top.visible {
    opacity: 1;
    transform: translateY(0)
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-50px);
    transition: all .8s ease
}

.fade-in-down.visible {
    opacity: 1;
    transform: translateY(0)
}

.fade-in-left {
    opacity: 0;
    transform: translate(-50px);
    transition: all .8s ease
}

.fade-in-left.visible {
    opacity: 1;
    transform: translate(0)
}

.fade-in-right {
    opacity: 0;
    transform: translate(50px);
    transition: all .8s ease
}

.fade-in-right.visible {
    opacity: 1;
    transform: translate(0)
}

.scale-in {
    opacity: 0;
    transform: scale(.8);
    transition: all .8s ease
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1)
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #057610;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
    line-height: 1.2;
    z-index: 9999;
    box-shadow: 0 4px 10px #0003
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px #25d36666
}

.whatsapp-btn i {
    font-size: 20px
}

@media screen and (max-width:576px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 14px
    }
}

.brand-card {
    background: linear-gradient(to top, #00d5ff21 3%, #fff 20% 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(79, 160, 203, .1);
    position: relative
}

.brand-card:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff0, #3396d3, #fff0);
    border-radius: 16px;
    width: 95%;
    margin: auto
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    transition: box-shadow .3s ease
}

.fixed-header.header-scrolled {
    box-shadow: 0 2px 10px #0000001a
}

.promo-bar {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
    text-align: center
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500 !important;
    gap: 8px
}

.promo-content i {
    font-size: 16px
}

.main-navbar {
    background: #fff;
    padding: 4px 0;
    border-bottom: 1px solid #e9ecef
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.navbar-brand {
    text-decoration: none;
    display: flex;
    align-items: center
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px
}

.logo-icon {
    width: 80px;
    height: 80px
}

.search-container {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
    height: 48px
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    overflow: hidden;
    transition: all .3s ease
}

.search-input-wrapper:focus-within {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px #4a90e21a
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 20px;
    font-size: 14px;
    color: #333;
    outline: none
}

.search-input:focus {
    outline: none !important
}

.search-input::placeholder {
    color: #6c757d
}

.search-btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    cursor: pointer;
    transition: background-color .3s ease;
    border-radius: 50px
}

.search-btn:hover {
    background: #fff;
    border-radius: 50px
}

.search-btn i {
    font-size: 14px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 14px;
    padding: 8px 0;
    position: relative;
    transition: color .3s ease
}

.nav-link:focus {
    outline: none !important
}

.nav-link:hover,
.nav-link.active {
    color: #4a90e2
}

.nav-link.active:after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    height: 2px
}

.nav-dropdown {
    position: relative
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform .3s ease
}

.nav-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg)
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 20px #0000001a;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .3s ease;
    z-index: 1000;
    display: block !important
}

.nav-dropdown.active .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color .3s ease
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #4a90e2
}

.language-selector {
    margin-left: 20px
}

.language-dropdown {
    position: relative
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f4f4f4;
    border: 1px solid #e9ecef;
    border-bottom: 1px solid #0ab1ff71;
    border-radius: 20px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all .3s ease
}

.language-btn:hover {
    border-color: #4a90e2;
    background: #f8f9fa
}

.flag-icon {
    width: 20px;
    height: 20px;
    border-radius: 20px
}

.language-btn i {
    font-size: 10px;
    transition: transform .3s ease
}

.language-dropdown.active .language-btn i {
    transform: rotate(180deg)
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 20px #0000001a;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .3s ease;
    z-index: 1000
}

.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.language-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color .3s ease
}

.language-item:hover {
    background: #f8f9fa;
    color: #4a90e2
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all .3s ease
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px)
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px)
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 4px 20px #0000001a;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible
}

.mobile-search {
    margin-bottom: 20px
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid #f8f9fa;
    transition: color .3s ease
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #4a90e2
}

.mobile-nav-dropdown {
    border-bottom: 1px solid #f8f9fa
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background: #f8f9fa;
    margin: 0 -20px
}

.mobile-nav-dropdown.active .mobile-dropdown-menu {
    max-height: 200px
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 40px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color .3s ease
}

.mobile-dropdown-item:hover {
    color: #4a90e2
}

.mobile-language-selector {
    padding-top: 20px;
    border-top: 1px solid #f8f9fa
}

.mobile-language-selector .language-menu {
    right: auto;
    left: 0;
    width: auto;
    min-width: 100%
}

.dropdown-toggle:after {
    display: none !important
}

body {
    padding-top: 120px
}

body.mobile-menu-open {
    overflow: hidden
}

@media(max-width:992px) {
    .nav-links,
    .language-selector {
        display: none
    }
    .mobile-menu-toggle {
        display: flex
    }
    .mobile-menu {
        display: block
    }
    .search-container {
        flex: 1;
        max-width: none;
        margin: 0 15px;
        min-width: 150px
    }
}

@media(max-width:768px) {
    .promo-bar {
        font-size: 12px;
        padding: 6px 0
    }
    .promo-content {
        flex-direction: column;
        gap: 4px
    }
    .main-navbar {
        padding: 8px 0
    }
    .navbar-content {
        gap: 8px
    }
    .search-container {
        flex: 1;
        max-width: none;
        margin: 0 8px;
        min-width: 100px
    }
    .search-input {
        padding: 8px 12px;
        font-size: 13px
    }
    .search-btn {
        padding: 8px 12px
    }
    .logo-icon {
        width: 60px;
        height: 60px
    }
    .logo-icon-secondary {
        width: 28px;
        height: 28px;
        font-size: 12px
    }
    body {
        padding-top: 100px
    }
}

@media(max-width:576px) {
    .search-container {
        flex: 1;
        max-width: none;
        margin: 0 8px;
        min-width: 120px;
        padding-top: 6px
    }
    .search-input {
        padding: 8px 12px;
        font-size: 12px
    }
    .search-btn {
        padding: 8px 10px
    }
    .mobile-search {
        display: none
    }
    .promo-content span {
        font-size: 11px;
        text-align: center
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.dropdown-menu,
.language-menu {
    animation: fadeInDown .3s ease
}

.search-input:focus,
.nav-link:focus,
.language-btn:focus,
.mobile-menu-toggle:focus {
    outline: 2px solid #4A90E2;
    outline-offset: 2px
}

@media(prefers-contrast:high) {
    .promo-bar {
        background: #000;
        color: #fff
    }
    .nav-link:hover,
    .nav-link.active {
        color: #000;
        background: #fff
    }
}

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

.hero-section {
    position: relative;
    min-height: 80vh;
    max-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.swiper {
    width: 100%;
    height: 100%
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1
}

.hero-content {
    background: linear-gradient(to top, #00000080, #0000);
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3
}

.hero-content .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-bottom: 76px
}

.hero-text {
    width: 100%;
    height: fit-content;
    gap: 50px
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .3)
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 0;
    align-self: center
}

.swiper-button-next,
.swiper-button-prev {
    color: #4fa0cb;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all .3s ease
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #ffffff4d;
    transform: scale(1.1)
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: 700
}

.swiper-pagination-bullet {
    background: #ffffff80;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all .3s ease
}

.swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2)
}

@media(max-width:1200px) {
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.2
    }
    .hero-description {
        font-size: 1.2rem
    }
    .hero-content .container {
        padding-bottom: 60px
    }
}

@media(max-width:992px) {
    .hero-section {
        min-height: 70vh;
        max-height: 80vh
    }
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem
    }
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5
    }
    .hero-text {
        max-width: 100%;
        text-align: center;
        padding: 0 1rem;
        gap: 30px
    }
    .hero-content .container {
        padding-bottom: 50px
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px
    }
}

@media(max-width:768px) {
    .hero-section {
        min-height: 60vh;
        max-height: 70vh
    }
    .hero-container,
    .swiper {
        height: 100%
    }
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem
    }
    .hero-description {
        font-size: 1rem;
        line-height: 1.4
    }
    .hero-text {
        padding: 0 1.5rem;
        gap: 20px;
        flex-direction: column
    }
    .hero-text .col {
        flex: none;
        width: 100%
    }
    .hero-content .container {
        padding-bottom: 40px
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 12px
    }
    .swiper-pagination {
        bottom: 15px
    }
}

@media(max-width:576px) {
    .hero-section {
        margin-top: -20px;
        min-height: 20vh;
        max-height: 30vh
    }
    .hero-container,
    .swiper {
        height: 100%
    }
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: .8rem
    }
    .hero-description {
        font-size: .9rem;
        line-height: 1.4
    }
    .hero-text {
        padding: 0 1rem;
        gap: 15px
    }
    .hero-content .container {
        padding-bottom: 30px
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
        background: #ffffffe6;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px)
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 10px
    }
    .swiper-pagination {
        bottom: 10px
    }
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px
    }
}

@media(max-width:480px) {
    .hero-section {
        min-height: 45vh;
        max-height: 55vh
    }
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3
    }
    .hero-description {
        font-size: .85rem
    }
    .hero-text {
        padding: 0 .8rem;
        gap: 12px
    }
    .hero-content .container {
        padding-bottom: 25px
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 28px;
        height: 28px;
        background: #fffffff2
    }
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 9px
    }
}

.banner-section {
    background-color: #f4f4f4;
    position: relative;
    padding-top: 50px;
    padding-bottom: 100px
}

.banner-section-card {
    background: linear-gradient(135deg, #4fa0cb, #02679d);
    border-radius: 16px
}

.banner-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: .3;
    z-index: 1
}

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

.banner-content {
    color: #fff;
    padding-right: 2rem
}

.banner-badge {
    display: inline-block;
    margin-bottom: 1.5rem
}

.badge-text {
    background: #fff3;
    color: #fff;
    padding: .5rem 1.2rem;
    border-radius: 25px;
    font-family: Inter, sans-serif;
    font-size: .9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .5px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 20px;
    left: 30px
}

.banner-title {
    font-family: Bebas Neue, cursive;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.1;
    color: #fff
}

.banner-title:first-child {
    margin-right: 70px
}

.banner-subtitle {
    font-family: Inter, sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: #ffffffe6;
    margin-bottom: 0
}

.banner-image {
    text-align: center;
    position: relative;
    z-index: 99
}

.banner-image img {
    height: auto;
    border-radius: 12px;
    transition: transform .3s ease;
    max-width: 640px;
    min-width: 100%;
    margin-top: -20px
}

@media(max-width:1200px) {
    .banner-title {
        font-size: 3rem
    }
    .banner-subtitle {
        font-size: 1.1rem
    }
}

@media(max-width:992px) {
    .banner-section {
        padding: 3rem 0
    }
    .banner-content {
        padding-right: 1rem;
        margin-bottom: 2rem
    }
    .banner-title {
        font-size: 2.5rem
    }
    .banner-subtitle {
        font-size: 1rem
    }
}

@media(max-width:768px) {
    .banner-section {
        padding: 2.5rem 0
    }
    .banner-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 2rem
    }
    .banner-title {
        font-size: 2.2rem;
        line-height: 1.2
    }
    .banner-subtitle {
        font-size: 1rem
    }
    .badge-text {
        font-size: .8rem;
        padding: .4rem 1rem
    }
}

@media(max-width:576px) {
    .banner-section {
        padding: 2rem 0
    }
    .banner-title {
        font-size: 1.8rem
    }
    .banner-subtitle {
        font-size: .95rem
    }
    .badge-text {
        font-size: .75rem;
        padding: .3rem .8rem
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate(30px)
    }
    to {
        opacity: 1;
        transform: translate(0)
    }
}

.banner-content {
    padding-top: 80px;
    padding-right: 50px;
    animation: fadeInUp .8s ease-out;
    text-align: right
}

.img-offer {
    position: absolute;
    top: -50px;
    right: -48px
}

.img-register-now {
    margin-top: -80px;
    margin-bottom: -40px
}

.banner-image {
    animation: fadeInRight .8s ease-out .2s both
}

@media(prefers-reduced-motion:reduce) {
    .banner-content,
    .banner-image {
        animation: none
    }
    .banner-image:hover img {
        transform: none
    }
}

@media(prefers-contrast:high) {
    .banner-section {
        background: #000
    }
    .banner-title,
    .banner-subtitle,
    .badge-text {
        color: #fff
    }
    .badge-text {
        background: #333;
        border-color: #fff
    }
}

@media screen and (max-width:600px) {
    .banner-image img {
        max-width: 100%;
        margin-top: -170px;
        display: block;
        margin-left: auto;
        margin-right: auto
    }
    .banner-title:first-child {
        margin-right: 0
    }
    .banner-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 5px
    }
    .img-offer {
        display: block;
        width: 100px;
        top: -20px;
        right: -20px;
        z-index: 10
    }
    .banner-content {
        padding-top: 60px;
        padding-right: 0;
        text-align: center;
        padding-bottom: 20px
    }
    .banner-subtitle {
        background-color: #fff;
        color: #02679d;
        display: inline-block;
        padding: 8px 20px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 700;
        margin: 15px 0
    }
    .img-register-now {
        margin: -70px auto -50px;
        display: block;
        width: 100%;
        max-width: 450px
    }
    .badge-text {
        top: 15px;
        left: 15px;
        font-size: .75rem;
        padding: .4rem .8rem;
        z-index: 10
    }
}

.class-offerings-section {
    background-color: #f4f4f4
}

.class-offerings-section .row.align-items-center {
    padding: 0 80px;
    --bs-gutter-x: 4rem !important
}

.class-offerings-section .online-icon-container {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4fa0cb, #3a8bb0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px #4fa0cb4d
}

.class-offerings-section .offline-icon-container {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4caf50, #388e3c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px #4caf504d
}

.class-offerings-section .icon-container img {
    width: 80px;
    height: 80px
}

.class-offerings-section .offline-icon-container i {
    font-size: 24px
}

.class-offerings-section .class-title {
    font-size: 18px;
    font-weight: 600
}

.class-offerings-section .class-description {
    color: #424242;
    font-size: .95rem;
    line-height: 1.5
}

.class-offerings-section .benefits-list {
    list-style-type: "-";
    padding-left: 20px
}

.class-offerings-section .benefit-text:before {
    content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAeCAYAAADdGWXmAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAUoSURBVHgBzVZ7bFNVHP7Oufd293Z9rOvajjE2YIYYVGIyjYkImQqJQCSG+A8oxpCFBY3BGWVCYoIJ0YhGQBkRYrKEp49ECQtGgyQkhIchw6gg4SErdt3W9eG2tmvv83jaDZndXIvZH/yam9577jnfd37f73EPcI8bHfsXMM1GCp6Fnas3LEi3HR4YR0z+Y25RsEKjZ5rf3RxNDQ0eMkOfLRX9978gNlzqHUloXm9VZGnXgYYHhArXxvlN+zquX3ht95ljfXwN+79kMJt3m6FEBD5nJU2lh5GGaYIxavFXftklmoaGv4ys1SOqRxZ/uX3tVGTiFDx09dMrfcnUMIUosN7uW0zwu1C+cB4V3Aq0YFSInL7KaHkZqGIjj3jqlo0R3XaAleKZsHfV+sUNdu+SRVJgSygZN0hGF+oPtYI6ywEjxWFsgE0AITJS5y6it/UghFqPWekPhDr7Lu3oCF09cqrrVIJjWVOSPdvYaP96/tp030ic+83VEkUy+2AbrDTPCUpBRAfU/esgLXsbxFPDCTmiLuOPJe/ANruKEcuCHJgRqm5/ZfYEqQoHOru6MgnFvMJRmB5KcKLNnCgKQsem6lmw8O+AvSpPxLhYVMxi1r4WWEMjRGSUdv55cd1kjkwgy02KM/U3GCaq3loBpg6AcslG+FRTciB7cgdI4D4eJxeYbvBLAyQnlIfmgkkiZFHCTwPdlycjKxwQP1rz6swW1AX7e/rYnGNbQMsMHLvaj71dQSQlF06n34MqeMBScQgcOBYJwUwOonZXGPGOoxg+/rNV4fVFKvdtnMnxpJwWk3r2+opVdevJ3GBUS5uMa0+dSn5cFil8POv8dp4YhDcOws3pBcorwWQn3Cs3cQVikOdVA5pJ47EBv9l2JD2eaALZzuPf3CQVjrBhmiyfuCabRALCf6MZbhg6WHYY8vwnc5NhZXS+F8o8VBZ69MHthfiFMROc7S21NVWBFOVe6P3Rf6rlDm1uHyT/qGXToISCOgIcyYbU2WtcWhHXZLWt/uMN21BQa4VkZm7shpA+KrjtiLZ/z+tJQdawkNQMDOZEid2CGgtBi4cxEumGOcRj5/SD8CRJ/fArHFSin14/tx+jNfYvsknblba+PRNORMqM6DDqDrRC8NkQTmYhSwRVPEZMH8nrmBOUyG5+a6B/21dQr4RzFKxH0XcuOvj+m8U8Q1NTkyiVOWSf4iaCz8WCz38AM2pgltuFqjKeIEzlhS0Qfo0WuWRj8Y4TyFy4yWyMoob30BnO6kdRYrvKp2tjY6PU+dhLJzKR2EJzYFhwPrMA3pblkLzu0cjx5FGvdaNvy+G8YG6bQs7bU89dmKt0bt261RpzxCoq4zivLfXlXaw3Fc/vMidrfhH3ysrqEFwKj5eCXJnA7zk/Z0/rE4UE422qrj+6yOXKBnQmR6QbuqBXi0TS8lskWRmSJw49o+nVSqXtbKz3JKYgKkaWf/9i33cO4EfHF2vKBi1riIUPvAEj6UblU52wz+I90qtk5KXNvPo/tIpgFf945mzN8or6Q3toUL8sMzOpQe2dx70K8n6owvApGVt9T3kpOMU8u2OqwEtABcokyLZbEGs0MI33EoOWDFE6GXIZSCDYDQjlvNtz0RgpUZoxK31bty2HPq6CWOkr75KMjYGTiaTTT5b7MluGSflpgJ+xjLvS8G7JiFvFoPvBT0h9jAgNngRjhonptk3NM2uZXsO+bX/8YYweu/NH79AvjZ+zVMO0E94+1xdmL+V9kKLErP4byegN6XsO/nkAAAAASUVORK5CYII=);
    display: inline-block;
    vertical-align: middle;
    width: 33px;
    height: 20px;
    margin-left: -1em
}

.class-offerings-section .benefit-text {
    color: #424242;
    font-size: .9rem;
    display: flex
}

.class-offerings-section .btn {
    background: #2c3e50;
    border: none;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    padding: 12px 20px !important
}

.class-offerings-section .class-card .btn {
    margin-left: auto
}

.class-offerings-section .btn:after {
    content: url("data:image/svg+xml,%3csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9.99969%202.16675C14.3234%202.16675%2017.8335%205.67605%2017.8337%209.99976C17.8337%2014.3236%2014.3236%2017.8337%209.99969%2017.8337C5.67599%2017.8336%202.16669%2014.3235%202.16669%209.99976C2.16686%205.67616%205.6761%202.16692%209.99969%202.16675ZM11.2116%206.70483C10.7747%206.26812%2010.0587%206.26812%209.62177%206.70483C9.18484%207.14176%209.18484%207.85873%209.62177%208.29565L10.2009%208.87476H7.08368C6.46598%208.87476%205.95886%209.38209%205.95868%209.99976C5.95868%2010.6176%206.46587%2011.1248%207.08368%2011.1248H10.2018L9.62177%2011.7048C9.18484%2012.1418%209.18484%2012.8587%209.62177%2013.2957C9.84543%2013.5191%2010.133%2013.6248%2010.4167%2013.6248C10.7003%2013.6248%2010.9879%2013.5191%2011.2116%2013.2957L13.7116%2010.7957C14.1485%2010.3587%2014.1485%209.64176%2013.7116%209.20483L11.2116%206.70483Z'%20fill='white'%20stroke='white'/%3e%3c/svg%3e");
    display: block;
    width: 20px;
    margin-top: 4px;
    margin-bottom: -5px
}

.class-offerings-section .section-subtitle {
    color: #4fa0cb;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: .5px
}

.class-offerings-section .section-title {
    color: #212121;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2
}

.class-offerings-section .section-description {
    color: #616161;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0
}

.class-offerings-section .promotional-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 4px 12px #0000001a
}

.class-offerings-section .promotional-image-container {
    width: 100%;
    overflow: hidden;
    border-radius: 12px
}

.class-offerings-section .promo-icon {
    font-size: 3rem;
    margin: 0 10px
}

.class-offerings-section .promo-icon.users {
    color: #ff9800
}

.class-offerings-section .promo-icon.graduation {
    color: #ff5722
}

.class-offerings-section .promo-icon.globe {
    color: #795548
}

.class-offerings-section .pricing-info {
    background: #ffffffe6;
    border: 2px dashed #FF9800
}

.class-offerings-section .pricing-title {
    color: #e65100;
    font-weight: 700;
    margin-bottom: 8px
}

.class-offerings-section .pricing-amount {
    color: #bf360c;
    font-weight: 800;
    font-size: 1.5rem
}

.class-offerings-section .pricing-note {
    color: #d84315;
    font-weight: 600;
    margin: 0
}

.class-offerings-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px #4fa0cb66 !important
}

.class-offerings-section .class-card {
    border-radius: 16px !important;
    box-shadow: none !important;
    transition: all .3s ease
}

.class-offerings-section .class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px #00000026 !important
}

.class-offerings-section .icon-container {
    transition: all .3s ease
}

.class-offerings-section .class-card:hover .icon-container {
    transform: scale(1.05)
}

@media(max-width:1200px) {
    .class-offerings-section .row.align-items-center {
        padding: 0 40px;
        --bs-gutter-x: 3rem !important
    }
    .class-offerings-section .section-title {
        font-size: 2.2rem
    }
    .class-offerings-section .section-description {
        font-size: 1rem
    }
}

@media(max-width:992px) {
    .class-offerings-section .row.align-items-center {
        padding: 0 20px;
        --bs-gutter-x: 2rem !important
    }
    .class-offerings-section .section-title {
        font-size: 2rem;
        text-align: center
    }
    .class-offerings-section .section-subtitle {
        text-align: center;
        font-size: 1rem
    }
    .class-offerings-section .section-description {
        text-align: center;
        font-size: .95rem
    }
    .class-offerings-section .promotional-image {
        width: 100%;
        height: auto;
        min-height: 250px;
        max-height: auto;
    }
    .class-offerings-section .class-card {
        margin-bottom: 1.5rem
    }
}

@media(max-width:768px) {
    .class-offerings-section .row.align-items-center {
        padding: 0 15px;
        --bs-gutter-x: 1.5rem !important
    }
    .class-offerings-section .section-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
        margin-bottom: 1rem !important
    }
    .class-offerings-section .section-subtitle {
        font-size: .95rem;
        margin-bottom: .5rem
    }
    .class-offerings-section .section-description {
        font-size: .9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem !important
    }
    .class-offerings-section .class-card {
        margin-bottom: 2rem;
        padding: 1.5rem !important
    }
    .class-offerings-section .class-title {
        font-size: 1.1rem;
        margin-bottom: .8rem !important
    }
    .class-offerings-section .class-description {
        font-size: .85rem;
        line-height: 1.4;
        margin-bottom: 1rem
    }
    .class-offerings-section .benefit-text {
        font-size: .8rem;
        line-height: 1.4
    }
    .class-offerings-section .btn {
        padding: 10px 16px !important;
        font-size: .9rem
    }
    .class-offerings-section .promotional-image {
        width: 100%;
        height: auto;
        min-height: 200px !important;
        margin-top: 1rem
    }
    .class-offerings-section .icon-container {
        width: 50px;
        height: 50px;
        margin-right: .75rem !important
    }
    .class-offerings-section .icon-container img {
        width: 60px;
        height: 60px
    }
}

@media(max-width:576px) {
    .class-offerings-section {
        padding: 2rem 0 !important
    }
    .class-offerings-section .row.align-items-center {
        padding: 0 10px;
        --bs-gutter-x: 1rem !important
    }
    .class-offerings-section .section-title {
        font-size: 1.6rem !important;
        line-height: 1.2
    }
    .class-offerings-section .section-subtitle {
        font-size: .9rem
    }
    .class-offerings-section .section-description {
        font-size: .85rem
    }
    .class-offerings-section .class-card {
        padding: 1.2rem !important;
        margin-bottom: 1.5rem
    }
    .class-offerings-section .class-title {
        font-size: 1rem
    }
    .class-offerings-section .class-description {
        font-size: .8rem
    }
    .class-offerings-section .benefit-text {
        font-size: .75rem
    }
    .class-offerings-section .btn {
        padding: 8px 14px !important;
        font-size: .85rem;
        width: 100%;
        justify-content: center
    }
    .class-offerings-section .promotional-image {
        width: 100%;
        height: auto;
        min-height: 180px !important;
    }
    .class-offerings-section .icon-container {
        width: 45px;
        height: 45px
    }
    .class-offerings-section .icon-container img {
        width: 50px;
        height: 50px
    }
}

@media(max-width:480px) {
    .class-offerings-section .section-title {
        font-size: 1.4rem !important
    }
    .class-offerings-section .class-card {
        padding: 1rem !important
    }
    .class-offerings-section .class-title {
        font-size: .95rem
    }
    .class-offerings-section .class-description {
        font-size: .75rem
    }
    .class-offerings-section .benefit-text {
        font-size: .7rem
    }
    .class-offerings-section .btn {
        font-size: .8rem;
        padding: 6px 12px !important
    }
    .class-offerings-section .promotional-image {
        width: 100%;
        height: auto;
        min-height: 160px !important;
    }
    .class-offerings-section .icon-container {
        width: 40px;
        height: 40px
    }
    .class-offerings-section .icon-container img {
        width: 45px;
        height: 45px
    }
}

.cefr-levels-section {
    font-family: sans-serif;
    background-color: #f4f4f4
}

.cefr-levels-section img {
    transition: transform .3s ease;
    cursor: pointer
}

.cefr-levels-section img:hover {
    transform: scale(1.05)
}

.cefr-subtitle {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #4fa0cb !important
}

.cefr-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.2
}

.cefr-description {
    font-size: 1.1rem;
    color: #1c1c1c;
    line-height: 1.6
}

.cefr-level-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.cefr-category-group {
    display: flex;
    flex-direction: column;
    flex: 1
}

.cefr-category-header {
    border-radius: 9999px;
    padding: .5rem 0;
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: .875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px #0000001a;
    margin-left: .5rem;
    margin-right: .5rem
}

.cefr-level-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    height: 100%
}

.cefr-level-card1 {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 100%;
    max-width: 240px
}
.cefr-level-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 100%;
    max-width: 240px
}

.cefr-level-card:hover{
        transform: translateY(-5px) scale(1.1);
}
.cefr-card-header {
    position: relative;
    background-color: #fff;
    border-radius: 1rem 1rem 0 0;
    padding: 1rem;
    text-align: center;
    border: 3px solid;
    box-shadow: 0 2px 4px #0000000d;
    z-index: 10;
    min-height: 179px
}

.level-title-text {
    color: #6b7280;
    font-weight: 700;
    font-size: .875rem
}

.level-code {
    line-height: 5rem;
    font-size: 3.75rem;
    font-weight: 800
}

.level-stage {
    margin: auto;
    padding: .375rem .1rem;
    border-radius: 9999px;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    box-shadow: 0 2px 4px #0000000d;
    line-height: 1.2;
    display: flex;
    align-items: end;
    justify-content: center;
    min-height: 22px
}

.cefr-card-graph {
    display: flex;
    justify-content: center;
    margin-top: -.25rem;
    margin-bottom: -.25rem;
    position: relative;
    z-index: 0;
    width: 80%;
    margin: auto
}

.cefr-card-graph>div {
    width: 80%;
    height: 4rem;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 10px 0
}

.bar-graph-icon {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 1.5rem
}

.bar {
    width: .4rem;
    border-top-left-radius: .2rem;
    border-top-right-radius: 0;
    background-color: #0003
}

.cefr-card-body {
    flex-grow: 1;
    background-color: #fff;
    border-radius: 1rem;
    padding: 1rem;
    border: 3px solid;
    box-shadow: 0 2px 4px #0000000d;
    text-align: left;
    position: relative;
    z-index: 10
}

.skills-title {
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: #374151
}

.skills-list {
    list-style-type: disc;
    padding-left: 1rem
}

.skills-list li {
    font-size: 13.5px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: .5rem
}

.basic-user .cefr-category-header,
.basic-user .level-stage {
    background-color: #dc3545
}

.basic-user .cefr-card-header,
.basic-user .cefr-card-body {
    border-color: #dc3545
}

.basic-user .level-code {
    color: #dc3545
}

.independent-user .cefr-category-header,
.independent-user .level-stage {
    background-color: #28a745
}

.independent-user .cefr-card-header,
.independent-user .cefr-card-body {
    border-color: #28a745
}

.independent-user .level-code {
    color: #28a745
}

.proficient-user .cefr-category-header,
.proficient-user .level-stage {
    background-color: #17a2b8
}

.proficient-user .cefr-card-header,
.proficient-user .cefr-card-body {
    border-color: #17a2b8
}

.proficient-user .level-code {
    color: #17a2b8
}

@media(min-width:1200px) {
    .cefr-level-grid {
        flex-direction: row;
        gap: 1.5rem
    }
}

.why-us-section {
    background-color: #f4f4f4 !important
}

.why-us-section .lead {
    max-width: 600px;
    font-size: 20px
}

.why-us-section .section-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #4fa0cb;
    text-transform: capitalize !important;
    letter-spacing: 1px;
    margin-bottom: .5rem
}

.why-us-section .section-title {
    font-size: 48px;
    font-weight: 600
}

.why-us-section .feature-card {
    border-radius: 16px !important
}

.testimonials-section {
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center
}

.testimonials-section .section-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #4fa0cb !important;
    letter-spacing: 1px;
    text-transform: capitalize !important;
    margin-bottom: .5rem
}

.testimonials-section .section-title {
    font-size: 48px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.2
}

.testimonials-section .section-description {
    font-size: 1.1rem;
    color: #3a4045;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto
}

.testimonials-swiper-container {
    position: relative;
    padding: 2rem 0
}

.testimonials-swiper {
    padding: 1rem 0 3rem;
    overflow: visible
}

.testimonials-swiper .swiper-wrapper {
    align-items: stretch
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex
}

.testimonial-card {
    background: linear-gradient(to top, #00d5ff21 3%, #fff 20% 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(79, 160, 203, .1);
    position: relative;
    transition: all .3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 4px 20px #00000014
}

.testimonial-card:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff0, #3396d3, #fff0);
    border-radius: 16px;
    width: 95%;
    margin: auto
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px #4fa0cb26
}

.testimonial-card:hover:after {
    background: linear-gradient(90deg, #fff0, #4fa0cb, #fff0);
    height: 3px
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .5rem
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(79, 160, 203, .2);
    transition: all .3s ease
}

.testimonial-card:hover .testimonial-avatar {
    border-color: #4fa0cb;
    transform: scale(1.05)
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease
}

.testimonial-info {
    flex: 1
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: .25rem;
    line-height: 1.3
}

.testimonial-role {
    font-size: .9rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.4
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.testimonial-text {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: .5rem;
    flex: 1
}

.testimonial-rating {
    display: flex;
    gap: .25rem;
    margin-top: auto;
    justify-content: center
}

.testimonial-rating i {
    color: gold;
    font-size: 1rem;
    transition: all .3s ease
}

.testimonial-rating .fa-star:before {
    content: url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M5.73998%2016C5.84998%2015.51%205.64998%2014.81%205.29998%2014.46L2.86998%2012.03C2.10998%2011.27%201.80998%2010.46%202.02998%209.76C2.25998%209.06%202.96998%208.58%204.02998%208.4L7.14998%207.88C7.59998%207.8%208.14998%207.4%208.35998%206.99L10.08%203.54C10.58%202.55%2011.26%202%2012%202C12.74%202%2013.42%202.55%2013.92%203.54L15.64%206.99C15.77%207.25%2016.04%207.5%2016.33%207.67L5.55998%2018.44C5.41998%2018.58%205.17998%2018.45%205.21998%2018.25L5.73998%2016Z'%20fill='%23EEDA21'/%3e%3cpath%20d='M18.7%2014.4599C18.34%2014.8199%2018.14%2015.5099%2018.26%2015.9999L18.95%2019.0099C19.24%2020.2599%2019.06%2021.1999%2018.44%2021.6499C18.19%2021.8299%2017.89%2021.9199%2017.54%2021.9199C17.03%2021.9199%2016.43%2021.7299%2015.77%2021.3399L12.84%2019.5999C12.38%2019.3299%2011.62%2019.3299%2011.16%2019.5999L8.23005%2021.3399C7.12005%2021.9899%206.17005%2022.0999%205.56005%2021.6499C5.33005%2021.4799%205.16005%2021.2499%205.05005%2020.9499L17.21%208.7899C17.67%208.3299%2018.32%208.1199%2018.95%208.2299L19.96%208.3999C21.02%208.5799%2021.73%209.0599%2021.96%209.7599C22.18%2010.4599%2021.88%2011.2699%2021.12%2012.0299L18.7%2014.4599Z'%20fill='%23EEDA21'/%3e%3c/svg%3e") !important
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.1)
}

.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem
}

.testimonials-prev,
.testimonials-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4fa0cb, #3a8bb0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 15px #4fa0cb4d;
    position: static;
    margin: 0
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background: linear-gradient(135deg, #3a8bb0, #2e7a9b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #4fa0cb66
}

.testimonials-prev:after,
.testimonials-next:after {
    display: none
}

.testimonials-prev i,
.testimonials-next i {
    font-size: .86rem
}

.testimonials-pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: .5rem
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #4fa0cb4d;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: #4fa0cb;
    transform: scale(1.2)
}

.testimonials-pagination .swiper-pagination-bullet:hover {
    background: #4fa0cb;
    transform: scale(1.1)
}

@media(max-width:1199.98px) {
    .testimonials-section .section-title {
        font-size: 2.2rem
    }
    .testimonial-card {
        padding: 1.75rem
    }
}

@media(max-width:991.98px) {
    .testimonials-section {
        min-height: auto;
        padding: 4rem 0
    }
    .testimonials-section .section-title {
        font-size: 2rem
    }
    .testimonial-card {
        padding: 1.5rem;
        gap: 1.25rem
    }
    .testimonial-avatar {
        width: 50px;
        height: 50px
    }
    .testimonial-name {
        font-size: 1rem
    }
    .testimonial-role {
        font-size: .85rem
    }
    .testimonial-text {
        font-size: .95rem
    }
}

@media(max-width:767.98px) {
    .testimonials-section .section-title {
        font-size: 1.8rem
    }
    .section-description {
        font-size: 1rem
    }
    .testimonial-card {
        padding: 1.25rem;
        gap: 1rem
    }
    .testimonial-header {
        gap: .75rem
    }
    .testimonial-avatar {
        width: 45px;
        height: 45px
    }
    .testimonial-name {
        font-size: .95rem
    }
    .testimonial-role {
        font-size: .8rem
    }
    .testimonial-text {
        font-size: .9rem;
        margin-bottom: 1rem
    }
    .testimonials-prev,
    .testimonials-next {
        width: 40px;
        height: 40px
    }
    .testimonials-prev i,
    .testimonials-next i {
        font-size: .9rem
    }
    .testimonials-navigation {
        gap: 1.5rem
    }
    .testimonials-progress-container {
        min-width: 250px
    }
    .testimonials-prev,
    .testimonials-next {
        width: 28px;
        height: 28px;
        font-size: .7rem
    }
}

@media(max-width:575.98px) {
    .testimonials-section {
        padding: 3rem 0
    }
    .testimonials-section .section-title {
        font-size: 1.6rem
    }
    .testimonial-card {
        padding: 1rem
    }
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: .5rem
    }
    .testimonial-avatar {
        width: 60px;
        height: 60px;
        margin: 0 auto
    }
    .testimonials-navigation {
        gap: 1rem;
        padding: 2px
    }
    .testimonials-progress-container {
        min-width: 180px;
        gap: .5rem
    }
    .testimonials-prev,
    .testimonials-next {
        min-width: 24px;
        min-height: 24px;
        font-size: .65rem
    }
    .testimonials-progress-container {
        min-width: 260px
    }
}

.testimonials-swiper.swiper-initialized {
    opacity: 1;
    transition: opacity .5s ease
}

.testimonials-swiper:not(.swiper-initialized) {
    opacity: 0
}

.testimonials-swiper .swiper-scrollbar {
    background: #4fa0cb1a;
    border-radius: 10px
}

.testimonials-swiper .swiper-scrollbar-drag {
    background: linear-gradient(90deg, #4fa0cb, #3a8bb0);
    border-radius: 10px
}

.testimonials-progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    min-width: 300px;
    position: relative
}

.testimonials-progress-bar {
    width: 100%;
    height: 8px;
    background: #dedede;
    border-radius: 10px;
    position: relative;
    overflow: hidden
}

.testimonials-progress-fill {
    height: 100%;
    width: 25%;
    background: #4fa0cb;
    border-radius: 12px;
    transition: width .6s cubic-bezier(.4, 0, .2, 1);
    position: relative
}

.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem
}

.testimonials-prev,
.testimonials-next {
    width: 24px;
    height: 24px;
    background: #4fa0cb;
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
    font-size: .55rem
}

.testimonials-prev:hover,
.testimonials-next:hover {
    background: #2980b9;
    transform: scale(1.1)
}

.testimonials-prev:disabled,
.testimonials-next:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    transform: none
}

.faq-section {
    background-color: #fff;
    padding: 80px 0
}

.faq-header {
    padding-right: 2rem
}

.faq-section .section-subtitle {
    font-size: .875rem;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: .5px;
    color: #4fa0cb !important;
    margin-bottom: .5rem
}

.faq-section .section-title {
    font-size: 48px !important;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1rem
}

.section-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem
}

.faq-illustration {
    position: relative;
    margin-top: 2rem
}

.faq-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px #0000001a
}

.faq-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px
}

.faq-accordion {
    border-radius: 12px
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    transition: all .3s ease
}

.faq-item:last-child {
    border-bottom: none
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all .3s ease;
    -webkit-user-select: none;
    user-select: none
}

.faq-question:hover {
    color: #007bff
}

.faq-question h5 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    transition: color .3s ease;
    flex: 1;
    padding-right: 1rem
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease;
    flex-shrink: 0
}

.faq-icon i {
    font-size: .75rem;
    transition: transform .3s ease
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease-out
}

.faq-answer.show {
    grid-template-rows: 1fr
}

.faq-content {
    padding-top: 0;
    padding-bottom: 1.5rem;
    overflow: hidden;
    min-height: 0
}

.faq-content p {
    font-size: .95rem;
    color: #666;
    line-height: 1.6;
    margin: 0
}

.faq-item:hover .faq-question h5 {
    color: #007bff
}

.faq-item.active {
    border-radius: 8px;
    margin: .25rem 0
}

@media(max-width:991.98px) {
    .faq-section {
        padding: 60px 0
    }
    .faq-section .faq-section .section-title {
        font-size: 2rem
    }
    .faq-header {
        padding-right: 0;
        margin-bottom: 3rem
    }
    .faq-accordion {
        padding: 1.5rem
    }
}

@media(max-width:767.98px) {
    .faq-section {
        padding: 40px 0
    }
    .faq-section .section-title {
        font-size: 1.75rem
    }
    .faq-accordion {
        padding: 1rem
    }
    .faq-question {
        padding: 1rem 0
    }
    .faq-question h5 {
        font-size: 1rem
    }
    .speech-bubble {
        font-size: .7rem;
        padding: 6px 10px
    }
    .speech-bubble-1 {
        top: 15%;
        left: 5%
    }
    .speech-bubble-2 {
        bottom: 25%;
        right: 10%
    }
}

@media(max-width:575.98px) {
    .faq-section .section-title {
        font-size: 1.5rem
    }
    .faq-question h5 {
        font-size: .95rem
    }
    .faq-content p {
        font-size: .9rem
    }
    .speech-bubble {
        font-size: .65rem;
        padding: 4px 8px
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.faq-answer.show .faq-content {
    animation: fadeIn .3s ease forwards
}

.faq-question:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    border-radius: 4px
}

@media print {
    .faq-section {
        background: #fff !important;
        box-shadow: none !important
    }
    .faq-item {
        page-break-inside: avoid
    }
    .faq-answer {
        max-height: none !important;
        overflow: visible !important
    }
    .faq-answer.show {
        padding-bottom: 1rem !important
    }
}

.free-trial-section {
    background-color: #fff;
    overflow: hidden
}

.free-trial-section .ls-1 {
    letter-spacing: 1px
}

.free-trial-section .benefits-list .bullet {
    font-size: 1.2rem;
    line-height: 1.2;
    color: #333
}

.free-trial-section .btn-dark {
    background-color: #2c3e50;
    border-color: #2c3e50;
    padding: 12px 28px !important;
    font-weight: 500;
    transition: all .3s ease;
    display: flex;
    gap: 6px
}

.free-trial-section .btn:after {
    content: url("data:image/svg+xml,%3csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9.99969%202.16675C14.3234%202.16675%2017.8335%205.67605%2017.8337%209.99976C17.8337%2014.3236%2014.3236%2017.8337%209.99969%2017.8337C5.67599%2017.8336%202.16669%2014.3235%202.16669%209.99976C2.16686%205.67616%205.6761%202.16692%209.99969%202.16675ZM11.2116%206.70483C10.7747%206.26812%2010.0587%206.26812%209.62177%206.70483C9.18484%207.14176%209.18484%207.85873%209.62177%208.29565L10.2009%208.87476H7.08368C6.46598%208.87476%205.95886%209.38209%205.95868%209.99976C5.95868%2010.6176%206.46587%2011.1248%207.08368%2011.1248H10.2018L9.62177%2011.7048C9.18484%2012.1418%209.18484%2012.8587%209.62177%2013.2957C9.84543%2013.5191%2010.133%2013.6248%2010.4167%2013.6248C10.7003%2013.6248%2010.9879%2013.5191%2011.2116%2013.2957L13.7116%2010.7957C14.1485%2010.3587%2014.1485%209.64176%2013.7116%209.20483L11.2116%206.70483Z'%20fill='white'%20stroke='white'/%3e%3c/svg%3e");
    display: block;
    width: 20px;
    margin-top: 4px;
    margin-bottom: -5px
}

.free-trial-section .btn-dark:hover {
    background-color: #1a252f;
    border-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #2c3e5033
}

@media(max-width:991.98px) {
    .free-trial-section .ps-lg-4 {
        padding-left: 0 !important;
        margin-top: 2rem
    }
}

.pricing-section {
    padding: 80px 0;
    background-color: #f4f8fb
}

.class-type-tabs {
    background: #ddebf3;
    border-radius: 15px;
    padding: 10px;
    display: inline-flex;
    position: relative
}

.class-tab {
    border: none;
    background: transparent;
    padding: 12px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #8fa3b0;
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s ease;
    min-width: 200px
}

.class-tab.active {
    background: #fff;
    color: #2c8cbf;
    box-shadow: 0 2px 5px #0000000d
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    border: 1px solid #7ba4c2;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 0 20px #0000000d
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px #0000001a;
    border-color: #2c8cbf;
    animation-duration: .3s;
    z-index: 2
}

.feature-card .icon-wrapper {
    width: 50px;
    height: 50px;
    background: #ebf5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c8cbf;
    font-size: 1.5rem
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px
}

.feature-desc {
    font-size: .9rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0
}

.learner-tabs-container {
    background: #d6e6f2;
    padding: 12px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto 30px
}

.learner-tabs {
    display: flex;
    width: 100%;
    justify-content: space-between;
    position: relative
}

.learner-tab {
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 700;
    color: #8fa3b0;
    padding: 15px 0;
    cursor: pointer;
    transition: all .3s ease;
    flex: 1;
    text-align: center;
    border-radius: 12px;
    position: relative;
    z-index: 1
}

.learner-tab.active {
    color: #2077a5;
    background: #fff;
    box-shadow: 0 2px 5px #0000001a
}

.learner-tab:hover:not(.active) {
    color: #2077a5
}

.pricing-card {
    background: #fff;
    border-radius: 25px;
    padding: 0 20px 25px;
    border: 4px solid #2C8CBF;
    height: 100%;
    position: relative;
    transition: transform .3s ease;
    display: flex;
    flex-direction: column
}

.pricing-card:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 20px #0000001a
}

.pricing-header {
    position: relative;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center
}

.session-circle {
    width: 110px;
    height: 110px;
    background: #2c8cbf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    left: 10px;
    top: 15px;
    z-index: 2;
    border: 5px solid #FFFFFF
}

.session-circle .count {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1
}

.session-label {
    background: #2077a5;
    color: #fff;
    padding: 10px 20px 10px 70px;
    border-radius: 0 25px 25px 0;
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 50px;
    width: 100%;
    text-align: center;
    position: relative;
    margin-right: -35px;
    top: 15px;
    z-index: 1
}

.text-red-500 {
    color: red
}

.learning-hours-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
    padding-right: 10px;
    position: relative
}

.learning-hours-img {
    width: 48px;
    height: auto
}

.hours-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    position: relative
}

.hours-val {
    background: #fff;
    border-radius: 50px;
    padding: 0 3px;
    font-size: 1rem;
    font-weight: 900;
    color: #5a6c7c;
    position: absolute;
    left: -32px
}

.hours-label {
    font-size: .9rem;
    font-weight: 700;
    color: #000
}

.price-section {
    margin-bottom: 20px
}

.normal-price {
    font-size: 1rem;
    color: #dc3545;
    text-decoration: line-through;
    font-weight: 600;
    margin-bottom: 5px
}

.special-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px
}

.special-price-img {
    height: 35px;
    width: auto
}

.main-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f1b40
}

.save-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #dc3545
}

.save-icon {
    height: 20px;
    width: auto
}

.pricing-features {
    list-style: none;
    margin: 0 0 20px;
    text-align: left;
    padding: 0 0 0 20px
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    gap: 15px
}

.pricing-features .feature-icon {
    width: 30px;
    height: auto
}

.validity-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px
}

.validity-icon {
    width: 24px;
    height: auto
}

.btn-select {
    background: linear-gradient(180deg, #2077a5, #235c7a);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    margin-top: auto;
    transition: background .3s ease
}

.btn-select:hover {
    background: #185a7d;
    color: #fff
}

@media(max-width:768px) {
    .learner-tabs {
        flex-wrap: wrap;
        gap: 10px
    }
    .learner-tab {
        font-size: 1rem;
        padding: 8px 15px
    }
    .class-tab {
        min-width: 140px;
        padding: 10px 20px;
        font-size: 1rem
    }
}

.contact-form-section {
    background-color: #f4f4f4;
    min-height: 100vh;
    display: flex;
    align-items: center
}

.contact-form-section .section-title {
    font-size: 44px;
    font-weight: 700;
    color: #e40505;
    background: #fee;
    padding: 10px 20px;
    border-radius: 8px;
    width: fit-content;
    margin: auto
}

.contact-image-container {
    position: relative;
    height: auto;
    width: 100%;
    overflow: hidden
}

.contact-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px
}

.contact-form-container {
    background-color: transparent;
    border-radius: 16px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: .5rem
}

.title-underline {
    width: 80px;
    height: 2px;
    background: #fa0202;
    margin-bottom: 1rem
}

.form-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0
}

.contact-form {
    margin-top: 1.5rem
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem
}

.form-group .row {
    margin: 0
}

.form-group .row .col-md-6 {
    padding: 0
}

.form-group .row .col-md-6:first-child {
    padding-right: .5rem
}

.form-group .row .col-md-6:last-child {
    padding-left: .5rem
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center
}

.input-icon {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 2
}

.input-icon.textarea {
    top: 12px
}

.form-wrapper {
    position: relative
}

.form-text {
    position: absolute;
    top: 0;
    left: 54px;
    font-size: 16px !important;
    font-style: normal !important;
    color: #6c757d
}

textarea.form-control {
    padding-top: 34px
}

.form-control {
    border: none;
    border-radius: 12px;
    padding: 18px 20px 18px 55px;
    font-size: 1rem;
    transition: all .3s ease;
    background: #fff;
    width: 100%;
    color: #495057
}

.form-control:focus {
    border: none;
    box-shadow: 0 0 0 3px #4fa0cb1a;
    background: #fff;
    outline: none
}

.form-control::placeholder {
    color: #adb5bd;
    font-weight: 400
}

select.form-control {
    appearance: none;
    background-image: none;
    cursor: pointer
}

.dropdown-icon {
    position: absolute;
    right: 20px;
    color: #6c757d;
    pointer-events: none;
    z-index: 2
}

.schedule-textarea,
textarea.form-control {
    resize: vertical;
    min-height: 50px
}

.btn-form {
    background: #4FA0CB;
    border-radius: 8px !important;
    font-weight: 500;
    padding: 8px 36px !important;
    display: flex;
    border: 1px solid #4FA0CB ;
    gap: 4px
}

.btn-form:hover {
    background: #4FA0CB;
}

.form-text {
    color: #6c757d;
    font-size: .875rem;
    margin-top: .5rem;
    font-style: italic
}

@media(max-width:991.98px) {
    .contact-form-section {
        min-height: auto;
        padding: 3rem 0
    }
    .contact-image-container {
        height: auto;
        width: 100%;
        margin-bottom: 2rem
    }
    .contact-form-container {
        padding: 2rem
    }
    .form-title {
        font-size: 1.5rem
    }
}

@media(max-width:767.98px) {
    .contact-form-section {
        padding: 2rem 0
    }
    .contact-image-container {
        height: auto;
        width: 100%;
        margin-bottom: 1.5rem
    }
    .contact-form-container {
        padding: 1.5rem
    }
    .form-title {
        font-size: 1.3rem;
        line-height: 1.3
    }
    .form-description {
        font-size: .9rem;
        line-height: 1.5
    }
    .row .col-md-6 {
        margin-bottom: 1rem
    }
    .row .col-md-6:last-child {
        margin-bottom: 0
    }
    .form-group .row .col-md-6:first-child,
    .form-group .row .col-md-6:last-child {
        padding: 0
    }
    .form-control {
        padding: 16px 18px 16px 50px;
        font-size: .95rem
    }
    .input-icon {
        left: 18px;
        width: 18px;
        height: 18px
    }
    .form-text {
        left: 50px;
        font-size: 14px !important
    }
    textarea.form-control {
        padding-top: 32px
    }
}

@media(max-width:575.98px) {
    .contact-form-section {
        padding: 1.5rem 0
    }
    .contact-form-container {
        padding: 1rem
    }
    .form-title {
        font-size: 1.2rem
    }
    .form-description {
        font-size: .85rem
    }
    .form-control {
        padding: 15px 16px 15px 48px;
        font-size: .9rem
    }
    .input-icon {
        left: 16px;
        width: 16px;
        height: 16px
    }
    .form-text {
        left: 48px;
        font-size: 13px !important
    }
    textarea.form-control {
        padding-top: 30px;
        min-height: 45px
    }
    .schedule-textarea {
        min-height: 45px
    }
    .btn-form {
        width: 100%;
        justify-content: center;
        padding: 12px 20px !important;
        font-size: .9rem
    }
    .title-underline {
        width: 60px
    }
}

.trusted-companies-section {
    padding-top: 2rem;
    margin-top: 2rem
}

.trusted-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0
}

.trusted-logos-container {
    padding: 10px;
    margin: 0 auto
}

.trusted-logos {
    gap: 2rem;
    justify-content: center;
    align-items: center
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem
}

.trusted-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: all .3s ease
}

.trusted-logo:hover {
    transform: scale(1.05)
}

@media(max-width:991.98px) {
    .trusted-companies-section {
        padding-top: 1.5rem;
        margin-top: 1.5rem
    }
    .trusted-text {
        font-size: 1rem
    }
    .trusted-logos {
        gap: 1.5rem
    }
    .trusted-logo {
        height: 35px;
        max-width: 100px
    }
}

@media(max-width:767.98px) {
    .trusted-companies-section {
        padding-top: 1rem;
        margin-top: 1rem
    }
    .trusted-text {
        font-size: .95rem;
        line-height: 1.4
    }
    .trusted-logos {
        gap: 1rem;
        justify-content: center
    }
    .logo-item {
        padding: .25rem
    }
    .trusted-logo {
        height: 30px;
        max-width: 80px
    }
}

@media(max-width:575.98px) {
    .trusted-text {
        font-size: .9rem;
        padding: 0 1rem
    }
    .trusted-logos {
        gap: .75rem;
        flex-wrap: wrap;
        justify-content: center
    }
    .logo-item {
        flex: 0 0 calc(33.333% - .5rem);
        max-width: 100px;
        margin-bottom: .5rem
    }
    .trusted-logo {
        height: 25px;
        max-width: 70px
    }
}

@media(max-width:480px) {
    .trusted-text {
        font-size: .85rem
    }
    .logo-item {
        flex: 0 0 calc(50% - .5rem);
        max-width: 100px
    }
    .trusted-logo {
        height: 22px;
        max-width: 60px
    }
}

@media(max-width:480px) {
    .contact-form-container {
        padding: .8rem
    }
    .form-title {
        font-size: 1.1rem
    }
    .form-description {
        font-size: .8rem
    }
    .form-control {
        padding: 14px 15px 14px 45px;
        font-size: .85rem
    }
    .input-icon {
        left: 15px;
        width: 15px;
        height: 15px
    }
    .form-text {
        left: 45px;
        font-size: 12px !important
    }
    textarea.form-control {
        padding-top: 28px
    }
    .btn-form {
        padding: 10px 16px !important;
        font-size: .85rem
    }
}

.footer-section {
    background: linear-gradient(135deg, #4fa0cb, #3a8bb0);
    padding-top: 80px !important
}

.footer-logo-container {
    width: 80px;
    height: 80px;
    background-color: #ffffff1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, .2)
}

.footer-logo-fallback {
    font-size: 24px;
    font-weight: 700
}

.footer-description {
    line-height: 1.6;
    max-width: 400px
}

.footer-social-link {
    background-color: #ffffff1a;
    padding: 8px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none
}

.footer-section-title {
    font-size: 16px;
    letter-spacing: 1px
}

.footer-link {
    opacity: .9
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, .2)
}

.footer-copyright,
.footer-legal-link {
    opacity: .8;
    font-size: 14px
}