@font-face {
  font-family: 'Arquitecta';
  src: url('../fonts/Arquitecta-Bold.woff2') format('woff2');
  font-weight: bold;
}

@font-face {
  font-family: 'Arquitecta';
  src: url('../fonts/Arquitecta-Light.woff2') format('woff2');
  font-weight: 300;
}

:root {
  --bg: #FFFFFF;
  --text: #333333;
  --primary: #1D75BC;
  --font-main: 'Arquitecta', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.site-header {
  background-color: var(--bg);
  border-bottom: 1px solid #eee;
  position: relative;
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0;
  position: relative;
}

.logo img {
  height: 50px;
}

/* ================= MENU ================= */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  background-color: transparent;
  font-size: 14px; /* ← bunu əlavə et və ya dəyişdir */

}

.main-nav a:hover {
  background-color: rgba(29, 117, 188, 0.1);
  color: var(--primary);
}

.main-nav a.active {
  background-color: var(--primary);
  color: #fff;
}

/* ================= SUBMENU ================= */
.main-nav .submenu {
  display: none;
  position: absolute;
  top: 150%;
  left: 0;
  background: #fff;
  border-radius: 6px;
  padding: 10px 0;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  z-index: 999;
  border: 1px solid #e5e5e5;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.main-nav li.has-submenu:hover .submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.main-nav .submenu li a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  border-left: 4px solid transparent;
}

.main-nav .submenu li a:hover {
  background-color: #f9f9f9;
  color: var(--primary);
  border-left: 4px solid var(--primary);
}

/* ================= HERO (static) ================= */
.hero-section {
  padding: 100px 0;
  text-align: center;
  background: #f4f4f4;
}

.hero-section h1 {
  font-size: 36px;
  color: var(--primary);
}

.hero-section p {
  font-size: 18px;
  color: var(--text);
  max-width: 600px;
  margin: 20px auto 0;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #f9f9f9;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

/* ================= LANGUAGE SWITCHER ================= */
.language-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}

