 /* Global Font Styles */
body {
    font-family: 'Anton', sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: 'Anton', sans-serif;

}
 header {
      position: absolute;
      top: 0;
      width: 100%;
      padding: 20px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10;
      flex-wrap: wrap;
    }

    .logo {
      font-weight: bold;
      font-size: 1.6rem;
      background: white;
      color: black;
      padding: 6px 14px;
      border-radius: 5px;
      letter-spacing: 1px;
    }

    nav {
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      position: relative;
      font-size: 1rem;
    }

    nav a::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #ff7f50;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
    }

    nav a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .contact-btn {
      background: white;
      color: black;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: bold;
      text-decoration: none;
      margin-top: 10px;
    }
/*
    .hero {
      position: relative;
      height: 100vh;
      background: url('../images/logo/about-banner.png') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 90%;
      color: #fff;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 8vw, 5rem);
      font-family: 'Anton', sans-serif;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .hero p {
      font-size: clamp(1rem, 2vw, 1.4rem);
      margin-top: 15px;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 30px;
      right: 30px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 0.85rem;
      font-weight: bold;
      letter-spacing: 1px;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
    }

    .scroll-indicator span {
      font-size: 1.5rem;
      transform: rotate(90deg);
      margin-top: 5px;
    }*/
    .hero {
    position: relative;
    height: 100vh;
    background: url('../images/logo/about-banner.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-family: 'Inter', sans-serif;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 900px;
  }

  .hero h1 {
    font-size: 3.5rem;
    font-family: 'Anton', sans-serif;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 30px;
  }

  .hero-call-btn {
    display: inline-block;
    background-color: #ff3b3b;
    padding: 14px 32px;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease;
  }

  .hero-call-btn:hover {
    background-color: #e22a2a;
  }

  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    color: #aaa;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 2;
  }

  .scroll-indicator span {
    display: block;
    font-size: 1.5rem;
    margin-top: 5px;
  }

  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2rem;
    }

    .hero p {
      font-size: 1rem;
    }

    .hero-call-btn {
      font-size: 0.95rem;
      padding: 12px 26px;
    }
  }
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  nav.active {
    display: flex;
  }

  .contact-btn {
    margin-top: 10px;
  }
}

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px;
      }

      nav {
        justify-content: flex-start;
        gap: 15px;
        margin-top: 10px;
      }

      .contact-btn {
        margin-left: auto;
        margin-top: 15px;
      }

      .scroll-indicator {
        right: 10px;
        font-size: 0.7rem;
      }
    }

    @media (max-width: 480px) {
      .scroll-indicator {
        display: none;
      }

      .hero-content {
        text-align: center;
      }
    }

    .about-section {
  background-color: #111;
  color: white;
  padding: 80px 10%;
}

.about-section h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  /*max-width: 800px;*/
  margin: 0 auto;
 
}


.full-image-section img {
    width: 100%;
    height: auto;
    display: block;
}


.services-section {
  background-color: #111;
  color: white;
  padding: 80px 10%;

}

.services-title {
  font-family: 'Anton', sans-serif;
  font-size: 2.8rem;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.service-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-item p {
  color: #aaa;
  margin-bottom: 20px;
}

.call-btn {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  border:1px solid #fff;
}

  .cta-section {
    position: relative;
    background: url('../images/logo/call-now.avif') no-repeat center center/cover;
    padding: 100px 10%;
    text-align: center;
    color: white;
    overflow: hidden;
  }

  /* Dark overlay for readability */
  .cta-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }

  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 830px;
    margin: 0 auto;
  }

  .cta-content h2 {
    font-size: 2.8rem;
    font-family: 'Anton', sans-serif;
    margin-bottom: 30px;
  }

  .cta-content p {
    font-size: 1.2rem;
    color: #ddd;
    /*line-height: 1.8;*/
    margin-bottom: 40px;
    white-space: pre-line; /* preserve line breaks */
  }

  .cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ff3b3b;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s;
  }

  .cta-btn:hover {
    background-color: #e22a2a;
  }

  @media (max-width: 600px) {
    .cta-content h2 {
      font-size: 2rem;
    }
    .cta-content p {
      font-size: 1rem;
    }
    .cta-section {
      padding: 60px 5%;
    }
  }

