* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: 'Albert Sans', sans-serif;
    background-color: #000;
    background-image:
      radial-gradient(
        circle at 20% 30%,  
        rgba(),
        transparent 40%
      ),
      radial-gradient(
        circle at 80% 50%,   
      rgba(),   
        transparent 40%
      );
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  
  .hero,
  .features,
  .pricing,
  .contact,
  .site-footer {
    background: transparent !important;
  }
  
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    align-items: center;      
    justify-content: space-between;
}

.logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;    
    margin: 0 auto;
    padding-top: 8px;     
}

.main-nav li a {
    font-size: 1.2em;
    padding: 8px 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav li a:hover {
    color: #007bff;
}

.btn.dash-btn {
    background: linear-gradient(135deg, #007bff, #8a5dff);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    top: 4px;
}

.btn.dash-btn::after {
    content: "";
    position: absolute;
    inset: 0;             
    background: #000;    
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.btn.dash-btn:hover {
  filter: brightness(0.8);
  transform: none;
}

.btn.dash-btn:hover::after {
    opacity: 0.3;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
}

.hero {
    height: 95vh;
    background: url('images/hero-bg.html') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    background: 
    linear-gradient(135deg, #0a0f24 0%, #000 50%, #0a0f24 100%), 
    url('images/hero-bg.html') no-repeat center / cover;
    background-blend-mode: overlay; 
    justify-content: center;
    text-align: center;
}

.hero-subtext {
    color: #A1A3FF;
  font-size: 1.1em;   
  line-height: 1.4;
  margin-bottom: 30px; 
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0.01%, rgba(0, 123, 255, 0.2), transparent 72.8%);
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}


.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: url('images/wave.html') no-repeat bottom center;
    background-size: cover;
    z-index: 1;
}

.stats-section {
  background: #000; 
  color: #fff;      
  padding: 40px 0;   
}

.stats-container {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Her bir kutu */
.stats-box {
  flex: 1 1 auto;
}

.stats-box h3 {
  font-size: 2rem; 
  margin-bottom: 8px;
  font-weight: 700;  
}

.stats-box p {
  margin: 0;
  font-size: 1rem;   
}


.hero-content {
    position: relative;
    z-index: 1;
    transition: opacity 0.5s ease-in;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.2;
    max-width: 1300px;  
    margin: 0 auto;      
    text-align: center; 
    margin-top: -90px;
    margin-bottom: 20px;  
    color: #ffffff;
    text-shadow: 
      0 1px 2px rgba(0,0,0,0.5),  
      0 2px 4px rgba(0,0,0,0.3); 
  }
  

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;       
    align-items: center;        
    justify-content: center;   
    position: relative;
    overflow: hidden;        
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: 1px;
    padding: 14px 40px;
    color: #fff;
    
    background: linear-gradient(135deg, #444cf7, #007bff);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease; 
  }

  .btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    border-radius: inherit;  
    opacity: 0;
    transition: opacity 0.3s ease;
  }

.btn:hover::after {
    opacity: 0.3;
}
.btn:hover {
    transform: scale(1.03);  
  }

.btn.primary {
    background: linear-gradient(135deg, #444cf7, #007bff);
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn.primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.btn.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) scale(1.03);
}

.achievements {
  padding: 80px 0;
  background: #000;
}

.achievements-subtext {
  text-align: center;
  color: #A1A3FF;
  font-size: 1.3em;
  line-height: 1.4;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.achievements h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(3rem, 8vw, 5rem);
  transition: transform 0.3s;
}

.achievements .feature-grid {
  position: relative;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}

.achievements .feature-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 300px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 123, 255, 0.2) 0%,
    transparent 70%
  );
}

.achievements .feature-card {
  position: relative;
  z-index: 1;
  width: 300px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.achievements .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.achievements .feature-card.altstyle {
  border-radius: 15px;
  width: 370px;
  padding: 40px;
  height: 300px;
  overflow-y: auto;
  text-align: left;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
}

.achievements .feature-card.altstyle .feature-icon-container {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.achievements .feature-card.altstyle .feature-icon {
  width: 28px;
  height: 28px;
  filter: invert(46%) sepia(100%) saturate(5000%) hue-rotate(193deg) brightness(80%) contrast(98%);
  transition: filter 0.3s;
}

.achievements .feature-card.altstyle img[src$=".png"] {
  filter: invert(46%) sepia(100%) saturate(5000%) hue-rotate(193deg) brightness(80%) contrast(98%);
  transition: filter 0.3s;
}

.achievements .feature-card.altstyle h3 {
  margin: 0 0 10px;
  font-size: 1.7em;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 600;
}

.achievements .feature-card.altstyle p {
  margin: 0;
  font-size: 1.1em;
  color: #A1A3FF;
  line-height: 1.5;
}

.achievements .feature-card.altstyle:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 98, 204, 0.2);
}

.features {
  padding: 80px 0;
  background: #111;
}

.features-subtext {
  text-align: center;
  color: #A1A3FF;
  font-size: 1.3em;
  line-height: 1.4;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.features h2 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(3rem, 8vw, 5rem);
  transition: transform 0.3s;
}

