*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html,body{
    font-family:"Poppins", sans-serif;
    background-color: #fff;
    overflow-x: hidden; 
}

nav {
    position: relative; /* Navbar için relative konumlandırma */
    z-index: 100;
}
.dropdown-menu .dropdown-item{
    outline: none;
}

.dropdown-menu .dropdown-item:hover{
    color: #fff;
    background: #fe6c35;
}
.header .nav-link{   
    font-weight: 500;
    color: #445283;
}

.header .nav-link:hover{   
    color: #fe6c35;
}


.hero-static {
    position: relative; /* Parent element için relative konumlandırma */
    /* height: 800px; */
    z-index: 1; /* Yazılar ve içerikler için yüksek z-index */
}

.hero-static:before {
    content: "";
    background: url("/assets/images/hero-shape-2.png") left top / 100% 100% no-repeat local;
    width: 20%;
    height: 658px;
    position: absolute;
    left: 0;
    top: 100px;
    z-index: -1; /* Ön planda ama yazılardan arkada kalacak */
}

.hero-static:after {
    content: "";
    background: url("/assets/images/hero-shape-3.png") right top/100% 90% no-repeat local;
    width: 40%;
    height: 100%;
    position: absolute;
    right: -0;
    top: -5rem;
    z-index: -1; /* Arka plan için en düşük z-index */
}
.hero-static .container .row .slide-title{
    padding-top: 15rem;
}
.hero-static .container .row .slide-title h1{
    font-size: 3rem !important;
    font-weight: 600;
    color: #283a5e;
}
.hero-static .container .row .slide-text{
    padding-top: 2rem;
}
.hero-static .container .row .slide-text{
    color:#666;
    line-height: 1.8em;
}
.hero-static .container .row .slide-btn{
    padding-top: 2rem;
}


.btn-orange a{
    background-color: #fe6c35;
    color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    text-decoration: none;

}

.hero-static .container .row .slide-img{
    padding-top: 10rem;
}
@media (max-width:1200px){
  
    .hero-static .container .row .slide-img{
        padding-top: 13rem;
    }
    .hero-static .container .row .slide-title h2{
        font-size: 2.5rem !important;
    }
}
@media (max-width:991px){
    .hero-static{
        height: 600px;
    }
    .hero-static:after {
        content: "";
        background: url("/assets/images/hero-shape-3.png") right top/100% 90% no-repeat local;
    
        position: absolute;
        right: -0;
        top: -5rem;
        z-index: -1; /* Arka plan için en düşük z-index */
    }
    .hero-static .container .row .slide-title{
        padding-top: 12rem;
    }

    .hero-static .container .row .slide-img{
        padding-top: 12rem;
    }
    .hero-static:before {
        width: 40%;
        height: 50%;
    }
    .hero-static:after {
        width: 50%;
        height: 70%;
    }
    .hero-static .container .row .slide-title h2{
        font-size: 2rem !important;
    }
}
@media (max-width:767px){
    .hero-static .container .row .slide-title{
        padding-top: 0;
        margin-top: 1rem;
    }

    .hero-static .container .row .slide-img{
        padding-top: 0;
    }
}

@media (max-width:576px){
    .hero-static .container .row .slide-title{
        padding-top: 2rem;
    }

}
.p-150{
    padding:150px 0 100px;
}

.p-100{
    padding: 100px 50px;
}
.p-60{
    padding-top: 60px;

}
.p-50{
    padding-top: 100px;
}

.about .section-title{
    color:#fe754c;
    padding-top: 2rem;
}
.about-title h2{
    font-size: 2rem;
    font-weight: 600;
    color: #283a5e;
    padding-top: 2rem;
}

.about-text{
    color: #666;
    line-height: 1.8em;
    padding-top: 2rem;
}