.offer-section {
    padding: 60px 20px;
    background: #000;
    text-align: center;
  }
  .offer-section .container {
    max-width: 900px;
    margin: 0 auto;
  }
  .offer-section h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 40px;
  }
  .offer-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .offer-card {
    background: #111;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 6px 15px rgb(255 255 255 / 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    color: #eee;
  }
  .offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgb(255 255 255 / 0.2);
  }
  .offer-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #4a90e2;
  }
  .offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
  }
  .offer-card p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
  }
  @media (max-width: 700px) {
    .offer-cards {
      grid-template-columns: 1fr;
    }
    .offer-section h2 {
      font-size: 2rem;
    }
  }

  .plans-section {
    padding: 60px 20px;
    background: #000;
    color: #eee;
    text-align: center;
  }
  .plans-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  .plans-section h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .plans-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .plan-card {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 1);
    padding: 30px 25px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
  }
  .plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.7);
    border-color: #4a90e2;
  }
  .plan-card.popular {
    border-color: #fff
    box-shadow: 0 12px 35px rgba(255, 255, 255, 1);
  }
  .plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
  }
  .plan-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
  }
  .plan-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #ccc;
  }
  .plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    width: 100%;
    text-align: left;
  }
  .plan-card ul li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    padding-left: 22px;
    position: relative;
    color: #ccc;
  }
  .plan-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
  }
  .btn-call {
    background: transparent;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border:1px solid #fff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  .btn-call:hover {
    background: #357abd;
    box-shadow: 0 8px 20px rgba(53, 122, 189, 0.9);
  }
  @media (max-width: 900px) {
    .plans-cards {
      flex-direction: column;
      align-items: center;
    }
    .plan-card {
      width: 90%;
      max-width: 400px;
      margin-bottom: 30px;
    }
  }



   .disclaimer-section {
    background-color: #121212;
    color: #bbb;
    padding: 40px 15px;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    border-top: 1px solid #333;
  }
  .disclaimer-section .container {
    max-width: 900px;
    margin: 0 auto;
  }
  .disclaimer-section h3 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }
  .disclaimer-section p a {
    color: #fff;
    text-decoration: underline;
  }



    .site-footer {
    background-color: #121212;
    color: #bbb;
    padding: 20px 15px;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #333;
  }
  .site-footer .container {
    max-width: 900px;
    margin: 0 auto;
  }
  .site-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
  }
  .site-footer a:hover {
    color: #fff;
    text-decoration: underline;
  }

  .testimonials-section {
    background-color: #0e0e0e;
    color: #ddd;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
  }

  .testimonials-section h2 {
    font-size: 2.2rem;
    color: #aad8ff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .testimonials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonial-card {
    background: #1a1a1a;
    padding: 25px 30px;
    border-radius: 12px;
    max-width: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-6px);
  }

  .testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ccc;
  }

  .testimonial-card h4 {
    font-size: 1rem;
    font-weight: bold;
    color: #4a90e2;
  }

  @media (max-width: 768px) {
    .testimonials {
      flex-direction: column;
      align-items: center;
    }
  }

  .contact-section {
    background-color: #0e0e0e;
    color: #ddd;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
  }

  .contact-container {
    max-width: 900px;
    margin: auto;
  }

  .contact-section h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 10px;
  }

  .contact-section p {
    color: #bbb;
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .contact-item {
    background: #1a1a1a;
    padding: 25px 30px;
    border-radius: 10px;
    flex: 1 1 250px;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  }

  .contact-item h3 {
    color: #aad8ff;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .contact-item p {
    font-size: 0.95rem;
    color: #ccc;
  }

  .contact-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }

  .contact-item a:hover {
    text-decoration: underline;
    color: #fff;
  }

  @media (max-width: 768px) {
    .contact-grid {
      flex-direction: column;
      align-items: center;
    }
  }