* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.directions-section .container .card-grid .card img{
  width: 100%;
  object-fit: cover;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;

}

.instruction-list{

}

/* .logos{

} */

/* .footer-container{

} */

/* Logo section tepada fixed */
.logo-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #034f9c;
  padding: 20px 5px;
  display: flex;
  justify-content: space-around;
  gap: 150px;
  z-index: 1;
  
}
.logos {
  width: 1410px;
  display: flex;
  justify-content: space-around;  /* markazda ushlab turadi */
  /* gap: 280px; masofani yanada qisqartiradi */
}


.logo-section img {
max-height: 70px;  
object-fit: contain;
}

/* Hamburger */
.hamburger {
  width: 35px;
  height: 30px;
  position: fixed;
  top: 35px;
  right: 50px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 1100;
  padding: 6px;
  background: #034f9c;  
}

.hamburger span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* X holati */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.side-menu {
  position: fixed;
  top: 0; /* yuqoridan ham boshlab */
  right: -260px;
  width: 250px;
  height: 100vh; /* ekran bo‘yicha 100% */
  background: #034f9c;
  padding: 100px 20px 60px; /* yuqoridan logotip uchun joy qoldirdik */
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.4s ease;
  z-index: 999;
  overflow-y: auto; /* agar ko‘p link bo‘lsa scroll chiqadi */
}


.side-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.side-menu.show {
  right: 0;
}


.hero {
  background: linear-gradient(rgba(0, 51, 153, 0.6), rgba(0, 51, 153, 0.6)),
    url('images/img.jpg') center/cover no-repeat;
  min-height: 100vh;
  text-align: center;
  padding: 60px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* position: relative; */
  z-index: 1; 
}

.hero h1 {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 6px;
}

.hero .sub-title {
  font-size: 24px;
  display: block;
  margin-top: 4px;
}

.hero p {
  font-size: 20px;
  color: #fff;
  margin-top: 20px;
  max-width: 900px;
}



.hero-buttons {
  /* margin-top: 80px; */
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}



.btn-solid {
  width: 650px;
  height: 60px;
  padding: 22px 24px;
  text-decoration: none;
  font-weight: bold;
  color: #ffffff !important;
  background-color: #034f9c !important;
  border-radius: 6px;
  transition: all 0.2s ease;
  /* display: inline-block; */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2); /* yengil soyani qo‘shamiz */
}

.btn-solid:hover {
  background-color: #0a0a23 !important; /* hoverda biroz ochroq rang */
  color: #ffffff;
}

.btn-solid:active {
  transform: scale(0.96); /* bosilganda tugma kichrayadi */
  box-shadow: 0 2px 4px rgba(0,0,0,0.3); /* soyani pasaytiradi */
}

.btn-link {
/* display: block; */
  width: 300px;
  height: 60px;
  padding: 22px 24px;
  /* text-decoration: none; */
  /* text-decoration: dashed; */
  /* text-decoration: underline !important; */
  font-weight: bold;
  color: #ffffff !important;
  /* background-color: #034f9c !important; */
  border-radius: 6px;
  transition: all 0.2s ease;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2); /* yengil soyani qo‘shamiz */
  
}

.btn-link:hover {
  /* background-color: #034f9c !important; hoverda biroz ochroq rang */
  color: #ffffff;

}

@media (max-width: 768px) {
  .logos {
    flex-direction: column;
    gap: 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero .sub-title {
    font-size: 20px;
  }

  .hero p {
    font-size: 18px;
  }
}

h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 10px;
  text-align: center;
}

.content-box {
  max-width: 1410px;
  text-align: justify;
  font-size: 17px;
  line-height: 1.7;
  color: #2c2c2c;
  transition: all 0.3s ease-in-out;
  padding: 20px;
  margin: 0 auto;
}

.content-box p {
  margin-left: 20px;
  margin-bottom: 20px;
  text-indent: 35px;
}

