 :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;
        background-color: var(--light);
      }

      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: 60vh;
        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-1574283006478-b972c6861ce9?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8ODl8fGhvdGVsJTIwd2Vic2l0ZSUyMGltYWdlc3xlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&q=60&w=500");
        background-size: cover;
        background-position: center;
      }

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

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

      .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 600px;
        text-shadow: 1px 1px 4px 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;
      }

      /* Contact Section */
      .contact {
        padding: 100px 5%;
        background-color: var(--light);
      }

      .contact-container {
        display: flex;
        gap: 60px;
        max-width: 1200px;
        margin: 0 auto;
       
      }

      .contact-info {
        flex: 1;
        transform: translateX(-50px);
        opacity: 0;
        transition: all 0.8s ease;
      }

      .contact-info.visible {
        transform: translateX(0);
        opacity: 1;
      }

      .section-title {
        margin-bottom: 40px;
      }

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

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

      .contact-methods {
        display: flex;
        flex-direction: column;
        gap: 30px;
      }

      .contact-method {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
        background: var(--secondary);
        border-radius: 10px;
        transition: var(--transition);
      }

      .contact-method:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .method-icon {
        width: 60px;
        height: 60px;
        background: var(--primary);
        color: var(--light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        transition: var(--transition);
      }

      .contact-method:hover .method-icon {
        background: var(--accent);
        transform: scale(1.1);
      }

      .method-content h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        color: var(--primary);
      }

      .method-content p {
        color: #666;
        margin-bottom: 5px;
      }

      .method-content a {
        color: var(--primary);
        text-decoration: none;
        transition: var(--transition);
        font-weight: 500;
      }

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

      .contact-form {
        flex: 1;
        background: var(--secondary);
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.8s ease 0.2s;
      }

      .contact-form.visible {
        transform: translateX(0);
        opacity: 1;
      }

      .form-group {
        position: relative;
        margin-bottom: 30px;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 15px 0;
        font-size: 1rem;
        color: #333;
        border: none;
        border-bottom: 2px solid #ddd;
        outline: none;
        background: transparent;
        transition: var(--transition);
        font-family: "Poppins", sans-serif;
      }

      .form-group textarea {
        resize: vertical;
        min-height: 120px;
      }

      .form-group label {
        position: absolute;
        top: 15px;
        left: 0;
        font-size: 1rem;
        color: #999;
        pointer-events: none;
        transition: var(--transition);
      }

      .form-group input:focus ~ label,
      .form-group input:valid ~ label,
      .form-group textarea:focus ~ label,
      .form-group textarea:valid ~ label {
        top: -20px;
        font-size: 0.8rem;
        color: var(--primary);
      }

      .form-group input:focus,
      .form-group textarea:focus {
        border-bottom-color: var(--primary);
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--primary), var(--dark));
        color: var(--light);
        padding: 15px 30px;
        border: none;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        width: 100%;
      }

      .btn:hover {
        background: linear-gradient(135deg, var(--accent), #e6c12e);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      }

      /* Success Message */
      .success-message {
        display: none;
        text-align: center;
        padding: 20px;
        background: var(--primary);
        color: var(--light);
        border-radius: 10px;
        margin-top: 20px;
        transform: scale(0.9);
        opacity: 0;
        transition: var(--transition);
      }

      .success-message.active {
        display: block;
        transform: scale(1);
        opacity: 1;
      }

      .success-icon {
        font-size: 3rem;
        margin-bottom: 15px;
        color: var(--accent);
      }

      /* Social Media Section */
      .social-media {
        padding: 80px 5%;
        background-color: black;
        text-align: center;
      }

      .social-media .section-title {
        margin-bottom: 40px;
      }

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

      .social-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--dark);
        transition: var(--transition);
      }

      .social-icon:hover {
        transform: translateY(-10px);
      }

      .social-circle {
        width: 70px;
        height: 70px;
        background: var(--light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        margin-bottom: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
      }

      .social-icon:hover .social-circle {
        background: var(--primary);
        color: var(--light);
        transform: scale(1.1);
      }

      .social-name {
        font-size: 0.9rem;
        font-weight: 500;
        color: #666;
      }

      /* Map Section */
      .map-section {
        padding: 80px 5%;
        background-color: var(--light);
      }

      .map-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
      }

      .map-wrapper {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        height: 450px;
        background: var(--secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        font-size: 1.2rem;
      }

      .map-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      }

      .map-overlay {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: var(--light);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-width: 250px;
      }

      .overlay-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
      }

      .overlay-item:last-child {
        margin-bottom: 0;
      }

      .overlay-icon {
        color: var(--primary);
        font-size: 1.2rem;
      }

      .overlay-text {
        font-size: 0.9rem;
        color: #666;
      }

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

      .whatsapp-tooltip {
        position: absolute;
        bottom: 70px;
        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;
      }

      .whatsapp-float:hover .whatsapp-tooltip {
        opacity: 1;
        transform: translateY(0);
      }

      /* Footer */
      footer {
        background-color: var(--dark);
        color: var(--light);
        padding: 60px 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='%23d4af37' 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-logo {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
      }

      .footer-logo .logo-icon {
        width: 50px;
        height: 50px;
        background: var(--accent);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.5rem;
        color: var(--dark);
        margin-right: 15px;
      }

      .footer-logo .logo-text {
        font-family: "Playfair Display", serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--light);
      }

      .footer-logo .logo-text span {
        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;
      }

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

      .scroll-to-top {
        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;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 99;
      }

      .scroll-to-top.active {
        opacity: 1;
        visibility: visible;
      }

      .scroll-to-top:hover {
        background: var(--accent);
        transform: translateY(-3px);
      }

      /* 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) {
        .contact-container {
          flex-direction: column;
        }

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

      @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 {
          height: 50vh;
        }

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

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

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

        .map-overlay {
          position: relative;
          bottom: auto;
          left: auto;
          margin-top: 20px;
          max-width: 100%;
        }
      }

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

        .btn {
          padding: 12px 25px;
        }

        section {
          padding: 70px 5%;
        }

        .social-icons {
          gap: 15px;
        }

        .social-circle {
          width: 60px;
          height: 60px;
          font-size: 1.5rem;
        }
      }