    
        
    /* General header styling */
header {
    overflow: hidden;
    max-width: 100%;
}

/* Media query for screen sizes below 1200px */
@media (max-width: 1266px) {
    .header-desktop-main-div {
        display: none !important;
    }

    .header-mobile-view {
        display: block !important;
    }

    .header-mobile-view .menu-icon-toggle {
        cursor: pointer !important;
    }
}

/* Third level menu */
.third-level-menu ul {
    display: none; /* Hide submenus by default */
    flex-direction: column;
    background-color: #FFF;
    padding: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Smaller width for the third-level menu */
}

.third-level-menu ul.active {
    display: flex; /* Show submenu when active */
}

.third-level-menu li {
    padding: 8px 16px; /* Reduced padding */
    border-bottom: 1px solid #f0f0f0;
}

.third-level-menu li a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.third-level-menu li:hover {
    background-color: #f5f5f5;
}

/* Desktop header */
.header-desktop-main-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0;
    background-color: #F8F8F8;
    font-family: 'Mnt', Sans-serif;
    margin: 0;
    margin-right: 100px
}

/* Top-level menu styling */
.top-level-menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

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

    .top-level-menu li {
        margin-bottom: 10px;
    }
}

.top-level-menu li {
    margin: 0 5px; /* Reduced horizontal margin */
    white-space: nowrap;
}

.top-level-menu a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.top-level-menu > li span {
    padding: 10px 20px; /* Reduced padding for less width */
    white-space: nowrap;
}

/* Header logo and language switch */
header-desktop-logo-div {
    max-width: 100px;
}

.language-switch {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .logo {
        max-width: 80px;
    }

    .language-switch {
        flex-direction: row;
    }
}

/* Menu item styles */
.top-level-menu > li {
    background: none;
    border-bottom: 3px solid transparent;
    margin-left: 5px;
    margin-right: 5px;
}

/* Hover effects for top-level menu items */
.top-level-menu > li:hover {
    background-color: transparent;
    border-bottom: 3px solid #ebebeb;
}

.top-level-menu > li:first-child {
    border-bottom: 3px solid #ebebeb;
}

.top-level-menu > li:first-child span {
    color: #000;
}

.top-level-menu li {
    position: relative;
}

.top-level-menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFF;
    list-style: none;
    padding: 8px;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-level-menu li:hover ul {
    display: block;
}

/* Font and padding for top-level menu items */
.top-level-menu > li span {
    color: #000;
    padding: 15px 20px; /* Reduced padding */
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.09em;
}

.top-level-menu > li:hover span {
    color: #ff7f00;
}

/* Second-level menu styling */
.second-level-menu {
    display: none; /* Hide by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: transparent;
    padding: 0;
    font-family: 'Montserrat', Sans-serif;
}

.second-level-menu > div {
    background-color: #fff;
    padding: 12px;
    width: 250px; /* Reduced width for second-level menu */
}

/* Second-level menu item styling */
.second-level-menu > div > li {
    padding: 8px 12px; /* Reduced padding */
}

/* Hover effect for second-level menu items */
.second-level-menu > div > li:hover {
    background: #ff7f00
}

/* Font styling for second-level menu items */
.second-level-menu > div > li p {
    color: #000;
    font-size: 10px;
    font-weight: 300;
}

/* Third-level menu styling */
.third-level-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 0;
    left: 250px; /* Adjusted position */
    background-color: #fff;
    padding: 6px;
}

.third-level-menu > li {
    padding: 6px 12px;
}

.third-level-menu > li:hover {
    background: #BE0000;
}

.third-level-menu > li p {
    color: #000;
    font-size: 10px;
}

/* Show the second-level menu when hovering over the parent item */
.top-level-menu li:hover > .second-level-menu {
    display: block;
}

/* Third-level menu visibility on hover */
.second-level-menu > div > li:hover > .third-level-menu {
    display: block;
}

/* Ensure third-level menu is hidden when not active */
.third-level-menu {
    display: none;
}

