/*Breadcrumb Section Start*/
.inner-banner {
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
}

.inner-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(../sub-images/breadcrumb.webp) no-repeat top center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    object-fit: cover;
}

.breadcrumb_content h1 {
    color: var(--text-white);
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    font-family: "Inter Tight", sans-serif;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.breadcrumb_content ul li a img {
    width: 18px;
}

.breadcrumb_content ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.breadcrumb_content ul li {
    position: relative;
    margin-right: 10px;
    padding-left: 10px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

.breadcrumb_content ul li:first-child {
    padding-left: 0;
}

.breadcrumb_content ul li a {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.breadcrumb_content ul li a:hover {
    color: var(--text-yellow);
}

.breadcrumb_content ul li:first-child::before {
    display: none;
}

.breadcrumb_content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background-color: rgba(225, 225, 225, 0.5);
}

/*Breadcrumb Section End*/
/*About Section Start*/

.sticky-box {
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
}

.about_sec {
    padding: 80px 0;
    position: relative;
}

.about_img_box {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.about_img_boxs {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-white);
    mix-blend-mode: multiply;
}

.about_img_box .about_img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
    transform: scale(1);
    transition: all 450ms ease-out;
    min-height: 260px;
    object-fit: cover;
    max-height: 600px;
}

.about_img_box:hover .about_img {
    transform: scale(1.1);
}

.about_img_box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5%;
    height: 5%;
    background-color: rgba(0, 34, 87, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 450ms ease-out;
}

.about_img_box:hover::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
}

.about_dholera_img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: contain;
    border-radius: 15px;
    max-height: 600px;
}

/*About Section End*/
/*Mission Vision Section Start*/
.mission_vision_sec {
    padding: 80px 0;
}

.mission_vision_sec .vision_mission_box img {
    max-width: 175px;
    height: 100%;
}

.mission_vision_sec .vision_mission_img {
    height: 100%;
    max-height: 100px;
}

.vision_mission_img .vision_img,
.vision_mission_img .mission_img {
    filter: drop-shadow(5px 8px 4px rgb(0 84 163 / 33%));
    height: 100%;
}


.mission_vision_sec .vision_mission_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    height: 100%;
}

.mission_vision_sec .vision_mission_box .title_box {
    border-left: 1px solid #d4d4d4;
    padding-left: 40px;
}

.mission_vision_sec .vision_mission_box.reverse_col .title_box {
    border-right: 1px solid #d4d4d4;
    padding-right: 40px;
    border-left: none;
    padding-left: 0;
}

.mission_vision_sec .vision_mission_box .title_box p {
    margin-bottom: 0;
}

.mission_vision_sec .vision_mission_box.reverse_col {
    flex-direction: row-reverse;
}

/*Mission Vision Section End*/
/*Our Values Section Start*/
.our_values_sec {
    padding: 80px 0;
}

.our_values_sec .vision_img {
    max-width: 150px;
}

#valuesAccordion .accordion-item {
    margin-bottom: 12px;
    border-radius: 10px;
    background-color: var(--bg-white);
    border: none;
    box-shadow: 0px 10px 19px rgb(0 0 0 / 9%);
}

#valuesAccordion .accordion-item:last-child {
    margin-bottom: 0;
}

#valuesAccordion .accordion-button {
    background-color: var(--bg-dark-blue);
    color: var(--text-yellow);
    font-size: 16px;
    border-radius: 10px;
    padding: 26px;
}

#valuesAccordion .accordion-button:focus {
    box-shadow: none;
}

#valuesAccordion .accordion-body {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.6;
    transition: all 0.5s ease;
    padding: 26px;
}

#valuesAccordion .accordion-button:not(.collapsed)::after {
    width: 12px;
    height: 12px;
    background-image: url(../images/right-chavrone-yellow.svg);
    transform: rotate(-90deg);
    background-size: 10px;
    transition: all 0.5s ease;
}

#valuesAccordion .accordion-button::after {
    width: 12px;
    height: 12px;
    background-image: url(../images/right-chavrone-yellow.svg);
    background-size: 10px;
    transform: rotate(90deg);
    transition: all 0.5s ease;
}

/*Our Values Section End*/
/*Contact Detail Section Start*/
.contact_det_sec {
    padding: 80px 0;
}

.contact_title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    padding-bottom: 20px;
}

.contact_det_box img {
    max-width: 18px;
}

