*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;

}/* General Styles */

/* Navbar Fast Section */
.main_top_navbar{
    display: flex;
}
.left_side_contact_info{
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: auto;
    height: 100%;
    align-items: center;
}
.mobile_number{
    font-family: Arial, Helvetica, sans-serif !important;
    color: #fff;
}
.Social_icon{
    padding-right: 15px;
}
.Social_icon i{
    transition: all 0.3s ease-in-out;
}
.Social_icon i:hover{
    color: red;
}
.top_menu_header{
    padding: 5px 10px;
}
.top_menu_header p{
    font-size: 14px;
}
.left_side_contact_info a{
    color: #fff;
    text-decoration: none;
    padding: 0px 10px;

}
.main_top_navbar{
    width: 100%;
    height: 30px;
    background-color: #057C89;
    margin: auto;
}
.main_header{
    width: 100%;
    height: auto;
    background-color: #ffffff;
    /* display: flex; */
    align-items: center;
    position: fixed;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    z-index: 999999;
}
.navbar_main_area{
    width: 95%;
    margin: auto;
    height: auto;
    display: flex;
    justify-content: space-between;
}
.navbar_main_area a{
    text-decoration: none;
    color: #057C89;
    
}
.navbar_main_area li{
    list-style: none;
}

.navbar_main_logo_section{
    width: 90px;

}
.navbar_main_logo_section img{
    width: 100%;
    padding: 5px 0px;
}
.navbar_menu{
    display: flex;
    align-items: center;
    position: relative;
}
.dropdown_menu{
    position: absolute;
    align-items: center;
    background-color: #057C89;
    margin-top: 25px;
    min-width: 200px;
    display: none;
}
.dropdown_menu_open:hover .dropdown_menu{
    display: block;
}
.menu_item{
    margin-top: 1px;
    padding: 28px 20px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.menu_item:hover{
    background-color: #057C89;
    color: #fff;
}
.menu_item:hover a{
    color: #fff;
}
.dropdown_menu_item{
    padding: 10px 10px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px dotted #eee;
}
.dropdown_menu_item:hover{
    background-color: #fff;
    color: #057C89;
}


.navbar .menu .dropdown-content {
    
    animation: fadeIn 0.3s ease;
}
.navbar_toggole_section{
    display: none;
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Imdex Slider */
.index_slider_main_area {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    flex-direction: column;
}
.index_slider_main{
    padding-top: 90px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel_home_slide {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide_index {
    min-width: 100%;
    height: 90vh;
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide_index.active {
    opacity: 1;
}

.slide_index img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(5, 133, 84, 0.3);
}

.slide_index.active img {
    transform: scale(1.05); /* Zoom-in effect */
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.slide-content h2 {
    font-size: 35px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 1px #666;
}

.slide-content p {
    font-size: 25px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 1px #666;
    color: #ff3c00;
}

.btn-contact {
    background-color: #057C89;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-contact:hover {
    background-color: #e64a19;
}

.navigation-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.212);
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    /* border-radius: 50%; */
    font-size: 20px;
    /* transition: background-color 0.3s ease, transform 0.3s ease; */
}

.navigation-button:hover {
    background-color: rgba(0, 0, 0, 0.7);

}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Dots Navigation */
.dots-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 3, 3, 0.7);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s ease;
}

.dot.active {
    background-color: #057C89;
    transform: scale(1.2); /* Slightly enlarge active dot */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .btn-contact {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 1.2rem;
    }

    .slide-content p {
        font-size: 0.8rem;
    }

    .btn-contact {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}


/* Start About us Section */
.about_us_main_conteiner{
    width: 100%;
    height: auto;
}
.about_us_main_conteiner_area{
    width: 95%;
    height: auto;
    margin: auto;
}
.about_us_main_conteiner_header{
    width: 100%;
    text-align: center;
}
.about_us_main_conteiner_header h1{
    color: #057C89;
    font-size: 35px;
    padding: 20px;
}
.about_us_main_conteiner_file{
    display: flex;
    justify-content: center;
}
.about_us_text_side{
    width: 50%;
}
.about_us_image_side{
    width: 50%;
}
.about_us_text_side{
    padding: 0px 10px 10px 0px;
    text-align: justify;
    color: #444;
    font-size: 15px;
}
.about_us_text_side button{
    padding: 10px 15px;
    background-color: #057C89;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    color: #ffffff;
    margin-top: 20px;
}


.about_us_image_side {
    position: relative;
    display: inline-block;
    /* background-image: url(../../image/block_area/video_back.jpg); */
}

.about_us_image_side img {
    width: 100%;
    height: 340px;
    object-fit:contain;
    
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.video-content {
  position: relative;
}

.video-content .close {
  position: absolute;
  top: -20px; right: -20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}


/* .video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
} */

/* .video-content {
    position: relative;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}*/

/* .close {
    position: absolute;
    top: 0px;
    right: 5px;
    font-size: 24px;
    cursor: pointer;
    color: #ff3c00;
} */ */

/* Blcok Sale post */
.poperteis_cata_main_conteiner{
    width: 100%;
    height: auto;
}
.poperteis_cata_main_conteiner_area{
    width: 95%;
    margin: auto;
    height: auto;
    padding: 20px 0px;
    margin-bottom: 20px;
}

/*  */

/* Show play button initially */
.index_plot_card[data-type="video"] {
    position: relative;
}

.category_play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: white;
    background: rgba(255, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.3s ease;
    pointer-events: none;
    opacity: 1;
}

/* Hide play button when hovered */
.index_plot_card:hover .category_play_btn {
    opacity: 0;
}



/*  */
.card_link_area{
    display: flex;
}
.index_plot_section {
    width: 100%;
    height: auto;
    text-align: center;
}

.index_plot_section_area{
    width: 95%;
    height: auto;
    margin: auto;
}
.index_plot_section h1 {
    color: #057C89;
    font-size: 35px;
    padding: 20px;
}

.index_plot_section p {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.index_plot_tabs {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.index_plot_tab_btn {
    background: #e4e4e4;
    border: none;
    padding: 12px 26px;
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease, transform 0.2s ease;
}

.index_plot_tab_btn:hover {
    background: #ccc;
    transform: translateY(-2px);
}

.index_plot_tab_btn.active {
    background: #222;
    color: #fff;
}

.index_plot_tab_content {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.index_plot_tab_content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.index_plot_card_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 20px;
}

.index_plot_card {
    position: relative;
    width: 23.5%;
    height: 350px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
    cursor: pointer;
}

.index_plot_card:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.index_plot_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.index_plot_card_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.index_plot_card:hover .index_plot_card_overlay {
    opacity: 1;
}

.index_plot_card_overlay h3 {
    color: #fff;
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}
.index_plot_card_overlay p {
    color: #fff;
    font-size: 15px;
    text-align: center;
}

.index_plot_card:hover .index_plot_card_overlay h3 {
    opacity: 1;
    transform: translateY(0);
}

.index_plot_card_overlay a {
    background: #fc0d05;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    margin: 10px;
    text-decoration: none;
    transform: scale(0.8);
    transition: all 0.4s ease;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.index_plot_card_overlay a:hover{
    background-color: #fc0d05cc;
}
.video_overlay{
    padding: 10px 14px;
}

.index_plot_card:hover {
    transform: scale(1);
    background-color: #d60c05e0;
}

@media (max-width: 768px) {
    .index_plot_card {
        width: 90%;
    }
}

/* WHAT ARE YOU LOOKING FOR? */
.what_are_you_looking_for_continar{
    width: 100%;
    height: auto;
}

.what_are_you_looking_for_continar_area{
    width: 95%;
    height: auto;
    margin: auto;
    padding-top: 20px;
}

.what_looking_for_header{
    width: 100%;
    text-align: center;
}
.what_looking_for_header h1{
    color: #057C89;
    font-size: 35px;
    padding: 20px;
}

.what_looking_for_header p{
    color: #222;
    font-size: 15px;
    padding: 0px 0px 20px 0px;
    width: 70%;
    margin: auto;
}
.looking_for_services{
    display: flex;
    justify-content: center;
    gap: 30px;
}
.looking_for_services_box{
    width: 32%;
    text-align: center;
    height: auto;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
}
.looking_for_services_box:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.looking_for_services_image{
    height: auto;
    text-align: center;
}
.looking_for_services_image img{
    width: 60%;

}
.looking_for_services_text{
    position: relative;
}
.looking_for_services_text h3{
    color: #057C89;
    font-size: 20px;
    padding: 20px 10px;
}
.looking_for_services_text p{
    color: #444;
    font-size: 15px;
    padding: 10px 20px;
    height: 70px;
}
.looking_for_services_text button{
    padding: 10px 15px;
    background-color: #057C89;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    color: #ffffff;
    margin: 20px 0px;
    transition: all 0.3s ease-in-out;
}
.looking_for_services_text button:hover{
    border: 1px solid #057C89;
    color: #057C89;
    background-color: #fff;
}
/* Why Choose Us? */
.why_chooses_us_conteiner{
    width: 100%;
    height: auto;
    padding-top: 20px;
}

.why_chooses_us_conteiner_area{
    width: 95%;
    height: auto;
    margin: auto;
}

.why_chooses_us_conteiner_header{
    width: 100%;
    text-align: center;
}
.why_chooses_us_conteiner_header h1{
    color: #057C89;
    font-size: 35px;
    padding: 20px;
}

.why_chooses_us_conteiner_header p{
    color: #222;
    font-size: 15px;
    padding: 0px 0px 20px 0px;
    width: 70%;
    margin: auto;
}
.why_chooses_us_Main_section{
    display: flex;
    justify-content: center;
    gap: 5px;
}
.why_chooses_us_Main_section_box{
    width: 20%;
    height: auto;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.why_chooses_us_Main_section_box:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.why_chosses_img{
    width: 100%;
    height: 100px;
    padding-top: 20px;
}
.why_chosses_img img{
    width: 30%;
    height: auto;
    margin: auto;
}
.why_chosses_header h2{
    color: #444;
    font-size: 18px;
    padding: 10px 0px;
}

/*  Featured Projects*/
.recent_projects_conteinar{
    width: 100%;
    height: auto;
    padding-top: 20px;
}

.recent_projects_conteinar_area{
    width: 95%;
    height: auto;
    margin: auto;
}

.recent_projects_conteinar_header{
    width: 100%;
    text-align: center;
}
.recent_projects_conteinar_header h1{
    color: #057C89;
    font-size: 35px;
    padding: 20px;
}

.recent_projects_conteinar_header p{
    color: #222;
    font-size: 15px;
    padding: 0px 0px 20px 0px;
    width: 70%;
    margin: auto;
}


.recents_project_main_div_conteinar{
    display: flex;
    justify-content: left;
    gap: 20px;
}

.recents_project_main_div_conteinar_box {
    position: relative;
    width: 24%;
    overflow: hidden;
    border: 1px solid #eee;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.recents_project_main_div_conteinar_box:hover .image-container img{
    transform: scale(1.05);
}

.image-container {
    position: relative;
    width: 100%;
    height: 200px;
    /* height: auto; */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: all 0.3s ease-in-out;
}

.top-left-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    font-size: 16px;
}

.top-right-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 24px;
}
.property-name{
    padding: 20px 10px 0px 10px;
    display: flex;
    justify-content: space-between;
}
.property-name h4{
    font-size: 18px;
    font-weight: bold;
    color: #444;
    
}
.property-name p{
    color: #e64a19;
    display: none;
}
.projects_locations{
    padding: 0px 10px;
}
.projects_locations p{
    padding: 10px 10px 5px 0px;
    font-size: 15px;
    color: #444;
}
.projects_locations i{
    color: #057C89;

}
.facility_iocns{
    display: flex;
    justify-content: left;
    color: #444;
    padding: 0px 10px;
}
.facility_iocns p{
    padding: 10px 10px 5px 5px;
    font-size: 12px;
}
.facility_iocns i{
    color: #057C89;
    padding-right: 5px;

}
/* .projects_details_button a{
    text-decoration: none;
    width: 100%;
}
.projects_btn_index{
    width: 100%;
    padding: 10px 10px;
    background-color: #fff;
    border: 1px solid #eee;
    cursor: pointer;
    font-weight: 600;
    color: #057C89;
    transition: all 0.3s ease-in-out;
    margin-top: 10px;
}

.projects_details_button button:hover{
    background-color: #057C89;
    color: #ffffff;
} */
.details-btn-index { 
    display: block; 
    text-align: center; 
    padding: 10px;
    border: 1px solid #eee;
    color: #057C89; 
    text-decoration: none;
    font-size: 14px; 
    transition: 0.3s; 
}
.details-btn-index:hover { 
    background: #057C89; 
    color: #fff;
}
.projects_more_button{
    text-align: center;
}
.projects_more_button button{
    padding: 10px 10px;
    background-color: #057C89;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    margin: 20px;
    transition: all 0.3s ease-in-out;
    border: none;
    border-radius: 2px;
}
.projects_more_button button:hover{
    background-color: #ff3c00;
}
/*  */
.plot_filter_buttons {
  text-align: center;
  margin-bottom: 30px;
}

.plot_filter_btn {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  color: #333;
  font-size: 15px;
  padding: 10px 20px;
  margin: 0 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plot_filter_btn:hover,
.plot_filter_btn.active {
  background-color: #057C89;
  color: white;
  border-color: #057C89;
}


/* footer */
.footer_main_conteinar{
    width: 100%;
    height: auto;
    background-color: #057C89;
    padding-bottom: 20px;
}
.footer_main_conteinar_area{
    width: 95%;
    height: auto;
    margin: auto;
}
.footer_main_section{
    display: flex;
    justify-content: center;
}

.footer_main_header{
    padding: 15px 0px;
}
.footer_main_header h2{
    color: #ffffff;
}
.footer_main_conteinar{
    width: 100%;
    height: auto;
    background-color: #057C89;
}
.footer_link a{
    text-decoration: none;
    color: #fff;
    
}
.footer_link li{
    list-style: none;
    padding: 5px 0px;

}
.footer_menu_link:hover{
    color: #eeeeee;
    font-weight: 600;
}
.about_us_text{
    padding-right: 10px;
    text-align: justify;
    color: #fff;
}
.about_us_text a{
    text-decoration: none;
    color: #fff;
}
.about_us_text a:hover{
    color: #e64a19;
}
.footer_quick_link{
    padding-left: 50px;
}
.footer_div{
    width: 25%;
    height: auto;
}
.address_main_div{
    display: flex;
    
}
.address_main_div i{
    font-size: 25px;
    color: #ffffff;
    padding-right: 10px;
}
.address_main_div p{
    color: #fff;
    padding: 0px 5px;
}
.footer_div_2{
    padding-top: 15px;
}
.footer_div_3{
    font-family: Arial !important;
}
.copyright_area{
    background-color: #023a41;
    color: #fff;
    padding: 10px 10px;
    text-align: center;
}
.copyright_area a{
    color: #fff;
    text-decoration: none;
    
}
.Social_icon_footer{
    color: #ffffff;
    padding-top: 10px;
}
.Social_icon_footer a{
    text-decoration: none;
    color: #ffffff;
}
.Social_icon_footer a:hover{
    color: #e64a19;
}
.Social_icon_footer a i{
    font-size: 20px;
    padding-right: 15px;
}