body {
    font-family: Outfit;
}

.bg-orange {
    background-color: #e75d31;
}

.text-orange {
    color: #e75d31;
}

.bg-dark-blue {
    background-color: #1d130f;
}

.border-orange:hover {
    border-color: #e75d31 !important;
}

.star-icon {
    width: 20px;
    height: 20px;
    fill: #fba66d;
}

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

a:hover {
    color: #e75d31;
}

.mt-6 {
    margin-top: 6rem !important;
}

.navbar-nav .nav-link {
    color: #000;
    /* Customize link color */
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%280, 0, 0, 0.5%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

@media (min-width: 992px) {
    .navbar-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
}

.future-section {
    background: url("images\\Backgrounds\\Future-section-background.svg") no-repeat center center;
    background-size: cover;
}

.orange-hr {
    color: #e75d31;
}

.feature-section img {
    border-radius: 9px;
}

h4 {
    font-weight: bolder !important;
}

section.py-5 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

section.pb-5 {
    padding-bottom: 6rem !important;
}

.bg-dark-blue.rounded {
    border-radius: 15px !important;
}

.track-record-section {
    background-color: #fbf9f9;
}

.bg-white.rounded,
.bg-light.rounded {
    border-radius: 15px !important;
}

.contact-us-section {
    margin-bottom: 6rem !important;
}

.contact-us-section .container {
    border-radius: 32px;
}

.contact-us-section .row, .about-bottom-section .row {
    background: url("images\\Backgrounds\\contact-us-logo-background.svg") no-repeat center center;
    background-size: 100% auto;
    border-radius: 32px;
}

@media (max-width: 768px) {
    .container {
        padding-right: calc(var(--bs-gutter-x)* 1.5) !important;
        padding-left: calc(var(--bs-gutter-x)* 1.5) !important;
    }
}

.reviews-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* Adjust the gap value as needed */
    flex-wrap: wrap;
    /* Allow wrapping */
}

.review-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Ensures content is spread out */
}

.review-content p {
    flex: 1;
    /* Ensures paragraph stretches to fill the available space */
}

.review-footer {
    text-align: center;
    margin-top: 20px;
}

.bg-custom {
    background-color: #FBF9F9;
}

.bg-white-footer .bg-custom {
    background-color: #fff;
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-30 {
    border-radius: 30px;
}

.star-icon {
    width: 20px;
    /* Adjust size as needed */
    margin-right: 5px;
}

.review-logo {
    max-width: 100px;
    /* Adjust size as needed */
}

@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        /* Stack cards vertically */
    }
}

.track-record-section {
    background-color: #FBF9F9;
}

.track-record-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    /* Adjust the gap value as needed */
    align-items: stretch;
}

.track-record-container {
    flex-direction: column;
    /* Stack cards vertically */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* Adjust the gap as needed */
    width: 100%;
}

.track-record-heading {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.track-record-item {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    flex: 1 1 calc(25% - 20px);
    /* Adjust the width as needed */
    min-width: 100%;
}

.track-record-image {
    max-width: 33.333%;
    border-radius: 15px;
}

@media (max-width: 992px) {
    .track-record-row {
        flex-direction: column;
        /* Stack cards vertically */
        flex-wrap: wrap;
        /* Allow wrapping */
    }

    .track-record-image {
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .track-record-row {
        align-items: center !important;
    }
}

.contact-section {
    padding: 2rem 0;
    background-color: #FBF9F9;
}

.contact-section input,
.contact-section textarea {
    border-radius: 10px;
}

.contact-section-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: normal;
    gap: 20px;
}

.contact-section-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.contact-section-col h2 {
    margin: 0;
}

.contact-section-col form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: column;
    flex: 1;
}

.contact-card {
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: start;
    }
}

.contact-info .icon {
    color: #F56A00;
}

.btn-orange {
    background-color: #F56A00;
    color: #fff;
    border: 2px solid #F56A00;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.btn-orange:hover {
    background-color: #e65c00;
    color: #fff;
}

.btn-orange-inverted {
    background-color: transparent;
    color: #F56A00;
    border: 2px solid #F56A00;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.btn-orange-inverted:hover {
    background-color: #F56A00;
    color: #fff;
}

@media (max-width: 768px) {
    .contact-section-col {
        min-width: 100%;
    }
}

