* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  transition: background 0.3s ease;
  color: white;
  z-index: 1000;
  background: transparent;
}

header.scrolled {
  background: rgba(56, 102, 65, 0.9);
}

header img {
  height: 80px;
}

.contact {
  font-size: 24px;
  margin-right: 25px;
}

.hamburger {
  cursor: pointer;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
   
}

/* Dropdown Menu */
.menu {
  position: fixed;
  top: 80px;
  right: 50px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  font-size: 18px;
  padding: 15px 0;
  min-width: 220px;
  z-index: 2000;
  animation: dropdownFade 0.3s ease;
}

.menu a {
  text-decoration: none;
  color: #386641;
  padding: 12px 20px;
  transition: all 0.3s ease;
  display: block;
}

.menu a:hover {
  background: #386641;
  color: #fff !important;
}

.menu.active {
  display: flex;
}

/* Animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*  Responsive Design */
@media (max-width: 1024px) {
  header {
    padding: 15px 30px;
  }

  .contact {
    font-size: 20px;
    margin-right: 15px;
  }

  header img {
    height: 65px;
  }
}

@media (max-width: 768px) {
  .contact {
    display: none; 
  }

  .hamburger {
    display: block; 
  }

  .menu {
    right: 20px;
    top: 70px;
    min-width: 180px;
  }

  header img {
    height: 55px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 20px;
  }

  header img {
    height: 50px;
  }

  .menu {
    width: 100%;       
    left: 0;
    right: 0;
    top: 60px;
    border-radius: 0;
    box-shadow: none;
  }

  .menu a {
    font-size: 16px;
    text-align: center;
  }
}




/* Hero Section */
.hero {
  position: relative;
  height: 70vh;  
  width: 100%;
  margin-top: 0;
  overflow: hidden;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(56, 102, 65, 0.7); 
  z-index: 1;
}

.hero h1 {
  position: relative;
  font-size: 60px;
  color: #fff;
  font-weight: bold;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 0 15px; 
  line-height: 1.2;
}

/*  Responsive */
@media (max-width: 1024px) {
  .hero {
    height: 60vh;
  }

  .hero h1 {
    font-size: 45px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 50vh;
  }

  .hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 45vh;
  }

  .hero h1 {
    font-size: 24px;
    padding: 0 10px;
  }
}

.about-us1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #f9f9f9;  
}

.about-text {
  background: #386641;   
  color: #fff;           
  padding: 30px;
  border-radius: 10px;
  max-width: 1000px;
  font-size: 18px;
  line-height: 1.7;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;   
  justify-content: center; 
  gap: 40px;
  padding: 40px;
  text-align: center;   
}

.about-item {
  max-width: 900px;  
}

.about-content h3 {
  font-size: 24px;
  color: #386641;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.about-content a {
  color: #386641;
  font-weight: bold;
  text-decoration: none;
}
.about-content a:hover {
  text-decoration: underline;
}

/*  Responsive Design */
@media (max-width: 1024px) {
  .about-text {
    font-size: 17px;
    padding: 25px;
  }

  .about-content h3 {
    font-size: 22px;
  }

  .about-content p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .about-us1 {
    padding: 40px 15px;
  }

  .about-text {
    font-size: 16px;
    padding: 20px;
  }

  .about-section {
    padding: 25px;
    gap: 30px;
  }

  .about-content h3 {
    font-size: 20px;
  }

  .about-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-us1 {
    padding: 30px 10px;
  }

  .about-text {
    font-size: 15px;
    padding: 15px;
  }

  .about-section {
    padding: 20px;
    gap: 20px;
  }

  .about-content h3 {
    font-size: 18px;
  }

  .about-content p {
    font-size: 13px;
  }
}









.footer {
  background: #f9f9f9;
  padding: 60px 8% 30px;
}


.footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 18%;
  margin-bottom: 20px;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #386641;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #080808;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #080808;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #f97a00;
}


.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #386641;
  padding-top: 20px;
  border-top: 1px solid #386641;
}


.contact-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 15px;
  color: #386641;
  text-decoration: underline;
  transition: 0.3s;
}

.contact-link:hover {
  color: #f97a00;
}

/*  Responsive Footer */
@media (max-width: 1024px) {
  .footer .footer-top {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer .footer-top {
    justify-content: center;
    gap: 30px;
  }

  .footer-col {
    flex: 1 1 45%; 
    text-align: center;
  }

  .footer-col h4 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer .footer-top {
    flex-direction: column;  
    align-items: center;
    gap: 25px;
  }

  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-col p,
  .footer-col ul li a {
    font-size: 14px;
  }
}


/*terms page*/
.terms-container {
  margin: 10px auto; 
  padding: 56px;
  max-width: 1200px;  
}

h1 {
  font-size: 28px;
  color: #386641;
  margin-bottom: 20px;
}

h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #386641;
}

h3 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #386641;
}

p {
  margin-bottom: 15px;
  line-height: 1.8; 
  text-align: justify; 
}

strong {
  color: #386641;
}

ul {
  margin: 15px 0 15px 25px;
}

ul li {
  margin-bottom: 10px;
}

.effective-date {
  font-weight: bold;
  margin-bottom: 20px;
}

