* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Navbar */
header {
  background-color: #000;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1200x500') center/cover no-repeat;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background-color: #fff;
  color: black;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background-color: gold;
}


/* About */
.about {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

.about h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* Contact */
.contact {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}

.contact h2 {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 20px 0;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  margin: 0;
  padding: 20px;
}

.vendor-section {
  max-width: 1000px;
  margin: auto;
}

.vendor-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
}

.logo-slider {
  display: flex;
  overflow: hidden;
  gap: 30px;
  padding: 10px;
  scroll-behavior: smooth;
  width: 100%;
}

.logo-item {
  flex: 0 0 auto;
  width: 120px;
  height: 80px;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.15); /* şəffaf və blur */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.slider-btn {
  background-color: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  color: #333;
  transition: 0.3s ease;
}

.slider-btn:hover {
  color: #000;
}


/* Modal arxa fon */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Modal iç məzmun */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.modal-content input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.modal-content .btn {
  width: 100%;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.modal-content .btn:hover {
  background: #e6b800;
}

.close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #888;
}

.close:hover {
  color: #000;
}


.hero {
  background-image: url('images/background.jpg'); /* Buraya istədiyin şəkil linkini qoy */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
  color: white;
  text-align: center;
  position: relative;
}

/* Arxa fon üzərinə qaranlıq qat (şəffaf overlay) */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* qaralma effekti */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff; /* sarı */
}

.hero p {
  font-size: 20px;
  color: #fff;
}


.investment-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.investment-section .container {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12); /* kölgə gücləndirildi */
}

.section-title {
  font-size: 32px;
  color: #003366;
  text-align: center;
  margin-bottom: 25px;
}

.investment-text {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.investment-text strong {
  color: #0056b3;
}

.invest-btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.invest-btn:hover {
  background-color: #0056b3;
}



.stats-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 sütun sabit */
  gap: 20px;
  width: 100%;
  max-width: 1200px; /* daha geniş maksimum genişlik */
  margin: 0 auto;
}

@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr); /* tablet üçün 2 sütun */
  }
}

@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: 1fr; /* mobil üçün 1 sütun */
  }
}

.stat-box {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: box-shadow 0.3s;
  background-color: #fff;
}

.stat-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: #333;
}