@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --primary-color: #EE7E2F;
    --secondary-color: #0AB79B;
    --red-color: #ff0000;
    --dark-color: #200055;
    --white-color: #FFFFFF;
    --text-color: #4D4D4D;
    --text-color-2: #7B7B7B;
    --my-font: "Rubik", sans-serif;
    ;
    --my-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1)
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.25px;
    color: #121212;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

.pointer {
    cursor: pointer;
}

.primary-color {
    color: var(--primary-color) !important;
}

.red-color {
    color: var(--red-color) !important;
}

.section-padding {
    padding: 50px 0;
}

.my-font {
    font-family: var(--my-font);
}

.title {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2.75rem;
    font-weight: 400;
    font-family: var(--my-font);
    text-align: center;

    &::before {
        content: "";

    }
}

.btn1 {
    padding: 0.5em 1em;
    font-size: 1rem;
    display: inline-block;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0.2em;
    cursor: pointer;

    overflow: hidden;
    position: relative;
    transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);

    &>.text {
        font-weight: 700;
        color: var(--white-color);
        position: relative;
        z-index: 1;
        transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
    }
}

.btn1::after {
    content: "";

    width: 0;
    height: calc(300% + 1em);

    position: absolute;
    translate: -50% -50%;
    inset: 50%;
    rotate: 30deg;

    background-color: var(--secondary-color);
    transition: all 1000ms cubic-bezier(0.83, 0, 0.17, 1);
}

.btn1:hover {
    border-color: var(--secondary-color);

    &>.text {
        color: var(--white-color);
    }

    &::after {
        width: calc(120% + 1em);
    }

}

.btn1:active {
    scale: 0.98;
    filter: brightness(0.9);
}


.btn2 {
    background: #0ab79b;
    border: none;
    padding: 10px;
    color: var(--white-color);
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s ease-in-out;
}

.btn2:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px;
}

.navbar .nav-link {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    padding: 8px 0 !important;
    margin: 0 1rem;
    color: #121212;
}

.navbar .nav-link::before {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    transition: all 0.25s ease-in-out;
    height: 2px;
    background-color: var(--primary-color);
}

.navbar .nav-link:hover::before {
    width: 100%;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

.navbar .search .form-control {
    height: 40px;
    padding: 0 3rem 0 14px;
    font-size: 14px;
    border-radius: 5px;
    outline: none;
    border: none;
    position: relative;
    box-shadow: none;
    border: 1px solid #c3c3c3;

    &:focus {
        border-color: var(--primary-color);
    }
}

.navbar .search-btn {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 3px;
    color: var(--white-color);
    font-size: 18px;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    border: none
}

@media all and (min-width:992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(20px);
        transition: all .3s ease-in;
        visibility: hidden;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        min-width: 14rem;
        border-radius: 0;
        border: 0;
        box-shadow: -2px 3px 10px rgb(0 0 0 / .1)
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px 15px;
        text-decoration: none;
        font-size: 0.875rem
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--primary-color);
        background-color: #fff0
    }

    .dropdown-toggle::after {
        margin-left: 8px
    }
}

header.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #0000000f;
    animation: fadeInDown 0.5s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

.banner {
    height: 92vh;
    width: 100%;
}

.banner .banner-img {
    height: 92vh;
    width: 100%;
    object-fit: cover;
}

