 :root {
        --primary: #2e8b57;
        --secondary: #f5f5dc;
        --accent: #d4af37;
        --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;
      }

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

     /* Header & Navigation */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background-color: transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 5%;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
}

.navbar.scrolled .logo {
  color: var(--primary);
}

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

/* Style the logo image */
.logo img {
  width: 200px;        /* Adjust height */
  height:200px;       /* Maintain aspect ratio */
  object-fit: contain;
  margin-right: 10px;
}

/* Navbar links */
.nav-links {
  display: flex;
  list-style: none;
}

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

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--dark);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* 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;
      }

      .slideshow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
      }

      .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .slide.active {
        opacity: 1;
      }

      .hero-content {
        max-width: 800px;
        z-index: 2;
        transform: translateY(20px);
        opacity: 0;
        animation: fadeUp 1s forwards 0.5s;
      }

      .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        color: white;
      }

      .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 600px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
      }
       .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;
        color: #f8bf05;
      }


      .btn {
        display: inline-block;
        background-color: var(--accent);
        color: var(--dark);
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }

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

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

      /* Sections */
      section {
        padding: 100px 5%;
      }

      .section-title {
        text-align: center;
        margin-bottom: 60px;
      }

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

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

      .about {
        background-color: var(--secondary);
      }

      .about-content {
        display: flex;
        align-items: center;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
      }

      .about-text {
        flex: 1;
      }

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

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

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

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

      .services {
        background-color: black;
      }

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

      .service-card {
        background: var(--light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
      }

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

      .service-image {
        height: 200px;
        overflow: hidden;
      }

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

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

      .service-content {
        padding: 25px;
      }

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

      /* WhatsApp 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: 60px 5% 30px;
      }

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

      .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);
      }

      /* Animations */
      @keyframes fadeUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @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);
        }
      }

      /* Responsive Design */
      @media (max-width: 992px) {
        .about-content {
          flex-direction: column;
        }

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

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

        .nav-links {
          position: fixed;
          top: 0;
          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 h1 {
          font-size: 2.2rem;
        }

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

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

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

        .btn {
          padding: 10px 25px;
        }

        section {
          padding: 70px 5%;
        }
      }