/* Show the third-level menu when hovered */
.second-level-menu > div > li:hover > .third-level-menu {
    display: block;
}
<Style>
/* Genel Ayarlar */
.header-main-div {
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Desktop Header */
.header-desktop-main-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #F8F8F8;
    font-family: 'Mnt', Sans-serif;
}

.header-desktop-logo-div img {
    max-width: 250px;
    height: auto;
}

/* Sosyal Bağlantılar */
.header-desktop-social-div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-desktop-social-div a {
    font-size: 18px;
    color: #8F8F8F;
    transition: all 0.3s ease-in-out;
}

.header-desktop-social-div a:hover {
    text-decoration: none;
    color: #; /* Hover renk değişimi için */
}

/* Mobil Header */
.header-mobile-view {
    display: none;
    background-color: #F8F8F8;
    padding: 10px 20px;
}

/* Mobil Menü Görünümü */
.header-mobile-view .menu-icon-toggle {
    font-size: 24px;
    color: #8F8F8F;
}

.header-mobile-view a {
    color: #8F8F8F;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Fixed Header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #F8F8F8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 10px 20px;
}

/* Responsive Ayarlar */
@media (max-width: 1200px) {
    .header-desktop-main-div {
        display: none;
    }

    .header-mobile-view {
        display: block;
    }

    .header-mobile-view .menu-icon-toggle {
        cursor: pointer;
    }
}
.header-desktop-logo-div-main{
margin-top: -85px;
}

.lang-select-custom-div i,
.header-lang-name{
color:#8F8F8F !important;
}


.header-infobox{
border-right:1px solid #000000}

.header-infobox-i{
color:#000000;
}
.header-infobox-txt-h{
color:#000000;
}

.header-infobox-txt-s2,
.header-infobox-txt-s2:hover,
.header-infobox-txt-s:hover,
.header-infobox-txt-s{
color:#999999;
}


/* hizmetler */
.hizmetler-module-main-div{
    background-image:url("../../images/uploads/6408647219503-69-DJI_20231213092639_0507_D-min.jpg") ;
    background-size: cover;
    background-position:top center;
            background-attachment: fixed;
    padding:60px 0;
margin: 0px 0;
}
.hizmetbox{
background-color: #FFFFFF;
}
.hizmetbox-img{
background-color: #FFFFFF;
}
.hizmetbox-hed a{
color: #000000;
}


.infobox-main{
background-image:url("../../images/uploads/5185711036711-931-top-view-arrangement-with-construction-items.jpg") ;
background-size: cover;
background-position:top center;
}





/* Swiper Custom Style ///////////////////////////////////////////*/
.swiper-container {
height: 750px;
}
.swiper-slide {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
}
[class^="swiper-button-"] {
-webkit-transition: all .3s ease;
transition: all .3s ease;
}
[class^="swiper-button-"] {
width: 44px;
opacity: 0;
visibility: hidden;
}

.swiper-button-prev {
-webkit-transform: translateX(50px);
transform: translateX(50px);
}

.swiper-button-next {
-webkit-transform: translateX(-50px);
transform: translateX(-50px);
}
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
-webkit-transform: translateX(0);
transform: translateX(0);
opacity: 1;
visibility: visible;
}
.swiper-pagination-bullet-active {
width: 20px!important; height: 4px!important; border-radius: 0 !important;
background-color: transparent !important;
background-color:#BE0000 !important;
}
[class^="swiper-pagination-bullet"]{
width: 10px; height: 4px;
-webkit-border-radius: 0 !important;-moz-border-radius: 0 !important;border-radius: 0 !important;
transition: all .3s ease;
}
.swiper-container.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
bottom:80px;
}

/* Swiper Custom Style SON ///////////////////////////////////////////*/