.contact_title h4 {
    font-size: 22px;
    line-height: 1;
    color: var(--text-yellow);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
}

.contact_det_box p,
.contact_det_box ul li a {
    white-space: pre-line;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact_det_box {
    margin-bottom: 30px;
    background-color: var(--bg-dark-blue);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    height: 100%;
}

.contact_det_box h2{margin: 15px 0px 10px 0px; color: var(--text-yellow); font-size: 22px; font-weight: 600;}
.contact_det_box a{ padding:10px 0px 0px 0px; color:#fff; display:block;}

.contact_det_box.contact_img_loc::after,
.contact_det_box.contact_img_phone::after,
.contact_det_box.contact_img_email::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 10px;
    right: 10px;
    background-image: url(../sub-images/location.svg);
    background-size: 100px;
    background-repeat: no-repeat;
    max-width: 100px;
    max-height: 100px;
    opacity: 0;
    transition: all 0.7s ease-in-out;
    transform: scale(0.7);
}

.contact_det_box.contact_img_phone::after {
    background-image: url(../sub-images/phone-call.svg);
}

.contact_det_box.contact_img_email::after {
    background-image: url(../sub-images/email.svg);
    bottom: 0;
}

.contact_det_box:hover::after {
    opacity: 0.2;
    transform: scale(1);
}

.contact_det_box:last-child {
    margin-bottom: 0;
}

/*contact form*/
.contact_form {
    padding: 40px;
    border-radius: 10px;
    background-color: var(--bg-white);
    height: 100%;
    margin-top: -144px;
    margin-bottom: 144px;
    position: relative;
}

.contact_form .form-control {
    background-color: transparent;
    border: 1px solid var(--text-dark-blue) !important;
    border: none;
    margin-bottom: 26px;
    font-size: 14px;
    color: var(--text-dark-blue);
    outline: none;
    font-weight: 500;
    padding: 10px;
    transition: all 0.5s ease-in-out;
}

.contact_form .btn_light {
    border: 1px solid var(--bg-dark-blue);
    background-color: var(--bg-dark-blue);
    padding: 13px 17.5px;
}

.contact_form .btn_light:hover {
    border: 1px solid var(--bg-button);
}

.contact_form .btn_light::before {
    background-color: var(--bg-white);
}

.contact_form .btn_light:hover:before {
    background-color: var(--bg-white);
}

.contact_form .btn_light .btn_light_text {
    color: var(--text-white);
}

.contact_form .btn_light:hover .btn_light_text {
    color: var(--bg-dark-blue);
}

.contact_form input.form-control::placeholder,
.contact_form input.form-control:focus,
.contact_form textarea.form-control,
.contact_form textarea.form-control::placeholder,
.contact_form input.form-control:focus-visible {
    color: var(--text-dark-blue);
    font-weight: 500;
    font-size: 14px;
    resize: none;
}

.contact_form .form-control:hover,
.contact_form .form-control:active,
.contact_form input.form-control:focus,
.contact_form textarea.form-control:focus {
    background-color: #f7f5f3;
}

.contact_form input.form-control:focus,
.contact_form textarea.form-control:focus {
    box-shadow: none;
}

/*Contact Detail Section End*/
/*Map Section Start*/
.map_section {
    width: 100%;
    max-width: 100%;
}

.location_box iframe {
    display: flex;
}

/*Map Section End*/
/*About Dholera Sir Section Start*/
.about_d_sir_sec {
    padding: 80px 0;
}

/*About Dholera Sir Section End*/
/*Seamless Connectivity Section Start*/
.seamless_conn_sec .title_box p {
    white-space: pre-line;
    margin-bottom: 0;
}

.seamless_conn_sec {
    padding: 80px 0;
    max-width: 100%;
    overflow: hidden;
}

.conectivity_box {
    border-radius: 15px;
    background: var(--bg-white);
    background: linear-gradient(0deg, rgba(255, 209, 111, 1) 0%, rgba(255, 255, 255, 1) 23%, rgba(255, 255, 255, 1) 100%);
    padding: 24px;
    height: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all 450ms ease-out;
}

.conectivity_box:hover::after {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.conectivity_box::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background: linear-gradient(0deg, rgba(255, 209, 111, 1) 30%, rgba(255, 209, 111, 1) 80%, rgba(255, 255, 255, 1) 100%);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 450ms ease-out;
}

.conectivity_box img {
    max-height: 66px;
    height: 100%;
    margin: 20px 0 30px;
    transition: all 450ms ease-out;
}

.conectivity_box:hover img {
    transform: rotateY(180deg);
}

.conectivity_box h4 {
    color: var(--text-dark-blue);
    border-top: 1px solid #d2d2d2;
    font-family: "Inter Tight", sans-serif;
    padding: 30px 0 3px 0;
    transition: all 450ms ease-out;
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
}

.conectivity_box:hover h4 {
    border-top: 1px solid var(--text-white);
}

.conectivity_box p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
    font-family: "Inter Tight", sans-serif;
    transition: all 450ms ease-out;
    margin-bottom: 0;
}

