/* ===================================
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* variable */
:root {
    --alt-font: "Poppins", sans-serif;
    --primary-font: "Poppins", sans-serif;
    --base-color: #ffc700;
    --dark-gray: #141414;
    --medium-gray: #707070;
    --aluminium-grey: rgba(255, 255, 255, 0.4);

    --brown: #cb5b00;
    --navy-blue: #001e47;
    --blue: #004aad;
    --red: #ff1b00;

    --beige: #f4cdb3;
    --beige-light: #f7e8dc;
    --blue-light: #d4e4f4;
    --yellow-light: #fcfae6;
}

.bg-beige {
    background-color: var(--beige);
}

.bg-beige-light {
    background-color: var(--beige-light);
}

.bg-blue-light {
    background-color: var(--blue-light);
}

.bg-yellow-light {
    background-color: var(--yellow-light);
}

.text-brown {
    color: var(--brown);
}

.text-navy-blue {
    color: var(--navy-blue);
}

.text-blue {
    color: var(--blue);
}

.text-base-color-hover {
    color: var(--base-color);
}

.text-red {
    color: var(--red);
}



/* Custom style to adjust the badge appearance if needed, though Bootstrap's defaults are good */
.badge.custom-tag {
    padding: .5em 1em;
    font-size: 0.9em;
    font-weight: 500;
    /* Adjust font size */
}




/* contact form*/


/* General styling for the container */
.contact-preference-container {
    display: block;
    /* Aligns items in a row */
    align-items: center;
    /* Vertically centers the items */
    flex-wrap: wrap;
    /* Allows items to wrap to the next line on very small screens */
    font-size: 16px;
}

/* Label for the whole group */
.main-label {
    margin-right: 15px;
    /* Adds space after "Preferred Mode of Contact:" */
}

/* Container for each checkbox and its label */
.checkbox-option {
    display: flex;
    align-items: center;
    margin-right: 20px;
    /* Adds space between each option */
    /* Add a bottom margin for when items wrap on small screens */
    margin-bottom: 5px;
}

/* Styling for the text label of each checkbox */
.checkbox-option label {
    margin-left: 5px;
    /* Adds a small space between the checkbox and its text */
    cursor: pointer;
    /* Changes the cursor to a pointer on hover */
    white-space: nowrap;
    /* THIS IS THE FIX: Prevents text from wrapping */
}

/* Styling for the checkbox itself */
.checkbox-option input[type="checkbox"] {
    cursor: pointer;
}

.radio-option {
    display: inline-block;
    align-items: flex-start;
    /* margin-right: 20px; */
    margin-bottom: 5px;
}


/* Styling for the text label of each checkbox */
.radio-option label {
    margin-left: 5px;
    /* Adds a small space between the checkbox and its text */
    cursor: pointer;
    /* Changes the cursor to a pointer on hover */
    white-space: nowrap;
    /* THIS IS THE FIX: Prevents text from wrapping */
}



/* reset */
body {
    font-size: 17px;
    line-height: 30px;
}

a:hover {
    color: var(--dark-gray);
}

/* header */


html {
    scroll-padding-top: 200px;
    /* Adjust this value to match the height of your fixed header */
    scroll-behavior: smooth;
}

.banner_caption {
    background-color: #500b0b79;
    padding: 3rem 3rem;
    border-radius: 7px;
}

.card-body {
    line-height: 20px;
    min-height: 255px;
    margin-bottom: 10px;
}

.profile-image {
    padding: 15px;
}


.navbar .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 600;
}

.navbar .navbar-nav .dropdown.open .dropdown-menu {
    background-color: var(--dark-gray);
}

.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .navbar-brand img {
    max-height: 65px;
}

.header-top-bar div>a {
    color: var(--brand-red);
}

.header-top-bar div>a:hover {
    color: var(--dark-gray);
}

.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
    font-size: 30px;
}

.navbar .navbar-nav .dropdown .dropdown-menu a i {
    width: 35px;
}

header .btn.btn-box-shadow.btn-base-color,
.btn.btn-base-color {
    color: var(--dark-gray);
}

header .btn.btn-box-shadow.btn-base-color:hover,
.btn.btn-box-shadow.btn-base-color:hover {
    color: var(--dark-gray);
}

header .btn.btn-small {
    font-size: 15px;
    padding: 10px 18px;
}

/* btn */
.btn.btn-hover-animation-switch.btn-link {
    padding-top: 0;
}

.btn {
    text-transform: inherit;
    font-weight: 600;
    letter-spacing: 0;
}

.btn.btn-extra-large {
    font-size: 18px;
    padding: 16px 32px;
}

.btn.btn-large {
    font-size: 17px;
    padding: 14px 28px;
}

.btn.btn-medium {
    font-size: 16px;
    padding: 12px 24px;
}

.btn.btn-small {
    font-size: 15px;
}

.btn.btn-very-small {
    font-size: 14px;
    padding: 9px 20px;
}

/* counter style */
.counter-style-04 .vertical-counter:after {
    color: var(--base-color);
}

.review-star-icon i {
    color: var(--base-color);
}

/* footer style */
footer ul li {
    margin-bottom: 1px;
}

footer p {
    line-height: 28px;
}

/* page title */
.page-title-double-large h1 {
    font-size: 4.375rem;
    line-height: 4.688rem;
}

.page-title-double-large h2 {
    font-size: 16px;
    line-height: 28px;
}

/* top bottom left right class */
.right-12 {
    right: 12%;
}

.bg-jungle-green {
    background-color: #2ebb79;
}

/* Outside box */
.outside-box-top-205px {
    margin-top: -205px;
}

/* Transparent background color */
.bg-gradient-gray-light-dark-transparent {
    background-image: linear-gradient(to top, #f7f7f7 0%, transparent 100%);
}

.sc-1au8ryl-0.dkuywW {
    display: none !important;
}

#getbutton-call, .sc-q8c6tt-0.incWYw {
    display: none !important;
}

@media (max-width: 1399px) {
    .xl-h-180px {
        height: 180px;
    }

    .xl-w-180px {
        width: 180px;
    }

    /* .field-how-can-we-help textarea.form-control {
        min-height: 250px;
    } */
}

@media (max-width: 1288px) {
    .navbar .navbar-nav .nav-link {
        font-size: 15px;
    }

    .lets-discuss {
        padding: 5px 5px;
    }
}

@media (max-width: 1199px) {
    .outside-box-top-200px {
        margin-top: -150px;
    }

    /* .field-how-can-we-help textarea.form-control {
        min-height: 300px;
    } */
}


@media (max-width: 991px) {
    .outside-box-top-200px {
        margin-top: 0;
    }

    .navbar .navbar-nav .dropdown.open .dropdown-menu {
        padding-bottom: 15px;
    }

    .card-sub-title {
        text-align: center !important;
    }
}

@media (max-width: 767px) {
    p {
        text-align: left !important;
    }


    .contact-preference-container {
        /* display: inline-block !important; */
        padding-top: 20px;
    }

    .radio-option {
        /* display: inline-block; */
    }

    /* .radio-option input {
        width: 30px;
    } */

    #email-contact,
    #phone-contact,
    #whatsapp-contact {
        /* display: inline-block; */
        padding-left: 5px !important;
    }

}

@media (max-width: 508px) {
    .cover-background {
        background-position: 60% center;
        /* Shift image focus towards the right */
    }
}

@media (max-width: 447px) {
    .navbar-brand img {
        max-width: 250px;
    }
}