:root {
    --theme-color: #fee267;
    --theme-color-2: #df2229;
    --theme-color-3: #0b69cb;
    --bs-primary: #0b69cb !important;
    --bs-danger: #df2229 !important;
}

* {
    font-family: "Roboto", sans-serif;
    transition: all 0.5s;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 700;
}

body,
p {
    font-family: "Roboto", sans-serif;
    line-height: 26px;
    font-weight: normal;
    font-style: normal;
    color: #444;
    font-size: 16px;
}

.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 4s ease forwards;
}

.success-toast {
    background-color: #333;
}

.error-toast {
    background-color: #d9534f;
    animation: fadeInOut 10s ease forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
        display: none;
    }

    10% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        display: block;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        display: none;
    }
}

.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 55px;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    color: #fff;
}

main.main-page-area {
    background-color: #f7f8f9;
}

input.form-control {
    box-shadow: none !important;
}

img.main-logo {
    width: 100px;
}

a {
    text-decoration: none;
    color: inherit;
}

nav.navbar {
    background-color: var(--theme-color);
}

/* TEXT COLORS */
.text-primary {
    color: #0b69cb !important;
}

.text-danger {
    color: #df2229 !important;
}

/* BACKGROUND COLORS */
.bg-primary {
    background-color: #0b69cb !important;
}

.bg-danger {
    background-color: #df2229 !important;
}

/* BORDER COLORS */
.border-primary {
    border-color: #0b69cb !important;
}

.border-danger {
    border-color: #df2229 !important;
}

/* BUTTON PRIMARY */
.btn-primary {
    background-color: #0b69cb !important;
    border-color: #0b69cb !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #095bb0 !important;
    border-color: #095bb0 !important;
}

/* BUTTON DANGER */
.btn-danger {
    background-color: #df2229 !important;
    border-color: #df2229 !important;
}

.btn-danger:hover,
.btn-danger:focus {
    background-color: #c41c22 !important;
    border-color: #c41c22 !important;
}

/* OUTLINE PRIMARY */
.btn-outline-primary {
    color: #0b69cb !important;
    border-color: #0b69cb !important;
}

.btn-outline-primary:hover {
    background-color: #0b69cb !important;
    color: #fff !important;
}

/* OUTLINE DANGER */
.btn-outline-danger {
    color: #df2229 !important;
    border-color: #df2229 !important;
}

.btn-outline-danger:hover {
    background-color: #df2229 !important;
    color: #fff !important;
}

/* BADGES */
.badge.bg-primary {
    background-color: #0b69cb !important;
}

.badge.bg-danger {
    background-color: #df2229 !important;
}

/* ALERTS */
.alert-primary {
    background-color: #e7f1fb !important;
    color: #0b69cb !important;
    border-color: #0b69cb !important;
}

.alert-danger {
    background-color: #fde8e9 !important;
    color: #df2229 !important;
    border-color: #df2229 !important;
}

.top-marquee {
    background-color: #df2229;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    padding: 10px 0;
    color: #ffffff;
    font-weight: 500;
    animation: marqueeMove 20s linear infinite;
}

.marquee-content span {
    margin-right: 60px;
    font-size: 14px;
}

