body{
    margin:0;
    padding:0;
    background-color: #fafff9;
}

*{
    user-select:none;
}



.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 .iconas {
  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;
  }
}



/* =========================
   SECTION WRAPPER
========================= */
.section{
  max-width:1200px;
  margin:auto;
  padding:60px 20px;
}

/* =========================
   HEADER AREA
========================= */
.about-header{
  display:flex;
  gap:80px;
  align-items:flex-start;
  justify-content:space-between;
  margin-bottom:60px;
}

.about-title{
  min-width:300px;
}

.about-title p{
  font-size:30px;
  letter-spacing:3px;
  font-weight:100;
  font-family:'Courier New', Courier, monospace;
  color:#a1a25e;
}

.about-underline{
  width:90px;
  height:8px;
  background:#a1a25e;
  margin-top:px;
}

.about-text{
    padding-top:70px;
  max-width:750px;
  font-size:15px;
  line-height:25px;
  font-weight:lighter;
  font-family: sans-serif;
  color:#282a30;
  transform: scaleY(1.05);
}

.about-text b{
    color:#a1a25e;
    font-weight:800;
}

/* =========================
   CARDS GRID
========================= */
.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:30px;
}

.cardet{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:30px;
  margin-top:30px;
}
/* =========================
   CARD STYLE
========================= */
.card{
  position:relative;
  overflow:hidden;
  cursor:pointer;
  height:360px;
}

.card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s ease;
}

/* zoom hover */
.card:hover img{
  transform:scale(1.05);
}

/* bottom gold overlay */
.card-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:#a1a25e;
  padding:22px 25px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:white;
}

.card-title{
    font-family: 'Courier New', Courier, monospace;
  font-size:14px;
  letter-spacing:1px;
  text-transform:uppercase;
  font-weight:300;
}

/* arrow */
.arrow{
  font-size:26px;
  font-weight:bold;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:1000px){
  .cards{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:700px){

    .section{
  padding:60px 0px 60px 0px;
}

  .about-header{
    flex-direction:column;
    gap:25px;
    padding: 0px 20px;
  }

  .about-title p{
  margin-top:100px;
}



.about-text{
    padding-top:30px;
}

  .cards, .cardet{
    grid-template-columns:1fr;
    width:100%;
  }
}




.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;
}
}