/* iphone 5s ==========================================
*****************************************************************************/
@media screen and (max-width:321px) and (min-width:0px) {
.swiper-container {
width: 100% !important; margin: 0 auto;
height: 400px !important;
}
.slider_text_inside_box_h{
font-size: 28px !important ;
line-height: 28px !important ;
}
.slider_text_inside_box_s{
font-size: 18px !important ;
line-height: 22px !important ;
}
}
/*** iphone X - S5 vs ==========================================
*****************************************************************************/
@media screen and (max-width:410px) and (min-width:321px) {
.swiper-container {
width: 100% !important; margin: 0 auto;
height: 400px !important;
}
.slider_text_inside_box_h{
font-size: 28px !important ;
line-height: 28px !important ;
}
.slider_text_inside_box_s{
font-size: 18px !important ;
line-height: 22px !important ;
}
}
/* Pixel 2 - iphone plus ==========================================
*****************************************************************************/
@media screen and (max-width:767px) and (min-width:410px) {
.swiper-container {
width: 100% !important; margin: 0 auto;
height: 400px !important;
}
.slider_text_inside_box_h{
font-size: 28px !important ;
line-height: 28px !important ;
}
.slider_text_inside_box_s{
font-size: 18px !important ;
line-height: 22px !important ;
}
}
/* Ipad Pro*/
@media screen and (max-width:1100px) and (min-width:1023px) {
.swiper-container {
height: 580px;
}
.slider_text_inside_box_h{
    font-size: 55px !important ;
    line-height: 55px !important ;
}
}

@media screen and (max-width:1023px) and (min-width:767px) {
/* Ipad */
.swiper-container {
height: 580px;
}
.slider_text_inside_box_h{
    font-size: 55px !important ;
    line-height: 55px !important ;
}
}

/* RESPONSIVE ENDING ==========================================
*****************************************************************************/
@media screen and (max-width:1440px) and (min-width:1101px) {
.swiper-container{  height: 750px; }
}
@media screen and (max-width:1600px) and (min-width:1441px) {
.swiper-container{  height: 750px; }
}
@media screen and (max-width:1680px) and (min-width:1601px) {
.swiper-container{  height: 750px; }
}









.footer-module-main-div{
font-family : 'Mnt',sans-serif ;
    background:#FFFFFF ;
padding:80px 0;
margin: 0px 0 0 0;
}
.footer-module-box-telif{
width: 90%;
font-family : 'Mnt',sans-serif ;
color: #565656;
}
.footer-module-box-social a{
display: block;
color: #000000;
padding: 10px 14px;
box-sizing: border-box;
line-height: 15px;
font-size: 15px ;
}
.footer-module-box-social a:first-child{
padding-left: 0;
}
.footer-module-header-text{
color: #000000;
}
.footer-module-contact-box{
color: #565656;
}
.footer-module-contact-box a{
color: #565656;
}
.footer-module-workhour-div{
color: #565656;
}
.footer-module-links-div a{
display: block;
width: 100%;
margin-bottom: 10px;
color: #565656;
}


.sss-module-main-div{
    background:#FFFFFF ;
padding:10px 0;
margin-top: 0px !important;
margin-bottom: 0px !important;
}
.accordion_main {
width: 100%;
text-align: left
}

.accordion-header,
.accordion-body {}

.accordion__item{
border-bottom:1px solid #F1F1F1 !important;
margin-bottom: 0}

.accordion-header {
padding: 1.5em 1.5em;
background: #FFFFFF;
color: #000000;
cursor: pointer;
font-size:16px;
font-weight: 400;
letter-spacing: .05em;
transition: all .3s;
}
.accordion__item:last-child{
border-bottom:1px solid #F1F1F1 !important;
}


.accordion-body {
background: #F5F5F5;
color: #000000;
display: none;
width: 100%;
}

.accordion-body__contents {
padding: 20px 20px 40px 20px;
line-height: 20px;
font-weight: 300;
font-size: 14px;
width: 100%;
letter-spacing: .03em;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
overflow: hidden;
}

.accordion__item.active:last-child .accordion-header {
border-radius: 0;
}

