 :root {
      --primary-dark: #1a1a2e;
      --primary-blue: #16213e;
      --accent-orange: #97c259;
      --accent-gold: rgb(12, 169, 241);
      --light-gray: #f4f4f4;
      --white: #ffffff;
      --gray-600: #4b5563;
      --gray-800: #1f2937;
      --gray-900: #111827;
    }

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

    body {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      line-height: 1.6;
      color: var(--gray-800);
      background: var(--white);
      overflow-x: hidden;
    }

    /* Navbar */
    .navbar-container {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0rem 2rem;
      background: rgba(26, 26, 46, 0.582);
      backdrop-filter: blur(10px);
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .navbar-logo {
     display: flex;
     height: auto;
    }

    .navbar-logo img {
      height: 100px;
    }

    .logo-accent {
      color: var(--accent-orange);
    }

    .navbar-links {
      display: flex;
      gap: 3rem;
      list-style: none;
    }

    .navbar-link {
      text-decoration: none;
      font-weight: 500;
      color: var(--white);
      transition: color 0.3s;
    }

    .navbar-link:hover {
      color: var(--accent-orange);
    }

    .navbar-toggle {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      z-index: 1001;
    }

    .navbar-toggle span {
      width: 32px;
      height: 4px;
      background: var(--white);
      border-radius: 2px;
      transition: background 0.3s;
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: 0;
      width: 75%;
      height: 100vh;
      background: var(--primary-dark);
      box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
      padding: 4rem 2.5rem;
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
      z-index: 1000;
    }

    .mobile-menu.open {
      transform: translateX(0);
    }

    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      list-style: none;
    }

    .mobile-menu-link {
      text-decoration: none;
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--white);
    }

    /* Hero Section */
    .hero-container {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2rem 8rem;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    }

    .hero-container::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path d="M0,400 Q300,300 600,400 T1200,400 L1200,800 L0,800 Z" fill="rgba(233,69,96,0.1)"/></svg>') bottom center/cover no-repeat;
      opacity: 0.3;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
      animation: fadeSlideIn 1s ease-out forwards;
      opacity: 0;
      transform: translateX(-40px);
      margin-top: 50px;
    }

    @keyframes fadeSlideIn {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .hero-foreground {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-foreground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

    .hero-heading {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      color: var(--white);
    }

    .hero-text {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.8;
    }

    .hero-features {
      list-style: none;
      margin-bottom: 2rem;
      padding: 0;
    }

    .hero-feature-item {
      position: relative;
      padding-left: 2rem;
      margin-bottom: 1rem;
      color: var(--white);
      font-weight: 500;
      animation: fadeIn 0.6s ease-out forwards;
      opacity: 0;
    }

    .hero-feature-item:nth-child(1) { animation-delay: 0.3s; }
    .hero-feature-item:nth-child(2) { animation-delay: 0.5s; }
    .hero-feature-item:nth-child(3) { animation-delay: 0.7s; }

    .hero-feature-item::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent-gold);
      font-weight: bold;
      font-size: 1.2rem;
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    .hero-button {
      display: inline-block;
      padding: 1rem 2.5rem;
      background: var(--accent-orange);
      color: var(--white);
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 999px;
      box-shadow: 0 8px 24px #96c259c0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: fadeIn 1.2s ease-out forwards;
      opacity: 0;
      animation-delay: 0.9s;
    }

    .hero-button:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px #86be36c0;
    }

    .hero-illustration {
      display: none;
      position: relative;
      z-index: 2;
      width: 40%;
      max-width: 500px;
      animation: fadeSlideIn 1s ease-out forwards;
      opacity: 0;
      transform: translateX(40px);
    }

    @media (min-width: 1024px) and (max-width: 1280px) {
  .hero-container {
    padding: 2rem 4rem; /* reduce side padding */
    min-height: 90vh;  /* allow more vertical space */
  }

  .hero-heading {
    font-size: 2.8rem; /* smaller heading so it fits */
    line-height: 1.2;
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-feature-item {
    margin-bottom: 0.75rem;
  }

  .hero-illustration {
    width: 35%; /* slightly smaller image */
    max-width: 420px;
  }
}


    
    /* About Section */
    .about-section {
      padding: 6rem 8rem;
      background: var(--white);
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 1rem;
      color: var(--primary-dark);
    }

    .highlight {
      color: var(--accent-orange);
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--gray-600);
      max-width: 800px;
      margin: 0 auto 3rem;
      text-align: center;
      line-height: 1.8;
    }

    .content-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(1, auto);
      gap: 2rem;
      margin-top: 3rem;
      align-items: center;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(1, auto);
      gap: 2rem;
      margin-top: 3rem;
      align-items: center;
    }

    .content-block {
      background: var(--light-gray);
      padding: 2.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .content-block:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .block-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .block-title {
      font-size: 1.3rem;
      margin-bottom: 0.75rem;
      color: var(--primary-dark);
      font-weight: 600;
    }

    .block-text {
      font-size: 1rem;
      color: var(--gray-600);
      line-height: 1.6;
    }

    @media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }
}

