    :root {
      --primary: #ffcc00;      /* Mexican gold */
      --accent: #0033ff;       /* Electric blue */
      --dark: #0f0f0f;
      --light: #ffffff;
      --gray: #f5f5f5;
    }


    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
  
    
.logo1 {
  padding-left: 100px;
  margin: 0;
}

.logo1 img {
  height: 50px;
  width: auto;
  object-fit: contain;
  padding: 0;
  display: block;
}
    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--dark);
      background: var(--light);
    }
    h1, h2, h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      line-height: 1.2;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    img {
      max-width: 100%;
      display: block;
    }
    .btn {
      display: inline-block;
      background: var(--primary);
      color: var(--dark);
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      font-weight: 700;
      transition: 0.3s;
      border: none;
      cursor: pointer;
    }
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    .container {
      width: 90%;
      max-width: 1100px;
      margin: auto;
    }
    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 0;
    }
    nav .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent);
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-weight: 500;
      transition: color 0.3s;
    }
    .nav-links a:hover {
      color: var(--accent);
    }
    .hamburger {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }
    /* HERO */
    header {
      padding: 8rem 0 4rem;
      background: linear-gradient(135deg, var(--gray) 0%, var(--light) 100%);
    }
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 3rem;
    }
    .hero-txt {
      flex: 1 1 400px;
    }
    .hero-txt h1 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      margin-bottom: 1rem;
    }
    .hero-txt p {
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }
    .hero-img {
      flex: 1 1 400px;
      text-align: center;
    }
    .hero-img img {
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    /* SERVICES */
    .services {
      padding: 4rem 0;
    }
    .services h2 {
      text-align: center;
      margin-bottom: 3rem;
      font-size: 2rem;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
    .card {
      background: var(--gray);
      padding: 2.5rem 2rem;
      border-radius: 15px;
      text-align: center;
      transition: 0.3s;
    }
    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    .card i {
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 1rem;
    }
    .card h3 {
      margin-bottom: 1rem;
    }
    /* CTA */
    .cta {
      background: var(--accent);
      color: var(--light);
      padding: 4rem 0;
      text-align: center;
      border-radius: 20px;
      margin: 3rem auto;
    }
    .cta h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .cta .btn {
      background: var(--primary);
      color: var(--dark);
      margin-top: 1rem;
    }
    /* FOOTER */
    footer {
      text-align: center;
      padding: 2rem 0;
      font-size: 0.9rem;
      color: #777;
    }



@media (max-width: 768px) {
  .build-section .decor-icon {
    width: 70px;
 }
}

/* Packages Section */
.packages-title {
  font-size: 48px;
  color: #2f2f2f;
}

/* Add a gradient background to smoothly transition from the build section */
.packages {
  padding-bottom: 1rem;
  background: linear-gradient(180deg, #f2faff, #e4f3fb, #d6ecf7);
  background-size: 400% 400%;
  padding: 80px 20px;
  
   /* match spacing with build section */
  
}






@media (max-width: 768px) {
  .packages-title {
    font-size: 32px;
  }
}



/* Build Section */
.build-section {
  margin-top: 50px;
background: linear-gradient(180deg, #ffffff 0%, #f2faff 70%, #e4f3fb,#f2faff 100%);


  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.build-section .content {
  max-width: 800px;
  margin: 0 auto; /* center content */
  text-align: center;
}


.build-section .decor-icon {
  position: absolute;
  bottom: 0;
  width: 120px;
}

.package-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center children like logo images */
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.package-card img {
  border-radius: 8px;
}

.package-card .price {
  color: #028bd0;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}







    /* RESPONSIVE */
    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        right: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--light);
        width: 200px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 2rem 1rem;
        transition: right 0.3s;
      }
      .nav-links.active {
        right: 0;
      }
      .hamburger {
        display: block;
      }
    }
