:root {
      --accent-1: #7c3aed;
      --accent-2: #06b6d4;
      --muted: #d1d5db;
      --bg: #0b1120;
    }
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

a {
    text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 0 !important;
    outline-offset: 0 !important
}
.container {
    position: relative;
    box-sizing: border-box;
    width: calc(100% - 160px);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

   :root {
      --accent-1: #7c3aed;
      --accent-2: #06b6d4;
      --muted: #d1d5db;
      --bg: #0b1120;
    }

    body {
      margin: 0;
      font-family: "Poppins", sans-serif;
      background: var(--bg);
      color: white;
      overflow-x: hidden;
    }

    /* ===== NAVIGATION ===== */
    .nav {
      position: fixed;
      top: 18px;
      left: 0;
      width: calc(100% - 36px);
      margin: 0 18px;
      padding: 12px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      backdrop-filter: blur(8px);
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      border-radius: 5px;
      box-shadow: 0 6px 30px rgba(2,6,23,0.6);
      z-index: 1000;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo {
      width: 46px;
      height: 46px;
      border-radius: 5px;
      background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 20px;
    }

    nav {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    nav a {
      color: var(--muted);
      text-decoration: none;
      font-weight: normal;
      padding: 8px 12px;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    nav a:hover {
      color: white;
      background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    }

    .cta {
      background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
      color: white !important;
      padding: 8px 16px;
      border-radius: 999px;
      font-weight: normal;
      box-shadow: 0 4px 20px rgba(7,9,22,0.5);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
    }

    @media (max-width: 900px) {
      nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        flex-direction: column;
        background: rgba(15,23,36,0.95);
        border-radius: 12px;
        padding: 20px;
        width: 220px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.6);
      }
      nav.active {
        display: flex;
      }
      .menu-toggle {
        display: block;
      }
    }

    /* ===== HERO SECTION ===== */
    .hero {
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(11, 17, 32, 0.65);
      backdrop-filter: blur(2px);
    } */
    .hero-img img{
      width: 100%;
      height: 100%;
      display: block;
    }
    .hero-img{
      flex: 1;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      animation: fadeIn 1.2s ease forwards;
      padding-left: 20px;
    }

    .city-select {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 5px;
      padding: 10px 16px;
      color: white;
      font-size: 16px;
      backdrop-filter: blur(6px);
      outline: none;
      cursor: pointer;
      width: 100%;
    }

    .city-select option {
      color: black;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 800;
      line-height: 1.2;
    }

    .hero p {
      color: var(--muted);
      font-size: 1.2rem;
    }

    .contact-btn {
      background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
      color: white;
      padding: 12px 28px;
      border: none;
      border-radius: 999px;
      font-size: 1rem;
      font-weight: 400;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .contact-btn:hover {
      transform: scale(1.05);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
     .categories-section {
    padding: 100px 20px;
    background: radial-gradient(circle at top left, rgba(124,58,237,0.15), rgba(6,182,212,0.1) 60%), #0b1120;
    color: white;
    text-align: center;
  }

  .categories-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .categories-section .subtitle {
    color: var(--muted);
    margin-bottom: 60px;
    font-size: 1.1rem;
  }

  .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .category-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    cursor: pointer;
  }

  .category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
    transition: transform 0.5s ease;
  }

  .category-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
  }

  .category-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  }

  .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(6,182,212,0.3);
  }

  .category-card:hover img {
    transform: scale(1.08);
  }
   .about-dual {
    background: linear-gradient(180deg, rgba(124,58,237,0.1), rgba(6,182,212,0.05)), #0b1120;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    color: white;
  }

  .about-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .about-block.reverse {
    flex-direction: row-reverse;
  }

  .about-text {
    flex: 1;
  }

  .about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .about-text p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .about-btn {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    color: white;
    border: none;
    padding: 10px 26px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(6,182,212,0.3);
  }

  .about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(124,58,237,0.4);
  }

  .about-img {
    flex: 1;
    position: relative;
  }

  .about-img::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    filter: blur(25px);
    opacity: 0.4;
    z-index: 0;
  }

  .about-img img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  @media (max-width: 900px) {
    .about-block {
      flex-direction: column;
      text-align: center;
    }
    .about-block.reverse {
      flex-direction: column;
    }
    .about-img {
      width: 90%;
    }
  }
  .models-section {
    background: linear-gradient(180deg, rgba(6,182,212,0.05), rgba(124,58,237,0.1)), #0a0f1a;
    text-align: center;
    padding: 100px 20px;
    color: white;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .section-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
  }

  .models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 0 auto;
  }

  .model-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(124,58,237,0.2);
    transition: all 0.4s ease;
    cursor: pointer;
  }

  .model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px rgba(6,182,212,0.4);
  }

  .model-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }

  .model-info {
    padding: 20px;
  }

  .model-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
  }

  .model-info p {
    color: var(--muted);
    font-size: 0.95rem;
  }
   .why-choose {
    background: linear-gradient(180deg, rgba(124,58,237,0.08), rgba(6,182,212,0.05)), #0b1120;
    color: white;
    text-align: center;
    padding: 100px 20px;
  }

  .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}


  .why-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 8px 30px rgba(124,58,237,0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
  }

  .why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(6,182,212,0.3);
  }

  .why-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .why-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .why-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 1rem;
  }
  .model-grid {
    background: linear-gradient(180deg, rgba(6,182,212,0.05), rgba(124,58,237,0.1)), #0a0f1a;
    padding: 80px 20px;
    text-align: center;
    color: white;
  }

  .model-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 0 auto;
  }

  .model-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(124,58,237,0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
  }

  .model-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(6,182,212,0.3);
  }

  .model-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }

  .model-info {
    padding: 20px;
    text-align: center;
  }

  .model-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 5px 0;
  }

  .model-role {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .model-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }

  .model-tags span {
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
  }

  .availability {
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .contact-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .call-btn, .whatsapp-btn {
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .call-btn {
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    color: white;
  }

  .call-btn:hover {
    box-shadow: 0 0 15px rgba(124,58,237,0.5);
  }

  .whatsapp-btn {
    background: linear-gradient(90deg, #25D366, #128C7E);
    color: white;
  }

  .whatsapp-btn:hover {
    box-shadow: 0 0 15px rgba(37,211,102,0.5);
  }

  @media (max-width: 768px) {
    .model-box img { height: 280px; }
  }
  @media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.services-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 40px 25px;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

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

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.locations-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  text-align: center;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.location-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
}

.location-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.location-card:hover img {
  transform: scale(1.05);
}

.location-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  padding: 20px;
  text-align: center;
}

.location-info h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

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

@media (max-width: 600px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}
.faq-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 50px;
}
.footer {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 80px 0 40px;
  color: white;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff8ae2;
}

.contact-info li {
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.social-icons a:hover {
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(255,255,255,0.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

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

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}