@media (max-width: 768px) {
  .content-box {
    padding: 20px;
    font-size: 16px;
  }

  .content-box p {
    text-indent: 16px;
    margin-bottom: 14px;
  }
}


.directions-section {
  background: #d3effd;
  padding: 10px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.directions-section h2 {
  text-align: center;
  font-size: 32px;
  color: #003366;
  margin-bottom: 40px;
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding-bottom: 20px;
}

.card {

  height: 370px;
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  background: transparent;
}

.card2 img {
  width: 100%;
  height: 185px;

}

.logos{

}


.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Icon */
.icon {
  font-size: 36px;
  color: #003399;
}

/* Matn */
.card p {
  font-size: 16px;
  color: #2a2a2a;
  line-height: 1.6;
}

.committee {
  max-width: 1470px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}

.committee h1 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #003366;
  font-weight: 700;
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.member {
  width: 420px;
  height: auto;
  margin: auto;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.08);
  transition: transform 0.2s, box-shadow 0.3s;
  border-left: 5px solid #0066cc;
}

.member strong {
  font-size: 17px;
  color: #003366;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.member .content {
  display: flex;
  align-items: center;
  column-gap: 50px;
  row-gap: 30px;
  justify-content: center;
}

.member img {
  width: 180px;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  margin-right: -35px;
}

.member .info {
  text-align: left;
  font-size: 15px;
  line-height: 1.5;
}

.member:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 51, 102, 0.15);
}

@media (max-width: 500px) {
  .member .content {
    flex-direction: column;
    text-align: center;
  }

  .member img {
    width: 100%;
    height: auto;
  }

  .member strong {
    font-size: 16px;
  }
}

.background {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #e5f0ff, #f8fafc);
  display: flex;
  justify-content: center;
  align-items: start;
  padding-top: 60px;
}

.section {
  max-width: 1100px;
  width: 100%;
  padding: 0 20px 60px 20px;
}

.title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111827;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border-left: 6px solid;
  padding: 24px 24px 20px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.border-blue {
  border-color: #3b82f6;
}

.border-green {
  border-color: #10b981;
}

.border-yellow {
  border-color: #f59e0b;
}

.border-purple {
  border-color: #8b5cf6;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.card h2 {
  font-size: 20px;
  margin: 0;
}

.card span {
  font-size: 24px;
}

.card ul {
  list-style: disc;
  padding-left: 20px;
  color: #374151;
}

.sublist {
  list-style: circle;
  margin-top: 6px;
  padding-left: 18px;
  color: #6b7280;
}

.note {
  font-size: 14px;
  font-style: italic;
  color: #6b7280;
  margin-top: 12px;
}

section.dates {
  background: linear-gradient(to right, #f0f4f8, #f9fafb);
  padding: 80px 24px;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1f2937;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #3b82f6;
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.card {
  background-color: #ffffff;
  flex: 1 1 calc(25% - 20px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-left: 6px solid #3b82f6;
  min-width: 280px;
  max-width: 310px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.card h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #111827;
}

.icon {
  font-size: 26px;
  color: #3b82f6;
}

.card ul {
  padding-left: 20px;
  margin: 0;
}

.card ul li {
  margin-bottom: 6px;
  color: #374151;
}

.note {
  font-style: italic;
  font-size: 14px;
  color: #6b7280;
  margin-top: 10px;
}

@media screen and (max-width: 1024px) {
  .card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media screen and (max-width: 640px) {
  .card {
    flex: 1 1 100%;
  }
}


.deadline-section {
  background: #d3effd;
}

.main-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111827;
  padding-top: 20px;
}

.deadline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.deadline-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-header .icon {
  font-size: 28px;
}

.card-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #1f2937;
}

.deadline-card p,
.deadline-card ul {
  font-size: 15px;
  color: #374151;
  margin: 0;
}

.deadline-card ul {
  list-style-type: disc;
  padding-left: 20px;
}

.note {
  font-size: 13px;
  color: #6b7280;
  font-style: italic;
  margin-top: 8px;
}


.fee {
  background-color: #d3effd;
  padding: 60px 20px;
}

.fee .container {
  max-width: 1450px;
  margin: 20px auto;
}

.fee-box {
  background-color: #fff;
  border-left: 6px solid #3498db;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  padding: 32px;
  border-radius: 6px;
}

.fee-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #111827;
  text-align: center;
}

.layout {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr); */
  /* grid-gap: 20px; */
  width: 1412px;
  margin: 0 auto;
}

