*{
    text-decoration: none;
}

.header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto; 
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: block;
}

.right-icons {
    display: flex;
    align-items: center;
}

.subscribe-button {
    background-color: black;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-button:hover {
    background-color: #333;
}

.logo  {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
    cursor: pointer;
}

.logo a{
    color: black;
    font-size: clamp(1rem, 4vw, 2rem);
}


.nav-links {
    display: flex;
    justify-content: center;
    gap: 150px;
    border-top: 1px solid #ddd;
    padding: 10px 0;
    
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.3s ease;
}


.nav-links a:hover {
    transform: translateY(-5px); 
}


.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.side-menu.active {
    transform: translateX(0);
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-bottom: 20px;
}

.menu-links a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: black;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}

.menu-footer {
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .side-menu {
        width: 100%; 
    }
}

@media (min-width: 1025px) {
    .side-menu {
        width: 300px; 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .top-bar .menu-icon {
        display: block;
    }

    .subscribe-button{
        width: 120px;
    }
}


.services-section {
    text-align: center;
    padding: 50px;
    color: #fff;
    max-width: 1400px;
    margin: 0 auto;

}

.services-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: bolder;


}

.services-section p {
    font-size: 16px;
    margin-bottom: 30px;
    color: black;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: #fff; 
    color: #000; 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 2px 4px 4px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    height: auto;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 14px;
}

.service-card.highlight {
    background-color: #000000dc; 
    color: #fff; 
    border: 2px solid #2e2e2edc; 
    box-shadow: none;
}

.service-card.highlight h3 {
    color: white;
}
.service-card.highlight p {
    color: white;
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.view-more-btn {
    background-color:black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 30px;
    transition: background-color 0.3s;
    background-color: #000000dc; 

}

.view-more-btn:hover {
    transform: scale(1.1);
}


/* services */

.projects-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.projects-header {
    text-align: left;
    margin-bottom: 2rem;
}

.projects-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.projects-header p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

.project {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    transition: opacity 0.2s linear, transform 0.2s linear;
}

.project-number {
    font-size: 2.5rem;
    color: #999;
    font-weight: bold;
    margin-right: 1rem;
}

.project-content {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.project-content img {
    width: 40%;
    max-width: 500px;
    border-radius: 5px;
    margin-right: 1.5rem;
}

.project-info {
    flex: 1;
}

.project-info h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: #666;
    margin-bottom: 1rem;
}

.project-info a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    border-bottom: 1px solid #333;
    padding-bottom: 0.2rem;
    transition: color 0.3s, border-color 0.3s;
}

.project-info a:hover {
    color: #666;
    border-color: #666;
}

@media (max-width: 768px) {
    .project-content {
        flex-direction: column;
    }

    .project-content img {
        width: 100%;
        margin-bottom: 1rem;
    }

    .project-number {
        font-size: 2rem;
    }
}


.service-top-content p{
    padding-top: 20px;
}

/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
  }
  
  .slider-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
  }
  
  .content-wrapper {
    position: relative;
    width: 100%;
  }
  
  /* Slider styles */
  .slider {
    width: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    border-radius: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    height: 70vh;
  }
  
  .slider::-webkit-scrollbar {
    display: none;
  }
  
  .slider img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  /* Text overlay styles */
  .slider-texts {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    width: 50%;
    padding: 2rem;
    color: white;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.168) 0%, rgba(0, 0, 0, 0.248) 70%, rgba(34, 33, 33, 0) 100%);
    pointer-events: none;
  }
  
  .slider-texts h1 {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: white;
  }
  
  .slider-texts p {
    font-size: clamp(0.875rem, 2vw, 1.1rem);
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
  }
  
  /* Navigation dots */
  .slider-nav {
    display: flex;
    gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  
  .slider-nav a {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    transition: opacity ease 250ms;
  }
  
  .slider-nav a:hover,
  .slider-nav a.active {
    opacity: 1;
  }
  
  /* Mobile responsive */
  @media (max-width: 768px) {
    .slider-texts {
      width: 50%;
      padding: 1.5rem;
      background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0) 100%);
    }
    
    .slider-texts h1 {
      font-size: clamp(0.8rem, 3vw, 2rem);
    }
    
    .slider-texts p {
      font-size: clamp(0.5rem, 1.5vw, 0.9rem);
    }
  }


  @media (max-width: 480px) {
    .slider-texts{
        width: 100%;
    }

  }

  @media(max-width: 360px){
    .subscribe-button{
        width: 80px;
        height: 55px;
    }
    .right-icons button {
        
    }
  }







  .footerContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    background-color: black;
}
.logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-text {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}
.headline {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}
.input-container {
    display: flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 25px;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    margin-bottom: 30px;
}
.input-container input {
    border: none;
    outline: none;
    padding: 10px 20px;
    flex: 1;
    font-size: 16px;
}
.input-container button {
    background-color: rgb(209, 26, 26);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0 25px 25px 0;
}
.input-container button:hover {
    background-color: rgb(70, 70, 70);
}
.footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 20px;
    color: rgb(255, 255, 255);
    margin-top: 20px;
    font-weight: 700;
}
.footer a {
    text-decoration: none;
    color: #ffffff;
}
.footer a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.footertext{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    text-decoration: none;
    margin-top: 80px;

    
}