.conectivity_point {
    padding: 40px;
}

.conectivity_point p,
.conectivity_info p {
    margin-bottom: 0;
}

.conectivity_info {
    position: relative;
    padding: 40px;
    border: 2px solid #d4d4d4;
    border-radius: 15px;
}

.conectivity_info::before {
    position: absolute;
    content: "";
    top: -18px;
    left: 38px;
    background-image: url(../sub-images/quote.svg);
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    width: 34px;
    height: 34px;
    background-color: var(--bg-white);
    border-radius: 50%;
}

.conectivity_info.title_box p {
    white-space: inherit;
}

/*Seamless Connectivity Section End*/
/*Dholera Investment Section Start*/
.dholera_invest_sec {
    padding: 80px 0;
}

.dholera_invest_point ul li {
    padding: 15px 15px 15px 36px;
    background-color: var(--bg-white);
    margin-top: 7px;
    border-radius: 15px;
    border: 1px solid #d4d4d4;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.6;
    transition: all 0.5s ease;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.dholera_invest_point ul li::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    top: 18px;
    left: 9px;
    background-image: url(../images/right-chavrone-blue.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    transition: all 0.5s ease;
}

.dholera_invest_point ul li:hover {
    color: var(--text-yellow);
}

.dholera_invest_point ul li::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-color: var(--bg-dark-blue);
    transition: all 450ms ease-out;
    height: 0%;
    width: 100%;
    visibility: hidden;
    z-index: -1;
}

.dholera_invest_point ul li:hover::after {
    height: 100%;
    visibility: visible;
    top: auto;
    bottom: 0;
}


.dholera_invest_point ul li:hover::before {
    background-image: url(../images/right-chavrone-yellow.svg);

}

/*Dholera Investment Section End*/
/*Gallery Section Start*/
.galley_sec {
    padding: 80px 0;
}

.gallery_img {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.gallery_img img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.gallery_img img {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 0;
    transform: scale(1);
    transition: all 450ms ease-out;
    min-height: 250px;
    object-fit: cover;
}

.gallery_img:hover img {
    transform: scale(1.1);
}

.gallery_img::after,
.gallery_img::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 5%;
    height: 5%;
    background-color: rgba(0, 34, 87, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 450ms ease-out;
    border-radius: 15px;
}

.gallery_img:hover::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
}

.gallery_img::before {
    transform: translate(-50%, -50%) scale(0.4);
    width: 46px;
    height: 46px;
    background-image: url(../sub-images/zoom.svg);
    background-size: 46px;
    background-repeat: no-repeat;
    z-index: 1;
    border-radius: 19px;
}

.gallery_img:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/*Gallery Section End*/
/*Blog Section Start*/
.blog_sec {
    padding: 80px 0;
}

.blog_box .blog_img {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;

}

.blog_box .blog_img img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 0;
    transform: scale(1);
    transition: all 450ms ease-out;
    min-height: 250px;
    object-fit: cover;
}

.blog_box:hover .blog_img img {
    transform: scale(1.1);
}

.blog_box .blog_img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5%;
    height: 5%;
    background-color: rgba(0, 34, 87, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 450ms ease-out;
}

.blog_box:hover .blog_img::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
}

.blog_box .blog_content {
    padding: 26px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0px 10px 19px rgb(0 0 0 / 9%);
    z-index: 1;
    position: relative;
    margin: -35px 28px 0;
    height: 47%;
    transition: all 450ms ease-out;
    overflow: hidden;
}

.blog_sec .blog_date img {
    max-width: 16px;
    padding-bottom: 2px;
    margin-right: 2px;
}

.blog_box .blog_content button {
    border: none;
}

.blog_box .blog_date {
    margin-bottom: 10px;
}

