body{
  margin: 0px;
  font-family: 'Inter', sans-serif;
  cursor: none;
}
html, body {
  overflow-y: auto;
}

a, button, input, textarea, select {
  cursor: none !important;
}
/* Custom cursor */
#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #ff6b35;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.08s ease;
}
.topbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.2s ease;
}

.topbar.scrolled{
    background: #fffffff4;  
    box-shadow: 0 10px 20px rgba(99, 98, 98, 0.18);
   
}

.topbar-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;         /* only left-right */
  min-height: 72px;        /* equal top/bottom space */
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: space-between;
  box-sizing: border-box;
  border-bottom: 1px solid transparent;
  background: transparent;
  font-family: Arial, sans-serif;
}



.logo{
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img img{
    width: 120px;
    height: auto;
    display: block;
}

.nav-links{
    display: flex;
    align-items:  center;
    gap: 16px;

}

.nav-links a{
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 17px;
    border-radius: 10px;
    padding: 12px 18px;
    transition: background 0.2s ease, transform 0.2s ease;
    
}
.nav-links a:hover{
    background: #ffffff19;
    border-radius: 10px;   
}
.topbar.scrolled .nav-links a{
    color: #494b4c;

}

.nav-links .active{
    background: linear-gradient(#F7931E, #FF6B35);

}

.nav-links .active:hover{
    background: linear-gradient(#F7931E, #FF6B35) !important;

} 

.topbar.scrolled .nav-links .active {
  background: linear-gradient(#F7931E, #FF6B35);
  color: white !important;
}

.topbar.scrolled .nav-links .active :hover{
  background: linear-gradient(#F7931E, #FF6B35) !important;
}

.contact-link{
    padding: 12px 24px !important;
    background: linear-gradient(#F7931E, #FF6B35);
    color:  white !important;
    border-radius: 10px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-link:hover{
    transform: scale(1.06);
    background: linear-gradient(#F7931E, #FF6B35) !important;
    box-shadow: 0 10px 20px rgba(99, 98, 98, 0.18);
}
.main-img-sec{
    position: relative;
    overflow: hidden;
}

.main-img-sec::after{
    content:"";
    position: absolute;
    inset: 0;
    background: oklch(18.877% 0.10501 284.489);
    opacity: 0.7;

}
.main-img-sec img{
    width: 100%;
    object-fit: cover;
    display: block;
}

.main-img-sec-clouds{
    position: absolute;
    inset: -10%;
    pointer-events : none;
    z-index: 1;
    background: 
    radial-gradient(150px 150px at 10% 20%, #F7931E 60%, transparent 62%),
    radial-gradient(130px 130px at 25% 35%, #FF6B35 60%, transparent 62%),
    radial-gradient(110px 110px at 45% 25%, #F7931E 60%, transparent 62%),
    radial-gradient(150px 150px at 70% 30%, #FF6B35 60%, transparent 62%),
    radial-gradient(150px 150px at 85% 22%, #F7931E 60%, transparent 62%);
    filter: blur(18px);
    opacity: 0.5;
    animation: clouds-move 22s ease-in-out infinite alternate, clouds-pulse 7s ease-in-out infinite alternate;
}

@keyframes clouds-move{
    0%{transform: translateX(-5%);}
    100%{transform: translateX(15%);}
}

@keyframes cloud-pulse{
    0%, 100%{transform: scale(1);}
    50%     {transform: scale(1.08);}
}
.header-include { min-height: 520px; }


.main-text-inner {
  max-width: 1200px;
  position: absolute;
  margin: 0 auto;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 15%;
  color: #ffffff;
  text-align: left;
  transform: translateY(-65px);

}

#main-note{
    background: #ffffff25;
    padding: 6px 10px;
    margin-bottom: 0;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.443);
}

#main-title{
    transform: translateY(-10px);
    font-size: 70px;
}
.highlight {
  background: linear-gradient(90deg, #FF6B35, #f4c320);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#main-subtitle{
    width: 90%;
    color: #e5e5e6;
    font-size: 25px;
    transform: translateY(-40px);
    line-height: 1.6;
    text-align: justify;
}

.main-action{
    display: flex;
    gap: 16px;
    margin-top: 20px;
    transform: translateY(-40px);
}

.btn{
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 60px;
    color: white;
}

.btn.primary{
    background: linear-gradient(90deg,  #F7931E, #FF6B35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary:hover{
    transform: scale(1.06);
    box-shadow: 0 10px 20px #ff6b357f;

}


.btn.secondary{
    border: 1px solid #fff;
    background: transparent;
    transition: transform 0.2s ease, background 0.2s ease;
}
.btn.secondary:hover{
    background: rgba(193, 192, 192, 0.438);
}

.hamburger{
    display: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 28px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.hamburger span{
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.active span:nth-child(1){
    transform: translateY(12px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity: 0;
}

.hamburger.active span:nth-child(3){
    transform: translateY(-12px) rotate(-45deg);
}

.topbar.scrolled .hamburger span{
  background: rgb(55, 55, 55);
}

/* keep one source of truth for topbar height */
:root{
  --topbar-h: 72px;
}

.topbar{
  height: var(--topbar-h);
}

.mobile-drawer{
  position: fixed;
  left: 0;
  right: 0;
  top: var(--topbar-h);              /* starts exactly under topbar */
  max-height: calc(100dvh - var(--topbar-h));
  overflow: hidden;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid #eceff4;     /* clean separator, no visual gap */
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  padding: 0 14px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, padding .22s ease;
  z-index: 998;                      /* under topbar if topbar is 999+ */
}

.mobile-drawer.open{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  padding: 12px 14px 16px;
  overflow-y: auto;
}

.nav-links.mobile{
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.nav-links.mobile a{
  color: #424958;
  display: block;
  align-items: flex-start;
  width: 350px;
  font-size: clamp(17px, 4.8vw, 21px);
  line-height: 1.3;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-links.mobile a.active{
    color: white;
}
.nav-links.mobile .contact-link{ 
    align-items: flex-start;
    text-align: center;
    width: 325px;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #140f2d 0%, #170a59 100%);
  color: #e9e6ff;
  padding: 32px 6vw 16px;

   display: flow-root;
}

.footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-inner .top-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.footer-subtitle {
  margin: 10px 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #8c92ad;
}

.social-media-links {
  display: flex;
   gap: 6px;
  
}

.social-media-links a{
    color: #f2f2f2;
    background: transparent;
    font-size: 23px;
    padding: 10px 10px;
    border-radius: 12px;
    transition: background 0.4s ease, transform 0.4s ease;

}

.social-media-links a:hover{
    background: linear-gradient(#F7931E, #FF6B35);
    transform: scale(1.08);
}

.fast-connect-title {
  margin-bottom: 10px;
  font-size: 15px;
  letter-spacing: 0.4px;
  margin-left: 35px;
  color: #ffffff;
}

.fast-connect-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fast-connect-links li {
  margin: 8px 0;
}

.fast-connect-links a {
  color: #8c92ad;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.fast-connect-links a:hover {
  color: #F7931E;
}

.footer-contact-email,
.footer-contact-phone,
.footer-contact-location {
  margin-bottom: 12px;
}

.footer-email,
.footer-phone,
.footer-location {
  margin: 0;
  font-size: 14px;
  color: #8c92ad;
  transition: color 0.2s ease;
}

.footer-email:hover,
.footer-phone:hover,
.footer-location:hover{
  color: #ffffff;
}

.footer-email i,
.footer-phone i,
.footer-location i{
  color: #F7931E;
}

.email-subtitle,
.phone-subtitle {
  margin: 4px 0 0;
  font-size: 12px;
  color: #8c92adbf;
}

.seperete-top-from-bottom {
  border: 0;
  height: 1px;
  margin: 18px 0 12px;
  background: rgba(255,255,255,0.12);
}

.bottom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #8c92ad;
}

.rifht-bottom-footer a {
  margin-left: 14px;
  color: #8c92ad;
  text-decoration: none;
}

.rifht-bottom-footer a:hover {
  color: #ffffff;
}

/* Index.php */

.statistic-div{
    background: rgb(253, 251, 248);
   

}

.statistic-div-inner{
     max-width: 1300px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     text-align: center;
     justify-content: space-between;
     padding: 50px 150px;  
     font-size: 25px; 
}
.static-item{
     line-height: 0.05;
     
}
.static-item i{
 background:  linear-gradient(#F7931E, #FF6B35);
 padding: 18px;
 display: inline-block;
 color: white;
 border-radius: 12px;
 transition: transform 0.2s ease;
}
.static-item i:hover{
    transform: scale(1.08);
}
.count-static{
    font-size: 42px;
}
.static-subtitle{
    font-size: 15px;
    color: #6c6d6d;
}

.statistic-div.mobile{
    display: none;
}

/* Tüm Hizmetleri Gör */

.services-drive{
    background: rgb(247, 247, 247);
    padding: 90px 0;
    overflow: hidden;
}

.services-drive-inner{
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px ;
}

#service-note{
    display: inline-block;
    color: #ff8935;
    background: #ffa1352e;
    padding: 6px 14px;
    border-radius: 18px;
    letter-spacing: 0.4px;
}

.service-title{
    font-size: 55px;
    padding-top: 0;
    margin-top: 30;
    margin-bottom: 30;
}

.service-subtitle{
    padding-top: 0;
    margin: 0 140px;
    font-size: 25px;
    color: #494b4c;
}

.serviceler-box{
    display: flex;
    justify-content: space-between;
    text-align: left;
    align-items: center;
    gap: 20px;
    padding: 50px 40px;
    margin-bottom: 50px;

}

.service-box{
    background: white;
    border-radius: 14px;
    padding-bottom: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
    overflow: hidden;
      
}
.service-box:hover{
    transform: translateY(-6px);
}

.service-box img{
     width: 100%;
     border-radius:  14px 14px 0 0;
     margin-left: 0;
     margin-right: 0;
    transition: transform 0.4s ease;
    transform: scale(1);
}

.service-box:hover img{
    transform: translateY(-6px) scale(1.04);
    transform: scale(1.05);
}

.service-box p, a{
    padding: 0 34px;
}

.box-title{
    font-size: 24px;

}

.box-subtitle{
   color: #494b4c;
   font-size: 18px;
}

.service-box a{
    text-decoration: none;
    color: #ff8935;
    width: 33px;
    transition: color 0.2s ease;
}

.service-box a:hover{
    color: #170a59;
    
}

.serviceler-div a{
    display: inline-block;
    text-decoration: none;
    margin: 0 450px;
    background: #170a59;
    color: white;
    border-radius: 12px;
    padding: 18px 36px;
    transition:transform 0.4s ease;
}
.serviceler-div a:hover{
    transform: scale(1.08);
}

/* Contact for free Advice */
.ucretsize-danis {
  background: linear-gradient(#0e0639, #180a5d);
  display: flow-root; /* stops margin collapse */
  padding-top: 0;
}

.ucretsize-danis-inner{
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    
}

.danismanlik-title{
    color: white;
    font-size: 55px;
    text-align: center;
    padding: 0px 140px;
    margin-bottom: 10;
}

.danismanlik-subtitle{
    font-size: 20px;
    text-align: center;
    padding: 0px 140px;
    color: #8c92ad;
    margin-top: 0px;
    line-height: 30px;
}

.danismanlik-link-part{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 100px;
  gap: 16px;
  transform: translateY(-40px);
}

.small-balls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.small-balls span{
  position: absolute;
  width: 340px;
  height:340px;
  border-radius: 50%;
  background: radial-gradient(circle, #793218 0%, #6c2d17 60%, transparent 70%);
  filter: blur(46px);
  opacity: 0.2;
}

.small-balls span:nth-child(1){ left: 160px; top: 40px; }
.small-balls span:nth-child(2){ right: 160px; bottom: 20px; }




/* MEDIA SIZE CSS */

@media(max-width:768px){
    @media(max-width:768px){
    .nav-links.desktop{
        display: none;
    }
    .hamburger{
        display: flex;
    }
    
    .main-img-sec img{
        height: 80%;
    }
    .main-text-inner{
        margin-top: 100px;
        display: flex;
        align-items: center;
        text-align: center;
        padding: 0px 0px;
        transform: translateY(20px);
    }
    #main-title{
        font-size: 35px;
        line-height: 1.2;
    }
    #main-subtitle{
        font-size: 18px;
        text-align: justify;
        line-height: 1.2;
    }
    .main-action{
        flex-direction: column;
        align-items: flex-starts;
    }
    .btn{
        padding: 15px 24px;
        font-size: 24px;
        width: 300px;
        height: auto;
        text-align: center;
        align-items: center;
    }

    /*-- Statistics --*/
    .statistic-div.desktop{
     display: none;
    
     }
     .statistic-div.mobile{
        display: flex;
         height: 500px;
     }
     .statistic-div-inner.mobile{
        align-items: center;
        justify-content: space-between;
        padding: 40px 40px;
        gap: 70px;
     }

     .side.mobile{
        display: block;
        justify-content: space-between;
        align-items: center;
       
     }

     .side.mobile .static-item{
        padding: 30px 0;
     }
    .static-subtitle.mobile{
        line-height: 16px;
     }

    /* Tüm Hizmetleri Gör */

    .service-subtitle{
      width: 100%;
      text-align: center;
      margin: 8px; 
    }

    .serviceler-box{
    display: inline-block;
    }

    .service-box{
    margin-bottom: 30px;   
    }

    
.serviceler-div a{
    
    text-align: center;
    margin: 0px 8px; 
  }

   .danismanlik-link-part{
    flex-direction: column;
        align-items: flex-starts;
  }

    /* ---- Footer ----*/

    .footer .top-footer {
    grid-template-columns: 1fr;
    text-align: left;
    justify-items: left;
  }

  .social-media-links {
    justify-content: left;
    
  }

  .bottom-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .rifht-bottom-footer a {
    margin: 0 8px;
  }

  .danismanlik-title{
    font-size: 30px;
    padding: 20px 50px;
   
}

.danismanlik-subtitle{
    padding: 0px 40px;
}


  
 
}