.accordion:first-child > .accordion__item > .accordion-header {
border-bottom: 1px solid transparent;
}

.accordion__item > .accordion-header:before {
content: "\f078";
font-family: FontAwesome;
font-size: 1.2em;
float: left;
margin-right: 15px;
position: relative;
transition: .3s all;
transform: rotate(0deg);
}

.accordion__item.active > .accordion-header:before {
transform: rotate(-180deg);
}

.accordion__item.active .accordion-header {
background: #F5F5F5;
color:#D45757}





.intro-video-module-main-div{
    background-image:url("../../images/uploads/index.html") ;
    background-size: cover;
    background-position:top center;
    padding:px 0;
margin-top: px !important ;
margin-bottom: px !important;
}










.yorumlar-module-main-div{
font-family : 'DM Sans',sans-serif ;
    background:#FFFFFF ;
padding:60px 0;
margin-top: 0px !important;
margin-bottom: 0px !important;
}
.swiper-comments {
width: 100%;
height: auto;
padding-bottom:60px;
}
.swiper-comments .swiper-slide {
width: 100%;
background-color:#FFF;
display:block;
padding:20px;
box-sizing:border-box;
border-radius: 5px;
height:100%;
text-align:center;
}
.swiper-comments .swiper-pagination-bullet-active {
width: 14px!important; height: 14px!important;
border-radius: 100px !important;
background-color: #FDB900 !important;
}
.swiper-comments .swiper-pagination-bullet {
width: 14px; height: 14px;
border-radius:100px !important;
webkit-transition: all .3s ease;
transition: all .3s ease;
}


.marka-module-main-div{
    background:#f1f1f1 ;
padding:500px 0;
margin-top: 50px !important;
margin-bottom: 50px !important;
}

.swiper-clients {
width: 100%;
height: 100%;
position: relative;

}

.swiper-clients .swiper-slide {
text-align: center;
padding: 5px 10px;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
.swiper-clients .swiper-slide img{
max-height: 90px;
}







.blog-box{
border: 1px solid #F1F1F1;
background-color: #FFFFFF;
}



.info-main-div {
font-family : 'DM Sans',sans-serif ;
    background-image:url("../../images/uploads/5185711036711-931-top-view-arrangement-with-construction-items.jpg") ;
    background-size: cover;
    background-position:top center;
    padding:40px 0;
margin-top: 0px !important;
margin-bottom: 0px !important;
}
.hizmetler-box-h{
background-color: #;
}


.infoboxes{
background-color: #FFFFFF;
border: 1px solid #FFFFFF;
border-radius: 5px;
}
.infoboxes-txt{
color: #000000;
}
.infoboxes-spot{
color: #636363;
}


.header-top-boxes-box-i{
color:#000000}
.header-top-boxes-box-txt{
color:#8F8F8F}

.top-social-a{
color:#000000}
.top-social-a:hover{
color:#000000}

.header-mobile-view-in{
padding:20px 0 ;
}
.menu-icon-toggle span{
background-color: #000000;
}
.home:not(.open) .menu-icon-toggle span {
background-color: #000000;
}
.menu-icon-toggle::before, .menu-icon-toggle::after {
background-color: #000000;
}
.open .menu-icon-toggle::before, .open .menu-icon-toggle::after {
background-color: #000000;
}
.fa-chevron-down{
transform: rotate(0deg);
transition: transform .02s linear;
}

.fa-chevron-down.open{
transform: rotate(180deg);
transition: transform 0.2s linear;
}



.filter-button{color:#000000; background: #FFFFFF; font-size:14px; border-radius:0px; }
.filter-button.is-checked{color:#000000; background: #BE0000;}

.project-item{
border-radius: 5px;
}

.projeler-modules{
font-family : 'DM Sans',sans-serif ;
    background:#FFFFFF ;
padding:50px 0;
margin-top: 0px !important;
margin-bottom: 0px !important;
}
</Style>