@media (max-width: 640px) {
  .content-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
  
  .content-block {
    padding: 2rem;
  }

  .block-icon {
    font-size: 2rem;
  }

  .block-title {
    font-size: 1.2rem;
  }

  .block-text {
    font-size: 0.95rem;
  }
}

    /* Alternating About Rows */
.about-rows {
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center; /* centers each row horizontally */
}

.about-row.stacked-texts {
  display: flex;
  align-items: center; /* vertical centering of image & texts */
  gap: 4rem;
  max-width: 1200px; /* constrain row width */
  width: 100%; /* allow responsiveness */
  justify-content: center; /* centers the flex items horizontally */
}

.about-texts {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}


.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent-orange);
}

.about-text p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 520px;
}

/* Responsive: stack on smaller screens */
@media (max-width: 900px) {
  .about-row.stacked-texts {
    flex-direction: column;
    align-items: center; /* center image and text on small screens */
    text-align: center;
  }

  .about-texts {
    gap: 1.5rem;
  }

  .about-image img {
    max-width: 100%;
  }
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  /* Content grid (cards) */
  .content-grid,
  .about-grid {
    grid-template-columns: 1fr; /* single column on mobile */
    gap: 1.5rem;
  }

  /* Card padding and text */
  .content-block,
  .about-row .about-text {
    padding: 2rem;
  }

  .block-icon {
    font-size: 2rem;
  }

  .block-title {
    font-size: 1.2rem;
  }

  .block-text {
    font-size: 0.95rem;
  }

  /* About section: stack image and texts vertically */
  .about-row.stacked-texts {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-texts {
    gap: 1.5rem;
  }
}




    /* Values Section */
    .values-section {
      padding: 6rem 8rem;
      background: linear-gradient(135deg, #f4f4f4 0%, #e8e8e8 100%);
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .value-card {
      background: var(--white);
      padding: 2rem;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s;
    }

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

    .value-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: var(--accent-orange);
    }

    .fas {
      color: var(--accent-orange);
    }

    .value-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--primary-dark);
      margin-bottom: 0.5rem;
    }

    .value-icon i {
  font-size: 2.5rem;
  color: var(--accent-orange);
}


    /* Services Section */
    .services-section {
      padding: 6rem 8rem;
      background: var(--white);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(3, auto);
      gap: 2rem;
      margin-top: 3rem;
    }

    .service-card {
      background: linear-gradient(135deg, #f4f4f4 0%, #e8e8e8 100%);
      border-radius: 12px;
      padding: 2.5rem;
      transition: transform 0.3s, box-shadow 0.3s;
      color: var(--white);
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    }

    .service-image {
      width: 100%;
  height: 180px; /* Adjust height as needed */
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.5rem;
    }

    .service-image img {
      width: 100%;
  height: 100%;
  object-fit: cover; /* makes image fill the space cleanly */
  display: block;
    }

    .service-title {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      color: var(--primary-dark);
    }

    .service-description {
      font-size: 1rem;
      line-height: 1.6;
      color: var(--primary-blue);
    }

    .service-icon i {
  font-size: 2.5rem;
  color: var(--accent-orange);
}

/* Mobile responsiveness for Services Section */
@media (max-width: 640px) {
  .services-section {
    padding: 3rem 2rem; /* reduce padding on mobile */
  }

  .services-grid {
    grid-template-columns: 1fr; /* stack cards vertically */
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
    text-align: center; /* center content inside cards */
  }

   .service-image {
    height: 150px; /* slightly smaller but still big */
    border-radius: 8px;
  }

  .service-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .service-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}



    /* Advantages Section */
    .advantages-section {
      padding: 6rem 8rem;
      background: var(--light-gray);
    }

    .advantages-list {
  list-style: none;
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 1.5rem 2rem; /* row + column gaps */
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


@media (max-width: 800px) {
  .advantages-list {
    grid-template-columns: 1fr;
  }
}


    .advantage-icon {
      font-size: 1.5rem;
      color: var(--accent-orange);
      flex-shrink: 0;
    }

    .advantage-text {
      font-size: 1.05rem;
      color: var(--gray-800);
      line-height: 1.6;
    }

    /* Contact Section */
    .contact-container {
      padding: 6rem 8rem;
      background: var(--white);
    }

    .contact-form {
      max-width: 800px;
      margin: 3rem auto 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .contact-input,
    .contact-textarea {
      width: 100%;
      padding: 1rem;
      border: 2px solid var(--light-gray);
      border-radius: 8px;
      font-size: 1rem;
      font-family: inherit;
      transition: border-color 0.3s;
    }

    .contact-input:focus,
    .contact-textarea:focus {
      outline: none;
      border-color: var(--accent-orange);
    }

    .contact-textarea {
      grid-column: span 2;
      resize: vertical;
      min-height: 150px;
    }

    .contact-button {
      grid-column: span 2;
      padding: 1rem 2rem;
      background: var(--accent-orange);
      color: var(--white);
      font-size: 1rem;
      font-weight: 600;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .contact-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px #7bb924;
    }

    .block-icon i {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

    
  /* Contact Section Layout with Map */
.contact-grid {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Map container */
.contact-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Optional overlay text */
.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
  color: var(--white);
}

.map-overlay h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.3rem;
}

.map-overlay p {
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 300px;
  }
}


/* Mobile responsiveness for Contact Section */
@media (max-width: 640px) {
  .contact-container {
    padding: 3rem 1.5rem; /* reduce padding on mobile */
  }

  .contact-form {
    grid-template-columns: 1fr; /* stack inputs vertically */
    gap: 1rem; /* smaller gap between inputs */
  }

  .contact-textarea {
    min-height: 120px; /* slightly smaller height on mobile */
  }

  .contact-button {
    padding: 0.9rem 1.5rem; /* slightly smaller button */
    font-size: 0.95rem;
  }

  .contact-input,
  .contact-textarea {
    padding: 0.9rem; /* smaller input padding */
    font-size: 0.95rem;
  }

  .block-icon i {
    font-size: 2rem; /* scale down icons */
  }
}


    /* Footer */
    .footer-section {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--gray-900) 100%);
      color: var(--white);
      padding: 4rem 8rem 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-content img {
      height: 150px;
    }

    .footer-tagline {
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .social-links {
      display: flex;
    }

    .social-link {
      width: 40px;
      height: 40px;
      margin-left: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--accent-orange);
      transform: translateY(-2px);
    }

    .footer-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--accent-gold);
    }

    .footer-list {
      list-style: none;
    }

    .footer-list li {
      margin-bottom: 0.5rem;
    }

    .footer-link {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-link:hover {
      color: var(--accent-orange);
    }

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

    .footer-copyright {
      color: rgba(255, 255, 255, 0.7);
    }

    /* Mobile responsiveness for Footer Section */
@media (max-width: 640px) {
  .footer-section {
    padding: 3rem 1.5rem 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr; /* stack all columns */
    gap: 2rem; /* smaller gap between sections */
  }

  .footer-content img {
    height: 100px; /* smaller logo */
    margin-bottom: 1rem;
  }

  .social-links {
    justify-content: flex-start; /* align social icons left on mobile */
    gap: 1rem;
  }

  .social-link {
    width: 35px;
    height: 35px;
    margin-left: 0;
  }

  .footer-title {
    font-size: 1rem; /* smaller titles */
  }

  .footer-link {
    font-size: 0.95rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }

  .footer-copyright {
    font-size: 0.85rem;
  }
}


    /* WhatsApp Button */
    .floating-whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      z-index: 999;
      text-decoration: none;
    }

    .floating-whatsapp-btn:hover {
      transform: scale(1.1);
    }

    .floating-whatsapp-btn i {
      font-size: 28px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .navbar-container,
      .hero-container,
      .about-section,
      .values-section,
      .services-section,
      .advantages-section,
      .contact-container,
      .footer-section {
        padding-left: 2rem;
        padding-right: 2rem;
      }

      .footer-content {
        grid-template-columns: 1fr 1fr;
      }

      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .navbar-links {
        display: none;
      }

      .navbar-toggle {
        display: flex;
      }

      .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
      }

      .hero-illustration {
        display: none;
      }

      .hero-heading {
        font-size: 2.5rem;
      }

      .section-title {
        font-size: 2rem;
      }

      .values-grid {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }

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

      .contact-textarea,
      .contact-button {
        grid-column: span 1;
      }
    }

    .footer-credit {
  color: #fff;      /* or whatever your footer text color is */
  font-size: 0.9rem;
}

.footer-credit a {
  color: #fff;       /* match text color */
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}
