/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
ul,
li {
    list-style: none;
}

.btn_ {
    padding: 15px 30px;
    background-color: #fe000c;
    border-radius: 3px;
    outline: none;
    border: none;
    color: #fff;
    transition: background-color 0.3s ease;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}
.btn_:hover {
    background-color: rgba(187, 3, 12, 0.973);
}

/* ================Tob Bar section Start===================== */
.topbar a {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
}
.becomeAnInvestor {
    color: #212121 !important;
}

/* ================Tob Bar section Start======================= */

/* ===============Navbar section Start====================== */
.sticky-top {
    margin: -1px 0 !important;
}
.navbar-brand img {
    width: 160px !important;
}
/* .navbar-brand {
  background-color: #fe000c;
  padding: 10px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
} */
.navbar-brand span {
    color: #fff;
}
.navbar {
    background-color: #fff;
    /* padding: 15px 0; */
}

.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-lg,
.navbar > .container-md,
.navbar > .container-sm,
.navbar > .container-xl,
.navbar > .container-xxl {
    padding: 0 !important;
}

.navbar .nav-link {
    color: #212121;
    font-size: 18px;
    padding-left: 30px !important;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fe000c;
    font-weight: bold;
}
.navbar-brand img {
    margin-right: 10px;
}

.offcanvas.offcanvas-end {
    width: 83%;
}

.toggle-icon i {
    font-size: 20px;
    cursor: pointer;
    padding-left: 5px;
}

.navbar-toggler {
    outline: none !important;
}
.navbar-toggler:focus {
    box-shadow: none !important;
}
.offcanvas-header .btn-close {
    font-size: 27px !important;
}
.dropdown-menu {
    border-top: 1px solid #666885 !important;
    border-bottom: none !important;
}
.dropdown-menu.full-width {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 99%;
    border-radius: 0;
    margin-top: -2px;
    z-index: 1000;
}

.dropdown-menu a {
    font-family: "Roboto", sans-serif;
    font-size: 18px !important;
    font-weight: 500;
    color: #666885;
}

/* Mobile menu nav link styles */

.topbar-mobile-menu i {
    color: #fff;
    margin-bottom: 20px;
}
.offcanvas .nav-link {
    color: #fff;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.offcanvas .nav-link:hover {
    /* background-color: #dc3545; */
    color: #fe000c;
}

/* Active effect */
.offcanvas .nav-link.active {
    /* background-color: #dc3545; */
    color: #fe000c;
    font-weight: bold;
}

/* ===============Navbar section End====================== */

/* ===============Banner Section Start======================= */

.carousel-item {
    height: 700px;
    position: relative;
}

.carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.795);
    z-index: 1;
}

.carousel-inner img {
    object-fit: cover;
}