.blog_box .blog_date span {
    font-size: 14px;
    font-weight: 500;
    color: #999999;
}

.blog_box .blog_content.title_box h4 {
    color: var(--text-dark-blue);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.blog_box .blog_content.title_box p {
    color: var(--text-dark-blue);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.6;
    transition: all 0.5s ease;
    margin-bottom: 10px;
}

a.blog_box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

/*Blog Section End*/
/*Blog Details Section Start*/
.blog_details_sec {
    padding: 80px 0;
}

.title_box h3 {
    color: var(--text-dark-blue);
    font-family: "Inter Tight", sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
}

.recent_post_box ul li a .recent_img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.recent_post_box ul li a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
}

.recent_post_box ul li {
    padding: 20px 0;
    border-bottom: 1px solid #d4d4d4;
}

.recent_post_box ul {
    max-height: 310px;
    overflow: auto;
}

.recent_post_box ul li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.recent_post_box,
.categories_list {
    padding: 40px;
    background: var(--bg-linen);
    border-radius: 15px;
}

.recent_post_info h5 {
    color: var(--text-dark-blue);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.post_date img {
    width: 14px;
}

.post_date {
    color: #999999;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.blog_details_sec .categories_list ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 11px;
}

.categories_list ul li a {
    padding: 6px 10px;
    border: 1px solid #d4d4d4;
    background-color: transparent;
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    text-transform: capitalize;
    display: block;
    position: relative;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.categories_list ul li:hover a {
    color: var(--bg-button);
}

.blog_details_img img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    border-radius: 15px;
    overflow: hidden;
    min-height: 250px;
    object-fit: cover;
}

.blog_date img {
    width: 14px;
}

ul.social_box,
.share_on_box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    line-height: 1.8;
}

.date_share_box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.date_share_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 6px;
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
}

.share_on_box h5 {
    margin-bottom: 0;
    color: var(--text-dark-blue);
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.blog_date {
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

ul.social_box li a img {
    width: 14px;
}

ul.social_box li+li {
    border-left: 1px solid #d4d4d4;
    padding-left: 10px;
}

.share_on_box h5 img {
    width: 14px;
}

.blog_details_list ul li {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.6;
    transition: all 0.5s ease;
    position: relative;
    padding-left: 16px;
    margin: 6px 0;
}

.blog_details_list ul li::before {
    position: absolute;
    content: "";
    top: 14px;
    left: 0px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-image: url(../images/right-chavrone-blue.svg);
    background-size: 8px;
    background-repeat: no-repeat;
}

/*Blog Details Section End*/
/*Project Pdf Section Start*/
.project_pdf_sec {
    padding: 80px 0;
}

section.project_pdf_sec .row {
    max-width: 1020px;
    margin: 0 auto;
}

.project_pdf_box img {
    max-width: 70px;
}

.project_pdf_box {
    display: block;
    border: 1px solid #d4d4d4;
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all 450ms ease-out;
    background: linear-gradient(0deg, rgba(255, 209, 111, 1) 0%, rgba(255, 255, 255, 1) 23%, rgba(255, 255, 255, 1) 100%);
}

.project_pdf_box::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background: linear-gradient(0deg, rgba(255, 209, 111, 1) 30%, rgba(255, 209, 111, 1) 80%, rgba(255, 255, 255, 1) 100%);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 450ms ease-out;
}

.project_pdf_box:hover::after {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

a.project_pdf_box h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-gray);
    margin: 30px 0 0;
}

/*Project Pdf Section End*/
/*Project Map Location Section Start*/
.pro_location_map_sec {
    margin: 80px 0;
}

.pro_location_map_sec .location_box iframe {
    border-radius: 15px;
    overflow: hidden;
}

/*Project Map Location Section End*/

/*Projects Section Start*/
.projects_section {
    padding: 80px 0;
}

.invester_note {
    padding: 40px;
    border-radius: 15px;
}

.invester_note h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-yellow);
    text-transform: capitalize;
}

.invester_note h3 img {
    max-width: 34px;
    margin-right: 20px;
}

.invester_note p {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-yellow);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.projects_info_box {
    background: var(--bg-white);
    border-radius: 15px;
    border: 1px solid #d4d4d4;
    padding: 40px;
    height: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all 450ms ease-out;
}

