  :root {
        --primary: #2e8b57;
        --secondary: #f5f5dc;
        --accent: #c8a951;
        --dark: #1a3c27;
        --light: #ffffff;
        --transition: all 0.3s ease;
      }

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

      body {
        font-family: "Poppins", sans-serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
        background-color: var(--light);
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: "Playfair Display", serif;
        font-weight: 700;
        line-height: 1.2;
      }

    /* ===== MODERN HEADER & NAVIGATION ===== */
      header {
        background: transparent;
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-sm);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
      }

      header.scrolled {
        background: black;
        box-shadow: var(--shadow-md);
        padding: 5px 0;
        
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 0;
        transition: padding 0.3s ease;
        
      }

      header.scrolled .navbar {
        padding: 10px 0;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .logo-img {
        height: 200px;
        width: 200px;
        filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
      }

      .logo h3 {
        font-size: 1.8rem;
        margin: 0;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
      }

      .nav-menu a {
        text-decoration: none;
        color:white;
        font-weight: 500;
        padding: 8px 16px;
        border-radius: 25px;
        transition: all 0.3s ease;
        position: relative;
      }

      .nav-menu a:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: all 0.3s ease;
        transform: translateX(-50%);
      }

      .nav-menu a:hover {
        color: var(--primary-purple);
      }

      .nav-menu a:hover:before,
      .nav-menu a.active:before {
        width: 80%;
      }

      .nav-menu a.active {
        color: var(--primary-purple);
        font-weight: 600;
      }

      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
      }

      .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--primary-purple);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
      }
      .hamburger {
  display: none; /* hidden by default */
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.3s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .hamburger {
    display: flex; /* show hamburger on mobile */
  }
}