.feature-grid {
position: relative;
display: flex;
gap: 30px;
flex-wrap: wrap;
justify-content: center;
z-index: 1;
}

.feature-grid::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 1200px;
height: 985px;
transform: translate(-50%, -50%);
pointer-events: none;
z-index: 0;
background: radial-gradient(
  ellipse at center,
  rgba(0, 123, 255, 0.2) 0%,
  transparent 70%
);
}

.feature-card {
  position: relative;
  z-index: 1;
  width: 300px; 
  padding: 20px;
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}
.feature-card.altstyle {
  border-radius: 15px;
  width: 370px;
  padding: 40px;
  height: 300px;
  overflow-y: auto;
  text-align: left;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card.altstyle .feature-icon-container {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.feature-card.altstyle .feature-icon {
  width: 28px;
  height: 28px;
  filter: invert(46%) sepia(100%) saturate(5000%) hue-rotate(193deg) brightness(80%) contrast(98%);
  transition: filter 0.3s;
}

.feature-card.altstyle img[src$=".png"] {
  filter: invert(46%) sepia(100%) saturate(5000%) hue-rotate(193deg) brightness(80%) contrast(98%);
  transition: filter 0.3s;
}
.feature-card.altstyle h3 {
  margin: 0 0 10px;
  font-size: 1.7em;
  margin-bottom: 12px;
  color: #fff;   
  font-weight: 600;
}

.feature-card.altstyle p {
  margin: 0;
  font-size: 1.1em;
  color: #A1A3FF;
  line-height: 1.5;
}

.feature-card.altstyle:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 98, 204, 0.2);
}

.feature-card img {
  max-width: 100%;
  margin-bottom: 15px;
}

.pricing {
    padding: 80px 0;
    background: #000;
    text-align: center;
}