.about-btn{
    padding-top: 2rem;
}
.btn-2 a{
    background-color: #fdf0eb;
    color: #fe6c35;
    border-radius: 20px;
    padding: 10px 20px;
    text-decoration: none;

}
@media (max-width:991px){
    .about{
        padding:10px 0;

    }
}
/* !Services */

.service-section{
    width: 80%;
    margin: auto;
    margin-bottom: 50px;
}

@media (max-width:768px){
    .service-section .row .grid{
        margin-top: 2rem;
    }
    .service-section h2{
        padding-top: 3rem;
        padding-bottom: 0;

    }
}
.section-title h2{
    text-align: center;
    font-weight: 600;
    color: #283a5e;
    padding-bottom: 2rem;
}
.details h3{
    padding-top: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #283a5e;
}
.details p{
    padding-top: 1.5rem;
    color: #666;
    line-height: 1.8em;
}

.grid{
    border:1px solid rgb(243, 237, 237);
    padding: 40px 30px;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.grid .icon,
.grid .icon-2,
.grid .icon-3{
    margin: auto;

}
.icon,
.icon-2,
.icon-3 {
    position: relative; /* Konumlandırma için relative ayarı */
    width: 100px; /* İkon boyutuna göre genişlik */
    height: 100px; /* İkon boyutuna göre yükseklik */
    background-color: white; /* Başlangıçta beyaz arka plan */
    border-radius: 5px; /* İsteğe bağlı olarak köşeleri yuvarlat */
    display: flex; /* Flexbox ile içeriği ortala */
    align-items: center; /* Dikey olarak ortala */
    justify-content: center; /* Yatay olarak ortala */
    transition: background-color 0.3s; /* Arka plan rengi geçişi */
}

.icon svg,
.icon-2 svg,
.icon-3 svg {
    fill: rgb(246, 242, 242); /* Başlangıçta SVG beyaz */
    width: 125px; /* SVG boyutu */
    height: 125px; /* SVG boyutu */
    transition: fill 0.3s; /* SVG rengi geçişi */
}

.icon i,
.icon-2 i,
.icon-3 i {
    position: absolute; /* İkonu pozisyonlandır */
    font-size: 30px; /* İkonun boyutunu ayarla */
    transition: color 0.3s; /* İkon rengi geçişi */
}
.icon i{
    color: #FFD43B; /* Başlangıçta sarı ikon rengi */
}
.icon-2 i{
    color: #bc9fe4; /* Başlangıçta sarı ikon rengi */
}

.icon-3 i{
    color: #fe7440; /* Başlangıçta sarı ikon rengi */
}

.icon:hover svg {
    fill: #FFD43B; /* Hover durumunda SVG sarı */
}
.icon-2:hover svg {
    fill: #bc9fe4 !important; /* Hover durumunda SVG sarı */
}
.icon-3:hover svg {
    fill: #fe7440; /* Hover durumunda SVG sarı */
}


.icon:hover i,
.icon-2:hover i ,
.icon-3:hover i  { 
    color: white; /* Hover durumunda ikon beyaz */
}

/* ! Fun Grid */
.fun{
    width: 80%;
    margin: auto;
    padding: 150px 0;
}

.fun .grid{
    border-radius: 50px 0;
}

.fun .grid h3{
    font-size: 2.25rem;
    font-weight: bold;
    color: #445283;
}

.fun .grid p{
    font-size: 0.875rem;
    color: #666;
    text-align: center;
}

.bg-snow{
    background-color:#fef9f7;
}

.bg-azure{
    background-color:#eefdfd;
}

.bg-ghost{
    background-color:#f8f4fd;
  }
.bg-floral{
    background-color:#fdf9ed;
}

@media (max-width: 992px) {
    .fun.grid {
        width: calc(50% - 15px);
        padding: 30px 15px;
        margin: 0 7.5px 30px;
    }
    .facts-grids  {
        margin-top: 10px;
    }
}

/* !CTA */
.cta{
    border: 1px solid #fdf0eb;
    background: #fdf0eb;
    padding: 70px;
}
.cta-text h2{
    padding: 10px 0;
    color: #283a5e;
    font-weight: 600;
}
.btn-orange-2{
    background-color:#fe6c35;
    padding: 10px 25px;
    font-size: 1.2rem;
    border-radius: 20px;
}
.btn-orange-2 a{

    color: #fff;
    text-decoration: none;
}
@media(max-width:991px){
    .cta{
        padding: 50px 20px;
        display: block;
        text-align: center;
    }
    .cta-text h2{
        padding: 0;
    }
    .cta-button{
        margin-top: 2rem;
    }
}
@media(max-width:576px){
    .section-cta{
        padding: 2rem;
        /* margin: auto; */
    }
  
}

/* ! Footer */
.footer {
    position: relative;
    background-image: url('/assets/images/footer-shape.png');
    background-position: right bottom; /* Resmin konumu sağ alt köşe */
    background-size: cover; /* Resmin boyutunu kapsayacak şekilde ayarla */
    background-repeat: no-repeat; /* Resmin tekrar etmemesini sağla */
    margin-top: 2rem;
    height: 300px;
    /* padding: 0 20rem; */
}

.footer .container .row{
    margin-top: 5rem;
}

.footer .container {
    margin-top: 10rem;
    position: relative; /* Konteynerin konumunu ayarla */
    
    z-index: 1; /* Yazıların arka planın üstünde görünmesi için */
}
.border{

    border-top: 5px solid red;
    margin-bottom: 1rem;
}

.footer .widget-title h3 {
    margin-bottom: 15px; /* Başlıklar arası boşluk */
}

.footer ul {
    list-style-type: none; /* Noktaları kaldır */
    padding: 0; /* İçerik dolgusunu kaldır */
}

.footer ul li {
    margin-bottom: 10px; /* Her bir liste öğesi arasına boşluk ekle */
    color: #666;
}

.footer ul li a {
    text-decoration: none;
    color: #666;
}

.footer ul li a:hover {
    text-decoration: underline; /* Üzerine gelince alt çizgi ekle */
}

.copyright a{
    text-decoration: none;
    color: #666;

}
@media(max-width:768px){
    .footer .row img{
        display: none;
        margin: auto;
    }
    .footer .container .row{
        margin-top: 2rem;
    }
}

@media(max-width:576px){
    .footer .container{
        margin-top: 2rem;
    }
  
    .footer .row img{
        display: block;
        justify-content: center;
    }
    .footer .row{
        margin: auto;
        text-align: center;
        align-items: center;
    }
    .footer .row .col-12{
        margin-top: 2rem;
    }
}
/* About */
.about .about-text ul li{
    list-style: none;
}
.about .about-text ul li {
    position: relative;
    padding-left: 20px;
  }
  
.about .about-text ul li:before {
    content: "";
    background-color: #fe6c35;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 6px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 50%;
}

/* ! Contact */
.contact .section-title h2{
    text-align: start;
}

.contact-details ul {
    list-style: none; /* Madde işaretlerini kaldır */
    padding: 0; /* İçerik boşluğunu kaldır */
}

.contact-details li {
    display: flex; /* Flexbox kullan */
    align-items: center; /* Dikey ortalama */
    margin-bottom: 15px; /* Her bir satır arasına boşluk ekle */
}
.contact-details p{
    margin-top: 1rem;
    color: #666;
}
.contact-icon {
    display: flex; /* Flexbox kullan */
    justify-content: center; /* Yatay ortalama */
    align-items: center; /* Dikey ortalama */
    width: 50px;
    height: 50px;
    border: 1px solid rgb(195, 189, 189);
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    margin-right: 10px; /* İkon ile yazı arasında boşluk ekle */
}

.contact-icon i {
    font-size: 20px;
    color: #fe6c35;
}

.contact-form input{
    background: #fef6f3;
    width: 100%;
    height: 45px;
    border: 1px solid transparent;
    color: #666;
    border-radius: 0;
    padding: 6px 18px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-form textarea{
    background: #fef6f3;
    width: 100%;
    height: 200px;
    border: 1px solid transparent;
    color: #666;
    border-radius: 0;
    padding: 6px 18px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-btn{
    background: #fe6c35;
    color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus{
 -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #fe6c35;
  outline: none; 
  background-color: #fff;
}

/* ! Services */
.service-single{
    /* width: 90%; */
    margin: auto;
}
.service-single .service-content h2,
.service-single .service-content h3{
    color: #283a5e;
    font-weight: 600;
}
.service-single .service-content p,
.service-single .service-content ul li{
   color: #666;
   line-height: 1.8em;
}
.service-single .service-content ul li{
    list-style: none;
}
.service-single .service-content > ul {
  margin: 1rem;
}
.service-single .service-content > ul li {
  padding-left: 30px;
  padding-bottom: 20px;
  position: relative;
}
.service-single .service-content ul li:before{
    content: "";
    background: #fe6c35;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 4px;
    transform: rotate(135deg);
    margin-top: 5px;
}
.service-sidebar .all-services {
    background-color: #fff9f7;
    padding: 40px 30px;
    position: relative;
    width: 300px;
    margin:auto
}
.service-sidebar .all-services ul {
    padding-left: 0;
    padding-top: 10px;
}
.service-sidebar .all-services ul li{
    list-style: none;
}

.service-sidebar .all-services ul li a{
    margin-top: 15px;
    padding-bottom: 15px;
    display: block;
    border-bottom: 1px solid #e1e1e1;
    color: #666;
    text-decoration: none;
}

.service-sidebar .all-services ul a:hover {
    color: #fe6c35;
}
.service-sidebar .widget h3 {
    position: relative; 
    color: #283a5e;
    font-weight: bold;
    
}

.service-sidebar .widget h3:after {
    content: "";
    background: url('../images/service-sidebar-widget-title-bg.png') center center / auto no-repeat;
    width: 100px; 
    height: 4px; 
    position: absolute; 
    left: 0; 
    bottom: -10px; 
}

.service-sidebar .contact-widget {
    padding: 60px 15px;
    text-align: center;
    position: relative;
    margin-top: 50px;
    margin: auto;
    
}

.service-sidebar .contact-widget:before {
    content: "";
    background: rgba(251, 225, 215, 0.9);
    width: 300px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    /* margin: auto; */
    /* margin-left: 2.9rem; */
    margin-top: 2rem;
}
.service-sidebar .contact-widget > div {
    position: relative;
    margin: auto;
  }
.service-sidebar .contact-widget h5 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fe6c35;
    margin-top:3rem;
}
.service-sidebar .contact-widget h4{
    margin-top:2rem;
}
.service-sidebar .all-services ul li.current a {
    color: #fe6c35;
  }
  
.service-sidebar .contact-widget h4 a {
    font-size: 1.5rem;
    font-weight: 500;
    color:#445283;
    text-decoration: none;
}
@media(min-width:1600px){
    .service-sidebar .contact-widget:before {
        margin-left: 3.6rem;
    }
}
@media(max-width:1600px){
    .service-sidebar .contact-widget:before {
        margin-left: 3.6rem;
    }
}
@media(max-width:1400px){
    .service-sidebar .contact-widget:before {
        margin-left: 2rem;
    }
}
@media(max-width:1200px){
    .service-sidebar .contact-widget:before {
        margin-left: -0.1rem;
    }
}

@media(max-width:991px){
    .service-single {
        width: 100%;
    }
 
    .p-100{
        padding: 50px 0;
    }

    .service-single .service-content > ul {
        margin: 0;
    }
    .service-sidebar .all-services{
        display: none;
    }
    .service-sidebar .contact-widget{
        display: none;
    }
    .service-section .row .grid {
        margin-top: 1rem;
    }
}