.projects_info_box h4 {
    font-size: 22px;
    color: var(--text-dark-blue);
    font-weight: 600;
    line-height: 1.4;
    text-transform: capitalize;
    margin-bottom: 12px;
    transition: all 0.5s ease;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.projects_info_box h4::before {
    position: absolute;
    top: -10px;
    left: -14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-yellow);
    z-index: -1;
    content: "";
}

.projects_info_box h4 img {
    max-width: 22px;
    margin-right: 6px;
}

.projects_info_box ul li {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    padding-left: 45px;
    text-transform: capitalize;
}

.projects_info_box ul li::before {
    position: absolute;
    content: "";
    top: 10px;
    left: 30px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bg-button);
}

.projects_info_bg img {
    width: 100%;
    height: 100%;
    max-width: 160px;
    transform: scale(0.9);
    transition: all 450ms ease-out;
}

.projects_info_box:hover .projects_info_bg img {
    transform: scale(1);
}

.projects_info_bg {
    position: absolute;
    bottom: -50px;
    right: -30px;
    opacity: 0.03;
    transition: all 450ms ease-out;
}

.projects_info_box:hover .projects_info_bg {
    bottom: -5px;
    right: -5px;
}

/*Projects Section End*/
/*Projects Key Points Section Start*/
.pro_key_points_sec {
    padding: 0 0 80px 0;
}

/**/
.pro_key_box {
    margin-bottom: 10px;
    padding: 30px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark-blue);
    text-transform: capitalize;
    position: relative;
    background-color: var(--bg-white);
    border-radius: 15px;
    transition: all 450ms ease-out;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.pro_key_box:hover h5 {
    color: var(--text-yellow);
}

.pro_key_box::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-color: var(--bg-dark-blue);
    transition: all 450ms ease-out;
    height: 0%;
    width: 100%;
    visibility: hidden;
    z-index: -1;
}

.pro_key_box:hover::after {
    height: 100%;
    visibility: visible;
    top: auto;
    bottom: 0;
}

.pro_key_box img {
    width: 60px;
    padding-bottom: 26px;
    transition: all 450ms ease-out;

}

.pro_key_box:hover img {
    transform: rotateY(180deg);
}

.pro_key_box h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark-blue);
    border-top: 1px solid #d2d2d2;
    font-family: "Inter Tight", sans-serif;
    padding-top: 20px;
    transition: all 450ms ease-out;
    line-height: 1.6;
    margin-bottom: 0;
}

/*Projects Key Points Section End*/
/*Plots Layout Section Start*/
.plots_img_sec {
    padding: 80px 0;
}

.plots_img_box img {
    max-height: 700px;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/*Plots Layout Section End*/
/*Projects Map Section Start*/
.pro_page_map_section {
    max-width: 100%;
    overflow: hidden;
}

.pro_page_map_section .location_box iframe {
    display: flex;
    max-height: 500px;
}

/*Projects Map Section End*/
/*Thank You Section Start*/
.thank_you_sec {
    padding: 100px 0;
}

.thank_you_sec h3 {
    font-size: 100px;
    font-weight: 900;
    color: var(--text-dark-blue);
}

.thank_you_sec h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-gray);
}

.thank_you_sec p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.thank_u_box {
    padding: 100px 100px 80px 100px;
    background-color: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0px 10px 19px rgb(0 0 0 / 9%);
}

.envalope_box {
    position: relative;
    display: inline-block;
    z-index: 1;
    margin-bottom: 10px;

}

.envalope_box::after {
    position: absolute;
    content: "";
    top: -18px;
    left: -25px;
    background-color: var(--bg-yellow);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    z-index: -1;
}

.envalope_box img {
    max-width: 70px;
}

