body
{
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* Header container */
header
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  position: sticky;
  top: 0;
}

/* Logo */
.logo
{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.logo img
{
  height:40px;
  margin-right:10px;
}

/* Navigation */
nav ul
{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a
{
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s;
}

nav .a:hover{color: #22c55e;}
nav .active
{
  color: #22c55e;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s;
}

/* Contact Button */
.contact-btn
{
  background: #22c55e;
  color: #fff;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
}

.contact-btn:hover{background: #105521;}
.contact-abtn
{
  background: #105521;
  color: #fff;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
}

/* Hamburger Menu */
.hamburger
{
  display: none; /* hidden by default on desktop */
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span
{
  display: block;
  width: 25px;
  height: 3px;
  background: #111;
  border-radius: 2px;
}

/* Mobile nav hidden initially */
.mobile-nav
{
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  width: 250px;
  height: 100%;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 999;
}

.mobile-nav.show {display: block; /* show when .show added */}

.mobile-nav a
{
  display: block;
  margin-bottom: 15px;
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.mobile-nav .a:hover{color: #22c55e;}
.mobile-nav .active
{
  color: #22c55e;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s;
}

.close-btn
{
  font-size: 25px;
  cursor: pointer;
  display: block;
  margin-bottom: 20px;
}

/* Footer General */
.footer
{
  background-color: #111;
  color: #fff;
  padding: 50px 60px 20px;
}

.footer-container
{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Left Section */
.footer-left{width:25%;}

.footer-logo
{
  width:75%;
  border-radius: 15px;
}

.footer-desc
{
  margin: 10px 0 20px;
  max-width: 300px;
  line-height: 1.5;
  text-align: justify;
  font-size: 14px;
}

/* Middle Section */
.footer-middle h2
{
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.5;
}

.footer-middle ul
{
  list-style: none;
  padding: 0;
}

.footer-middle ul li {margin-bottom: 8px;}

.footer-middle ul li a
{
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 18px;
}

.footer-middle ul li a:hover {color: #00c853;}

/* Right Section */
.footer-right h2
{
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.5;
}

.footer-right ul
{
  list-style: none;
  padding: 0;
}

.footer-right ul li {margin-bottom: 8px;}

.footer-right ul li p
{
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 18px;
}

.footer-right ul li p:hover {color: #00c853;}

/* Footer Bottom */
.footer-bottom
{
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
}

.footer-bottom p
{
  margin: 0;
  font-size: 20px;
}

.footer-bottom a
{
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-bottom p:hover {color: #00c853;}

/* Social Icons */
.social-icons a
{
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-icons a:hover {color: #00c853;}

/* Hero Section */
.hero
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 2% 10% 10%;
  background: linear-gradient(135deg, #27c252 0%, #27c29a 100%);
  color: #fff;
  flex-wrap: wrap;
  clip-path: ellipse(90% 100% at 50% 0%);
}

/* Left Content */
.hero-content {max-width: 50%;}

.hero-content h1
{
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-content p
{
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 500;
}

.cta-btn
{
  display: inline-block;
  background: #fff;
  color: #14b866;
  padding: 20px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {background: #f1f1f1;}

/* Right Image */
.hero-image
{
  flex: 1;
  text-align: center;
}

.hero-image img
{
  max-width: 100%;
  height: auto;
}

.found
{
  margin-top: 50px;
  margin-bottom: 50px;
}

.unorlis
{
  list-style: none;
  padding: 0;
}

.unorlis li {line-height: 2;}

.checkmark-circle
{
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #4CAF50; /* Green background for the circle */
  border-radius: 50%; /* Make it a circle */
  color: white; /* White checkmark */
  text-align: center;
  line-height: 20px; /* Center the checkmark vertically */
  font-size: 14px;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px)
{
  .footer-container
  {
    flex-direction: column;
    text-align: center;
  }

  .footer-right h3 {max-width: 100%;}

  .footer-bottom
  {
    flex-direction: column;
    gap: 15px;
  }

  .hero
  {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {max-width: 100%;}

  .hero-content h1 {font-size: 2.2rem;}
  .main
  {
    margin-left: 10px;
    margin-right: 10px;
  }
} 

@media (max-width: 700px)
{
  nav {display: none; } /* hide desktop nav on mobile */
  .hamburger {display: flex;} /* show hamburger only on mobile */
}