a {
  color: #386641;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/*  Responsive Design */
@media (max-width: 1024px) {
  .terms-container {
    padding: 40px;
  }
  h1 { font-size: 26px; }
  h2 { font-size: 19px; }
  h3 { font-size: 17px; }
  p  { font-size: 15px; }
}

@media (max-width: 768px) {
  .terms-container {
    padding: 25px;
  }
  h1 { font-size: 24px; }
  h2 { font-size: 18px; }
  h3 { font-size: 16px; }
  p  { font-size: 14px; }
}

@media (max-width: 480px) {
  .terms-container {
    padding: 15px;
  }
  h1 { font-size: 22px; }
  h2 { font-size: 17px; }
  h3 { font-size: 15px; }
  p  { font-size: 13px; line-height: 1.6; }
}


    /* Contact Us Page */
    .contact-form {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 60px 20px;
      background: #f9f9f9;
    }

    .form-container {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      max-width: 800px;
      width: 100%;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .form-container h2 {
      text-align: center;
      margin-bottom: 25px;
      color: #f97a00;
    }

    .form-row {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
      flex-wrap: wrap;   
    }

    .form-group {
      flex: 1;
      display: flex;
      flex-direction: column;
      min-width: 250px; 
    }

    label {
      margin-bottom: 8px;
      font-weight: bold;
      color: #333;
    }

    input, textarea {
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 15px;
      width: 100%;   
    }

    input:focus, textarea:focus {
      border-color: #f97a00;
      outline: none;
    }

    textarea {
      resize: vertical; 
      min-height: 120px; 
    }

    .center {
      justify-content: center;
    }

    .form-button {
      background: #f97a00;
      color: white;
      border: 2px solid transparent;
      padding: 15px 40px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: bold;
      font-size: 18px;
      text-decoration: none;
      transition: all 0.3s ease;
      width: fit-content;
      display: inline-block;
    }

    .form-button:hover {
      background: transparent;
      border: 2px solid #f97a00;
      color: #f97a00;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .form-row {
        flex-direction: column;  
        gap: 15px;
      }
      .form-group {
        min-width: 100%;  
      }
      .form-button {
        width: 100%;  
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .form-container {
        padding: 20px;
      }
      .form-container h2 {
        font-size: 20px;
      }
      input, textarea {
        font-size: 14px;
        padding: 10px;
      }
      .form-button {
        font-size: 16px;
        padding: 12px;
      }
    }




/*privacy policy */
.privacy-container {
  margin: 10px auto;
  padding: 56px;
  max-width: 1100px;  
}

h1 {
  font-size: 28px;
  color: #386641;
  margin-bottom: 20px;
}

h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #111;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  text-align: justify;
}

strong {
  color: #386641;
}

ul {
  margin: 15px 0 15px 25px;
}

ul li {
  margin-bottom: 10px;
}

.effective-date {
  font-weight: bold;
  margin-bottom: 20px;
}

a {
  color: #386641;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .privacy-container {
    padding: 40px;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .privacy-container {
    padding: 25px;
  }
  h1 {
    font-size: 24px;
    text-align: center; 
  }
  h2 {
    font-size: 18px;
  }
  p {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .privacy-container {
    padding: 15px;
  }
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 16px;
  }
  p {
    font-size: 14px;
    line-height: 1.6;
  }
  ul {
    margin-left: 18px;
  }
}
/*partners page*/
section.partners {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  max-width: 1200px;
  margin: auto;
}

section.partners h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
  color: #386641;
}

.three-columns {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
  column-gap: 40px;
}

.three-columns ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.three-columns li {
  margin-bottom: 8px;
}

/*  Responsive Styles */
@media (max-width: 1024px) {
  .three-columns {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}

@media (max-width: 768px) {
  section.partners {
    padding: 25px;
  }
  section.partners h2 {
    font-size: 20px;
  }
  .three-columns {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

@media (max-width: 480px) {
  section.partners {
    padding: 15px;
  }
  section.partners h2 {
    font-size: 18px;
  }
  .three-columns ul {
    padding-left: 15px;
  }
}




/*contactus page*/
.quotes-form {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.quotesform-container {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.quotesform-container h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #f97a00;
}

.quotesform-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;   
}

.quotesform-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 250px; 
}

label {
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

input, select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;   
}

input:focus, select:focus {
  border-color: #f97a00;
  outline: none;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;  
}

.radio-group input[type="radio"] {
  accent-color: #386641;  
  transform: scale(1.2);  
  cursor: pointer;
}

.radio-group label {
  font-weight: normal;
  cursor: pointer;
  color: #333;
}

.center {
  justify-content: center;
}

.quotesform-button {
  background: #f97a00;
  color: white;
  border: 2px solid transparent;
  padding: 15px 40px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  display: inline-block;
}

.quotesform-button:hover {
  background: transparent;
  border: 2px solid #f97a00;
  color: #f97a00;
}

/*  Responsive Design */
@media (max-width: 1024px) {
  .quotesform-container {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .quotesform-row {
    flex-direction: column;  
    gap: 15px;
  }
  .quotesform-group {
    min-width: 100%;  
  }
  .quotesform-button {
    width: 100%;  
    text-align: center;
  }
}

@media (max-width: 480px) {
  .quotesform-container {
    padding: 20px;
  }
  .quotesform-container h2 {
    font-size: 20px;
  }
  input, select {
    font-size: 14px;
    padding: 8px;
  }
  .quotesform-button {
    font-size: 16px;
    padding: 12px;
  }
}
