/* Global styles */
body {
    font-family: "Arial", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  button {
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  
  /* Loader */
  #loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
  }     
  
  .logo {
    width: 50px; /* Logoning kengligi */
    height: auto; /* Nisbiy balandlik */
    object-fit: contain; /* Rasmni konteynerga moslashtirish */
  }
  
  
  .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
  }
  
  .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .title {
    font-size: 1.5rem;
    color: #333;
  }
  
  .login-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
  }
  
  .login-btn:hover {
    background-color: #0056b3;
  }
  
  /* Navbar */
  .navbar {
    background-color: #f3f3f3;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
  }
  
  .navbar a {
    color: #333;
    font-weight: bold;
  }
  
  .navbar a:hover {
    color: #007bff;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e0f7fa;
    padding: 40px;
  }
  
  .hero-text h2 {
    font-size: 2rem;
    color: #333;
  }
  
  .full-bg-hero {
    background-image: url('building.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px; /* Yoki kerakli balandlik */
    display: flex;
    align-items: center;
    padding: 40px;
    color: white; /* Matn ko‘rinib turishi uchun */
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }
  
  .social-icon {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: #0056b3;
  }
  
  .social-icon.telegram {
    background-color: #0088cc;
  }
  
  .social-icon.telegram:hover {
    background-color: #0077b5;
  }
  
  .social-icon.facebook {
    background-color: #3b5998;
  }
  
  .social-icon.facebook:hover {
    background-color: #2d4373;
  }
  .text-1 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
  
  }
  .text-2 {
    margin-top: 5px;
  }
  
  
  .cta-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 20px;
  }
  
  .cta-button:hover {
    background-color: #0056b3;
  }
  
  
  .registry-info {
    padding: 40px 20px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    color: #333;
  }
  
  .registry-info .doc-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .registry-info .doc-date,
  .registry-info .doc-number {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
  }
  
  .info-block {
    margin-top: 30px;
  }
  
  .info-block h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #007bff;
    font-weight: 600;
  }
  
  .info-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  
  .info-block th,
  .info-block td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    font-size: 0.95rem;
  }
  
  .info-block th {
    background-color: #f0f0f0;
    font-weight: 600;
  }
  .warning-text {
    color: red; /* Matnning qizil rangi */
    background-color: rgba(255, 0, 0, 0.1); /* Shaffof qizil orqa fon */
    font-weight: 600;
    padding: 15px;
    margin-top: 1rem;
    text-align: center; /* Matnni markazga joylashtirish */
    border-radius: 5px; /* Biroz yumaloq burchaklar */
    font-size: 1rem;
  }
  
  
  
  @media (max-width: 768px) {
    .info-block table,
    .info-block th,
    .info-block td {
      font-size: 0.85rem;
    }
  
    .registry-info .doc-title {
      font-size: 1.5rem;
    }
  }
  
  
  /* Search Section */
  
  
  /* Services Section */
  .services {
    background-color: #ffffff;
    padding: 40px;
  }
  
  .service-list {
    display: flex;
    gap: 30px;
  }
  
  .service {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .service h3 {
    color: #333;
  }
  
  .service p {
    color: #555;
  }
  
  .steps ul {
    list-style: none;
    padding: 0;
  }
  
  .steps li {
    margin-bottom: 15px;
    color: #555;
  }
  
  .instruction-video {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
  }
  
  /* Footer */
  /* Footer */
  .footer {
    background-color: #ffffff;
    color: #000000;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 30px;
    margin-bottom: 20px;
  }
  
  .footer-left,
  .footer-middle,
  .footer-links,
  .footer-social {
    flex: 1;
  }
  
  .footer-left p,
  .footer-middle p,
  .footer-links p,
  .footer-social p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .footer-links a,
  .footer-social a {
    color: #000000;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  .footer-links a:hover,
  .footer-social a:hover {
    color: #007bff;
  }
  
  /* Footer bo'limi */
  /* Footer */
  .footer {
    background-color: #ffffff;
    color: #000000;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Footerning yuqori qismi */
  .footer-top {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
  }
  
  /* Logo va headerdagi yozuv */
  .footer-logo-wrapper {
    display: flex;
    align-items: center;
  }
  
  .footer-logo {
    width: 50px;  /* Logoni kichraytirish */
    height: auto;
    margin-right: 10px;
  }
  
  .footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
  }
  
  /* Kulrang chiziq */
  .footer-divider {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin: 20px 0;
  }
  
  /* Footer kontenti */
  .footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 30px;
    margin-bottom: 20px;
  }
  
  .footer-left,
  .footer-middle,
  .footer-links,
  .footer-social {
    flex: 1;
  }
  
  .footer-left p,
  .footer-middle p,
  .footer-links p,
  .footer-social p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .footer-links a,
  .footer-social a {
    color: #000000;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  .footer-links a:hover,
  .footer-social a:hover {
    color: #007bff;
  }
  
  /* Footer-ning pastki qismi (doimiy ravishda pastda turish) */
  .footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    background-color: #ccc;
    width: 100%;
    padding: 10px 0;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  
  /* Media Queries for responsiveness */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-img {
      width: 80%;
      margin-top: 20px;
    }
  
    .service-list {
      flex-direction: column;
      align-items: center;
    }
  
    .service {
      width: 80%;
      margin-bottom: 20px;
    }
  
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-right {
      margin-top: 20px;
    }
  }
  