.banner-item i {
    color: #fff;
    padding-left: 15px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-caption {
    width: 50%;
    z-index: 2;
    position: absolute;
    bottom: 14%;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

.carousel-caption h2 {
    font-size: 50px;
    font-weight: 400;
    color: #fff;
    font-family: "Roboto", sans-serif;
}

.carousel-indicators [data-bs-target] {
    height: 2px;
    padding: 0;
    margin-right: 0;
    margin-left: 0;
    text-indent: 0;
    background-color: #fe000c;
}

.carousel-indicators {
    margin-right: 16%;
    margin-left: 16%;
}

.carousel-indicators button {
    border: none;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 4px;
    width: 100% !important;
    background-color: #ffffff71 !important;
    margin-bottom: 70px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    font-weight: bold;
    color: #fff;
    font-size: 13px;
    background-color: #fe000c !important;
    animation: slideInLeft 0.4s ease-in-out;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.carousel-indicators span {
    padding: 25px 0px !important;
    display: inline-block;
    font-size: 13px;
    color: #fff;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
}
/* ===============Banner Section End======================= */
/* ===============Banner Shap Section Start======================= */
.short_about {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: justify;
    color: white;
}
.short_about p {
    width: 75%;
    font-size: 16px;
    color: #fff;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    line-height: 30px;
}
.short_about span {
    color: #fe000c;
    font-weight: 700;
}
.short_about button {
    background-color: #fe000c;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 3px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}
.short_about i {
    color: #fff;
    padding-left: 15px;
}
/* ===============Banner Shap Section End======================= */
/* ==============breadcrumb section Start================= */
.breadcrumb {
    background: transparent;
    padding-left: 0;
}
.breadcrumb-item {
    color: #fff;
}
.breadcrumb-right-img {
    position: relative !important;
}
.content-wrapper {
    padding: 30px 15px 0px 15px;
    background: url("/images/banner_bg_pattern.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fe000c;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}
.breadcrumb-item {
    font-weight: 500 !important;
    color: #fff;
    font-family: "Roboto", sans-serif;
}
.breadcrumb-item-content h2 {
    font-weight: 600 !important;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 32px;
}
.breadcrumb-item-content p {
    font-weight: 300 !important;
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
    color: #fff;
    font-family: "Noto Sans", sans-serif;
}
.breadcrumb-item-content-img {
    width: 400px;
    height: 220px !important;
    object-fit: cover;
    margin-left: auto !important;
}
.breadcrumb-item-content-img img {
    border-radius: 10px;
    width: 100% !important;
    height: 100%;
}

/* ==============breadcrumb section End================= */

/* ==============Contact section Start================= */
.GetinTouch p {
    color: #fff;
}

.GetinTouch h2 {
    font-weight: 700 !important;
    color: #fff;
    font-family: "Roboto", sans-serif;
}

.contact {
    background-color: #f9f9fb;
    padding: 80px 0px 40px 0px;
}
.contact-title p {
    font-weight: 300;
    font-size: 16px;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}

.contact-title h2 {
    color: #212121;
    padding-bottom: 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 32px;
}

.contact-title span {
    color: #fe000c;
    text-transform: uppercase;
}
.contact label {
    color: #212121;
    padding-bottom: 10px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 16px;
}
.contact-icon {
    background-color: #fe000c;
    width: 30px;
    height: 30px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #fff;
}
.contact-item h5 {
    color: #212121;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 24px;
}
.contact-item p {
    font-weight: 300;
    font-size: 16px;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}
.form-control:focus {
    border-color: #fe000c;
    box-shadow: none;
}

.form-select:focus {
    border-color: #fe000c;
    box-shadow: none;
}

/* ==============Contact section End================= */

/* ===============About Us Section Start=============== */

.about-globex {
    background-color: #f9f9fb;
    padding-top: 70px;
    padding-bottom: 70px;
}
.about-globex-item {
    padding: 0px 22px;
}

.about-globex-content {
    background-color: #fff;
    height: 525px;
    border-radius: 5px;
    padding: 40px;
    display: flex;
    align-items: center;
}

.about-globex-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}
.our-mission {
    padding: 70px 0px;
}
.our-mission-content {
    background-color: #f8f9fa;
    height: 525px;
    border-radius: 5px;
    padding: 40px;
    display: flex;
    align-items: center;
}

.our-mission-content h2 {
    font-weight: 700;
    font-size: 32px;
    font-family: "Roboto", sans-serif;
    position: relative;
}

.our-mission-content h2::after {
    position: absolute;
    left: 0;
    bottom: -15px;
    content: "";
    background-color: #fe000c;
    width: 100px;
    height: 3px;
}

.our-mission-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    padding-top: 40px;
}

.our-mission-content span {
    color: #fe000c;
}

.our-vision {
    padding: 70px 0px;
    background-color: #f8f9fa;
}
.our-vision-content {
    background-color: #fff;
    height: 525px;
    border-radius: 5px;
    padding: 40px;
    display: flex;
    align-items: center;
}

.our-vision-content h2 {
    font-weight: 700;
    font-size: 32px;
    font-family: "Roboto", sans-serif;
    position: relative;
}

.our-vision-content h2::after {
    position: absolute;
    left: 0;
    bottom: -15px;
    content: "";
    background-color: #fe000c;
    width: 100px;
    height: 3px;
}

.our-vision-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    padding-top: 40px;
}

.our-vision-content span {
    color: #fe000c;
}

.what-we-do {
    padding: 70px 0px;
}

.what-we-do-content {
    background-color: #f8f9fa;
    height: 525px;
    border-radius: 5px;
    padding-top: 40px;
    padding-left: 40px;
    display: flex;
    align-items: center;
}

.what-we-do-content h2 {
    font-weight: 700;
    font-size: 32px;
    font-family: "Roboto", sans-serif;
    position: relative;
}

.what-we-do-content h2::after {
    position: absolute;
    left: 0;
    bottom: -15px;
    content: "";
    background-color: #fe000c;
    width: 100px;
    height: 3px;
}

.what-we-do-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    padding-top: 40px;
}

.what-we-do-content .what-we-do-snap {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #666885 !important;
    font-family: "Noto Sans", sans-serif;
}

.what-we-do-content span {
    color: #fe000c;
}

/* =============home-higher-study-abroad ==================*/

.home-higher-study-abroad {
    background-color: #f9f9fb;
}
.home-higher-study-abroad img {
    height: 530px;
}
.home-higher-study-abroad-content {
    height: 525px;
    background-color: #fff;
    border-radius: 5px;
    padding: 40px;
    display: flex;
    align-items: center;
}
.home-higher-study-abroad-content h2 {
    font-weight: 700;
    font-size: 32px;
    font-family: "Roboto", sans-serif;
    position: relative;
}

.home-higher-study-abroad-content h2::after {
    position: absolute;
    left: 0;
    bottom: -15px;
    content: "";
    background-color: #fe000c;
    width: 100px;
    height: 3px;
}

.home-higher-study-abroad-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #666885 !important;
    font-family: "Noto Sans", sans-serif;
}

.home-higher-study-abroad-content span {
    color: #fe000c;
}

/*================== home-visa-support-services ==================*/

.home-visa-support-services {
    background-color: #fff;
}

.home-visa-support-services-content {
    height: 525px;
    background-color: #f9f9fb;
    border-radius: 5px;
    padding: 40px;
    display: flex;
    align-items: center;
}

.home-visa-support-services-content h2 {
    font-weight: 700;
    font-size: 32px;
    font-family: "Roboto", sans-serif;
    position: relative;
}
.home-visa-support-services img {
    height: 530px !important;
}
.home-visa-support-services-content h2::after {
    position: absolute;
    left: 0;
    bottom: -15px;
    content: "";
    background-color: #fe000c;
    width: 100px;
    height: 3px;
}

.home-visa-support-services-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}