/*Thank You Section End*/
/*Plots Form Section Start*/
/*.ploat_form_sec {
    padding: 80px 0;
}

.ploat_form {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 10px 19px rgb(0 0 0 / 9%);
}

.ploat_form input.form-control::placeholder,
.ploat_form input.form-control:focus,
.ploat_form textarea.form-control,
.ploat_form textarea.form-control::placeholder,
.ploat_form input.form-control:focus-visible {
    color: #444444ad;
    font-weight: 500;
    font-size: 14px;
    resize: none;
}

.ploat_form .form-control {
    margin-bottom: 0;
    color: #444444ad;
    border-radius: 0px;
    background-color: #f3eee869;
    border: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    transition: all 0.5s ease-in-out;
    border-bottom: 1px solid #f3eee88a;
}

.ploat_form .form-control:hover,
.ploat_form .form-control:active,
.ploat_form input.form-control:focus,
.ploat_form textarea.form-control:focus {
    border-bottom: 1px solid var(--text-dark-blue);
}

.ploat_form input.form-control:focus,
.ploat_form textarea.form-control:focus {
    box-shadow: none;
}

.ploat_form h5 {
    font-size: 19px;
    line-height: 1.2;
    color: var(--text-dark-blue);
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px;
    border-bottom: 1px solid var(--bg-dark-blue);
    background-color: var(--bg-linen);
}

.ploat_form table {
    margin-bottom: 0;
}

.ploat_form tr {
    vertical-align: middle;
}

.ploat_form td {
    padding-right: 0;
}

.ploat_form td span,
.ploat_form label {
    color: var(--text-gray);
    font-weight: 500;
    font-size: 16px;
    padding: 5px;
}*/

/*Plots Form Section End*/
/*Account Details Section Start*/
.account_details {
    margin: 80px 0 0;
}

.bank_form {
    border-radius: 15px;
    background: linear-gradient(rgba(31, 63, 113, 1), rgba(31, 63, 113, 0.95)), url(../images/grey-bg-stracture.webp);
    background-size: cover;
    background-position: left;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out;
    z-index: 9999;
    overflow-y: auto;
    padding: 40px;
}

.bank_box {
    background-color: var(--bg-linen);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
    padding: 30px 0;
}

.bank_img {
    z-index: 1;
    position: relative;
    transition: all 450ms ease-out;
}

.bank_box:hover h4,
.bank_box:hover .bank_img {
    transform: scale(1.2);
}

.bank_img::after {
    position: absolute;
    top: 0px;
    left: -50px;
    content: "";
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: var(--bg-yellow);
    z-index: -1;
}

.bank_img img {
    max-width: 90px;
    padding-top: 60px;
}

.bank_box h4 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark-blue);
    text-transform: capitalize;
    transition: all 450ms ease-out;
    margin-bottom: 0;
}

.bank_form .form-group label {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 500;
    padding: 10px;
}

.bank_form .form-group {
    margin-bottom: 12px;
    border-radius: 5px;
}

.bank_form .form-group:first-child label {
    padding-top: 0;
}

.bank_form .form-group:last-child {
    margin-bottom: 0;
}

.bank_form .form-group textarea::placeholder,
.bank_form .form-group input::placeholder {
    font-size: 14px;
    color: #ffffffad;
    font-weight: 300;
}

.bank_form .form-group input:focus,
.bank_form .form-group input,
.bank_form .form-group textarea {
    border: none;
    background: transparent;
    border: 1px solid #ffffff29;
    box-shadow: none;
    font-size: 14px;
    color: #ffffffad;
    font-weight: 300;
    resize: none;
    transition: all 0.4s ease;
    padding: 8px 7px;
}

.bank_form .form-group input:active,
.bank_form .form-group input:focus,
.bank_form .form-group:hover input,
.bank_form .form-group:hover textarea {
    border: 1px solid var(--bg-yellow);
}

/*Account Details Section End*/
/*Meet Our Team Page Start*/
.our_team_sec {
    padding: 80px 0;
}

.our_team {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.team_member {
    position: relative;
    width: 100%;
    height: 100%;
}

.team_member_img {
    border-radius: 10px;
    overflow: hidden;
}

.team_member_img img {
    transition: all 650ms ease;
    object-fit: cover;
}

.team_member:hover .team_member_img img {
    transform: scale(1.1);
}

.team_member .team_member_info {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background-color: rgba(225, 225, 225, 0.5);
    backdrop-filter: blur(3px);
    padding: 12px 0;
    text-align: center;
    border-radius: 10px;
    transition: all 450ms ease;
    z-index: 1;
}

.team_member_info::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    top: auto;
    width: 100%;
    height: 0%;
    z-index: -1;
    transition: all 450ms ease;
    border-radius: 10px;
}

.team_member:hover .team_member_info::after {
    background-color: rgb(0 32 98 / 80%);
    height: 100%;
}

.team_member_info h5 {
    margin-bottom: 3px;
    font-size: 18px;
    color: var(--bg-button);
    font-weight: 600;
    transition: all 450ms ease;
}

.team_member_info h6 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: capitalize;
    margin-bottom: 0;
    transition: all 450ms ease;
}