.footertext a:visited{
   color: white;
    
}

@media (max-width: 768px) {
    .headline {
      font-size: 16px;
    }
  
    .input-container {
      flex-direction: row;
      align-items: stretch;
      max-width: 100%;
    }
  
  
    .footer {
      flex-wrap: wrap;
      font-size: 16px;
    }
  
    .logo-text {
      font-size: 28px;
    }
  
    .footertext {
      flex-direction: column;
      margin-top: 40px;
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .headline {
      font-size: 14px;
    }
  
    .input-container {
      margin-bottom: 20px;
    }
  
    .logo-text {
      font-size: 24px;
    }
  
    .footer a {
      font-size: 14px;
    }
  }
  



@media (max-width: 768px) {
    .slider {
        width: 100%; 
        overflow: hidden;
        height: 40vh;
    }
}

.brand-logo-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    height: 150px; 
    overflow: hidden;
  }
  
  .brand-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }

  .brand-logo {
    height: 50px;
    width: auto; 
  }

.section-padding{
    padding: 100px 0 120px 0;
}
 
/* -------------*/

.brand-logo-tracker {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .brand-logo-wrapper {
    display: flex;
    gap: 2rem; 
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo-text-pair {
    display: flex;
    align-items: center;
    gap: 0.5rem; 
  }
  
  .brand-logo {
    width: 50px;
    height: auto;
  }
  
  .logo-text {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
  }
  
  /* Responsive için */
  @media (max-width: 768px) {
    .brand-logo-wrapper {
      gap: 1rem;
    }
    
    .brand-logo {
      width: 30px;
    }
    
    .logo-text {
      font-size: 0.875rem;
    }
  }




  .brand-logo-tracker {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  
  .brand-logo-wrapper {
    display: flex;
    gap: 4rem;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
  }
  
  .logo-text-pair {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }
  
  .brand-logo {
    width: 60px;
    height: auto;
  }
  
  .logo-text {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    white-space: nowrap;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
 
  .brand-logo-tracker:hover .brand-logo-wrapper {
    animation-play-state: paused;
  }

  .padding-section-services{
    padding-top: rem
  }


  .services-main-image{
    width: 40%;
  }

  .service-top-content img{
    padding-top: 30px;
  }

  .logo-text-footer{
    color: white;
    font-size: 18px;
  }


  .whyChooseUsText{
    margin-top: 30px;
    font-size: 18px;
    font-weight: bolder;
    color: black;
  }

  .about-section-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-title {
    font-size: 40px;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 8px;
}

.about-text {
    max-width: 600px;
    text-align: left;
}

.about-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-button {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #000;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.about-button:hover {
    background-color: #505050;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-text {
        max-width: 100%;
        margin-top: 20px;
    }

    .about-title {
        font-size: 30px;
    }

    .about-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 30px;
    }

    .about-subtitle {
        font-size: 18px;
    }

    .about-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}











#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-out;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.typing-indicator {
  width: 60px;
  height: 30px;
  position: relative;
}

.typing-circle {
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 50%;
  background-color: #000;
  left: 15%;
  transform-origin: 50%;
  animation: typing-circle7124 0.5s alternate infinite ease;
  will-change: transform;
}

@keyframes typing-circle7124 {
  0% {
      top: 20px;
      height: 5px;
      border-radius: 50px 50px 25px 25px;
      transform: scaleX(1.7);
  }
  40% {
      height: 8px;
      border-radius: 50%;
      transform: scaleX(1);
  }
  100% {
      top: 0%;
  }
}

.typing-circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}

.typing-circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.typing-shadow {
  width: 5px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 30px;
  transform-origin: 50%;
  z-index: 3;
  left: 15%;
  filter: blur(1px);
  animation: typing-shadow046 0.5s alternate infinite ease;
  will-change: transform;
}

@keyframes typing-shadow046 {
  0% {
      transform: scaleX(1.5);
  }
  40% {
      transform: scaleX(1);
      opacity: 0.7;
  }
  100% {
      transform: scaleX(0.2);
      opacity: 0.4;
  }
}

.typing-shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}

.typing-shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

/* animasyon */

@keyframes appear {
  from{
    opacity: 0;
    scale: 0.5;
  }
  to{
    opacity: 1;
    scale: 1;
  }
}

#block{
  animation: appear 0.3s linear;
  animation-timeline: view();
  animation-range: entry 0;
}