  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
  }

  body {
    background: #fff;
    color: #111;
    overflow-x: hidden;
  }

  .container {
    width: 94%;
    max-width: 1550px;
    margin: 0 auto;
  }

  .section {
    padding: 170px 0;
    opacity: 0;
    transform: translateY(60px);
    transition: 0.8s ease;
  }

  .section.show {
    opacity: 1;
    transform: translateY(0);
  }

  .big-title {
    font-size: 64px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
  }

  .subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 90px;
    font-size: 20px;
  }

  /* ULTRA PREMIUM NAVBAR */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    z-index: 1000;
    transition: 0.3s;
    
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
  }

  .logo {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #111;
  }

  .logo span {
    color: #ff4f87;
  }

  .menu {
    display: flex;
    gap: 65px;
  }

  .menu a {
    color: #111;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
  }

  .menu a:hover {
    color: #65005b;
  }

  .nav-btn {
    background: #65005b;
    color: #fff;
    padding: 15px 36px;
    border-radius: 40px;
    font-size: 14px;
    text-decoration: none;
  }

  /* HERO BG IMAGE */
  .hero {
    height: 100vh;
    background:
      linear-gradient(rgba(2, 2, 2, 0.397), rgba(0, 0, 0, 0.937)),
      url("./Gemini_Generated_Image_95gbq195gbq195gb.png") center/cover no-repeat;
    margin-top: 100px;
    display: flex;
    align-items: center;
  }

  .hero-content {
    max-width: 750px;
    color: white;
    animation: fadeUp 1.2s ease;
  }

  .hero-content h1 {
    font-size: 82px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
  }

  .hero-content span {
    color: #ffffff;
  }

  .hero-content p {
    font-size: 22px;
    color: #ddd;
    margin-bottom: 50px;
  }

  .hero-buttons {
    display: flex;
    gap: 25px;
  }

  .btn-primary {
    background: #65005b;
    color: #fff;
    padding: 20px 45px;
    border-radius: 40px;
    font-size: 15px;
    text-decoration: none;
  }

  .btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 20px 45px;
    border-radius: 40px;
    font-size: 15px;
    text-decoration: none;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(50px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ABOUT */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .about img {
    width: 100%;
    border-radius: 30px;
    transition: 0.5s;
  }

  .about img:hover {
    transform: scale(1.05);
  }

  .about-text h2 {
    font-size: 54px;
    margin-bottom: 25px;
  }

  .about-text p {
    font-size: 19px;
    color: #666;
    margin-bottom: 15px;
  }

  /* FEATURES */
  .features {
    background: #fff0f5;
  }

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

  .feature-card {
    background: #fff;
    padding: 60px 45px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
  }

  .feature-card:hover {
    transform: translateY(-15px);
  }

  .feature-card h4 {
    margin-top: 15px;
    font-size: 26px;
  }

  .feature-card p {
    margin-top: 10px;
    color: #777;
  }

  /* TEAM */
  .team {
    background: #fafafa;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
  }

  .team-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
  }

  .team-card:hover {
    transform: translateY(-12px);
  }

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

  .team-info {
    padding: 35px;
    text-align: center;
  }

  .team-info h4 {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .team-info span {
    color: #65005b;
  }

  /* VIDEO SECTION */
  .video-section {
    background: #111;
    color: #fff;
    text-align: center;
  }

  .video-section video {
    width: 100%;
    max-width: 900px;
    border-radius: 25px;
    margin-top: 40px;
  }

  /* GALLERY */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
  }

  .gallery-grid img {
    width: 100%;
    border-radius: 25px;
    transition: 0.4s;
  }

  .gallery-grid img:hover {
    transform: scale(1.05);
  }

  /* CLIENT LOGOS */
  .clients {
    background: #fafafa;
  }

  .clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
  }

  .client {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    color: #777;
  }

  /* STATS */
  .stats {
    background: #65005b;
    color: #fff;
    text-align: center;
  }

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

  .stat h3 {
    font-size: 68px;
    font-weight: 700;
  }

  .stat p {
    margin-top: 10px;
    font-size: 19px;
  }

  /* CONTACT */
  .contact {
    background: #fafafa;
  }

  .contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
  }

  .contact form {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .contact input,
  .contact textarea {
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #ddd;
    font-size: 16px;
  }

  .contact button {
    padding: 20px;
    background: #ff4f87;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    cursor: pointer;
  }

  /* FOOTER */
  footer {
    background: #111;
    color: #fff;
    padding: 120px 0;
    text-align: center;
  }

  footer h2 {
    color: #ff4f87;
    margin-bottom: 15px;
    font-size: 36px;
  }

  footer p {
    color: #aaa;
    margin-top: 5px;
  }

  .logotib {
    width: 100px;
  }

  .contact .container {
    display: flex;
  }

  .contact {
       background: #fafafa;

  }

  .zor {
    max-width: 400px;
    height: 400px;
    background-color: #000000e0;
    border-radius: 15px;
    color: #eee;
    font-size: 15px;


  }


  .malumot {
    font-size: 30px;
    padding: 30px;

  }

  .malumot i {
    background-color: #4141417a;
    font-size: 35px;
    border-radius: 50px;
  }

  a i {
    font-size: 30px;
  }





  /* RESPONSIVE */
  @media(max-width:900px) {
    .about {
      grid-template-columns: 1fr;
    }

    .contact-box {
      grid-template-columns: 1fr;
    }



    .hero-content h1 {
      font-size: 48px;
    }

    .big-title {
      font-size: 40px;
    }

  }

  /* ===================================
   TELEFON UCHUN TO‘LIQ RESPONSIVE FIX
=================================== */

  @media (max-width: 768px) {

    /* NAVBAR */
    nav {
      flex-wrap: wrap;
      gap: 15px;
    }

    .menu {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      display: none;
    }

    .logotib {
      width: 110px;
    }

    /* HERO */
    .hero {
      padding: 70px 20px;
      text-align: center;
    }

    .hero h1 {
      font-size: 26px;
      line-height: 1.3;
    }

    .hero-buttons {
      flex-direction: column;
      gap: 10px;
    }

    /* ABOUT */
    .about {
      flex-direction: column;
    }

    .about img {
      width: 100%;
    }

    .about-text {
      width: 100%;
    }

    /* TEAM */
    .team-grid {
      grid-template-columns: 1fr;
    }

    /* GALLERY */
    /* =========================
   GALLERY MOBILE FIX
========================= */

    /* Kompyuter (o'zgarmaydi) */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 15px;
    }

    /* Telefon */
    @media (max-width: 600px) {

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .gallery-grid img {
        width: 100%;
        height: auto;
      }

    }

    /* STATS */
    .stats-grid {
      grid-template-columns: 1fr;
    }

    /* VIDEO */
    video {
      width: 100%;
    }

    /* CONTACT */
    .contact .container {
      flex-direction: column;
      justify-content: center;

    }

    iframe {
      width: 100%;
      height: 250px;
      border-radius: 20px;
    }

    /* FOOTER */
    footer {
      text-align: center;
    }


  }


  /* ==================================
   HEADER RESPONSIVE (PHONE + TABLET)
================================== */

  @media (max-width: 992px) {
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      flex-wrap: nowrap;
    }

    /* Menu yashiriladi */
    .menu {
      display: none;

    }

    /* Contact button yonida turadi */
    .nav-btn {
      display: inline-block;
      padding: 8px 18px;
      font-size: 16px;
      white-space: nowrap;
      display: none;

    }

    /* Logo kichrayadi */
    .logotib {
      width: 120px;
      height: auto;
    }
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 10px 20px;
  }

  .menu {
    display: flex;
    gap: 25px;
  }

  .nav-btn {
    padding: 8px 18px;
  }

  .logotib {
    width: 120px;
    height: auto;
  }

  /* HAMBURGER */
  .hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;


  }

  /* MOBILE RESPONSIVE */
  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      gap: 15px;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: #fff;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .hamburger {
      display: block;
      margin-right: 0px;
    }

    nav {
      position: relative;
    }

    .contact {
      margin-left:0px;


    }

    .malumot {
      background: #6d0067;
      padding: 20px;
      border-radius: 20px;
      margin-top: 10px;
      /* mana shu ajratadi */
    }

    .contact iframe {
      width: 100%;

      border-radius: 20px;
      display: block;
      margin-bottom: 14px;
      margin-right: 2px;
    }




  }


  nav a i {
    display: block;
  }

  .hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      top: 70px;
      right: 20px;
      padding: 20px;
      border-radius: 10px;
    }

    .hamburger {
      display: block;
    }
  }

  /* Blur background */
.blur-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.3);
  z-index: 5;
  display: none;
}

/* Menu ustida chiqsin */
.menu {
  z-index: 10;
}