.home-visa-support-services-content span {
    color: #fe000c;
}

.study-abroad-section {
    padding: 70px 0;
    background-color: #f9f9fb;
}
.study-abroad-section-content {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
}
.study-abroad-section-content h2 {
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #212121 !important;
    font-size: 32px;
}
.study-abroad-section-content p {
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
}
.study-abroad-section-content span {
    color: #fe000c;
}
.study-image {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-weight: 700;
    color: #0d6efd;
}

.funding-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #dee2e6;
    padding: 20px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.funding-card h5 {
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    margin-bottom: 12px;
    color: #212121 !important;
}

.funding-card ul {
    padding-left: 1.3rem;
    margin-bottom: 0;
}
.funding-card ul li {
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
}
.funding-card ul li i {
    color: #fe000c;
}

.programs-section {
    padding: 70px 0;
}

.programs-section-content {
    background-color: #f9f9fb;
    padding: 15px;
    border-radius: 5px;
}
.programs-section-content span {
    color: #fe000c !important;
}

.programs-section-content h2 {
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #212121 !important;
    font-size: 32px;
    margin-bottom: 20px;
}

.programs-section-content p {
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
}

.program-box {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.program-title {
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #212121 !important;
}

.program-description {
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
}

.program-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.services-section {
    padding: 70px 0;
    background-color: #f9f9fb;
}

.services-section h2 {
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #212121 !important;
    font-size: 32px !important;
}

.services-section span {
    font-weight: 700;
    color: #fe000c;
}

.services-section p {
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h5 {
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    color: #212121 !important;
    font-size: 20px;
}
.icon {
    margin-bottom: 15px;
}
.service-card .icon i {
    font-size: 20px;
    width: 30px;
    width: 30px;
    padding: 5px;
    background-color: #fe000c;
    color: #fff;
    border-radius: 5px;
}
.service-card i {
    color: #fe000c;
    margin-bottom: 10px;
}

.service-list {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.service-list li {
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
}
/* ===============Countries We Work section Start =================== */

.countries-worldwide {
    padding: 70px 0px;
    background-color: rgba(165, 163, 163, 0.11);
}
.country-card {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    font-family: "Noto Sans", sans-serif;
    transition: transform 0.2s ease;
}
.country-card:hover {
    transform: translateY(-3px);
}

.countries-worldwide .accordion-button:not(.collapsed) {
    background-color: #fe000c;
    color: white !important;
    margin-bottom: 10px;
}
.countries-worldwide .accordion-item {
    margin-bottom: 20px;
}

.countries-worldwide .accordion-item:last-child {
    margin-bottom: 0px;
}
.countries-worldwide .accordion-button::after {
    display: none !important;
}
/* Style custom chevron */
.custom-chevron {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: #616060;
    font-size: 20px;
}

.countries-worldwide .accordion-button:not(.collapsed) .custom-chevron {
    transform: rotate(180deg);
    color: #fff;
    font-size: 20px;
}
.countries-worldwide .accordion-body h6 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #212121;
    padding-bottom: 10px;
    padding-top: 15px;
}

.countries-worldwide h2 {
    font-weight: 700;
    font-size: 32px;
    font-family: "Roboto", sans-serif;
}

.countries-worldwide p {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}

.countries-worldwide span {
    color: #fe000c;
}

/* ===============Countries We Work section End =================== */

/* ================Visa Processing section Start================= */
.visa-processing {
    background-color: #f9f9fb;
    padding: 70px 0px 40px 0px;
}
.visa-processing h2 {
    font-family: "Roboto", sans-serif;
    color: #212121;
    font-weight: 600;
    font-size: 32px;
}
.visa-processing span {
    color: #fe000c;
}
.visa-processing-btn {
    background-color: #fe000c;
    padding: 10px 20px;
    border: none;
    font-family: "Roboto", sans-serif;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 20px;
}
.visa-processing-content p {
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
    text-align: justify;
}
.blog-content-img {
    height: 200px;
    width: 400px !important;
    object-fit: cover;
}

.visa-processing-content h5 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #212121;
    font-size: 20px;
}

.visa-processing-content ul li {
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    font-size: 16px;
}
.long-short-heading {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #212121;
    font-size: 30px;
}

.accordion-item {
    border: none !important;
}

.border-container {
    border: 2px dotted #fe000c;
    border-radius: 15px;
    display: inline-block;
}
.custom-accordion-btn {
    background-color: transparent !important;
    font-family: "Roboto", sans-serif;
    color: #212121;
    font-weight: 500;
    border: none;
    font-size: 26px;
    transition: background-color 0.3s ease;
}

.custom-accordion-btn:not(.collapsed) {
    background-color: transparent !important;
    color: #212121;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important ;
}

.accordion-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 0 !important;
}
.step-image {
    max-width: 250px;
    height: auto;
}
.step-content {
    flex: 1;
    min-width: 250px;
}