.faq-section {
    padding: 2rem 0;
    background-color: #FBF9F9;
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.accordion-button:not(.collapsed)::after {
    /* Remove default blue color */
    filter: saturate(0%) brightness(70%) contrast(1000%);
}

.accordion-item:not(:first-of-type) {
    /* Override bootstrap (they remove the top border) */
    border: #dee2e6 solid 1px;
}

.accordion-item {
    margin-bottom: 15px;
    border: #dee2e6 solid 1px;
    border-radius: 10px;
}

.faq-accordion .accordion-button {
    background-color: #fff;
    color: #000;
    border-radius: 10px 10px 0 0;
}

.faq-accordion .accordion-button.collapsed {
    border-radius: 10px;
}

.faq-accordion .accordion-body {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
}

.accordion-item:first-of-type {
    border-radius: 10px;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 10px 10px 0 0;
}

.faq-accordion .accordion-button.collapsed {
    border-radius: 10px;
}

.accordion-item:last-of-type {
    border-radius: 10px;
    margin-bottom: 0;
}

.accordion-item:last-of-type .accordion-button {
    border-radius: 10px 10px 0 0;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 10px;
}

.accordion-button:focus {
    z-index: 3;
    border-color: var(--bs-accordion-btn-focus-border-color);
    outline: 0;
    box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion {
    --bs-accordion-btn-focus-border-color: #e75d31;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(231 93 49);
    ;
}

.faq-contact {
    background: url("images\\Backgrounds\\contact-us-logo-background.svg") no-repeat center center;
    background-size: 100% auto;
    border-radius: 32px;
    background-color: #e75d31;
    color: white;
    padding: 2rem;
    margin-top: 2rem;
}

.faq-contact .btn {
    border: 2px solid #fff;
}

.btn-orange-inverted-white {
    background-color: #e75d31;
    color: #fff;
    border: 2px solid #fff;
}

.btn-orange-inverted-white:hover {
    background-color: #c94b23;
    color: #fff;
    border: 2px solid #fff;
}

.btn-dark {
    border: 2px solid #212529;
    padding: 0.5rem 1rem;
}

.logo {
    background: url("images\\logo.png") no-repeat center center;
    background-size: contain;
}

body {
    overflow-wrap: break-word;
}

.img-icon {
    padding: 10px;
    background-color: #e75d31;
    width: 44px;
    height: 44px;
}

.circle {
    border-radius: 50%;
}

.text-justify {
    text-align: justify;
    text-align-last: left;
}

#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#whatsapp-button a img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

#whatsapp-button a img:hover {
    transform: scale(1.1);
}


/* General Navbar Styling */
.navbar {
    background: #f8f9fa;
    border-bottom: 1px solid #e3e3e3;
    padding: 10px 20px;
}

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

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 20px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.navbar-buttons {
    display: flex;
}

.btn {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 8px 15px;
    margin-left: 10px;
    cursor: pointer;
}

.btn:hover {
    background: #cc5200;
}




.mega-dropdown {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position it below the navbar */
    width: 100%;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px 0;
}

/* Center the Dropdown Content */
.mega-dropdown-container {
    display: flex;
    justify-content: center; /* Center the container */
    max-width: 1200px;
    margin: 0 auto;
}

.dropdown-section {
    margin: 0 40px;
}

.dropdown-section h5 {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.dropdown-section a {
    display: block;
    padding: 5px 0;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s ease;
}

.dropdown-section a:hover {
    color: #007bff;
}


.mega-dropdown {
    background-color: white; /* Set the background color as needed */
    padding: 20px;
    display: none; /* Hide by default */
}

.mega-dropdown-container {
    display: flex;
    justify-content: space-between; /* Adjust alignment */
}

.mega-dropdown .column {
    flex: 1; /* Each column takes equal space */
    margin: 0 10px; /* Space between columns */
}

.mega-dropdown h3 {
    font-size: 18px; /* Adjust heading font size */
    margin-bottom: 10px;
    position: relative; /* Position for underline */
}

.mega-dropdown .underline {
    height: 2px; /* Thickness of the underline */
    background-color: orange; /* Color of the underline */
    width: 100%; /* Full width */
    margin-bottom: 10px; /* Space below the underline */
}

.mega-dropdown ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
}

.mega-dropdown li {
    display: flex; /* Align items */
    align-items: center; /* Center items vertically */
    padding: 8px 0; /* Space between items */
    transition: background-color 0.3s; /* Smooth background change */
}

.mega-dropdown li:hover {
    background-color: rgba(255, 165, 0, 0.3); /* Light orange on hover */
}

.mega-dropdown li i {
    color: orange; /* Icon color */
    margin-right: 8px; /* Space between icon and text */
}

.mega-dropdown h4 {
    font-size: 14px; /* Smaller font size for h4 */
    margin: 0; /* Remove margin */
}

.mega-dropdown p {
    font-size: 12px; /* Font size for paragraph */
    margin: 0; /* Remove margin */
}

