/* ================= HERO ================= */

.xalqaro-page .page-hero {
  padding: 100px 20px 80px;
  background: linear-gradient(135deg,#0b2c3d,#114b6f);
  color: #fff;
  text-align: center;
}

.xalqaro-page .page-hero h1 {
  font-size: 42px;
  font-weight: 800;
}

.xalqaro-page .page-hero p {
  opacity: .85;
}

/* ================= SECTION ================= */

.xalqaro-page .xalqaro-section {
  padding: 100px 20px;
  background: #f4f6f9;
}

.xalqaro-page .xalqaro-container {
  max-width: 1400px;
  margin: auto;
}

/* 4x4 GRID */

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

/* CARD */

.xalqaro-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: .3s ease;
}

.xalqaro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* LOGO */

.xalqaro-logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.xalqaro-logo img {
  max-height: 80px;
  max-width: 120px;
  object-fit: contain;
}

/* INFO */

.xalqaro-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0b2c3d;
}

.xalqaro-info span {
  font-size: 14px;
  color: #666;
}

/* Responsive */

@media(max-width:1200px){
  .xalqaro-page .xalqaro-grid {
    grid-template-columns: repeat(3,1fr);
  }
}

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

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