.custom-swiper-next,
.custom-swiper-prev {
    background-color: #f26b3a;
    color: var(--white-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.custom-swiper-next:hover,
.custom-swiper-prev:hover {
    background-color: var(--secondary-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.banner .swiper-button-prev {
    left: 30px;
}

.banner .swiper-button-next {
    right: 30px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.banner .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.call-form {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.call-form .form-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background-color: rgba(10, 183, 154, 0.10);
    border-radius: 0 4px 4px 0;
}

.call-form .form-header-icon {
    background: #0ab79b;
    padding: 10px 14px;
    border-radius: 4px 0 0 4px;
    color: #fff;
    font-size: 24px;
    margin-right: 10px;
    transition: all 0.35s cubic-bezier(0.075, 0.82, 0.165, 1);

    &:hover {
        background-color: var(--primary-color);
    }
}

.call-form h5 {
    margin-bottom: 2px;
    font-weight: 700;
    font-size: 1rem;
    color: #008871;
}

.call-form p {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
}

.call-form .form-check-label {
    font-size: 14px;
}

.banner .form-control,
.banner .form-select {
    min-height: 48px;
    font-size: 15px;

    &:focus {
        border-color: var(--primary-color);
    }
}

.banner .form-select {
    max-width: 80px;
    background-color: #f5f5f5;
}

.banner .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Form Section */
.form-section {
    margin-top: -42px;
    position: relative;
    z-index: 8;
}

.search-bar {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-bar .form-group {
    padding: 0.85rem 1.5rem;
    border-right: 1px solid #ddd;
}

.search-bar label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 2px;
    color: #e7551f;
}

.search-bar select {
    border: none;
    padding-left: 0;
    box-shadow: none;
    font-size: 18px;
    background-color: transparent;
    font-weight: 600;
}

.search-btn {
    display: flex;
    width: 100%;
}

.btn i {
    font-size: 18px;
    margin-right: 6px;
}

.form-section .btn2 {
    border-radius: 0;
    padding: 0 2rem;
}





/* ================================ 
Preferable Section
===================================*/
.preferable img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    filter: brightness(0.8);
}

.preferable .content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white-color);
}

.preferable .content span {
    display: inline-block;
    padding: 7px 16px;
    font-weight: 500;
    color: var(--white-color);
    background-color: var(--secondary-color);
    border: 1px solid var(---color);
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.preferable .content span:hover {
    background-color: var(--primary-color);
}


.feature {
    background-color: #f5f5f5;
}

.feature .img-fluid {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.feature .inner-contain .pro-content {
    background-color: var(--white-color);
    padding: 1.5rem;
    min-height: 240px;
    position: relative;
    z-index: 3;
    width: 85%;
    margin: 0 auto;
    margin-top: -5rem;
    box-shadow: 4px 4px 10px rgba(122, 122, 122, 0.1);
}

.feature .inner-contain .pro-content h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    font-family: var(--my-font);
    margin-top: 0.5rem;
}

.feature .inner-contain .pro-content p {
    font-size: 0.875rem;
    color: #757575;
    margin-bottom: 0.75rem;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

}

.feature .inner-contain .pro-content .area-base {
    font-size: 0.875rem;
    color: #4b4b4b;
    padding-top: 0.25rem;
}

.feature .inner-contain .pro-content .price {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    color: #4b4b4b;
    font-weight: 300;

    .main-price {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
        padding-top: 0.25rem;
    }
}

.feature .btn1 {
    font-size: 0.8rem;
}

.feature .pro-content .type {
    position: absolute;
    top: -15px;
    left: 1.5rem;
    background-color: rgb(230, 46, 46);
    color: var(--white-color);
    padding: 5px 10px;
    font-size: 0.875rem;
    font-weight: 500;
}

.feature .pro-content .type.res {
    background-color: #21a300;
}

.feature .pro-content .type.plot {
    background-color: #344fc6;
}



.popular .inner-contain {
    overflow: hidden;
    padding-right: 1rem;
    background-color: var(--white-color);
    border: 1px solid #c9c9c9;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;

    &:hover {
        border-color: var(--primary-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
}

.popular .inner-contain .img-fluid {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.popular .inner-contain .area-base {
    font-size: 0.875rem;
    color: #4b4b4b;
    padding-top: 0.25rem;
}

.popular .inner-contain h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-family: var(--my-font);
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.popular .inner-contain p {
    font-size: 0.875rem;
    color: #757575;
    margin-bottom: 0.5rem;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.popular .inner-contain .price {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    color: #4b4b4b;
    font-weight: 300;

    .main-price {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--primary-color);
        padding-top: 0.25rem;
    }
}

.popular .inner-contain .btn1 {
    transform: scale(0.8);
}

.popular .inner-contain .custom-swiper-next {
    right: -50px;
    scale: 0.75;
}

.popular .inner-contain .custom-swiper-prev {
    left: -50px;
    scale: 0.75;
}

.popular .inner-contain:hover .custom-swiper-next {
    right: 10px;
}

.popular .inner-contain:hover .custom-swiper-prev {
    left: 10px;
}


/* Parallax effect section */
.parallax-section {
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url("../images/banner/parallax-bg.avif") no-repeat center;
    color: var(--white-color);
    background-size: cover;
    background-attachment: fixed;
    padding: 4.5rem 0;
}

.parallax-section h2 {
    font-size: 2.5rem;
    font-family: var(--my-font);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.parallax-section p {
    color: #e6e6e6;
    font-weight: 400;
    padding-bottom: 1rem;
    line-height: 1.75rem;
}


.parallax-section .para-btn {
    background-color: #ffffff57;
    backdrop-filter: blur(1px);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;

    &:hover {
        background-color: var(--white-color);
        color: #121212;
    }
}

.parallax-section .para-btn,
.parallax-section .btn1 {
    font-size: 0.875rem;
}




/* Testimonial Panel */
/* ======================================== */
.testimain {
    position: relative;
    z-index: 0;
    margin-bottom: 1.5rem;
}

.testimain h5 {
    margin-bottom: 1rem;
    font-size: 16px;
    color: var(--ans-theme-color);
}

.testimain h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ans-font-color);
    font-family: var(--ans-heading-font);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.testimain h1 span {
    color: #ff9800;
}

.testimain .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
}

.testimain .swiper-pagination {
    position: relative;
    margin-top: -20px;
}

.testimonial-coverflow {
    margin: -55px 0
}

.testimonial-coverflow .testimonial-grid {
    margin: 55px 0;
    position: relative
}

@media only screen and (max-width:575px) {
    .testimonial-coverflow .testimonial-grid {
        margin: 55px 0
    }
}

.testimonial-coverflow .testimonial-grid:before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--ans-base-color);
    opacity: .7;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    -webkit-transition: var(--transition);
    transition: var(--transition)
}

.testimonial-coverflow .swiper-slide {
    padding: 0
}

.testimonial-coverflow .swiper-slide.swiper-slide-visible.swiper-slide-active .testimonial-grid:before {
    opacity: 0
}

.testimonial-slider .swiper-slide {
    opacity: 0
}

.testimonial-slider .swiper-slide.swiper-slide-visible {
    opacity: 1
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    display: none;
}

.testimonial-slider .swiper-slide.swiper-slide-visible.swiper-slide-prev .testimonial-grid {
    margin-left: 36px;
    box-shadow: 70px 0 50px 0 rgba(26, 46, 85, .1);
    padding: 40px 30px 50px
}

@media only screen and (max-width:1199px) {
    .testimonial-slider .swiper-slide.swiper-slide-visible.swiper-slide-prev .testimonial-grid {
        margin-left: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .testimonial-slider .swiper-slide.swiper-slide-visible.swiper-slide-prev .testimonial-grid {
        margin-left: 40px
    }
}

.testimonial-slider .swiper-slide.swiper-slide-visible.swiper-slide-next .testimonial-grid {
    margin-left: 0;
    margin-right: 36px;
    box-shadow: -40px 0 50px 0 rgba(26, 46, 85, .1);
    padding: 40px 30px 50px
}

@media only screen and (max-width:1199px) {
    .testimonial-slider .swiper-slide.swiper-slide-visible.swiper-slide-next .testimonial-grid {
        margin-left: 0;
        margin-right: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .testimonial-slider .swiper-slide.swiper-slide-visible.swiper-slide-next .testimonial-grid {
        margin-left: 40px
    }
}

.testimonial-grid {
    box-shadow: 0 10px 50px rgba(26, 46, 85, 0.1);
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 60px 30px 50px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.testimonial-grid .thumbnail {
    display: inline-block;
    position: relative;
    margin-bottom: 35px
}

.testimonial-grid .thumbnail img {
    border-radius: 50%
}

.testimonial-grid .thumbnail .qoute-icon {
    height: 34px;
    width: 34px;
    line-height: 27px;
    font-size: 20px;
    color: var(--white-color);
    background-color: var(--secondary-color);
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
    display: block;
    text-align: center;
    position: absolute;
    bottom: -8px;
    right: -12px;
}

.testimonial-grid .content p {
    margin-bottom: 20px;
    font-size: 16px
}

.testimonial-grid .content .rating-icon {
    margin-bottom: 6px
}

.testimonial-grid .content .rating-icon i {
    color: #f8b81f
}

.testimonial-grid .content .titlein {
    font-weight: 500;
    margin-bottom: 2px;
    color: var(--primary-color);
}

.testimonial-grid.testimonial-style-3 {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 30px
}

.testimain .subtitle {
    font-size: 0.875rem;
}

.testimonial-grid.testimonial-style-3:after {
    display: none
}

.testimain .btn1 {
    font-size: 0.875rem;
}

.testimain .short-desc {
    font-size: 0.875rem;
    line-height: 1.5rem;
}


.associate {
    background-color: #fff5ee;
}

.associate .inner-contain {
    padding: 1.5rem;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    background-color: #00a78b;
}


/* ================================ 
Blogs Section 
=================================== */
.blogs .inner-contain img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.blogs .inner-contain .date-badge {
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
    display: inline-block;
    padding-bottom: 4px;
    color: #4b4b4b;
}

.blogs .inner-contain h3 {
    font-size: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 30px;
    font-weight: 500;
    padding: 0 10px;
    margin-top: 1rem;
    color: #353535;
}


footer {
    font-size: 0.875rem;
    background-color: #001f19;
}

footer .input-group .form-control {
    min-height: 46px;
    font-size: 0.875rem;
    border-radius: 5px;
}

footer h5 {
    margin-bottom: 0.75rem;
}

footer .list-unstyled {
    padding-left: 0.5rem;
}

footer ul li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.35s ease-in-out;

    &::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: var(--primary-color);
        display: inline-block;
    }
}

footer ul li:hover {
    color: var(--primary-color);
    gap: 1.125rem;
}

footer .input-group .btn1 {
    font-size: 0.875rem;
    font-weight: 500 !important;
}




/* ================================ 
Inner Banner Section 
=================================== */
.inner-banner {
    width: 100%;
    width: 100%;
    height: 270px;
    background: linear-gradient(rgba(12, 70, 70, 0.1), rgba(12, 70, 70, 0.1)),
        url(../images/banner/inner-banner.jpg) no-repeat center;
    background-size: cover;
}

.inner-banner .overlay {
    background: #31313129;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}

.inner-banner .overlay h1,
.inner-banner .overlay h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: var(--my-font);
}

.spinner-border.text-primary {
    color: var(--primary-color) !important;
}


.getquoteModal .my-btn-close {
    position: absolute;
    top: -12px;
    right: -12px;
    border-radius: 50%;
    padding: 10px;
    background-color: var(--red-color);
    color: var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 5px;
    z-index: 88;
    border: none;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.modal .form-control,
.modal .form-select {
    min-height: 46px;
    font-size: 0.875rem;

    &:hover {
        border-color: var(--primary-color);
    }

    &:focus {
        border-color: var(--secondary-color);
    }
}

.modal .btn1 {
    font-size: 0.8rem;
}



.about h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about p {
    line-height: 1.75rem;
}


.mission .info-card {
    position: relative;
    border-radius: 20px;
    padding: 40px 30px;
    background: #fff;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.mission .info-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, #ff8800, #ffb347);
    transform: rotate(25deg);
    z-index: 0;
    transition: 0.5s;
    opacity: 0.07;
}

.mission .info-card:hover::before {
    transform: rotate(0deg);
    opacity: 0.15;
}

.mission .info-header {
    position: relative;
    display: inline-block;
    background: #ff8800;
    color: #fff;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 1rem;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(255, 136, 0, 0.3);
}

.mission .info-title {
    position: relative;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d2d48;
    margin-bottom: 20px;
    z-index: 1;
}

.mission .info-text {
    position: relative;
    color: #3f3f3f;
    line-height: 1.8;
    font-size: 1rem;
    z-index: 1;
    margin-bottom: 0;
}

.mission .row.g-4>div:nth-child(2) .info-header {
    background: #0077ff;
    box-shadow: 0 4px 12px rgba(0, 119, 255, 0.3);
}

.mission .row.g-4>div:nth-child(2) .info-card::before {
    background: linear-gradient(135deg, #0077ff, #44a7ff);
}


.director .boxx {
    background-color: #fbe6c9;
}

.director h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.director p {
    line-height: 1.75rem;
}


/*================================================
Blogs Details Page
=================================================*/
.blog-details h1 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 40px;
    font-weight: 500;
}

.blog-details .details-img {
    width: 100%;
}

.blog-details .other-heading {
    font-size: 17px;
    margin-bottom: 6px;
    font-weight: 400;
    line-height: 26px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-details .date {
    font-size: 14px;
}

.blog-details p {
    line-height: 1.75rem;
}
.gen-info .icon-div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffeadb;
    display: grid;
    place-items: center;
    font-size: 20px;
    color: var(--primary-color);
}


.contact .form-control,
.contact .form-select {
    min-height: 46px;
    font-size: 0.875rem;

    &:hover {
        border-color: var(--primary-color);
    }

    &:focus {
        border-color: var(--secondary-color);
    }
}

.contact .form-label {
    font-size: 0.875rem;
}


.prop-img .img-fluid {
    height: 60vh;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.pro-details .all-card .card-header {
    background-color: #f78330;
    color: var(--white-color);
}

.btn-wp {
    background-color: #3EB74B;
    color: var(--white-color);
    font-size: 0.875rem;
    align-content: center;
    transition: all 0.35s ease;
    &:hover {
        background-color: #14811f;
        color: var(--white-color);
    }
}
.btn-bro {
    background-color: rgb(241, 1, 1);
    color: var(--white-color);
    font-size: 0.875rem;
    align-content: center;
    transition: all 0.35s ease;
    &:hover {
        background-color: rgb(187, 0, 0);
        color: var(--white-color);
    }
}
.btn-book {
    background-color: #EE7E2F;
    color: var(--white-color);
    font-size: 0.875rem;
    align-content: center;
    padding: 10px;
    transition: all 0.35s ease;
    &:hover {
        background-color: var(--secondary-color);
        color: var(--white-color);
    }
}