.language-switcher a {
  color: var(--text);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.language-switcher a:hover {
  background-color: rgba(29, 117, 188, 0.1);
  color: var(--primary);
}

.language-switcher a.active {
  background-color: var(--primary);
  color: #fff;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

/* ================= DESKTOP ================= */
@media (min-width: 769px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    order: 1;
  }

  .main-nav {
    order: 2;
    flex: 1;
    margin-left: 40px;
  }

  .language-switcher {
    order: 3;
    margin-left: auto;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    order: 1;
  }

  .language-switcher {
    order: 2;
    display: flex;
    justify-content: center;
    flex: 1;
    margin: 0 auto;
  }

  .hamburger {
    order: 3;
    display: block;
  }

  .main-nav {
    order: 4;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .main-nav.active {
    max-height: 1000px;
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 20px;
    background: white;
    border-bottom: 1px solid #eee;
  }

  .main-nav .submenu {
    display: none;
    background: none;
    border: none;
    box-shadow: none;
    position: static;
    padding: 0;
    margin: 0;
    opacity: 1;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .main-nav .submenu li a {
    padding: 10px 30px;
    font-size: 14px;
  }

  .has-submenu > a::after {
    content: "▼";
    float: right;
    margin-left: 10px;
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .has-submenu.open > a::after {
    transform: rotate(180deg);
  }
}

/* ================= TOPBAR ================= */
.topbar {
  background-color: #2c2c2c;
  color: #fff;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 30px;
}

.topbar-lang a {
  color: #f0f0f0;
  text-decoration: none;
  padding: 2px 6px;
  margin-left: 10px;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: 500;
  font-size: 13px;
}

.topbar-lang a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.topbar-lang a.active {
  background-color: var(--primary);
  color: #fff;
}

/* ================= SLIDER ================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 530px;
  overflow: hidden;
  background-color: #000;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.slide-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  text-align: left;
  max-width: 600px;
  z-index: 1;
}

.slide-content h1 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin: 0 0 10px 0;
}

.slide-content p {
  font-size: 16px;
  color: #ddd;
  margin: 0;
}

/* ================= DOTS ================= */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dots .dot.active {
  background-color: #ffffff;
}

/* ================= “Biz Kimik?” Bölməsi ================= */
.about-section {
  padding: 20px 0;
  background-color: #f9f9f9;
}

.about-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ================= Xidmətlər / Fəaliyyət Sahələrimiz ================= */
.services {
  padding: 20px 0;
  background-color: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.service-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.service-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-box h3 i {
  font-size: 20px;
  color: var(--primary);
}
.service-box ul {
  padding-left: 20px;
}
.service-box ul li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.portfolio-section {
  
  max-width: 1200px;
  margin: 80px auto;
  padding: 30px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.portfolio-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: var(--primary);
}
.portfolio-slider {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.project-slide {
  opacity: 0;
  position: absolute;
  width: 100%;
  transition: opacity 0.5s ease-in-out;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  pointer-events: none;
}
.project-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.project-image {
  flex: 1;
}
.project-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.project-info {
  flex: 1;
}
.project-info h3 {
  font-size: 24px;
  color: var(--primary);
}
.project-info .country {
  font-style: italic;
  margin-bottom: 10px;
  color: #666;
}
.project-info .status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.status.completed {
  background: #28a745;
}
.status.ongoing {
  background: #fd7e14;
}
.project-info .scope {
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}
.project-info .scope i {
  color: var(--primary);
  margin-right: 6px;
}
.project-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;

}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-slider {
    height: 200px;
  }
  .slide-content h1 {
    font-size: 24px;
  }
  .slide-content p {
    font-size: 14px;
  }
  .about-inner {
    flex-direction: column;
  }
  .about-text,
  .about-image {
    width: 100%;
    flex: none;
  }
  .projects-slider {
    padding: 40px 0;
  }
  .project-slide {
    flex-direction: column;
  }
  .project-image {
    width: 100%;
    height: auto;
    margin-top: 0px;
    position: relative;
  }
}
/* ================= PORTFOLIO SLIDER ================= */

.portfolio-section {
  margin: 10px auto 20px auto;
  padding: 20px 0px;
}


.portfolio-section h2 {
  text-align: center;
  margin-bottom: 0px;
  font-size: 32px;
  color: var(--primary);
}

.portfolio-slider {
  position: relative;
  overflow: hidden;
  min-height: 100px;
}

.project-slide {
  display: none;
  opacity: 0;
  position: absolute;
  width: 100%;
  transition: opacity 0.5s ease-in-out;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  box-sizing: border-box;
}

.project-slide.active {
  display: flex;
  opacity: 1;
  position: relative;
}

.project-image-carousel {
  flex: 1;
  position: relative;
  min-height: 300px; /* əlavə et */
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* şəkli konteynerə sığdırır */
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-image-carousel img.active {
  opacity: 1;
  z-index: 1;
}

.project-info {
  flex: 1;
}

.project-info h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
}

.project-info .country {
  font-style: italic;
  margin-bottom: 10px;
  color: #666;
}

.project-info .status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
}

.status.completed {
  background: #28a745;
}

.status.ongoing {
  background: #fd7e14;
}

.project-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.project-info .scope {
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
}
.project-info .scope strong {
  color: var(--primary);
}
.scope i {
  color: var(--primary);
  margin-right: 6px;
}

/* Slider navigation */
.slider-controls {
  text-align: center;
  margin-top: 30px;
}

.slider-controls button {
  font-size: 20px;
  padding: 10px 20px;
  margin: 0 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-controls button:hover {
  background: #155a90;
}

/* Responsive */
@media (max-width: 768px) {
  .project-slide,
  .project-slide.active {
    flex-direction: column;
    text-align: center;
  }

  .project-image-carousel,
  .project-info {
    width: 100%;
  }

  .project-image-carousel {
    order: 1;
  }

  .project-info {
    order: 2;
  }
}
.icon {
  font-size: 16px;       /* Bütün ikonlara eyni ölçü */
  color: var(--primary); /* Eyni rəng */
  vertical-align: middle; /* Düzgün hizalanma */
  margin-right: 6px;     /* Mətndən bir az boşluq */
}
/* ================= Partnyorlar ================= */
.partners-carousel-section {
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
}

.carousel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.partners-carousel {
  display: flex;
  gap: 40px;
  justify-content: center;
  animation: scroll-carousel 20s linear infinite;
}

@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}
.partners-carousel img {
  max-height: 60px; /* Hündürlüyü təyin edir */
  max-width: 120px; /* İstəyə görə eni də limitləyə bilərsən */
  object-fit: contain;
  transition: filter 0.3s ease;
  filter: grayscale(100%);
}

.partners-carousel img:hover {
  filter: grayscale(0%);
}
.about-image video {
  width: 470px;
  height: 290px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
  max-width: 100%;  /* əlavə et */
}

/* 📱 Mobil ekranlar üçün uyğunlaşdırma */
@media (max-width: 768px) {
  .about-image video {
    width: 100%;      /* ekranın eninə tam uyğunlaşsın */
    height: auto;     /* nisbət pozulmasın */
    border-radius: 10px;
  }
}
/* ================= HR ================= */
.hr-strategy {
  padding: 0px 0;
  background-color: #f8f8f87c;
}

.hr-strategy h2 {
  font-size: 24px;
  margin-bottom: 25px;
  border-left: 3px solid #9e1023;
  padding-left: 10px;
  font-weight: 600;
}

.hr-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.hr-checklist li {
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.hr-checklist i {
  color: #10559e;
  margin-right: 10px;
  margin-top: 3px;
  font-size: 16px;
}
.simple-hr-hero {
  background-color: #c7c1c1; /* açıq boz fon */
  padding: 20px 0;
  text-align: center;
}

.simple-hr-hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #10559e;
}

.simple-hr-hero p {
  font-size: 18px;
  color: #000000;
}
.vacancies-section {
  padding: 0px 0;
  background-color: #fff;
}

.vacancies-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #222;
}

.vacancy-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.vacancy-card {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  transition: box-shadow 0.3s;
  background-color: #fafafa;
}

.vacancy-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vacancy-card h3 {
  font-size: 20px;
  color: #007bff;
  margin-bottom: 10px;
}

.vacancy-card p {
  font-size: 15px;
  margin-bottom: 8px;
  color: #444;
}

.vacancy-card .btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s;
}

.vacancy-card .btn:hover {
  background-color: #0056b3;
}
.hiring-process {
  background-color: #f7f7f7;
  padding: 20px 0;
}

.hiring-process h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-box {
  background-color: #fff;
  padding: 5px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.step-box:hover {
  transform: translateY(-5px);
}

.step-icon {
  font-size: 32px;
  color: #007bff;
  margin-bottom: 15px;
}

.step-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.step-box p {
  font-size: 15px;
  color: #555;
}
.hr-core-principles {
  background-color: #f7f7f7;
  padding: 10px 0px;
}

.hr-core-principles h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
  color: #333;
}

.principle-line {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 4px solid #007bff;
  border-radius: 6px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.principle-line .number {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
  min-width: 30px;
}

.principle-line h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #222;
}

.principle-line p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 600px) {
  .principle-line {
    flex-direction: column;
    padding: 15px;
  }

  .principle-line .number {
    margin-bottom: 8px;
  }
}