.card,
.big-card {
  /* display: flex; */
  width: 1410px;
  background: #ffffff;
  color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-align: center;
  /* margin: 0 auto; */
}

/* Katta card 2 ustunni egallaydi */
.big-card {
  /* grid-column: span 2; */
  border-left: 6px solid #3498db;

}

/* Ichki cardlar */
.inner {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  
}

.inner-card {
  background: #ff5757;
  padding: 15px;
  border-radius: 8px;
}

/* Kichik pastki card chap tomonda */
.small {
  grid-column: 1 / 2;
}

.payment-section {

  display: flex;
  /* justify-content: center; */
  /* flex-direction: column; */
  gap: 25px;
  width: auto;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;

}

.payment-card {
  width: 600px;
  background: linear-gradient(to right, #f0f9ff, #d3effd);
  border-left: 6px solid #00aaff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.09);
  transition: transform 0.2s;

}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: #0077aa;
}

.card-title p {
  color: rgb(240, 52, 52);
}

.card-info {
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  font-size: 16px;
  color: #222;
  word-break: break-word;
  gap: 10px;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s ease;
}

.copy-btn img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.payment-section-wrapper {
  position: relative;
  max-width: 560px;
  margin: 40px auto;
  padding: 10px;
  background-color: transparent;
}

.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #034f9c;
  color: #fff;
  border: none;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.close-btn:hover {
  background-color: #e60000;
}

.fee-box {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  border-left: 6px solid #3498db;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  padding: 32px;
  border-radius: 6px;
}

.fee-left,
.fee-right {
  flex: 1;
  min-width: 300px;
  padding: 0 20px;
}

.fee-box ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 24px;
  color: #1f2937;
}

.fee-box ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  max-width: 100%;
  height: 60px;
  /* padding: 10px 24px; */
  border: 2px solid #0a0a23;
  color: #0a0a23;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 10px;
}

.btn:hover {
  background-color: #0a0a23;
  color: #fff;
}

.btn2 {
  display: inline-block;
  padding: 10px 24px;
  color: #0a0a23;
  font-weight: 600;
  background-color: transparent;
  border: none;
  margin-top: 10px;
  margin-left: 20px;
  transition: color 0.3s ease;
  cursor: pointer;
  text-decoration: none;

}

.btn2:hover {
  color: #0055aa;
  text-decoration: underline;
}


.price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 10px;
  /* margin-right: auto; */

  margin-left: 0;
}

.price-box h2 {
  font-size: 25px;
}

.price-box strong {
  color: #003366;
  font-size: 18px;
}

.small-text {
  font-size: 14px;
  color: #4b5563;
}

.publications {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  Grid-template-columns: auto;
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: #333;
}

.publication-block {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.publication-block img {
  background: #fff;
  width: 220px;
  height: auto;
}

.publication-block .content h2 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-left: 20px;
}

.publication-block .content p {
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .publication-block {
    flex-direction: column; /* yonma-yon emas, ustma-ust bo‘ladi */
    text-align: center;
  }

  .publication-block img {
    max-width: 100%;
    height: auto;
  }
}
/* .content span {
  color: ;
} */

.link {
  display: inline-block;
  margin-top: 10px;
  color: #4a00e0;
  text-decoration: underline;
}


.stats-container {
  display: flex;
  gap: 20px;
  padding: 40px;
  justify-content: center;
  flex-wrap: wrap;
}