.top-marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marqueeMove {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


.animate-item {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.active .animate-item {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll activated */
.slide-left {
    transform: translateX(-100px);
    transition: transform 1s ease;
}

.slide-right {
    transform: translateX(100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-left,
.scroll-animate.active .slide-right {
    transform: translateX(0);
}

.slide-up {
    transform: translateY(100px);
    transition: transform 1s ease;
}

.slide-down {
    transform: translateY(-100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-up,
.scroll-animate.active .slide-down {
    transform: translateY(0);
}

a {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

section.hero-section {
    padding: 0;
}

.hero-section img {
    height: 600px;
    object-fit: cover;
}

.hero-section .carousel-caption {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: 40%;
    z-index: 1;
}

.hero-section .carousel-caption h2.banner-title {
    font-size: 65px;
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 20px;
    display: block;
}

.highlight {
    font-weight: inherit;
    color: transparent;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-color));
    background-clip: text;
}

.hero-section .carousel-caption p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    color: #000;
    width: 80%;
}

h5.banner-sub-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--theme-color-2);
}

section.hero-section .carousel-control-next-icon,
section.hero-section .carousel-control-prev-icon {
    background-color: var(--theme-color-2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background-size: 30px;
    position: absolute;
}


/* Banner Animation */
.hero-anim-item {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.8s cubic-bezier(.2, .9, .2, 1), opacity 0.8s cubic-bezier(.2, .9, .2, 1);
    will-change: transform, opacity;
}

.hero-anim-show {
    opacity: 1;
    transform: translate(0, 0);
}

.hero-anim-up {
    transform: translateY(100px);
}

.hero-anim-down {
    transform: translateY(-100px);
}

.hero-anim-left {
    transform: translateX(-100px);
}

.hero-anim-right {
    transform: translateX(100px);
}

.hero-anim-show.hero-anim-up,
.hero-anim-show.hero-anim-down,
.hero-anim-show.hero-anim-left,
.hero-anim-show.hero-anim-right {
    transform: translate(0, 0);
}

.carousel-item::after {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(255 202 202 / 80%) 31.2%, rgba(0, 9, 41, 0) 65.89%);
}

.carousel-item {
    position: relative;
    z-index: 1;
}

.btn-button {
    background-color: #0b69cb;
    color: #ffffff;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(11, 105, 203, 0.25);
}

.btn-button:hover {
    background-color: #095bb0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(11, 105, 203, 0.35);
}

.btn-button:active {
    transform: translateY(0px);
    box-shadow: 0 3px 8px rgba(11, 105, 203, 0.25);
}

.btn-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 105, 203, 0.3);
}

.navbar-search {
    width: 100%;
    max-width: 520px;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 6px 8px 6px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.search-wrapper:focus-within {
    box-shadow: 0 6px 20px rgba(11, 105, 203, 0.25);
}

.search-icon {
    position: absolute;
    left: 15px;
    font-size: 16px;
    color: #0b69cb;
}

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

.search-input::placeholder {
    color: #888;
}

.search-btn {
    background-color: #0b69cb;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.search-btn:hover {
    background-color: #095bb0;
}

section {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

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

.wwd-row {
    display: flex;
}

.wwd-icon img {
    width: 82px;
    margin-bottom: 20px;
}

.wwd-contact {
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.wwd-card {
    display: flex;
    align-items: center;
    padding: 30px 10px;
    height: 100%;
    transition: all 0.3s ease;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.wwd-card:hover {
    background: #ffe9e9;
}

.section-title {
    font-weight: 700;
    position: relative;
}

.section-description {
    max-width: 750px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
}

.custom-list {
    list-style: none;
    padding: 0;
    max-width: 750px;
    margin: 0 auto;
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
}

.custom-list li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--theme-color);
    font-size: 18px;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    margin-bottom: 14px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.why-list i {
    color: var(--theme-color);
    margin-right: 10px;
    font-size: 18px;
}


.commitment-box h2 {
    font-weight: 700;
}

.commitment-box p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

.why-box-main {
    background-image: url(../image/card-bg-1.jpg);
    height: 500px;
    padding: 40px;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    color: #fff;
}

.why-box-main::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 80%) 31.2%, rgba(0, 9, 41, 0) 65.89%);
    z-index: -1;
}

.info-box {
    background: #fff;
    padding: 20px;
    display: flex;
}

.hold-area {
    position: sticky;
    top: 10px;
}

.why-box-main p {
    color: #fff;
}

.about-card {
    height: 800px;
    background-image: url(../image/about-bg.jfif);
}

.info-icon img {
    width: 80px;
    object-fit: contain;
    margin-right: 20px;
}

.cta-section {
    background: url(../image/cta-bg.jpg) center center / cover no-repeat;
    position: relative;
    z-index: 2;
}

.cta-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.cta-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-text {
    color: #f1f1f1;
    font-size: 17px;
    line-height: 1.8;
    max-width: 700px;
}

.cta-btn {
    background-color: #df2229;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background-color: #c41c22;
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.contact-section {
    background: #f9fafc;
}

.contact-title {
    font-weight: 700;
    font-size: 30px;
    color: #0b69cb;
}

.contact-title i {
    color: #df2229;
}

.contact-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.contact-list i {
    color: #0b69cb;
    font-size: 18px;
}

.contact-list a {
    color: #df2229;
    font-weight: 600;
    text-decoration: none;
}

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

.contact-note {
    background: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 18px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #7a5c00;
    display: flex;
}

.contact-note i {
    color: #ffc107;
    font-size: 18px;
}

.contact-image img {
    height: 300px;
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.policy-section {
    background: #f8f9fc;
}

.policy-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.policy-title {
    font-weight: 700;
    color: #0b69cb;
    font-size: 32px;
}

.policy-title i {
    color: #df2229;
}

.policy-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.policy-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
}

.policy-list li::before {
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 3px;
    color: #df2229;
    font-size: 18px;
}

li.nav-item .nav-link {
    color: #000;
    font-weight: 500;
}

.min-h-screen img.main-logo {
    width: 65px;
}

.pagination {
    justify-content: center;
    margin-top: 40px;
}

.page-item .page-link {
    border: none;
    margin: 0 5px;
    border-radius: 8px;
    padding: 8px 14px;
    color: #0b69cb;
    font-weight: 500;
    background-color: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-item .page-link:hover {
    background-color: #0b69cb;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background-color: #df2229;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(223, 34, 41, 0.3);
}

.page-item.disabled .page-link {
    background-color: #f1f1f1;
    color: #999;
    box-shadow: none;
}

.section-header.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
a.view-all-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color-2);
}