/* ================= aciq vakansiyalar ================= */

.vacancy-carousel-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
}

.vacancy-carousel-section h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 40px;
  color: #222;
}

.vacancy-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vacancy-card h3 {
  font-size: 20px;
  color: #007bff;
  margin-bottom: 10px;
}

.vacancy-card p {
  margin: 5px 0;
  font-size: 14px;
  color: #444;
}

.vacancy-card h4 {
  margin-top: 15px;
  font-size: 16px;
  color: #222;
}

.vacancy-card ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 14px;
  color: #555;
}

/* Swiper buttons */
.swiper-button-next, .swiper-button-prev {
  color: #007bff;
}
.swiper-pagination-bullet-active {
  background-color: #007bff;
}




/* ================= saytin xeritesi ================= */
.breadcrumb-iconic {
  background: #f1f1f1;
  padding: 12px 0;
  font-size: 14px;
  font-family: "Segoe UI", sans-serif;
}

.breadcrumb-iconic .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #777;
}

.breadcrumb-iconic a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb-iconic a:hover {
  text-decoration: underline;
}

.breadcrumb-iconic .separator {
  color: #ccc;
  font-size: 12px;
}

.breadcrumb-iconic .current {
  color: #555;
  display: flex;
  align-items: center;
  gap: 4px;
}
/* ================= whatsapp ================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}


.whatsapp-float i {
  font-size: 18px;
  margin-right: 8px;
}

/* ================= keyfiyyet siyaseti ================= */
.quality-policy-timeline {
  padding: 20px 0;
  background-color: #f9f9f9;
}