.stat-card {
  width: 200px;
  height: 140px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 14px 22px rgba(10, 51, 102, 0.08);
  border-radius: 16px;

}

.stat-card:hover {
  /* transform: translateY(-5px); */
}

.stat-number {
  font-size: 40px;
  font-weight: bold;
  color: #003b8d;
}

.stat-label {
  margin-top: 10px;
  font-size: 16px;
  color: #003b8d;
}

.speakers-section {
  max-width: 1470px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 100px;
}

.speakers-section h2 {
  font-size: 36px;
  font-weight: 700;
  border-bottom: none;
  text-decoration: none;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.speaker-card {
  width: 420px;
  height: 270px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.08);
  transition: transform 0.2s, box-shadow 0.3s;
  border-left: 5px solid #0066cc;
}

.speaker-card strong {
  font-size: 17px;
  color: #003366;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.speaker-card .content {
  display: flex;
  align-items: center;
  column-gap: 50px;
  row-gap: 30px;
  justify-content: center;
}

.speaker-card img {
  width: 180px;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  margin-right: -35px;
}

.speaker-card .info {
  text-align: left;
  font-size: 15px;
  line-height: 1.5;
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 51, 102, 0.15);
}

@media (max-width: 500px) {
  .speaker-card .content {
    flex-direction: column;
    text-align: center;
  }

  .speaker-card img {
    width: 100%;
    height: auto;
    margin-right: 0;
  }

  .speaker-card strong {
    font-size: 16px;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

h2 {
  font-size: 1.8rem;
  color: #34495e;
  margin: 40px 0 20px;
  font-weight: 500;
}

h3 {
  font-size: 1.4rem;
  color: #3498db;
  margin: 30px 0 15px;
  font-weight: 500;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

ul {
  margin-bottom: 30px;
  padding-left: 30px;
}

li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

strong {
  color: #2980b9;
  font-weight: 600;
}

.divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 30px 0;
}

.template-link {
  display: inline-block;
  background-color: #3498db;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  transition: background-color 0.3s;
  padding-bottom: 20px;
}

.template-link:hover {
  background-color: #2980b9;
}

.participation-option {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #3498db;
}

@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  p,
  li {
    font-size: 1rem;
  }
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

h2 {
  font-size: 1.8rem;
  color: #34495e;
  margin: 40px 0 20px;
  font-weight: 500;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
}

.program-card {
  display: flex;
  justify-content: space-between;
  background-color: white;
  border-radius: 8px;
  padding: 15px 20px;
  margin: 0 0 20px 15px;
  /* faqat chapdan joylashadi */
  max-width: 100%;
  /* hech qachon chiqib ketmasin */
  box-sizing: border-box;
  /* padding va border hisobga olinsin */
}



.program-title {
  font-size: 1.4rem;
  color: #3498db;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.program-title img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Square image style */
.square-image-container {
  margin: 25px 0;
  text-align: center;
}

.square-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-caption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #555;
}

/* Rectangular image at bottom */
.bottom-image-container {
  margin-top: 50px;
  text-align: center;
}

.rectangular-image {
  width: 100%;
  max-width: 836px;
  height: 487px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.instruction-list {
  margin-bottom: 30px;
}

.instruction-item {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.instruction-number {
  background-color: #3498db;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-weight: bold;
}

.instruction-content {
  flex: 1;
}

.zoom-block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

/* Chap taraf (Ссылка) */
.left-col {
  display: flex;        /* flex yoqamiz */
  flex-direction: column; /* vertikal joylashadi */
  gap: 20px;             /* har bir tugma orasida 20px bo‘shliq */
  margin-top: 20px;
}

.left-col button {
  width: 100%;           /* butun kenglikni egallaydi */
  height: 60px;
  padding: 12px;
  background: #034f9c;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.link-box {
  padding: 12px 20px;
  background: #f3f3f3;
  border: 1px solid #ccc;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  min-width: 100px;
}

/* O‘ng taraf (Rasmlar) */
.left-col a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;  /* minimal balandlik */
  padding: 0 14px;
  font-size: 14px;
}

.right-col .img {
  padding-left: 30px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.right-col .big {
  width: 550px;
  height: 320px;

}

.right-col .small {
  width: 350px;
  height: 320px;
  /* kichik rasm */
}

/* Pastki tugmalar */
.bottom-buttons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.btn {

  flex: 1;
  /* padding: 12px; */
  background: #034f9c;
  /* background-color: red; */
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.highlight {
  background-color: #e3f2fd;
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
  border-left: 4px solid #3498db;
}

@media (max-width: 900px) {
  .rectangular-image {
    height: auto;
    max-height: 487px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .program-title {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
  }

  .square-image {
    width: 250px;
    height: 250px;
  }

  .instruction-item {
    flex-direction: column;
  }

  .instruction-number {
    margin-bottom: 10px;
  }
}

.program-title {
  font-size: 1.4rem;
  color: #3498db;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.program-title img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.instruction-list {
  margin-bottom: 30px;
}

.instruction-item {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.instruction-number {
  background-color: #034f9c;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-weight: bold;
}

.instruction-content {
  flex: 1;
}



.download-btn {
  width: 100%;;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #034f9c;
  color: white;
  /* padding: 12px 20px; */
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  /* margin-top: 10px; */
  transition: background-color 0.3s;
}

.download-btn:hover {
  background-color: #0a0a23;
}

.download-btn img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.highlight {
  background-color: #e3f2fd;
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
  border-left: 4px solid #3498db;
}

/* Image pair styles */
.image-pair {
  height: auto;
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.large-image {
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.small-image {
  width: auto;
  height: auto;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-pair img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.image-pair img:hover {
  transform: scale(1.03);
}

.image-caption {
  padding: 12px;
  background: white;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .program-title {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
  }

  .instruction-item {
    flex-direction: column;
  }

  .instruction-number {
    margin-bottom: 10px;
  }

  .image-pair {
    flex-direction: column;
  }

  .large-image,
  .small-image {
    flex: 1 1 100%;
  }
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.submission-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.requirements-list {
  margin-bottom: 30px;
}

.requirement-item {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.requirement-icon {
  color: #3498db;
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.requirement-text {
  flex: 1;
  font-size: 1.1rem;
}

.important-note {
  font-size: 1.3rem;
  height: 60px;
  background-color: #d4eefc;
  padding: 15px;
  border-radius: 8px;
  /* margin: 30px 0; */
  border-left: 4px solid #3498db;
}

.important-note strong {
  color: #2c3e50;
}

.important-note p {
  color: #3498db;
}

.publication-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;

}

.publication-option {
  flex: 1;
  min-width: 250px;
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  padding-top: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #3498db;
}

.publication-option h3 {
  color: #3498db;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.template-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  padding-bottom: 50px;
}

.template-link {
  display: inline-flex;
  align-items: center;
  background-color: #034f9c;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.template-link:hover {
  background-color: #2980b9;
}

.template-link img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .publication-option {
    min-width: 100%;
  }

  .requirement-text {
    font-size: 1rem;
  }
}

/* Kontent konteyneri */
.container {
  max-width: 1200px;
  width: 100%;
}

/* Sarlavhalar */
.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #2c3e50;
}

/* Asosiy matn qismi */
.main-content {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  max-width: 800px;
}

/* Format bloklari */
.format-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 20px 0;
  background: #ffffff;
  padding: 15px;
  border-left: 4px solid #3498db;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.format-block img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-top: 5px;
}

/* Yuklab olish havolalari */
.download-links {
  margin-top: 20px;
}

.download-links a {
  display: inline-block;
  margin-right: 15px;
  padding: 10px 16px;
  background: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.download-links a:hover {
  background: #034f9c;
}

/* Media kartochkalar */
.media-images {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.media-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.media-card.large {
  flex: 1 1 60%;
}

.media-card.small {
  flex: 1 1 35%;
}

.media-card:hover {
  transform: translateY(-5px);
}

.media-card-body {
  padding: 10px;
}

.media-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}

.media-card h4 {
  font-size: 18px;
  margin-top: 10px;
  color: #2c3e50;
}

/* Submission text */
.submission-text p {
  margin-bottom: 18px;
}

/* Eslatma */
.highlight-note {
  background: #fff3cd;
  padding: 16px 20px;
  margin-top: 30px;
  border-left: 5px solid #ffc107;
  border-radius: 6px;
}

.badge {
  display: inline-block;
  background:#034f9c;
  color: white;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 14px;
  margin-left: 10px;
}

.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
}

/* Asosiy kontent uslubi */
.main-content {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

/* Format bloklari */
.format-block {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.format-block:hover {
  transform: translateY(-3px);
}

.format-block img {
  width: 48px;
  height: 48px;
}

/* Yuklab olish linklari */
.download-links {
  margin-top: 20px;
  text-align: center;
}

.download-links a {
  display: inline-block;
  margin: 8px;
  padding: 10px 20px;
  background-color: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s;
}

.download-links a:hover {
  background-color: #1d4ed8;
}

/* Media rasmlar */
.media-images {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center;
}

.media-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex: 1 1 300px;
}

.media-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.media-card h4 {
  text-align: center;
  padding: 12px;
  font-size: 18px;
  color: #2f2f2f;
}

/* Submission text */
.submission-text p {
  margin-bottom: 16px;
  font-size: 17px;
  color: #444;
}

/* Eslatma */
.highlight-note {
  margin-top: 24px;
  padding: 18px;
  background-color: #fff8e1;
  border-left: 5px solid #fbc02d;
  font-size: 16px;
  border-radius: 6px;
}

.badge {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  padding: 4px 12px;
  border-radius: 20px;
  margin-left: 8px;
  font-weight: 600;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .format-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-images {
    flex-direction: column;
    align-items: center;
  }
}

/* Sarlavhalar */
.section-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #002b80;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #444;
}

/* Form format cards */
.format-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.format-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.format-card:hover {
  transform: translateY(-5px);
}

.format-card img {
  width: 60px;
  margin-bottom: 15px;
}

.format-card h4 {
  margin-bottom: 10px;
  color: #003399;
}

/* Yuklab olish linklari */
.download-links {
  margin-top: 30px;
  text-align: center;
}

.download-links a {
  margin: 10px;
  display: inline-block;
  color: #003399;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #003399;
  transition: color 0.3s;
}

.download-links a:hover {
  color: #001f66;
}

/* Media images */
.media-gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.media-item {
  text-align: center;
  max-width: 250px;
}

.media-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.steps {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 20px;
  font-size: 17px;
}

/* Pochta topshirish */
.submission-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.badge-group {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.badge {
  background: #034f9c;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

/* Kontainer ichki maksimal kenglik */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sarlavha */
.section-title {
  font-size: 30px;
  margin-bottom: 40px;
  text-align: center;
  color: #0f172a;
}

/* Ikki ustunli layout */
.row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Sidebar chap taraf */
.sidebar {
  flex: 1;
  min-width: 260px;
  background: #e0f2fe;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sidebar h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #0f172a;
}

.sidebar a {
  display: block;
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 8px;
  text-decoration: none;
}

.sidebar ul {
  list-style: none;
  padding-left: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

/* Asosiy kontent */
.main-content {
  flex: 3;
  min-width: 300px;
}

.main-content h4 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1e3a8a;
}

.main-content h5 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #374151;
}

.main-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

/* Format bloklari */
.format-block {
  display: flex;
  gap: 16px;
  background: #f8fafc;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.format-block img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Yuklab olish havolalari */
.download-links {
  margin-top: 20px;
}

.download-links a {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 6px 12px;
  margin-right: 12px;
  margin-bottom: 8px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

.media-images {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Kartochka umumiy */
.media-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

/* Katta kartochka */
.media-card.large {
  width: 600px;
  background-color: #e0f2fe;
}

/* Kichik kartochka */
.media-card.small {
  flex: 1;
  width: 240px;
  background-color: #fef3c7;
}

/* Rasm */
.media-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* Matn */
.media-card h4 {
  text-align: center;
  font-size: 18px;
  margin: 0;
  padding-top: 4px;
  color: #1e3a8a;
}

/* Kichik kartochka matn rangi */
.media-card.small h4 {
  color: #92400e;
}

/* Mobil qurilmalarda */
@media (max-width: 768px) {
  .media-images {
    flex-direction: column;
  }

  .media-card,
  .media-card.large {
    width: 100%;
  }

  .media-card img {
    height: auto;
  }
}

/* Submission qismi */
.submission-text p {
  margin-bottom: 16px;
  color: #374151;
}

.highlight-note {
  margin-top: 20px;
  padding: 16px;
  background-color: #fef3c7;
  border-left: 6px solid #facc15;
  border-radius: 8px;
  font-weight: 500;
}

.badge {
  background-color: #fcd34d;
  padding: 4px 8px;
  margin: 0 4px;
  border-radius: 6px;
  font-weight: bold;
  color: #78350f;
}

/* Moslashuvchanlik (mobil uchun) */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .section-title {
    font-size: 24px;
  }

  .format-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-images img {
    width: 100%;
    max-width: 100%;
  }
}

/* Rasm galereyasi */
.media {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.media img {
  border-radius: 8px;
  max-height: 260px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.media .logo {
  max-height: 260px;
}

/* Responsiv */
@media (max-width: 992px) {
  .flex-row {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    padding: 20px;
  }
}


.submission-section {
  background: #fff;
  max-width: 100%;
  margin: 30px auto;
  padding: 40px 50px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Sarlavha */
.submission-section h2 {
  margin-top: 1px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
}

/* Bloklar */
.submission-block {
  margin-bottom: 20px;
}

.submission-block p {
  margin: 0;
  line-height: 1.5;
}

/* Matn ichidagi urg‘ular */
.submission-block em {
  font-style: normal;
  font-weight: 500;
  color: #222;
}

.submission-block strong {
  font-weight: 700;
  color: #000;
}

/* Maxsus highlight bo‘lim */
.submission-block.highlight {
  border-left: 4px solid #1a3d8f;
  /* ko‘k aksent */
  background: #f3f6fb;
  padding: 15px 20px;
  border-radius: 4px;
  margin-top: 25px;
}

.submission-block.highlight .tag {
  background: #eef3fa;
  padding: 3px 8px;
  border-radius: 4px;
  color: #0d2b5c;
  font-weight: 600;
  margin: 0 4px;
}

/* Pastdagi linklar */
.submission-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 25px;
  border-top: 1px solid #e5e9f0;
  padding-top: 20px;
}

.submission-links a {
  color: #14238a;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.submission-links a::before {
  content: "📄";
  /* rasmga o‘xshash icon */
  font-size: 16px;
}

.submission-links a:hover {
  text-decoration: underline;
  color: #0c185a;
}

/* Responsive */
@media (max-width: 768px) {
  .submission-section {
    padding: 25px 20px;
  }

  .submission-links {
    flex-direction: column;
    gap: 12px;
  }
}

.site-footer {
  background-color: #034f9c;
  color: #ecf0f1;
  padding: 30px 0 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.footer-container {
  max-width: 1410px;
  min-height: 200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  /* logo chapda, kontakt o‘ngda */
  align-items: center;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 240px;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.site-footer h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

.footer-col a {
  display: inline-block;
  margin-bottom: 10px;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #82bcfb;
}

.footer-col a img {
  vertical-align: middle;
  margin-right: 6px;
}

/* Responsive dizayn */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-col {
    min-width: 100%;
  }

  .logo-col {
    margin-bottom: 20px;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }
}