.team_member:hover .team_member_info h5,
.team_member:hover .team_member_info h6 {
    color: var(--text-white);
}

.md_desk_img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 0;
}
.md_desk_img {
    display: block;
    position: relative;
    z-index: 0;
    max-width: 400px;
    margin: 0 auto;
    padding-bottom: 66px;
}
.md_desk_img:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 60px;
    height: 37%;
    width: 100%;
    background: rgb(0 0 0);
    background: linear-gradient(0deg, rgb(255 255 255) 3%, rgb(0 0 0 / 0%) 76%);
    background: -moz-linear-gradient(0deg, rgb(255 255 255) 3%, rgb(0 0 0 / 0%) 76%);
    background: -webkit-linear-gradient(0deg, rgb(255 255 255) 3%, rgb(0 0 0 / 0%) 76%);
    background: linear-gradient(0deg, rgb(255 255 255) 3%, rgb(0 0 0 / 0%) 76%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f0f5fa",endColorstr="#f0f5fa",GradientType=1);
    z-index: 1;
}
.md_desk_img .md_name {
    position: absolute;
    bottom: -12px;
    z-index: 2;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    transform: rotate(-10deg);
}
.md_desk_img .md_name h4 {
    font-size: 50px;
    font-weight: 500;
    color: var(--bg-dark-blue);
    letter-spacing: -1.6px;
    font-family: "Handlee", cursive;
}
.md_desk_img .md_name h6 {
   font-size: 30px;
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: -1.6px;
    font-family: "Handlee", cursive;
}
/*Meet Our Team Page End*/


/*Book Now Form Section Start*/
section.form_sec{
    position: relative;
    padding: 80px 0;
}
section.form_sec:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-image: url(./../images/hero-three.webp);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    z-index: -1;
}
section.form_sec:after {
    background: #1F3F71;    
    background: linear-gradient(50deg, rgb(2 24 60) 0%, rgb(22 55 106) 50%, rgba(255, 209, 111, 1) 100%);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.85;
    z-index: -1;
}
.pdf_box img {
    width: 40px;
    transition: all 450ms ease;
}
.pdf_box:hover img {
    transform: scale(1.2);
}
.pdf_box h5 {
    font-size: 17px;
    font-weight: 500;
    color: var(--bg-dark-blue);
    margin-top: 16px;
    margin-bottom: 0;
    white-space: pre-line;
}
.pdf_box {
    padding: 26px 30px;
    display: block;
    background-color: var(--bg-linen);
    border: 1px solid #d4d4d46b;
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 7px;
    width: 100%;
    height: 100%;
}
.pdf_main_box{
    max-width: 250px;
    margin: 0 auto;
    padding: 30px 0;
}
.pdf_box:after {
    position: absolute;
    content: "";
    top: 14px;
    left: 47%;
    transform: translateX(-50%);
    width: 44px;
    height: 46px;
    background: var(--bg-dark-blue);
    z-index: -1;
    border-radius: 5px;
}
.pdf_form_main_box{
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}
.book_now_box{
    padding: 40px;
    width: 100%;
    height: 100%;
}
.book_now_box .btn_light {
    border: 2px solid var(--bg-yellow);
    background-color: var(--bg-yellow);
    padding: 13px 38px;
    display: block;
    margin: 0 auto;
}
.book_now_box .btn_light .btn_light_text {
    color: var(--bg-button);
    text-transform: capitalize;
}
.book_now_box .btn_light:hover .btn_light_text {
    color: var(--text-dark-blue);
}
.book_now_box .btn_light:hover {
    border: 2px solid var(--bg-linen);
}
.book_now_box .btn_light:hover:before {
    background-color: var(--bg-linen);
}
.book_now_box input, .book_now_box textarea, .book_now_box .form-control:focus {
    background-color: transparent;
    color: var(--text-white);
    border-radius: 5px;
    transition: all 0.4s ease;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #d4d4d4;
    resize: none;
    font-size: 14px;
    color: var(--text-white);
    font-weight: 400;
}
.book_now_box input:hover,
.book_now_box textarea:hover,
.book_now_box .form-control:focus {
    border-bottom: 1px solid var(--bg-yellow);
}
.book_now_box .form-control {
    padding: 14px 20px;
}

.book_now_box .form-control::placeholder{
   color: var(--text-white);
   font-weight: 400;
}

/*Book Now Form Section End*/