.quality-policy-timeline h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: #222;
}

.quality-policy-timeline .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: #444;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0077b6;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-left: 80px;
}

.timeline-item .icon {
  background: #0077b6;
  color: #fff;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
}

.timeline-item .content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.timeline-item .content p {
  font-size: 16px;
  color: #555;
}

.quality-policy-timeline .conclusion {
  margin-top: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 20px;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    padding-left: 70px;
  }
  .timeline-item .icon {
    left: -5px;
  }
}

.quality-policy-section {
  padding: 0px 0;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: #003366;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.policy-item {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.policy-item:hover {
  transform: translateY(-5px);
  border-color: #007acc;
}

.policy-item i {
  font-size: 36px;
  color: #007acc;
  margin-bottom: 15px;
}

.policy-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #002244;
}

.policy-item p {
  font-size: 16px;
  color: #333;
}

/* Responsivlik üçün */
@media (max-width: 992px) {
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= SERTIFIKATLAR================= */
.certificates-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.certificates-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  color: #222;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.cert-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cert-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.cert-item .cert-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cert-item:hover img {
  transform: scale(1.1);
}

.cert-item:hover .cert-info {
  transform: translateY(0);
}

/* Lisensiya üçün fərqlilik */
.cert-item.license .cert-info {
  background: rgba(0, 123, 255, 0.8);
}

@media (max-width: 600px) {
  .cert-info {
    font-size: 14px;
  }
}
.certificates-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.certificate-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.certificate-item img {
  max-width: 100%;
  border-radius: 8px;
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.certificate-item:hover {
  transform: scale(1.03);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
}

#caption {
  text-align: center;
  margin-top: 15px;
  color: #fff;
}

.close {
  position: absolute;
  top: 40px;
  right: 50px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}
/* ================= XIDMETLER SEHIFESI ================= */
.xidmetler-section {
  padding: 30px 20px;
  background: #f4f7fa;
}

.xidmetler-section .services-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #222;
}

.xidmetler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.xidmet-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xidmet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.xidmet-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4a90e2, #357abd);
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
}

.service-name {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.service-photo {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.xidmet-card:hover .service-photo img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .xidmetler-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .xidmetler-grid {
    grid-template-columns: 1fr;
  }
}
.advantages-section {
  padding: 30px 20px;
  background: #f4f7fa;
}

.advantages-title {
  text-align: center;
  font-size: 36px;
  color: #222;
  margin-bottom: 15px;
}

.advantages-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 18px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.advantage-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.advantage-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

.advantage-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1d1d1d;
}