.step-number {
    font-size: 25px;
    font-weight: bold;
    color: #212121;
    border-radius: 100%;
    border: 1px dotted #212121;
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.visa-buttom-content {
    text-align: justify;
    color: #666885;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 16px;
}
@media (max-width: 768px) {
    .accordion-body {
        flex-direction: column;
    }
}
/* ================visa-processing section End================= */
/* =============Page waisy contact start================= */
.visa-processing-contact {
    background-color: #f9f9fb;
    padding: 40px 0px 40px 0px;
}
.visa-processing-contact-content {
    border: 2px dotted #212121 !important;
}

.visa-processing-contact strong {
    font-family: "Roboto", sans-serif;
    color: #212121;
    font-weight: 700;
    font-size: 18px;
}
.visa-processing-contact a {
    text-align: justify;
    color: #666885 !important;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    font-size: 18px;
}
.visa-processing-contact p {
    color: #666885 !important;
    font-family: "Noto Sans", sans-serif;
    font-weight: 300;
    font-size: 18px;
}
.visa-processing-contact h4 {
    font-family: "Roboto", sans-serif;
    color: #212121 !important;
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 25px;
    width: 80%;
}

.visa-processing-contact h5 {
    font-family: "Roboto", sans-serif;
    color: #212121;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 20px;
}
/* =============Page waisy contact start================= */

/* ================Team Section Start===================== */

/* ==============Footer section Start================= */
.footer {
    background-color: #051d41;
}

.footer-about p {
    text-align: start;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}
.social-icon i {
    /* background-color: #000000; */
    padding: 5px;
    color: #ffff;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    font-size: 22px !important;
    line-height: 20px;
    text-align: center;
}

.footer-our-services h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 700 !important;
    font-size: 18px;
    color: #fff;
    position: relative;
    margin-bottom: 25px;
}
.footer-our-services h6::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    content: "";
    width: 60px;
    height: 3px;
    background-color: #fe000c;
}

