* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato TR", sans-serif;
  font-family: "Lato TR Hairline", sans-serif;
  font-family: "Lato TR Light", sans-serif;
  font-family: "Lato TR Black", sans-serif;
}
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
header {
  background-color: rgba(122, 172, 11, 0.5);
  padding: 15px 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  font-family: Lato;
  font-size: 24px;
  line-height: 28.8px;
  letter-spacing: -0.02em;
  width: 100%;
}

.logo {
  flex: 1;
  text-align: left;
}

.logo img {
  height: 40px;
}

.menu {
  display: flex;
  align-items: center;
}

.menu li {
  margin-left: 50px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-family: "Lato TR";
  font-weight: 300;
}

.btn-group {
  background-color: #0b1731;
  padding: 8px 16px;
  border-radius: 2px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #0b1731;
  padding: 10px 0;
  border-radius: 4px;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: block;
  width: auto;
}

.dropdown-menu li {
  margin: 0 !important;
}

.dropdown-menu li a {
  padding: 8px 16px;
  display: block;
  white-space: nowrap;
  text-align: center;
}

.menu .dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media screen and (max-width: 875px) {
  header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger {
    display: block;
    order: 2;
    width: auto;
  }

  .logo {
    order: 1;
  }

  .menu {
    display: block;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #0b1731;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .menu.active {
    right: 0;
  }

  .menu ul {
    flex-direction: column;
  }

  .menu li {
    margin: 15px 0;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu li {
    padding: 0;
  }

  .dropdown-menu li a {
    text-align: left;
  }

  .btn-group {
    background-color: rgb(122, 172, 11);
    color: white;
  }
}
section.hero {
  height: 120vh;
  width: 100%;
  background: url("images/mainbg.jpg") no-repeat center center/cover;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.hero .content {
  position: relative;

  text-align: center;
  color: white;
  z-index: 1;
  text-align: left;
  height: 120vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section.hero .content h1 {
  font-size: 75px;
  margin-bottom: 20px;
  font-weight: 400;
}

section.hero .content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: Lato TR Light;
}

section.hero .content .btn {
  background-color: #81b214;
  padding: 12px 24px;
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  font-family: Lato TR Light;
  font-weight: 800;
}

.more-btn {
  padding-top: 20px;
}

.highlight {
  display: block;
  margin-top: 10px;
}

section.hero .content .btn:hover {
  background-color: #7ec442;
}

@media (max-width: 768px) {
  header .logo h1 {
    font-size: 18px;
  }

  header nav ul li a {
    font-size: 14px;
  }
}

.middle {
  padding: 2rem 2rem;
  background: linear-gradient(90deg, #092044 11.5%, #2c69a9 100%);
  color: white;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}

.stat-icon {
  width: 150px;
  height: 100px;
  margin-bottom: 1rem;
}

.stat-header {
  margin-bottom: 1rem;
  display: flex;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.25rem;
}

.stat-text {
  font-size: 1.5rem;
  color: white;
  margin-left: 5px;
  font-family: Lato TR light;
  margin-top: 0.1rem;
}

.stat-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  max-width: 300px;
  margin: 0 auto;
  font-family: Lato TR Light;
}

@media (min-width: 1400px) {
  .stats-container {
    gap: 3rem;
  }

  .stat-item {
    min-width: 350px;
  }
}

@media (max-width: 1200px) {
  .stats-container {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .stat-item {
    min-width: 280px;
  }
}

@media (max-width: 992px) {
  .stats-container {
    justify-content: center;
    gap: 1.25rem;
  }

  .stat-item {
    flex: 0 1 calc(50% - 1.25rem);
    min-width: 250px;
    padding: 1.25rem;
  }
}

@media (max-width: 768px) {
  .stats-container {
    gap: 1rem;
  }

  .stat-item {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .stat-item {
    flex: 0 1 100%;
    min-width: unset;
    max-width: 400px;
  }

  .stats-container {
    gap: 0.75rem;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .stat-item {
    padding: 0.75rem;
  }

  .stat-description {
    max-width: 280px;
  }
}

.stat-item,
.stat-icon,
.stat-number,
.stat-text,
.stat-description {
  transition: all 0.3s ease;
}

.about {
  width: 100%;
}
.about video {
  top: 0;
  left: 0;
  height: 90vh;
  object-fit: cover;
  z-index: -1;
  width: 100%;
}

.text-area {
  color: #fff;
  width: 1171px;
  text-align: left;
  font-size: 18px;
  font-family: "Lato TR Light", sans-serif;
  margin-top: 120px;
}
.services {
  width: 100%;
  min-height: 730px;
  background-color: #f6f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px 20px;
}

.services-header {
  color: #81b214;
  font-size: 30px;
  font-weight: 800;
  line-height: 48px;
  text-align: center;
  font-family: "Lato TR", sans-serif;
}

.services p {
  font-family: "Lato TR Light", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  max-width: 730px;
  width: 100%;
}

.service-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1170px;
  width: 100%;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-image img {
  height: 275px;
  margin-top: 20px;
  object-fit: cover;
  width: 100%;
  border-radius: 2px;
}

.service-item-header {
  font-size: 24px;
  font-family: "Lato TR Light", sans-serif;
  font-weight: 1000;
  text-align: center;
  margin-top: 15px;
}

.service-item-text {
  font-size: 18px;
  font-family: "Lato TR Light", sans-serif;
  margin-top: 10px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .service-content {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    justify-content: center;
  }

  .service-content .service-item:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    justify-self: center;
  }

  .services-header {
    font-size: 26px;
  }

  .service-item-header {
    font-size: 22px;
  }

  .service-item-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .service-content {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .services {
    min-height: auto;
    padding: 30px 15px;
  }

  .services-header {
    font-size: 24px;
    line-height: 36px;
  }

  .services p {
    font-size: 16px;
    width: 80%;
  }

  .service-image img {
    height: 200px;
  }

  .service-item-header {
    font-size: 20px;
  }

  .service-item-text {
    font-size: 15px;
    text-align: center;
    width: 80%;
  }
  .service-content .service-item:last-child {
    max-width: 100%;
  }
}
.referance {
  width: 100%;
  height: 700px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

.referance-header {
  color: #81b214;
  font-size: 30px;
  font-weight: 800;
  line-height: 48px;
  text-align: center;
  font-family: "Lato TR", sans-serif;
  margin-bottom: 20px;
}

.referance-text {
  font-family: "Lato TR Light", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  max-width: 730px;
}

.swiper-container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
}

.swiper {
  width: 85%;
  margin: 0 auto;
  position: relative;
}

.swiper-slide {
  width: 400px;
  transition: all 0.3s ease;
  transform: scale(0.85);
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 3px;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 32, 68, 0.4) 0%,
    rgba(9, 32, 68, 0.678) 70%,
    rgb(7, 26, 44) 100%
  );
  border-radius: 3px;
  transition: all 0.3s ease;
}

.swiper-slide-active {
  transform: scale(1);
}

.swiper-slide-active::after {
  background: none;
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #7ec442;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.custom-prev {
  left: 0;
}

.custom-next {
  right: 0;
}

.custom-prev i,
.custom-next i {
  font-size: 18px;
}
@media (max-width: 768px) {
  .custom-prev i,
  .custom-next i {
    font-size: 10px;
  }
  .custom-prev {
    left: -10px;
    width: 30px;
    height: 30px;
  }
  .custom-next {
    right: -10px;
    width: 30px;
    height: 30px;
  }
  .referance-text {
    max-width: 500px;
    font-size: 14px;
  }
  .referance-header {
    font-size: 24px;
    font-family: "Lato TR", sans-serif;
    margin-bottom: 0;
  }
  .swiper-container {
    width: 90%;
    padding: 0;
  }
  .referance {
    height: auto;
  }
}
.contact {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1170px;
  gap: 50px;
}

.contact-item-left {
  width: 50%;
}

.contact-header {
  font-size: 30px;
  color: #81b214;
  margin-bottom: 20px;
  font-family: "Lato TR", sans-serif;
  font-weight: 800;
  padding-top: 20px;
}

.contact-text {
  font-family: Lato TR Light;
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-item-right {
  width: 50%;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  border-radius: 8px;
}

.form-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #022859;
  color: #fff;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

button {
  background-color: #81b214;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100px;
  align-self: flex-start;
}

button:hover {
  background-color: #6f9912;
}

@media (max-width: 768px) {
  .contact-item {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .contact-header {
    font-size: 24px;
    text-align: center;
  }

  .contact-text {
    font-size: 16px;
    text-align: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-item-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .custom-form {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .form-group {
    flex-direction: column;
    gap: 10px;
  }
  .contact-item-right {
    width: 100%;
  }
}

.custom-form {
  gap: 0;
}

button {
  width: 100%;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="message"] {
  width: 100% !important;
  font-size: 14px;
}

@media (max-width: 480px) {
  .contact {
    padding: 30px 0;
  }

  .contact-header {
    font-size: 24px;
  }

  .contact-text {
    font-size: 16px;
  }

  .custom-form {
    padding: 15px;
  }

  input,
  textarea,
  button {
    font-size: 14px;
  }

  button {
    padding: 10px;
    font-size: 16px;
    width: 100%;
  }
}

.sponsor {
  background-color: #f6f5f5;
  width: 100%;
  height: 300px;
  position: relative;
  z-index: 1;
}
.sponsor-header {
  font-size: 30px;
  color: #81b214 !important;
  text-align: center;
  padding-top: 30px;
  z-index: 2;
  position: relative;
  font-weight: 800;
  line-height: 48px;
  font-family: "Lato TR", sans-serif;
}
.sponsor-text {
  font-size: 18px;
  text-align: center;
  padding: 20px 0;
  font-family: Lato TR Light;
  z-index: 2;
  position: relative;
}
.sponsor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
  pointer-events: none;
}
.sponsor-logos {
  position: relative;
  z-index: 2;
}
footer {
  padding: 40px 20px;
  background-color: #81b214;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-about,
.footer-menu,
.footer-service,
.footer-social-media {
  padding: 20px;
  text-align: left;
}

.footer-about img {
  max-width: 100%;
  height: 50px;
}

.footer-about-text {
  margin-top: 15px;
  font-family: Lato TR Light;
  font-size: 15px;
  color: white;
}

.footer-menu-header,
.footer-service-header,
.footer-social-header {
  padding-bottom: 30px;
  padding-top: 10px;
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.footer-menu a,
.footer-service-links a {
  text-decoration: none;
  color: white;
  font-family: "Lato TR Light", sans-serif;
  display: block;
  padding-top: 10px;
  font-size: 14px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  padding-top: 10px;
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
  .footer-about,
  .footer-menu,
  .footer-service,
  .footer-social-media {
    text-align: center;
    padding: 10px !important;
  }
  .footer-social-links {
    justify-content: center;
  }
  .footer-about-text,
  .footer-menu a,
  .footer-service-links a {
    font-size: 14px;
  }
  .footer-menu-header,
  .footer-service-header,
  .footer-social-header {
    font-size: 16px;
    padding-bottom: 0px !important;
  }
  footer {
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
  .footer-about,
  .footer-menu,
  .footer-service,
  .footer-social-media {
    text-align: center;
    padding: 10px !important;
  }
  .footer-social-links {
    justify-content: center;
  }
  .footer-about-text,
  .footer-menu a,
  .footer-service-links a {
    font-size: 13px;
  }
  .footer-menu-header,
  .footer-service-header,
  .footer-social-header {
    font-size: 15px;
    padding-bottom: 0px !important;
  }

  footer {
    padding: 20px 10px;
  }
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: #0b1731;
  color: white;
}
.form-group input {
  flex: 1;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  width: calc(50% - 5px);
}

textarea {
  resize: none;
}

button {
  padding: 10px 20px;
  background-color: #0b1731;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 15px;
}
input,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

@media screen and (max-width: 992px) {
  section.hero .content {
    margin-left: 50px;
  }

  section.hero .content h1 {
    font-size: 55px;
  }

  section.hero .content h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  section.hero .content {
    margin-left: 30px;
    padding: 0 15px;
  }

  section.hero .content h1 {
    font-size: 45px;
  }

  section.hero .content h2 {
    font-size: 22px;
  }

  .more-btn {
    margin-top: 20px;
  }

  section.hero .content .btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}

@media screen and (max-width: 576px) {
  section.hero .content {
    margin-left: 15px;
    padding: 0 10px;
  }

  section.hero .content h1 {
    font-size: 36px;
  }

  section.hero .content h2 {
    font-size: 20px;
  }

  .highlight {
    margin-top: 5px;
  }
}

/* Mobile S (375px ve altı) */
@media screen and (max-width: 375px) {
  section.hero .content {
    margin-left: 10px;
  }

  section.hero .content h1 {
    font-size: 32px;
  }

  section.hero .content h2 {
    font-size: 18px;
  }

  section.hero .content .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media screen and (max-height: 500px) and (orientation: landscape) {
  section.hero .content h1 {
    font-size: 40px;
  }

  section.hero .content h2 {
    font-size: 20px;
  }

  .more-btn {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  section.hero {
    background-position: center center;
    background-size: cover;
  }
}

@media screen and (max-width: 576px) {
  section.hero {
    background-position: 65% center;
  }
}

@media screen and (orientation: landscape) and (max-height: 500px) {
  section.hero {
    background-position: center 20%;
  }
}
.logo-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s linear;
}

/* Logolar */
.slider-track img {
  width: 150px;
  height: 75px;
  object-fit: contain;
}