/* Menu toggle (mobile) */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--light);
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo img {
    width: 100px;
    height: 100px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-links li {
    margin-left: 1.5rem;
  }
}

      /* Hero Section */
      .hero {
        height: 100vh;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: var(--light);
        padding: 0 5%;
        overflow: hidden;
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
          url('https://images.unsplash.com/photo-1586375300773-8384e3e4916f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
      }

      .hero-content {
        max-width: 800px;
        z-index: 2;
      }

      .hero h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        min-height: 120px;
      }

      .typewriter-text {
        display: inline-block;
        overflow: hidden;
        border-right: 3px solid var(--accent);
        white-space: nowrap;
        margin: 0 auto;
        animation: typing 3.5s steps(40, end),
          blink-caret 0.75s step-end infinite;
      }

      .hero p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        max-width: 600px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
      }

      .btn {
        display: inline-block;
        background: linear-gradient(135deg, var(--accent), #e6c12e);
        color: var(--dark);
        padding: 15px 35px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
      }

      .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      }

      .btn::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -60%;
        width: 20px;
        height: 200%;
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(30deg);
        transition: all 0.6s;
      }

      .btn:hover::after {
        left: 120%;
      }

      .scroll-down {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--light);
        font-size: 1.5rem;
        animation: bounce 2s infinite;
        cursor: pointer;
      }

      /* Services Overview */
      .services-overview {
        padding: 100px 5%;
        background-color: var(--secondary);
      }

      .overview-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 60px;
      }

      .overview-content {
        flex: 1;
      }

      .overview-image {
        flex: 1;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .overview-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: var(--transition);
      }

      .overview-image:hover img {
        transform: scale(1.05);
      }

      .section-title {
        text-align: left;
        margin-bottom: 30px;
      }

      .section-title h2 {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 15px;
      }

      .section-title p {
        color: #666;
        max-width: 600px;
      }

      .overview-content p {
        margin-bottom: 20px;
        color: #555;
        font-size: 1.1rem;
      }

      .features-list {
        list-style: none;
        margin-top: 30px;
      }

      .features-list li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .features-list li:last-child {
        border-bottom: none;
      }

      .features-list li i {
        color: var(--primary);
        font-size: 1.2rem;
      }

      /* Services Section */
      .services {
        padding: 120px 5%;
        background-color: black;
      }

      .services .section-title {
        text-align: center;
        margin-bottom: 80px;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.8s ease;
      }

      .services .section-title.visible {
        transform: translateY(0);
        opacity: 1;
      }
      .services p{
        color: white;
      }

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

      .service-card {
        background: var(--light);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
        transform: translateY(50px);
        opacity: 0;
      }

      .service-card.visible {
        transform: translateY(0);
        opacity: 1;
      }

      .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      .service-img {
        height: 280px;
        overflow: hidden;
        position: relative;
      }

      .service-img::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to bottom,
          transparent 0%,
          rgba(0, 0, 0, 0.1) 100%
        );
      }

      .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
      }

      .service-card:hover .service-img img {
        transform: scale(1.1);
      }

      .service-content {
        padding: 30px;
        position: relative;
      }

      .service-content h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        color: var(--primary);
      }

      .service-content h3 a {
        color: var(--primary);
        text-decoration: none;
        transition: var(--transition);
      }

      .service-content h3 a:hover {
        color: var(--accent);
      }

      .service-content p {
        margin-bottom: 25px;
        color: #666;
        line-height: 1.7;
      }

      .service-features {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
      }

      .feature-tag {
        background: var(--secondary);
        color: var(--primary);
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
      }

      .cta-button {
        display: inline-block;
        background: var(--primary);
        color: var(--light);
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
      }

      .cta-button:hover {
        background: var(--accent);
        color: var(--dark);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      }

      .cta-button::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -60%;
        width: 20px;
        height: 200%;
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(30deg);
        transition: all 0.6s;
      }

      .cta-button:hover::after {
        left: 120%;
      }

      /* Interactive Services Showcase */
      .services-showcase {
        padding: 100px 5%;
        background-color: var(--secondary);
      }

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

      .showcase-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
        flex-wrap: wrap;
        gap: 10px;
      }

      .tab-button {
        background: var(--light);
        border: none;
        padding: 15px 30px;
        border-radius: 30px;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 1rem;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .tab-button.active {
        background: var(--primary);
        color: var(--light);
      }

      .tab-button:hover:not(.active) {
        background: var(--accent);
        color: var(--dark);
      }

      .tab-content {
        display: none;
        animation: fadeIn 0.5s ease;
      }

      .tab-content.active {
        display: block;
      }

      .showcase-content {
        display: flex;
        align-items: center;
        gap: 50px;
      }

      .showcase-image {
        flex: 1;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .showcase-image img {
        width: 100%;
        height: auto;
        display: block;
      }

      .showcase-text {
        flex: 1;
      }

      .showcase-text h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: var(--primary);
      }

      .showcase-text p {
        margin-bottom: 20px;
        color: #555;
        line-height: 1.7;
      }

      .showcase-features {
        list-style: none;
        margin-top: 30px;
      }

      .showcase-features li {
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .showcase-features li i {
        color: var(--primary);
      }

      /* Testimonials Section */
      .testimonials {
        padding: 100px 5%;
        background-color: black;
      }

      .testimonials .section-title {
        text-align: center;
      }

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

      .testimonial-card {
        background: var(--secondary);
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
      }

      .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      }

      .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        color: #555;
        line-height: 1.7;
      }

      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--light);
        font-weight: bold;
      }

      .author-info h4 {
        margin-bottom: 5px;
        color: var(--primary);
      }

      .author-info p {
        color: #777;
        font-size: 0.9rem;
      }

      /* CTA Section */
      .cta-section {
        padding: 100px 5%;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
          url("https://images.unsplash.com/photo-1541987817603-d2b3e0fad6d0?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NDB8fHN3aW1taW5nJTIwcG9vbCUyMGluJTIwYSUyMGhvdGVsfGVufDB8fDB8fHww&auto=format&fit=crop&q=60&w=500");
        background-size: cover;
        background-position: center;
        color: var(--light);
        text-align: center;
      }

      .cta-content {
        max-width: 800px;
        margin: 0 auto;
      }

      .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: var(--primary);
      }

      .cta-content p {
        margin-bottom: 30px;
        font-size: 1.1rem;
        
      }

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

      .btn-outline {
        background: transparent;
        border: 2px solid var(--accent);
        color: var(--light);
      }

      .btn-outline:hover {
        background: var(--accent);
        color: var(--dark);
      }

      /* Ambient Sound Toggle */
      .sound-toggle {
        position: fixed;
        bottom: 100px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--primary);
        color: var(--light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 99;
      }

      .sound-toggle:hover {
        background: var(--accent);
        transform: scale(1.1);
      }

      .sound-tooltip {
        position: absolute;
        bottom: 60px;
        right: 0;
        background: var(--dark);
        color: var(--light);
        padding: 8px 15px;
        border-radius: 5px;
        font-size: 0.8rem;
        white-space: nowrap;
        opacity: 0;
        transform: translateY(10px);
        transition: var(--transition);
        pointer-events: none;
      }

      .sound-toggle:hover .sound-tooltip {
        opacity: 1;
        transform: translateY(0);
      }

      /* WhatsApp Float Button */
      .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        color: var(--light);
        border-radius: 50%;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        z-index: 100;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: pulse 2s infinite;
        transition: var(--transition);
      }

      .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
      }

      .whatsapp-float i {
        font-size: 1.8rem;
      }

      /* Footer */
      footer {
        background-color: var(--dark);
        color: var(--light);
        padding: 80px 5% 30px;
        position: relative;
      }

      footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c8a951' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto 40px;
        position: relative;
        z-index: 1;
      }

      .footer-column h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: var(--accent);
      }

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

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

      .footer-links a {
        color: var(--secondary);
        text-decoration: none;
        transition: var(--transition);
      }

      .footer-links a:hover {
        color: var(--accent);
        padding-left: 5px;
      }

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
      }

      .social-links a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--light);
        transition: var(--transition);
      }

      .social-links a:hover {
        background-color: var(--accent);
        transform: translateY(-5px);
      }

      .copyright {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        position: relative;
        z-index: 1;
      }

      /* Animations */
      @keyframes typing {
        from {
          width: 0;
        }
        to {
          width: 100%;
        }
      }

      @keyframes blink-caret {
        from,
        to {
          border-color: transparent;
        }
        50% {
          border-color: var(--accent);
        }
      }

      @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
          transform: translateY(0) translateX(-50%);
        }
        40% {
          transform: translateY(-20px) translateX(-50%);
        }
        60% {
          transform: translateY(-10px) translateX(-50%);
        }
      }

      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
          box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
      }

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

      /* Responsive Design */
      @media (max-width: 992px) {
        .hero h1 {
          font-size: 3rem;
          min-height: 100px;
        }

        .services-grid {
          grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .overview-container,
        .showcase-content {
          flex-direction: column;
        }
      }

      @media (max-width: 768px) {
        .menu-toggle {
          display: block;
        }

        .nav-links {
          position: fixed;
          top: 0px;
          right: -100%;
          width: 70%;
          height: 100vh;
          background-color: var(--dark);
          flex-direction: column;
          align-items: center;
          justify-content: center;
          transition: var(--transition);
          z-index: 1000;
        }

        .nav-links.active {
          right: 0;
        }

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

        .hero {
          height: 80vh;
        }

        .hero h1 {
          font-size: 2.2rem;
          min-height: 80px;
        }

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

        .section-title h2 {
          font-size: 2.2rem;
        }

        .services {
          padding: 80px 5%;
        }

        .cta-buttons {
          flex-direction: column;
          align-items: center;
        }
      }

      @media (max-width: 576px) {
        .hero h1 {
          font-size: 1.8rem;
          min-height: 60px;
        }

        .btn,
        .cta-button {
          padding: 10px 25px;
        }

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

        .showcase-tabs {
          flex-direction: column;
          align-items: center;
        }
      }
      @media screen and (max-width: 768px) {
 /* Desktop */
.hamburger {
  display: none;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1200;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 250px;
    background: black;
    display: flex;          /* important */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.3s ease;
  }

  .nav-menu.active {
    right: 0;
  }
}
      }