.footer-quick-links h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 700 !important;
    font-size: 18px;
    color: #fff;
    position: relative;
    margin-bottom: 25px;
}
.footer-quick-links h6::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    content: "";
    width: 60px;
    height: 3px;
    background-color: #fe000c;
}
/* .footer-contact{
  padding-left: 50px !important;
} */
.footer-contact h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 700 !important;
    font-size: 18px;
    color: #fff;
    position: relative;
    margin-bottom: 25px;
}

.footer-contact-icon {
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
}

.footer-contact h6::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    content: "";
    width: 60px;
    height: 3px;
    background-color: #fe000c;
}

.footer-our-services a {
    color: #fff !important;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.footer-quick-links a {
    color: #fff !important;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.footer-contact p {
    color: #fff !important;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.copyright {
    padding: 40px 0px;
    border-top: 2px dotted #fff;
}
.copyright p {
    color: #fff !important;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.copyright a {
    padding-right: 15px;
    border-right: 1px solid #fff !important;
    color: #fff !important;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.copyright :last-child {
    border-right: none !important;
    padding-right: 0;
}
/* ==============Footer section End================= */
.terms-conditions {
    background-color: #f9f9fb;
    padding: 50px 0px;
}

.terms-section {
    background-color: #fff;
    padding: 3rem;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
}
.terms-section p {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}

.terms-section h5 {
    font-weight: 500;
    color: #212121;
    font-size: 20px;
    font-family: "Roboto", sans-serif;
}
.terms-section ul li {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}
.privacy-poicy {
    background-color: #f9f9fb;
    padding: 50px 0px;
}
.privacy-poicy-content {
    background-color: #ffffff;
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
}
.privacy-poicy-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    padding-bottom: 15px;
    text-align: justify;
}

.privacy-poicy-content h5 {
    font-weight: 500;
    color: #212121;
    font-size: 26px;
    font-family: "Roboto", sans-serif;
    padding-bottom: 20px;
}

.team {
    padding: 70px 0;
    /* background-color: #f8f9fa; */
}
.team h2 {
    font-size: 32px;
    font-weight: 700;
    color: #212121;
    font-family: "Roboto", sans-serif;
}
.team span {
    color: #fe000c;
}
.team-item img {
    height: 630px;
    width: 100% !important;
}
.team-content {
    background-color: #f8f9fa;
    /* height: 730px; */
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 20px;
}

.team-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #212121;
    font-family: "Roboto", sans-serif;
    position: relative;
    margin-bottom: 20px;
}

.team-content h3::after {
    position: absolute;
    left: 0;
    bottom: -10px;
    content: "";
    background-color: #fe000c;
    height: 3px;
    width: 100px;
}

.team-content h4 {
    font-size: 18px;
    font-weight: 500;
    color: #212121;
    font-family: "Roboto", sans-serif;
}

.team-content p {
    font-size: 16px;
    font-weight: 300;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}

.prev {
    background: transparent;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 111;
    border: 1px solid #fe000c;
    color: #fe000c;
    transition: 0.5s;
}
.prev:hover {
    background-color: #fe000c;
    border: none;
    color: #fff;
}

.next {
    background: transparent;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 111;
    border: 1px solid #fe000c;
    color: #fe000c;
    transition: 0.5s;
}

