body{
    margin:0;
    padding:0;
    background-color: #fafff9;
}

*{
    user-select:none;
}

#preloader{
    background:rgb(250, 255, 249) url('Loading.gif') no-repeat center;
    background-size:20%;
    height:100vh;
    width:100%;
    top:0;
    position:fixed;
    z-index:500000000000;
}

.parentnav{
     width:100%;
      align-items: center;
     background-color:white;
     top:0;
         position: fixed;
         z-index:20000000;
         box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav{
    width:90%;
    margin-left:5%;
    margin-right:5%;
    font-family:sans-serif;
    display:flex;
    justify-content: space-around;
    background:white;
    align-items: center;

}



.brand{
    width:160px;
    padding-top:5px;
    padding-bottom:5px;
    
}



.men{
    list-style:none;
    display: flex;
    justify-content: space-around;
    width:60%;
}

.online-b > a{
    text-decoration:none;
    color:white;
   
}

.online-b{
    font-weight:bolder;
    font-size:15px;
     background-color:#176900;
     padding:15px;
     border-radius:5px;
}

#firstboostrap{
    padding-right:5px;
}

.menu, .online-b{
    float:left;
}

.menu{
    font-size:13px;
}

.menu a{
    text-decoration:none;
    color:black;
    transition:0.5s;
}

.menu a:hover{
   border-bottom: 2px solid #176900;
    transition-duration:0.5s;
}


.button{
    display:none;
    background-color: #acd723;
    padding:5px;
}


.line1, .line2, .line3{
    width:15px;
    height:2px;
    background-color:black;
    margin:5px;
    transition:0.5s;
}

.bgx{
     transition:0.5s;
    background-color:black;
}


.button:hover .line1{
    animation-name:line1;
    animation-duration:2s;
}

.button:hover .line2{
    animation-name:line2;
    animation-duration:2s;
}

.button:hover .line3{
    animation-name:line3;
    animation-duration:8s;
}

@keyframes line1{
    0%{margin-right:0px;}
    50%{margin-right:15px;}
    100%{margin-right:0px;}
}

@keyframes line2{
    0%{margin-left:0px;
}
    50%{margin-left:15px;}
    100%{margin-left:0px;
        background-color:#21710b;
    }
}

@keyframes line3{
    0%{margin-right:0px;}
    50%{margin-right:1px;}
    100%{margin-right:0px;}
}

@media screen and (max-width:1000px){
    .men{
        width:60%;
    }

    li{
        padding:5px;
    }

}

@media screen and (max-width:768px){
    #preloader{
         background-size:30%;
    }

    .nav{
        width:95%;
    }

    .brand{
        width:120px;
    }

    .men{
        position:absolute;
        display:flex;
        width:100%;
        height:80vh;
        padding-bottom:150px;
        flex-direction: column;
        right:0;
        color: black;
        top:55px;
        transform: translateX(100%);
        transition:0.5s;
        background-color:white;
        
    }

    li a:hover{
    border-bottom:none;
}

li a{
    transition:1s;
    color: black;
}

    li a:hover{
 color: #083f25;
 border-bottom:0px;
}

    .menactive{
        transform: translateX(0%);
        transition:0.5s;
    }


    .button{
        display:block;
    }

    li{
        text-align:center;
        padding-top: 20px;
        width:100%;
        color: black;
    }

    li a{
        color: black;
    }
}


.contact-hero {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  padding: 120px 20px;
  text-align: center;
  color: #ffffff;

  /* Dark blue radial gradient from center */
  background: radial-gradient(
    circle at center,
    #1e8a49 0%,
    #0f2a14 40%,
    #021705 100%
  );

  overflow: hidden;
}

/* Subtle dot pattern overlay */
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  margin-bottom: 30px;
  backdrop-filter: blur(6px);
}

.hero-badge .icon {
  font-size: 16px;
  color:white;
}

.contact-hero h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 20px;
  }

  .contact-hero h1 {
    font-size: 38px;
  }

  .contact-hero p {
    font-size: 16px;
  }
}



.contact-section {
    font-family: Arial, Helvetica, sans-serif;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

/* ===== LEFT SIDE ===== */

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  margin-bottom: 30px;
  color: #176900;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  width: 100%;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #176900;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 0px 12px 12px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #acd723;
  box-shadow: 0 0 0 3px rgba(172, 215, 35, 0.2);
}

/* BUTTON */

.send-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #176900, #acd723);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.send-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ===== RIGHT SIDE ===== */

.contact-info h2 {
  color: #176900;
  margin-bottom: 15px;
}

.info-text {
  margin-bottom: 30px;
  color: #444;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

/* GREEN VARIATIONS */

.green-dark {
  background: #176900;
}

.green-light {
  background: #acd723;
  color: #176900;
}

.green-accent {
  background: linear-gradient(135deg, #176900, #acd723);
}

.green-muted {
  background: rgba(23, 105, 0, 0.15);
  color: #176900;
}

/* TEXT */

.info-item h4 {
  color: #176900;
  margin-bottom: 4px;
}

.info-item p,
.info-item span {
  font-size: 14px;
  color: #555;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    flex-direction: column;
  }
}

.locations-section {
  background: #dbe4d9;
  padding: 80px 20px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

.locations-container {
  max-width: 1200px;
  margin: auto;
}

.locations-section h2 {
  font-size: 32px;
  color: #000000;
  margin-bottom: 10px;
}

.locations-subtext {
  color: #555;
  margin-bottom: 40px;
  font-size: 16px;
}

/* MAP BOX */

.map-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 25px;
  overflow: hidden;
  background: #e5e7eb;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .locations-section h2 {
    font-size: 24px;
  }

  .map-wrapper {
    height: 350px;
    border-radius: 18px;
  }
}


.footer {
  background: #013d0c;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-img {
  width: 150px;
}

.footer-about p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

.socials i {
  margin-right: 15px;
  background: #111;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.footer-links h3 {
  margin-bottom: 15px;
  color: white;
}

.footer-links ul {
  list-style: none;
  margin-left:-15%;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #aaa;
}

.footer-policy span {
  margin-left: 20px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .contain-daddy,
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contain-daddy,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-policy span {
    margin-left: 0;
    margin-right: 15px;
  }

  .footer-links ul {
  list-style: none;
  margin-left:-15%;
  text-align:left;
}

.footer-links li {
  margin-bottom: 10px;
}
}