.advantage-card p {
  font-size: 16px;
  color: #666;
}
/* Tablet və kiçik ekran üçün */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobil (yəni 600px və daha aşağı) üçün */
@media (max-width: 600px) {
  .advantages-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .advantage-card {
    padding: 10px;
    border-radius: 8px;
  }

  .advantage-card i {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .advantage-card h3 {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .advantage-card p {
    display: none; /* mobil üçün mətni gizlədirik, sadəcə başlıq + ikon qalır */
  }
}
/* ================= XIDMETLER SEHIFESI ================= */
/* =================senaye ve mulki obyektler ================= */
.service-presentation {
  padding: 80px 20px;
  background: linear-gradient(to right, #f7f9fc, #ffffff);
}

.service-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
}

/* Sol hissə (qalereya) */
.service-gallery {
  flex: 1 1 45%;
}

.main-photo {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.thumbnail-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.thumbnail-row img {
  width: 90px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail-row img:hover {
  transform: scale(1.05);
}

.thumb.active {
  border-color: #1d75bc;
}

/* Sağ hissə (məzmun) */
.service-info {
  flex: 1 1 50%;
  color: #333;
  font-size: 17px;
  line-height: 1.8;
}

.service-info p {
  margin-bottom: 18px;
  text-align: justify;
}

.service-highlights {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-highlights li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 500;
}

.service-highlights i {
  color: #1d75bc;
  margin-right: 10px;
}

/* Mobil uyğunluq */
@media (max-width: 900px) {
  .service-layout {
    flex-direction: column;
  }

  .service-gallery, .service-info {
    flex: 1 1 100%;
  }

  .main-photo {
    height: 300px;
  }

  .thumbnail-row img {
    width: 70px;
    height: 55px;
  }
}
/* ================= SUPPLY INTRO ================= */
.supply-intro {
  background: #f9fafc;
  padding: 70px 20px;
  text-align: center;
}

.supply-intro .container {
  max-width: 950px;
  margin: 0 auto;
}

.supply-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  font-weight: 400;
}

@media (max-width: 768px) {
  .supply-intro {
    padding: 50px 15px;
  }

  .supply-intro p {
    font-size: 15px;
    line-height: 1.6;
  }
}
/* ================= SUPPLY CATEGORIES ================= */
.supply-categories {
  padding: 10px 20px;
  background: #f9fafc;
}

.supply-categories .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.category-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.category-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.category-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Mobil uyğunlaşma */
@media (max-width: 768px) {
  .supply-categories {
    padding: 60px 15px;
  }

  .category-card img {
    height: 160px;
  }

  .category-card h3 {
    font-size: 18px;
  }

  .category-card p {
    font-size: 14px;
  }
}
/* ================= SUPPLY INFOGRAPHIC ================= */
.supply-infographic {
  background: #f9fafc;
  padding: 10px 20px;
  text-align: center;
  overflow-x: auto;
}

.supply-infographic .section-title {
  font-size: 34px;
  font-weight: 700;
  color: #1D75BC;
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  position: relative;
  flex-wrap: nowrap;
  min-width: 1100px;
}

.process-step {
  background: #fff;
  border-radius: 14px;
  padding: 25px 20px;
  width: 200px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.process-step .icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  margin: 0 auto 15px;
  position: relative;
  overflow: hidden;
}

.process-step .icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #fff;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0.1; }
  100% { transform: scale(1); opacity: 0.3; }
}

.process-step h3 {
  color: var(--primary);
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 600;
}

.process-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Oxlar */
.arrow {
  color: var(--primary);
  font-size: 26px;
  animation: arrowPulse 1.8s infinite;
  opacity: 0.8;
}

@keyframes arrowPulse {
  0% { transform: translateX(0); opacity: 0.8; }
  50% { transform: translateX(5px); opacity: 1; }
  100% { transform: translateX(0); opacity: 0.8; }
}

/* Mobil uyğunlaşma */
@media (max-width: 900px) {
  .process-flow {
    flex-direction: column;
    gap: 40px;
    min-width: unset;
  }

  .arrow {
    transform: rotate(90deg);
  }

  .process-step {
    width: 90%;
    max-width: 350px;
  }
}
/* ================= SUPPLY PORTFOLIO ================= */
.supply-portfolio {
  background: #f9fafc;
  padding: 10px 20px;
  text-align: center;
}

.supply-portfolio .section-title {
  font-size: 34px;
  font-weight: 700;
  color: #1D75BC;
  margin-bottom: 15px;
}

.supply-portfolio .section-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.portfolio-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.portfolio-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio-info {
  padding: 20px;
  text-align: left;
}

.portfolio-info h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.portfolio-info p {
  font-size: 15px;
  color: #444;
  margin-bottom: 5px;
  line-height: 1.5;
}

/* Mobil uyğunlaşma */
@media (max-width: 768px) {
  .supply-portfolio {
    padding: 70px 15px;
  }

  .portfolio-info {
    text-align: center;
  }

  .portfolio-info p {
    font-size: 14px;
  }
}
.supply-origin {
  font-size: 14px;
  color: #444;
  border-top: 1px solid #eee;
  margin-top: 10px;
  padding-top: 8px;
}
/* ===== PROJECT DESIGN INTRO SECTION ===== */
.service-intro {
  background: #f8fafc;
  padding: 20px 0;
  text-align: center;
}

.service-intro .container {
  max-width: 900px;
  margin: 0 auto;
}

.service-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  font-weight: 400;
  text-align: justify;
}

.service-intro strong {
  color: var(--primary);
  font-weight: 600;
}
/* ===== DESIGN ACCORDION ===== */
.design-accordion {
  background: #f8fafc;
  padding: 10px 0;
}

.design-accordion .section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;
  color: #1d75bc;
  font-weight: 700;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #f1f5f9;
}

