

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Nunito', sans-serif;
      line-height: 1.6;
      background: #fdfdf7;
      color: #1a1a1a;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Cinzel', serif;
      font-weight: 700;
      line-height: 1.3;
    }

    /* Smooth Scroll */
    html {
      scroll-behavior: smooth;
    }

    /* Hero Section */
        .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: center;
      background-image: url('https://i.imgur.com/DWCWWNQ.jpeg');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      width: 100%;
      min-height: 600px;
      padding: 60px 20px;
      text-align: left;
      position: relative;
      height: 20vh
    }

    .hero .container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }


    .container {
    max-width: 960px; /* narrower than 1200px */
    margin: 0 auto;
    padding: 0 50px; /* add side padding to avoid edge-clinging */
    width: 100%;
    }


    .logo {
      display: flex;
      align-items: center;
      font-size: 1rem;
      font-weight: bold;
      margin-bottom: 20px;
      width: 100%; /* Ensure the container takes full width */
    }

    .logo img {
      margin-right: 10px;
      height: 40px;
    }

    .hero-content {
      max-width: 600px;
      margin-top: 20px;
    }

      @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }

    .hero p {
      font-size: 1rem;
    }

    .hero-buttons a {
      padding: 10px 16px;
      font-size: 0.9rem;
    }
  }

    .hero p {
      margin-bottom: 30px;
      font-size: 1.1rem;
      font-weight: 400;
    }

    .hero-buttons a {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 5px;
      margin-right: 10px;
      font-weight: 700;
      text-decoration: none;
      font-family: 'Nunito', sans-serif;
      font-size: 1rem;
      transition: all 0.3s ease-in-out;
    }

    .hero-buttons a:hover {
      box-shadow: 0 0 15px rgba(255, 208, 0, 0.8);
    }

    .btn-primary {
      background-color: #C9A227;
      color: #1E1E2F;
    }

    .btn-secondary {
      background-color: #ffffff;
      color: #1E1E2F;
      border: 1px solid #969eb0;
    }

    .hero-image {
      flex: 1;
      margin-top: 20px;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    /* Services Section */
    .services {
      background: #fafafa;
      padding: 20px 10px;
      text-align: center;
    }

    .services .container {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      padding-top: 20px;
    }

    .service {
      position: relative;
      width: 300px;
      height: 300px;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .service:hover {
      transform: translateY(-5px);
    }

    /* Hide non-hover content when hovering */
    .service:hover > *:not(.service-hover) {
      visibility: hidden;
    }

    .service-inner {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 30px 20px;
      text-align: center;
      z-index: 1;
    }

    .service h3 {
      margin-top: 10px;
      font-size: 1.5rem;
    }

    .service-hover {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(10, 29, 66, 0.95);
      color: #ffffff;
      padding: 20px;
      font-size: 0.95rem;
      line-height: 1.5;
      opacity: 0;
      transition: opacity 0.3s ease;
      overflow-y: auto;
    }

    .service:hover .service-hover {
      opacity: 1;
    }

    .service img {
      width: 50px;
      margin-bottom: 15px;
    }

    /* Programs Section */
    .programs {
      padding: 60px 20px;
      background-color: #f4f4f4;
    }

    .programs .container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .about-content {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .about-text {
      flex: 1;
      max-width: 500px;
    }

    .about-text h3 {
      margin-bottom: 20px;
      font-size: 2rem;
    }

    .about-text p {
      font-size: 1rem;
    }

    .about-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    /* About Us Section */
    .about-us {
      padding: 60px 20px;
      background: #ffffff;
    }

    .about-content {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1;
    }

    .about-text h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .about-text p {
      margin-bottom: 20px;
      font-size: 1rem;
    }

    .about-image {
      flex: 1;
    }

    .about-image img {
      width: 100%;
      border-radius: 10px;
    }

    /* Contact Section */
    .contact {
      background: #1E1E2F;
      color: #ffffff;
      padding: 60px 20px;
    }

    h1.contact-header {
      font-size: 4rem; 
      font-weight: bold; 
      margin-bottom: 30px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-bottom: 30px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 15px;
      border: none;
      border-radius: 5px;
      width: 500px;
    }

    .contact-form button {
      width: 160px;
      align-self: flex-start;
      background-color: #d4af37;
      color: #1E1E2F;
      font-weight: 700;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
    }

    .contact-form button:hover {
      box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    }

    .contact-info p {
      margin-bottom: 10px;
    }

    .quick-links {
      margin-top: 20px;
    }

    .quick-links a {
      color: #ffffff;
      text-decoration: underline;
    }

/* Pricing Section Styling */
        .pricing-title {
          padding: 20px 10px;
          background-color: #ffffff;
          text-align: center;
        }

        .container {
            width: 90%;
            margin: 0 auto;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* 280px is the minimum size */
            gap: 20px;
            padding: 40px 0;
        }
        .pricing-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
            transition: transform 0.3s;
        }
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        .pricing-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
        }
        .pricing-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .pricing-card li {
            font-size: 16px;
            margin: 10px 0;
            color: #555;
        }
        .pricing-card .price {
            font-size: 22px;
            font-weight: bold;
            color: #27ae60;
            margin-top: 20px;
        }
        .pricing-card .price span {
            font-size: 18px;
            font-weight: normal;
        }
        .pricing-card .additional-price {
            font-size: 14px;
            color: #e74c3c;
            margin-top: 10px;
        }

    /* FAQ Section */
    .faq {
      padding: 60px 20px;
      background: #f9f9f9;
      text-align: center;
    }

    .faq h2 {
      font-size: 2rem;
      margin-bottom: 30px;
    }

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

    .faq-item {
      border-bottom: 1px solid #ddd;
      padding: 10px 0;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      background: #fff;
      border: none;
      padding: 15px;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .faq-question:hover {
      background: #EFECE6;
    }

    .faq-question .arrow {
      transition: transform 0.3s ease;
    }

    .faq-item.active .arrow {
      transform: rotate(90deg);
    }

    .faq-answer {
      display: none;
      padding: 0 15px 15px 15px;
      font-size: 0.95rem;
      color: #444;
    }

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

    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .modal-content {
      background: #fff;
      margin: 5% auto;
      padding: 2rem;
      width: 90%;
      max-width: 600px;
      border-radius: 12px;
      font-family: 'Nunito', sans-serif;
      color: #1a1a1a;
      line-height: 1.6;
      position: relative;
    }

    .modal .close {
      position: absolute;
      top: 15px; right: 20px;
      font-size: 24px;
      color: #888;
      cursor: pointer;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      margin-bottom: 1rem;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .contact-form button {
      padding: 10px 20px;
      background: #0044cc;
      color: #fff;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .contact-form button:hover {
      background: #003399;
    }

    .terms-text ul {
      padding-left: 1.2rem;
      list-style-type: disc;
    }

    .terms-text li {
      margin-bottom: 0.75rem;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Nunito', sans-serif;
      line-height: 1.6;
      background: #ffffff;
      color: #1a1a1a;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Cinzel', serif;
      font-weight: 700;
      line-height: 1.3;
    }

    /* Smooth Scroll */
    html {
      scroll-behavior: smooth;
    }

    /* Hero Section */
    .hero {
      display: flex;
      background-image: url('https://i.imgur.com/DWCWWNQ.jpeg'); /* or shot-2.png */
      background-position: center;
      background-repeat: no-repeat; /* Ensures no repetition if image is smaller */
      min-height: 500px;
      color: #ffffff;
      padding: 60px 20px;
      align-items: center;
      position: relative;
      flex-direction: column;
      text-align: left;
    }


    .container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    .logo {
      display: flex;
      align-items: center;
      font-size: 1rem;
      font-weight: bold;
      margin-bottom: 20px;
      width: 100%;
    }

    .logo img {
      margin-right: 10px;
      height: 40px;
    }

    .hero-content {
      max-width: 600px;
      margin-top: 20px;
    }

    .hero p {
      margin-bottom: 30px;
      font-size: 1.1rem;
      font-weight: 400;
    }

    .hero-buttons a {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 5px;
      margin-right: 10px;
      font-weight: 700;
      text-decoration: none;
      font-family: 'Nunito', sans-serif;
      font-size: 1rem;
      transition: all 0.3s ease-in-out;
    }

    .hero-buttons a:hover {
      box-shadow: 0 0 15px rgba(255, 208, 0, 0.8);
    }

    .btn-primary {
      background-color: #C9A227;
      color: #1E1E2F;
    }

    .btn-secondary {
      background-color: #ffffff;
      color: #1E1E2F;
      border: 1px solid #969eb0;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    /* Services Section */
    .services {
      background: #fafafa;
      padding: 20px 10px;
      text-align: center;
    }

    .services .container {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      padding-top: 20px;
    }

    .service {
      position: relative;
      width: 300px;
      height: 300px;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .service:hover {
      transform: translateY(-5px);
    }

    .service-hover {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(10, 29, 66, 0.95);
      color: #ffffff;
      padding: 20px;
      font-size: 0.95rem;
      line-height: 1.5;
      opacity: 0;
      transition: opacity 0.3s ease;
      overflow-y: auto;
    }

    .service:hover .service-hover {
      opacity: 1;
    }

    .service-inner {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 30px 20px;
      text-align: center;
      z-index: 1;
    }

    .service img {
      width: 50px;
      margin-bottom: 15px;
    }

    /* About Us Section */
    .about-us {
      padding: 60px 20px;
      background: #ffffff;
    }

    .about-content {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .about-text h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .about-text p {
      margin-bottom: 20px;
      font-size: 1rem;
    }

    .about-image img {
      width: 100%;
      border-radius: 10px;
    }

    /* Contact Section */
    .contact {
      background: #1E1E2F;
      color: #ffffff;
      padding: 60px 20px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-bottom: 30px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 15px;
      border-radius: 5px;
      width: 100%;
      border: none;
    }

    .contact-form button {
      width: 160px;
      align-self: flex-start;
      background-color: #d4af37;
      color: #1E1E2F;
      font-weight: 700;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
    }

    .contact-form button:hover {
      box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    }

    /* Pricing Section Styling */
    .pricing-title {
      padding: 20px 10px;
      background-color: #ffffff;
      text-align: center;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      padding: 40px 0;
    }

    .pricing-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s;
    }

    .pricing-card:hover {
      transform: translateY(-10px);
    }

    .pricing-card h3 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #333;
    }

    .pricing-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .pricing-card li {
      font-size: 16px;
      margin: 10px 0;
      color: #555;
    }

    .pricing-card .price {
      font-size: 22px;
      font-weight: bold;
      color: #27ae60;
      margin-top: 20px;
    }

    .pricing-card .price span {
      font-size: 18px;
      font-weight: normal;
    }

    .pricing-card .additional-price {
      font-size: 14px;
      color: #e74c3c;
      margin-top: 10px;
    }

    /* FAQ Section */
    .faq {
      padding: 60px 20px;
      background: #f9f9f9;
      text-align: center;
    }

    .faq h2 {
      font-size: 2rem;
      margin-bottom: 30px;
    }

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

    .faq-item {
      border-bottom: 1px solid #ddd;
      padding: 10px 0;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      background: #fff;
      border: none;
      padding: 15px;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .faq-question:hover {
      background: #EFECE6;
    }

    .faq-question .arrow {
      transition: transform 0.3s ease;
    }

    .faq-item.active .arrow {
      transform: rotate(90deg);
    }

    .faq-answer {
      display: none;
      padding: 0 15px 15px 15px;
      font-size: 0.95rem;
      color: #555;
    }

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

        /* Footer Section */
        .footer {
            background-color: #003366; /* Blue tone */
            color: white;
            text-align: center;
            padding: 20px;
        }

        /* Social Media Icons */
        .socials {
            margin-top: 20px;
        }

        .socials a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
            font-size: 30px;
            transition: color 0.3s, transform 0.3s;
        }

        .socials a:hover {
            color: #FFD700; /* Goldish yellow on hover */
            transform: scale(1.2); /* Slightly enlarge the icon */
        }

        .contact-info {
            margin-top: 20px;
            font-size: 16px;
        }

        .contact-info a {
            color: white;
            margin: 0 15px;
            text-decoration: none;
        }

        .contact-info a:hover {
            color: #FFD700; /* Goldish yellow on hover */
        }

        .copyright {
            margin-top: 20px;
            font-size: 14px;
        }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        align-items: center;
      }
      }

      /* Global defaults */
body {
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}

/* Container layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

/* Headings */
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }

/* Buttons */
button,
.btn {
  font-size: 0.9rem;
  padding: 8px 14px;
}

/* Sections except hero */
section:not(.hero),
div:not(.hero) {
  padding: 24px 0;
}

/* Service Cards */
.service {
  width: 270px;
  height: auto;
  padding: 20px;
}
.service h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.service-hover {
  padding: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Pricing Cards */
.pricing-card {
  padding: 20px;
}
.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.pricing-card li {
  font-size: 0.95rem;
  margin: 8px 0;
  line-height: 1.5;
}
.pricing-card .price {
  font-size: 1.1rem;
  margin: 12px 0;
}
.pricing-card .btn {
  font-size: 0.9rem;
  padding: 8px 14px;
}

/* About Section */
.about {
  padding: 30px 0;
}
.about-text h2 {
  font-size: 1.6rem;
}
.about-text p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact Section */
.contact-form {
  padding: 24px;
}
.contact-form input,
.contact-form textarea {
  font-size: 0.9rem;
  padding: 10px;
}
.contact-form button {
  font-size: 0.9rem;
  padding: 8px 14px;
}

/* Footer */
.footer {
  padding: 14px 0;
  font-size: 0.85rem;
  text-align: center;
}

.terms-button {
  display: inline-block;
  background-color: #333; /* or your original brand color */
  color: #fff;
  padding: 10px 18px;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}

.terms-button:hover {
  background-color: #555; /* slightly lighter on hover */
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pricing-card,
  .service {
    margin: 10px auto;
  }
}

.container {
  padding: 0 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 40px;
    text-align: center;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .pricing, .projects, .services .container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .card, .price-card, .service {
    width: 100%;
    max-width: 90%;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
  }

  .nav-links a {
    padding: 10px 0;
    display: block;
    width: 100%;
    text-align: center;
  }

  .footer {
    flex-direction: column;
    gap: 20px;
  }

  .hero-buttons a {
    display: block;
    margin-bottom: 12px;
  }
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

button, .btn, .nav-links a {
  font-size: 1rem;
  padding: 12px 18px;
}

img {
  max-width: 100%;
  height: auto;
}

.hero h1 {
  font-size: 3rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
}


/* Calculator Modal Styling */
.calculator-modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1100;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: 'Nunito', sans-serif;
  overflow-y: auto;
  padding: 40px 20px;
}

.calculator-content {
  background: #fff;
  margin: auto;
  padding: 30px 40px;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  color: #1a1a1a;
  position: relative;
}

.calculator-content h2 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 25px;
  color: #1E1E2F;
  text-align: center;
}

.calculator-close {
  position: absolute;
  top: 18px; right: 20px;
  font-size: 28px;
  color: #888;
  cursor: pointer;
  transition: color 0.3s ease;
}

.calculator-close:hover {
  color: #d4af37;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calculator-form label {
  font-weight: 600;
  font-size: 1rem;
  color: #1E1E2F;
}

.calculator-form input[type="number"],
.calculator-form select {
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  outline-offset: 2px;
  outline-color: transparent;
}

.calculator-form input[type="number"]:focus,
.calculator-form select:focus {
  border-color: #d4af37;
  outline-color: #d4af37;
}

.calculator-result {
  margin-top: 25px;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1E1E2F;
  text-align: center;
  box-shadow: inset 0 0 8px rgba(212, 175, 55, 0.3);
}

.calculator-submit {
  background-color: #d4af37;
  color: #1E1E2F;
  font-weight: 700;
  padding: 14px 0;
  border-radius: 10px;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.calculator-submit:hover {
  background-color: #b8962c;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

/* Responsive tweaks */
@media (max-width: 500px) {
  .calculator-content {
    padding: 20px 25px;
    max-width: 90%;
  }
}
  
/* Embedded Pricing Calculator Styling */
.pricing-calculator-section {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.pricing-calculator-section h2 {
  color: #1E1E2F;
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: center;
}

.pricing-calculator-section fieldset {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.pricing-calculator-section legend {
  font-weight: bold;
  color: #333;
  padding: 0 10px;
}

.pricing-calculator-section label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  cursor: pointer;
}

.pricing-calculator-section input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.1);
}

.pricing-calculator-section h3 {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 30px;
  color: #27ae60;
}

/* Neat inline pricing calculator UI */
.pricing-calculator-section {
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  font-size: 1rem;
}

.pricing-calculator-section h2 {
  text-align: center;
  color: #1E1E2F;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-calculator-section fieldset {
  border: none;
  margin-bottom: 20px;
  padding: 0;
}

.pricing-calculator-section legend {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #333;
}

.pricing-calculator-section label {
  display: block;
  margin: 6px 0;
  padding-left: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.pricing-calculator-section input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.1);
}

.pricing-calculator-section label:hover {
  background: #EFECE6;
  border-radius: 6px;
}

.pricing-calculator-section h3 {
  margin-top: 30px;
  text-align: center;
  color: #2B7A4B;
  font-size: 1.4rem;
  font-weight: 600;
}

.btn {
  background-color: #C9A227;
  color: #1E1E2F;
  font-weight: bold;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background-color: #e6bc00;
}

.btn-secondary {
  background-color: #EFECE6;
  color: #ffffff;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #F0EFEA;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15);
}

/* Specific brand colors */
.social-icon.facebook { background-color: #3b5998; }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.linkedin { background-color: #0077b5; }



header h2, header h3, .hero-title {
  color: #1E1E2F !important;
}

header h1 {
  color: #fdfdf7
}

@media (max-width: 480px) {
  body {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero {
    padding: 60px 10px;
    text-align: center;
    align-items: center;
  }

  .hero .container,
  .about-content,
  .faq-container,
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero h1,
  .about-text h2 {
    font-size: 1.5rem;
  }

  .hero p,
  .about-text p,
  .faq-answer,
  .pricing-card li {
    font-size: 0.9rem;
  }

  .hero-buttons a,
  .btn {
    padding: 10px 14px;
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .pricing-card,
  .service {
    width: 100% !important;
    max-width: 90% !important;
    margin-bottom: 20px;
  }

  .about-image,
  .about-text {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
    padding: 10px;
  }

  .contact-form button {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.9rem;
    padding: 0;
    margin: 0;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero {
    padding: 60px 10px;
    text-align: center;
    align-items: center;
  }

  .hero .container,
  .about-content,
  .faq-container,
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero h1,
  .about-text h2 {
    font-size: 1.5rem;
  }

  .hero p,
  .about-text p,
  .faq-answer,
  .pricing-card li {
    font-size: 0.9rem;
  }

  .hero-buttons a,
  .btn,
  button {
    padding: 10px 14px;
    font-size: 0.85rem;
    width: auto;
    min-width: 120px;
    max-width: 100%;
    display: inline-block;
  }

  .btn-primary,
  .btn-secondary {
    display: inline-block;
    margin: 8px auto;
  }

  .pricing-card,
  .service {
    width: 100% !important;
    max-width: 90% !important;
    margin-bottom: 20px;
  }

  .about-image,
  .about-text {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
    padding: 10px;
  }

  .contact-form button {
    font-size: 0.9rem;
    padding: 10px 16px;
    width: auto;
  }

  .modal-content {
    margin: 40px 10px;
    padding: 20px;
  }

  .pricing-calculator-section {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.9rem;
    padding: 0 16px;
    margin: 0;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero {
    padding: 60px 16px;
    text-align: center;
    align-items: center;
  }

  .hero .container,
  .about-content,
  .faq-container,
  .pricing-grid {
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }

  .hero h1,
  .about-text h2 {
    font-size: 1.5rem;
  }

  .hero p,
  .about-text p,
  .faq-answer,
  .pricing-card li {
    font-size: 0.9rem;
  }

  .hero-buttons a,
  .btn,
  button {
    padding: 10px 14px;
    font-size: 0.85rem;
    width: auto;
    min-width: 120px;
    max-width: 100%;
    display: inline-block;
    margin: 0 8px 10px 8px;
  }

  .btn-primary,
  .btn-secondary {
    margin: 8px auto;
  }

  .pricing-card,
  .service {
    width: 100% !important;
    max-width: 90% !important;
    margin: 20px auto;
    padding: 16px;
  }

  .about-image,
  .about-text {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0 12px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 12px 16px;
  }

  .faq-answer {
    padding: 0 16px 16px 16px;
  }

  .contact-form {
    padding: 0 16px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
    padding: 10px;
  }

  .contact-form button {
    font-size: 0.9rem;
    padding: 10px 16px;
    width: auto;
  }

  .modal-content {
    margin: 40px 16px;
    padding: 20px;
  }

  .pricing-calculator-section {
    padding: 16px;
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  /* Stack pricing cards vertically */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }

  .pricing-card {
    width: 100% !important;
    max-width: 90% !important;
    margin: 0 auto 20px;
  }

  /* Convert about + social layout into vertical stack with spacing */
  .about-content,
  .faq-container,
  .hero .container {
    padding: 0 16px;
    flex-direction: column;
    align-items: center;
  }

  .about-image,
  .about-text {
    max-width: 100%;
    padding: 0 12px;
  }

  .social-icons {
    padding: 0 12px;
  }

  /* Stack FAQ + Calculator */
  .grid.grid-cols-1.md\\:grid-cols-2 {
    flex-direction: column !important;
    padding: 0 16px !important;
  }

  /* Avoid full-width buttons on mobile */
  .hero-buttons a,
  .btn,
  button {
    display: inline-block;
    width: auto;
    min-width: 120px;
    max-width: 100%;
    margin: 8px auto;
  }

  .btn-primary,
  .btn-secondary {
    margin: 8px auto;
  }
}

/* Top Nav Styles */
.top-nav {
  background: transparent;
  transition: background 0.3s;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-nav:hover {
  background: #1E1E2F;
}

.top-nav .container {
  display: flex;
  justify-content: flex-end; /* push links to the right */
  align-items: center;
  padding: 1px 1px;
}
  
.top-nav .logo {
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  color: #fdfdf7;
}

.nav-links a {
  font-size: 0.9rem;
  padding: 6px 12px;
}


.nav-links a {
  color: #fdfdf7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

.nav-toggle-label span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  position: absolute;
  transition: 0.3s ease;
}

.nav-toggle-label span::before {
  top: -8px;
}

.nav-toggle-label span::after {
  bottom: -8px;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1E1E2F;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  .nav-links li {
    margin: 12px 0;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-toggle-label {
    display: block;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1E1E2F;
    flex-direction: column;
    align-items: flex-end; /* right-align text */
    padding: 10px 16px;
    display: none;
    border-radius: 0 0 0 6px;
    box-shadow: -2px 4px 6px rgba(0,0,0,0.1);
  }

  .nav-links li {
    margin: 8px 0;
  }

  .nav-links a {
    padding: 6px 0;
    text-align: right;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-toggle-label {
    display: block;
  }
}


.about-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-text h2,
.about-text p,
.about-text h4 {
  text-align: center;
  width: 100%;
  max-width: 700px;
}

.social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.social-icons > div {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}
.faq-calc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.faq-calc-wrapper > section {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  padding: 30px;
}

/* Side by side on larger screens */
@media (min-width: 992px) {
  .faq-calc-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }

  .faq-calc-wrapper > section {
    flex: 1;
    padding: 30px 40px;
  }
}

.price-green {
  color: #27ae60; /* emerald green */
  font-weight: 600;
}

/* Default hidden state for mobile */
.nav-toggle {
  display: none;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  background: #fdfdf7;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.nav-toggle-label span::before {
  position: absolute;
  top: -8px;
}

.nav-toggle-label span::after {
  position: absolute;
  bottom: -8px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle-label {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #1E1E2F;
    flex-direction: column;
    align-items: flex-end;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span {
    background: transparent;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: rotate(-45deg);
    bottom: 0;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }
}

.nav-toggle {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    flex-direction: column;
  }

  .nav-toggle:checked ~ .container .nav-links {
    max-height: 300px; /* or enough to fit your items */
  }
}

.faq-calc-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px; /* adds space on left/right */
  box-sizing: border-box;
}

.faq-calc-wrapper > section {
  flex: 1 1 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 20px; /* adds inner space */
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
  .faq-calc-wrapper > section {
    flex: 1 1 48%;
    max-width: 48%;
  }
}