@keyframes slideUp {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
.feature-card,
.pricing-card {
  opacity: 0;
  transform: translateY(100px);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

  .feature-card.animate,
  .pricing-card.animate {
    animation: slideUp 1s ease-out forwards;
  }
  
  .feature-grid .feature-card:nth-child(1).animate { animation-delay: 0.1s; }
  .feature-grid .feature-card:nth-child(2).animate { animation-delay: 0.2s; }
  .feature-grid .feature-card:nth-child(3).animate { animation-delay: 0.3s; }
  
  .footer-brand::before,
  .footer-services::before,
  .footer-legal::before {
    content: "";
    position: absolute;
    inset: 0;               
    border-radius: inherit;
    z-index: -1;           
    pointer-events: none;  
    box-shadow: 0 0 20px 5px rgba(0, 123, 255, 0.2);
  }
  
.pricing h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.pricing-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    background: #222;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.pricing-card .price {
    font-size: 2em;
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.pricing-card ul li {
    padding: 5px 0;
}

.contact {
    padding: 80px 0;
    background: #111;
    text-align: center;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.contact-form button {
    padding: 12px;
    border: none;
    border-radius: 30px;
    background: #007bff;
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.contact-form button:hover {
    transform: scale(1.05);
}
.site-footer {
  background: #000;
  padding: 40px 0;

}

.footer-top {
  display: flex;
  align-items: flex-start;  
  gap: 60px;                
}

.footer-brand {
  flex: 0 0 auto;
  width: 520px;   
  height: 250px; 
  background: #000;
  border: 1px solid #007bff;
  border-radius: 15px;
  padding: 20px;
  text-align: left;
}
.footer-services {
  flex: 0 0 auto;
  width: 250px;   
  min-height: 240px; 
  background: #000;
  border: 1px solid #007bff;
  border-radius: 15px;
  padding: 18px;
  text-align: left;
}


.footer-legal {
  flex: 0 0 auto;
  width: 250px;   
  min-height: 240px;
  background: #000;
  border: 1px solid #007bff;
  border-radius: 15px;
  padding: 18px;
  text-align: left;
}


.footer-logo {
  font-size: 1.8em;
  font-weight: bold;
  text-decoration: none;
  color: #fff;

  margin-bottom: 10px;
}
.footer-brand .footer-logo {
  display: block;      
  margin-bottom: 15px; 
}

.footer-brand p {
  margin-bottom: 15px;  
  line-height: 1.6;    
}
.footer-services ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-services ul li {
  margin-bottom: 8px;
}

.footer-services ul li a {
  display: inline-block;  
  font-size: 1.1em;         
  font-weight: 450;       
  color: #A1A3FF;         
  text-decoration: none;  
  padding: 4px 8px;      
  transition: color 0.3s;
}

.aligned-services,
.aligned-legal {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aligned-services li,
.aligned-legal li {
  margin-bottom: 8px;
}

.aligned-services li a,
.aligned-legal li a {
  display: inline-block;
  font-size: 1.1em;
  font-weight: 450;
  color: #A1A3FF;
  text-decoration: none;
  padding: 4px 8px;
  transition: color 0.3s;
}

.aligned-services li a:hover,
.aligned-legal li a:hover {
  color: #fff;
}

.footer-brand p,
.footer-services ul li a,
.footer-legal ul li a {
  color: #A1A3FF;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-brand p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.footer-brand p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-services h3,
.footer-legal h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
  
  color: #fff;
}

.footer-services ul li a:hover,
.footer-legal ul li a:hover {
  color: #fff;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.feature-card,
.pricing-card,
.footer-brand,
.footer-services,
.footer-legal {
  opacity: 0;
  transform: translateY(100px);
}

.feature-card.animate,
.pricing-card.animate,
.footer-brand.animate,
.footer-services.animate,
.footer-legal.animate {
  animation: slideUp 1.3s ease-out forwards;
}



.contact-info {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.contact-info li {
  margin-bottom: 10px;
  padding-left: 0;
}

.contact-info li::before {
  content: "• ";
  color: #fff;
  display: inline;
}

.contact-info li a {
  color: #007bff; 
}
.contact-info li a:hover {
  color: #fff;
}

.mail-text {
color: #007bff;
transition: color 0.3s;
font-size: 1rem;
}

.contact-info li:hover .mail-text {
color: #fff;
}

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

.social-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.social-links li a {
    display: inline-block;
    transition: transform 0.3s;
}

.social-links li a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 18px;
    height: 18px;
    filter: invert(46%) sepia(100%) saturate(5000%) hue-rotate(193deg) brightness(80%) contrast(98%);
    transition: transform 0.3s;
  }
  
  .social-links .youtube-icon {
    filter: none; 
  }
  
  /* Hover Efekti (Genel) */
  .social-links li a:hover img {
    transform: scale(1.1);
  }


.black-gap {
  background: #000;
  height: 150px;  
}


.become-label {
  position: relative;
  padding: 80px 0;
  background: #000; /* Siyah arka plan */
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100px);
}

.become-label.animate {
  animation: slideUp 1.3s ease-out forwards;
}

.become-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: 985px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 123, 255, 0.2) 0%,
    transparent 70%
  );
}

.become-label h2,
.become-label p,
.become-label a {
  position: relative;
  z-index: 1;
}


.become-label h2 {
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  margin-bottom: 30px;
  color: #fff;
}



.become-label p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A1A3FF;
  line-height: 1.4;

}

.btn.apply-now {
  background: linear-gradient(135deg, #000000, #1E90FF);
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1em;
  letter-spacing: 0.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: filter 0.3s ease, transform 0.3s ease;
  transform: none;
  margin-left: 10px;
}

.btn.apply-now:hover {
  filter: brightness(0.8);
  transform: none;
}

.btn.apply-now.release {
  background: #081533;   
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: filter 0.3s ease, transform 0.3s ease;
  transform: none;
  margin-left: 10px;
  padding: 14px 36px;
  color: #fff;
  font-size: 1em; 
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn.apply-now.release .btn-label {
  font-size: 2.1em; 
}

.btn.apply-now.release:hover {
  filter: brightness(0.8);
  transform: none;
}

.btn-fixed {
  width: 150px;   
  height: 50px;      
  background: linear-gradient(135deg, #007bff, #8a5dff);  
  color: #fff;
  display: inline-flex;
  align-items: center;  
  justify-content: center;
  border-radius: 25px;  
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease;
  transform: none !important;
  white-space: nowrap;
}

.btn-fixed .btn-label {
  font-size: 1.2em;  
  font-weight: 600;
  line-height: 1;
}

.btn-fixed:hover {
  filter: brightness(0.7);
  transform: none !important;
}



.release-apply {
  width: 150px;      
  height: 50px;     
  background: #081533;
  color: #fff;
  display: inline-flex;
  align-items: center;  
  justify-content: center;
  border-radius: 25px;  
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.3s ease;
  transform: none !important;
  white-space: nowrap;

}

.release-apply {
  font-size: 1.2em;  
  font-weight: 500;
  line-height: 1;  
}


.release-apply:hover {
  filter: brightness(0.8);
  transform: none;
}

.hero-content a + a {
  margin-left: 15px;
}

.site-header {

  height: 75px; 
  overflow: visible; 
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  position: relative;
}

.logo img {

  top: 100%;   
  transform: translateY(2%);
  height: 85px;       
  width: auto;
}

.footer-logo-img {
  max-height: 50px; 
  width: auto;      
  display: block;   
}

.footer-mailbox {
  flex: 0 0 auto;
  width: 250px;
  min-height: 240px;
  background: #000;
  border: 1px solid #007bff;
  border-radius: 15px;
  padding: 18px;
  text-align: left;
}

.footer-mailbox h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
  color: #fff;
}

.aligned-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.aligned-contact li {
  margin-bottom: 8px;
}

.aligned-contact li a {
  display: inline-block;
  font-size: 1.1em;
  font-weight: 450;
  color: #A1A3FF;
  text-decoration: none;
  padding: 4px 8px;
  transition: color 0.3s;
}

.aligned-contact li a:hover {
  color: #fff;
}

.aligned-contact li span {
  color: #fff;
  font-weight: 450;
  font-size: 1.1em;
  margin-right: 4px;
}

