/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }
  a {
    text-decoration: none;
  }

 
  .site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0.9rem 5%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(50px);
	display: flex;
	justify-content: space-around;
	gap: 20px;
	align-items: center;
	z-index: 9999;
  }

  
  .logo img{

		width: 100%;
  }
   .navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar a {
	font-size: 1.09rem;
	color: #bbb;
	font-weight: 500;
	margin-left: 2.5rem;
	transition: all 0.3 ease;
  }
  
  .navbar a:nth-child(3){
    color: #fff;
  }
  .navbar a:active{
	color: #fff;
  }
  .navbar a:hover{
	color: #fff;
  }
  .icons {
	font-size: 2rem;
	color: #fff;
	cursor: pointer;
	display: none;
	z-index: 99999; 
	position: relative; 
  }

  .icons i {
	display: none;
 
  font-size: 24px;
  
  }

  .menu-btn.active .fa-bars {
	display: none;
  }

  .menu-btn.active .fa-xmark {
	display: inline-block;
  }

  .menu-btn .fa-bars {
	display: inline-block;
  }

  .menu-btn .fa-xmark {
	display: none;
  }

 
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  
  .header {
    
    margin-top: 0px;
    background: linear-gradient(to bottom, #1e293b, #2B3990);
    padding: 100px 0;
    text-align: center;
    height: 500px;
    color: white;
    position: relative;
      display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  .header h1 {
    position: absolute;
   bottom: 150px;
    transform: translate(-50%, -50%);
    left: 50%;
    font-size: 48px;
    margin-bottom: 10px;
  }
  
  .header p {
     position: absolute;
    display: block;
     bottom: 120px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
      width: 80%;
  }
  
  
  .about-section {
    padding: 60px 0;
    background-color: #fff;
  }
  
  .about-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #2B3990;
  }
  
  .about-text p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .about-image {
    flex: 1;
  }
  .about-image .logo img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid #2B3990;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  footer {
    background-color: #1e293b;
    color: white;
    padding: 40px 20px;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-section {
    margin-bottom: 20px;
    min-width: 200px;
  }

  .footer-section h3 , .footer-product h3{
    margin-bottom: 15px;
    font-size: 18px;
  }

  .footer-section a ,  .footer-product a{
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
  }

  .footer-section a:hover ,.footer-product a:hover{
    color: #38bdf8;
  }

  .social-icons a {
    margin-right: 15px;
    font-size: 20px;
    color: #cbd5e1;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #facc15;
  }

  .footer-bottom {
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
    margin-top: 30px;
  }

  
  @media (min-width: 768px) {
    .contact-cards {
      grid-template-columns: repeat(2, 1fr);
    }
    .about-content {
      flex-direction: row;
    }
  }
  



  @media screen and (max-width: 992px) {
    .contact-cards {
      grid-template-columns: repeat(4, 1fr);
    }
	
	.media-icons{
		top: 120px;
	}



	.site-header{

   padding: 0.6rem 1rem ;
    align-items: center;
    justify-content: center;
	}
  .site-header img{
    width: 70%;
  }

  .icons i {
  font-size: 24px;
  left: -40px;
  top: -10px;
  }


	.icons {
	  display: block;
	}
	.navbar {
	  display: none;
	}
	.navbar.active {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: 17.7rem;
		background-color: rgba(0, 0, 0, 0.9);
		backdrop-filter: blur(50px);
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
	}
  .footer-section a ,  .footer-product a{
    font-size:14px;
    }

     .header{
       height: 450px;
      }

      .header h1 {
    bottom: 160px;
    left: 50%;
    font-size:30px;
    margin-bottom: 15px;
  }
  
  .header p {
    bottom: 135px;
    left: 50%;
    font-size: 18px;
  }
	
  }

  @media (max-width: 576px){
    .footer-section a ,  .footer-product a{
      font-size: 12px;
      }
     

       .header{
       height: 400px;
      }

      .header h1 {
    bottom: 140px;
    font-size: 28px;
  }
  
  .header p {
  display: block;
    bottom: 130px;
    font-size: 13px;
  
  }
     
  .icons i {
  font-size: 20px;
 
  }
  }