.next:hover {
    background-color: #fe000c;
    border: none;
    color: #fff;
}
/* ==============Project Section Start================== */
.project {
    padding: 70px 0 70px 0;
}
.project-card ul {
    padding-left: 0;
}
.project.card-title {
    font-size: 32px;
    color: #212121;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

.card-subtitle {
    font-size: 20px;
    color: #212121;
    font-weight: 600;
    padding: 10px 0;
    font-family: "Roboto", sans-serif;
}

.card-subtitle ul li {
    font-size: 16px;
    font-weight: 300;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}

.project-card ul li {
    padding-bottom: 5px;
}

.project-card:hover {
    transform: translateY(-4px);
}
/* ==============Project Section End================== */
/* ==============why invest Start================== */
.invest {
    padding: 60px 0;
}
.invest ul li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.invest-content {
    background-color: #f9f9fb;
    height: 530px;
    display: flex;
    align-items: center;
    padding: 40px;
}
.invest-content h3 {
    font-size: 32px;
    color: #212121;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    position: relative;
}
.invest-content h3::after {
    position: absolute;
    bottom: -15px;
    left: 0;
    background-color: #fe000c;
    height: 3px;
    width: 100px;
    content: "";
}
.invest-content li {
    font-size: 16px;
    font-weight: 300;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}
/* ==============why invest End================== */

/* =============Domestic section Start===================== */
.domestic {
    padding: 60px 0px;
}
.domestic-content {
    background-color: #f8f9fa;
    height: 530px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 40px;
}
.domestic-content h2 {
    font-size: 32px;
    color: #212121;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    position: relative;
    margin-bottom: 50px;
}

.domestic-content h2::after {
    position: absolute;
    bottom: -20px;
    left: 0;
    background-color: #fe000c;
    height: 3px;
    width: 100px;
    content: "";
}

.domestic-content p {
    font-size: 16px;
    font-weight: 300;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}

.domestic-content ul li {
    font-size: 16px;
    font-weight: 300;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}

.domestic-content span {
    color: #fe000c;
}
/* =============domestic section Start=============================== */

/* =============InternationalAirTicket section Start================ */
.InternationalAirTicket {
    background-color: #f8f9fa;
    padding: 60px 0px;
}
.InternationalAirTicket-content {
    background-color: #fff;
    height: 530px;
    display: flex;
    align-items: center;
    padding: 40px;
    border-radius: 5px;
}

.InternationalAirTicket-content h2 {
    font-size: 32px;
    color: #212121;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    position: relative;
    margin-bottom: 50px;
}

.InternationalAirTicket-content h2::after {
    position: absolute;
    bottom: -20px;
    left: 0;
    background-color: #fe000c;
    height: 3px;
    width: 100px;
    content: "";
}

.InternationalAirTicket-content p {
    font-size: 16px;
    font-weight: 300;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    line-height: 28px;
}
.InternationalAirTicket-content span {
    color: #fe000c;
}

/* =============InternationalAirTicket section End================ */

/* =============partner-airlines section Start================ */
.partner-airlines {
    padding: 70px 0;
}

.partner-airlines h2 {
    font-size: 32px !important;
    color: #212121 !important;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    margin-bottom: 70px;
}

.partner-airlines span {
    color: #fe000c;
}
.continent-header h5 {
    font-size: 24px;
    color: #212121;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}
.continent-card {
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.continent-card strong {
    font-size: 20px;
    color: #212121;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

.continent-card ul li {
    font-size: 16px;
    font-weight: 300;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    padding-top: 10px;
}

.continent-card p {
    font-size: 16px;
    font-weight: 300;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}
.partner-airlines p {
    font-size: 16px;
    font-weight: 500;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}
.continent-card:hover {
    transform: translateY(-5px);
}
.continent-icon {
    font-size: 40px;
    background-color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 5px;
}
.continent-header {
    background-color: #f9f9fb;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    text-align: center;
}
/* =============partner-airlines section End================ */
/* =============why-choose-globex section End================ */
.why-choose-globex {
    padding: 70px 0;
    background-color: #f8f9fa;
    margin-top: 40px;
}
.feature-box {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 5px;
    height: 530px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.feature-box h2 {
    color: #212121;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    margin-bottom: 40px;
    font-size: 32px;
    position: relative;
}
.feature-box span {
    color: #fe000c;
}
.feature-box h2::after {
    position: absolute;
    bottom: -20px;
    left: 0;
    background-color: #fe000c;
    height: 3px;
    width: 100px;
    content: "";
}

.check-icon {
    color: #198754;
    margin-right: 10px;
}
.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* =============why-choose-globex section End================ */

/* ================Job Seekers-section Start=================== */
.job-seeker {
    padding: 70px 0px;
}

.job-seeker h2 {
    font-weight: 600;
    font-size: 32px;
    color: #212121;
    font-family: "Roboto", sans-serif;
}

.job-seeker span {
    color: #fe000c !important;
}
.job-box {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}
.job-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}
.job-seeker-icon {
    width: 30px;
    height: 30px;
    background-color: #fe000c;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 15px;
}

.job-seeker-icon i {
    font-size: 20px !important;
    color: #fff !important;
}

.job-box h5 {
    font-weight: 600;
    font-size: 20px;
    color: #212121;
    font-family: "Roboto", sans-serif;
    margin-bottom: 15px;
}
.job-box ul {
    padding-left: 1.2rem;
}
.job-box ul li {
    font-size: 16px;
    font-weight: 500;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}

.cta-btn {
    background-color: #0d6efd;
    color: #fff;
    font-weight: 500;
}
/* ================Job Seekers-section End=================== */
/* ================employer-section Start=================== */
.employer-section {
    background: #f4f6f9;
    padding: 60px 0;
}
.section-title {
    font-weight: 600;
    font-size: 32px;
    color: #212121;
    font-family: "Roboto", sans-serif;
}
.employer-section-icon {
    width: 30px;
    height: 30px;
    background-color: #fe000c;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    border-radius: 5px;
    margin-bottom: 15px;
}
.info-box {
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
}
.info-box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}
.employer-section-icon i {
    font-size: 20px;
    color: #fff;
}
.info-box ul li {
    font-size: 16px;
    font-weight: 500;
    color: #666885;
    padding-bottom: 10px;
    font-family: "Noto Sans", sans-serif;
}

.info-box h5 {
    font-weight: 600;
    font-size: 20px;
    color: #212121;
    font-family: "Roboto", sans-serif;
    margin-bottom: 15px;
}
.info-box ul {
    padding-left: 1.2rem;
}

.cta-btn {
    background-color: #0d6efd;
    color: #fff;
    padding: 12px 30px;
    font-weight: 500;
}
/* ================employer-section End=================== */
/* =========Why Invest Section Start ============== */
.why-Invest {
    padding: 50px 0;
}
.why-Invest h1 {
    font-weight: 600;
    font-size: 32px !important;
    color: #212121;
    font-family: "Roboto", sans-serif;
}

.why-Invest span {
    color: #fe000c;
}

.investment-benefits h5 {
    font-weight: 600;
    font-size: 20px !important;
    color: #212121;
    font-family: "Roboto", sans-serif;
}

.investment-benefits p {
    font-size: 16px;
    font-weight: 300;
    color: #666885;
    padding-left: 15px;
    font-family: "Noto Sans", sans-serif;
}
.Investment-opportunity {
    /* background-color: #e0e0e0; */
    /* padding: 70px 0px 20px 0px !important; */
}
.arrow-step {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    background: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.section-header {
    font-weight: 600;
    font-size: 32px !important;
    color: #212121;
    font-family: "Roboto", sans-serif;
    margin-bottom: 10px;
}
.lead {
    font-size: 16px !important;
    font-weight: 300 !important;
    color: #666885 !important;
    font-family: "Noto Sans", sans-serif;
}
.Investment-opportunity h5 {
    font-weight: 600;
    font-size: 20px !important;
    color: #212121;
    font-family: "Roboto", sans-serif;
}
.Investment-opportunity span {
    color: #fe000c !important ;
}
.Investment-opportunity p {
    font-size: 16px;
    font-weight: 300;
    color: #666885;
    padding-left: 15px;
    font-family: "Noto Sans", sans-serif;
}
/* =========Why Invest Section End ============== */
/* =========Invest From Section Start ============== */
.investor-form {
    padding: 70px 0px 30px 0px;
    background-color: #f8f9fa;
}

.investor-form h5 {
    text-align: center;
    font-weight: 600;
    font-size: 32px !important;
    color: #212121;
    font-family: "Roboto", sans-serif;
}
.investor-form span {
    color: #fe000c;
}

.investor-form p {
    text-align: center;
    width: 60%;
    margin: auto;
    font-size: 16px;
    font-weight: 300;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
    padding-top: 10px;
    padding-bottom: 40px;
}
.investor-form label {
    color: #212121;
    padding-bottom: 10px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 16px;
}
.form-section {
    border: 1px solid #dee2e6;
    padding: 1.5rem;
    border-radius: 8px;
    background: #fff;
}

.form-label-bold {
    font-weight: 600;
}

.table-like-row {
    border-bottom: 1px solid #dee2e6;
    padding: 0.5rem 0;
}

.summary-box {
    min-height: 100px;
}

.submit-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 15px !important;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.next-steps {
    background-color: #f9f9fb;
    padding-bottom: 70px;
}
.next-steps-item h2 {
    font-size: 30px !important;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}
.next-steps-item p {
    font-size: 18px;
    font-weight: 300;
    color: #666885;
    font-family: "Noto Sans", sans-serif;
}
/* =========Invest From Section End ============== */

/* ============Back To Top Button Start===================== */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 25px;
    transition: opacity 0.3s ease-in-out;
    background-color: #fe000c;
    border: none !important;
    color: #fff;
}
/* ============Back To Top Button End===================== */

/* =====================Blog section End==================== */
.blog-item-content span {
    color: #666885 !important;
    font-size: 14px;
    font-weight: 400;
    font-family: "Noto Sans", sans-serif;
}
.blog-item-content h5 {
    color: #000000 !important;
    font-size: 18px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}
.blog-item-content a {
    color: #fe000c;
    font-size: 14px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.blog-img-hover {
    transition: transform 0.5s ease;
}

.blog-img-hover:hover {
    transform: scale(1.05);
}

/* =====================Blog section End==================== */

/* =====================Blog  single page section Start==================== */
.right-side-menu-category-list {
    border: 2px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
}
.right-side-menu-latest-post {
    border: 2px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
}

.slick-slide {
    padding-right: 5px;
    padding-left: 5px;
}

.slick-track .slick-slide:not(.slick-cloned):last-of-type {
    margin-right: 0 !important;
}

.blogdetails {
    background-color: #f9f9fb;
    padding: 80px 0px;
}

.blogdetails .card-title {
    color: #000000 !important;
    font-size: 18px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

.blogdetails .card span {
    color: #666885 !important;
    font-size: 14px;
    font-weight: 500;
    font-family: "Noto Sans", sans-serif;
}
.blog-card-top-img {
    height: 500px !important;
    width: 100%;
    object-fit: cover;
}
.blogdetails-pra {
    color: #666885 !important;
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
    line-height: 28px;
    font-family: "Noto Sans", sans-serif;
}

.blog-item-slider .card-body h6 {
    color: #000000 !important;
    font-size: 18px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

.blog-item-slider .card-body p {
    color: #666885 !important;
    font-size: 14px;
    font-weight: 400;
    font-family: "Noto Sans", sans-serif;
}

.blog-item-slider .card-body a {
    color: #fe000c;
    font-size: 14px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}
.blog-item-slider img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.right-side-menu-category-list ul li a {
    color: #666885 !important;
    font-size: 14px;
    font-weight: 400;
    font-family: "Noto Sans", sans-serif;
}

.right-side-menu-category-list h6 {
    color: #000000 !important;
    font-size: 18px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

.right-side-menu-latest-post ul li a {
    color: #666885 !important;
    font-size: 14px;
    font-weight: 400;
    font-family: "Noto Sans", sans-serif;
}

.right-side-menu-latest-post h6 {
    color: #000000 !important;
    font-size: 18px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}
/* =====================Blog  single page section End==================== */
/* =============== How we Work Section Start========================= */
.how-we-work {
    padding: 80px 0px;
}
.how-we-work h2 {
    color: #000000 !important;
    font-size: 32px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    margin-bottom: 80px;
}
.how-we-work span {
    color: #fe000c;
}
.how-we-work .card-step {
    border: none;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-radius: 12px;
}
.how-we-work .card-step:hover {
    transform: translateY(-5px);
}
.how-we-work .card-step img {
    max-width: 130px;
    margin: 20px auto 10px;
}
.how-we-work .card-title {
    font-size: 16px;
    font-weight: 600;
    color: #343a40;
}

.how-we-work .prev {
    background: transparent;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 40%;
    left: -30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 111;
    border: 1px solid #fe000c;
    color: #fe000c;
    transition: 0.5s;
}
.how-we-work .prev:hover {
    background-color: #fe000c;
    border: none;
    color: #fff;
}

.how-we-work .next {
    background: transparent;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    top: 40%;
    right: -30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    z-index: 111;
    border: 1px solid #fe000c;
    color: #fe000c;
    transition: 0.5s;
}

.how-we-work .next:hover {
    background-color: #fe000c;
    border: none;
    color: #fff;
}

/* =============== How we Work Section End========================= */
.solutions-section {
    background-color: #f4f6f9;
    padding: 60px 20px;
}
.solutions-section h2 {
    color: #000000 !important;
    font-size: 32px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
}

.solutions-section span {
    color: #fe000c;
}

.solutions-card {
    border: none;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s;
}
.solutions-card:hover {
    transform: translateY(-5px);
}
.solutions-title {
    font-size: 20px;
    font-weight: 700;
    color: #212121;
}
.solutions-list {
    padding-left: 1rem;
}
.solutions-list li {
    color: #666885 !important;
    font-size: 16px;
    font-weight: 400;
    font-family: "Noto Sans", sans-serif;
    margin-bottom: 8px;
}

/* comment start */
#commentForm input {
    height: 50px;
}
.comment_btn {
    background-color: #fe000c;
    padding: 9px 8px;
    color: #fff;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    border: none !important;
    border-radius: 3px;
}
/* comment start */
.related_posts {
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
}