.accordion-header i.fa-chevron-down {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i.fa-chevron-down {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
  max-height: 300px;
  padding: 15px 20px 25px;
}

.accordion-header span i {
  color: #1d75bc;
  margin-right: 10px;
  font-size: 20px;
}
/* ===== LAYİHƏLƏNDİRMƏ PROSESİ ===== */
.design-process-section {
  background-color: #0d2c52;
  background-image: 
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 10px 0;
  color: #fff;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #66ccff;
  margin-bottom: 60px;
  text-shadow: 0 0 6px rgba(0,180,255,0.4);
}

/* HORIZONTAL DİZAYN – MƏRKƏZDƏ */
.process-row {
  display: flex;
  justify-content: center; /* tam mərkəz */
  align-items: stretch;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

/* KARTLAR */
.process-card {
  flex: 1;
  max-width: 220px;
  min-width: 200px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(102,204,255,0.3);
  border-radius: 14px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.process-card:hover {
  border-color: #66ccff;
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(102,204,255,0.4);
}

.process-card i {
  font-size: 36px;
  color: #66ccff;
  margin-bottom: 15px;
}

.process-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.process-card p {
  color: #b8d9ff;
  font-size: 14px;
  line-height: 1.6;
}
/* ==== MOBİL ÜÇÜN ==== */
@media (max-width: 768px) {
  .process-row {
    flex-direction: column;
    align-items: center;
  }

  .process-card {
    width: 90%;
    max-width: 400px;
  }
}
/* ===== CONSULTING SERVICE SCOPE ===== */
.consulting-scope {
  background: #fff;
  padding: 10px 20px;
}

.consulting-scope .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: #1d75bc;
  font-weight: 700;
}

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.consulting-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 35px 25px;
  transition: all 0.3s ease;
  border-top: 4px solid #1d75bc;
}

.consulting-card i {
  font-size: 38px;
  color: #1d75bc;
  margin-bottom: 15px;
}

.consulting-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.consulting-card ul {
  list-style: disc; /* disk - klassik noqtə */
  padding-left: 20px; /* soldan bir az məsafə */
  text-align: left; /* mətnləri sola hizala */
}


.consulting-card ul li {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.consulting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(29, 117, 188, 0.2);
}

/* ==== MOBİL VERSİYA ==== */
@media (max-width: 992px) {
  .consulting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .consulting-grid {
    grid-template-columns: 1fr;
  }

  .consulting-card {
    padding: 25px 20px;
  }
}

@font-face {
  font-family: 'Arquitecta-Bold';
  src: url('../fonts/Arquitecta-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Arquitecta-Light';
  src: url('../fonts/Arquitecta-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
/* ===== Arquitecta fontlarının tətbiqi ===== */
.portfolio-section h2,
.portfolio-section h3,
.portfolio-section .country,
.portfolio-section .scope,
.portfolio-section .status {
  font-family: 'Arquitecta-Bold', sans-serif;
  font-weight: 700;
}

.portfolio-section p {
  font-family: 'Arquitecta-Light', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}
