* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  
}

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height:85px;
  width: 100%;
  padding: 1px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(40, 39, 39, 0.85);
  transition: 0.3s ease;
  z-index: 9999;
}

/* Scroll background */
.navbar.scrolled {
  background: rgba(40, 39, 39, 0.85);
  backdrop-filter: blur(6px);
}

.nav-logo img{
 width:310px;
 object-fit:cover;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  position: relative;
  padding: 10px;
}

/* Hover underline */
.nav-links li:not(:last-child) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: rgb(38, 191, 38);
  transition: 0.3s ease;
}

.nav-links li:not(:last-child) a:hover::after{
  width: 100%;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.login-btn {
  background: #05aa68;
  color: white !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 500;
  transition: 0.3s;
  font-size:19px;
}

.login-btn:hover {
  background: #058f56;
}

/* 
   1024px Tablet 
========================= */
@media (max-width:1024px){

.nav-logo img{
 width:230px;
}

.navbar{height:80px;}
.nav-links{
 gap:18px;
}

.nav-links a{
 font-size:18px;
}

}


/* 
   768px (Tablet)
========================= */
@media (max-width:768px){

.menu-toggle{
 display:block;
}

.nav-links{
 position:absolute;
 top:70px;
 left:0;
 width:100%;
 background:#1e1e1e;
 flex-direction:column;
 align-items:center;
 gap:32px;
 padding:25px 0;
 display:none;
}

.nav-links.active{
 display:flex;
}

.nav-links a{
 font-size:22px;
}

.nav-logo img{
 width:230px;
}
.navbar{
 height:100px;   
}

}


/* 
   480px (Mobile)
========================= */
@media (max-width:480px){

.navbar{
 padding:3px 13px;
 height: 100px;

}

.nav-logo img{
 width:260px;
 margin-left:-40px;
}

.nav-links{
 gap:27px;
 margin-top:8px;
 
}

.nav-links a{
 font-size:19px;
 
}

.login-btn{
 padding:9px 17px;
 font-size:18px;
}

}





/* POPUP BACKGROUND */
.form-popup{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


/* FORM BOX */
.form-container{
  background: #ffffff;
  padding: 15px;
  width: 500px;
  max-width: 90%;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
      
}


/* CLOSE BUTTON */
.close-btn{
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
  color: #242222;
}


/* HEADING */
.form-container h2{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}


/* PARAGRAPH */
.form-container p{
  font-size: 14px;
  color: #666;
}


/* INPUT FIELDS */
.form-container input,
.form-container textarea{
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 17px;
  outline: none;
  transition: 0.3s;
}


/* INPUT FOCUS */
.form-container input:focus,
.form-container textarea:focus{
  border-color: #1ac61a;
}


/* TEXTAREA */
.form-container textarea{
  min-height: 90px;
  resize: none;
}


/* SUBMIT BUTTON */
.form-submit{
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: linear-gradient(to top , #6bd079, #05b12b);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.form-submit:hover{
background: linear-gradient(90deg , #56cb66, #05b12b);
}
/* popup message after form submit */
.popup-message{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,0.6);
  justify-content:center;
  align-items:center;
  padding:20px;
  z-index:9999;
}
.popup-content{
  background:#fff;
  padding:35px 30px;
  border-radius:12px;
  text-align:center;
  width:100%;
  max-width:400px;
  position:relative;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.popup-content h2{
  font-size:26px;
  margin-bottom:10px;
}

.popup-content p{
  font-size:16px;
  line-height:1.5;
}

.close-popup{
  position:absolute;
  top:12px;
  right:15px;
  cursor:pointer;
  font-size:22px;
}


/* =========================
   1024px (Small Laptop)
========================= */
@media (max-width:1024px){

.form-container{
  width:450px;
  padding:20px;
   max-height: 80vh;   
  overflow-y: auto;  
  padding:12px;
  
}

.form-container h2{
  font-size:26px;
}

}


/* =========================
   768px (Tablet)
========================= */
@media (max-width:768px){

.form-container{
  width:60%;
  padding:18px;
  max-height: 90vh;   
  overflow-y: auto;  
  padding:12px;
  margin-top:40px;
}

.form-container h2{
  font-size:24px;
}

.form-container p{
  font-size:13px;
}

.form-container input,
.form-container textarea{
  padding:9px;
  font-size:14px;
}

.form-submit{
  padding:13px;
  font-size:15px;
}

.popup-content{
  max-width:350px;
  padding:30px 25px;
}

}


/* =========================
   480px (Mobile)
========================= */
@media (max-width:480px){

.form-container{
  width:98%;
max-height: 80vh;   
  overflow-y: auto;  
  padding:13px;
  margin-bottom:50px;
}

.form-container h2{
  font-size:21px;
}

.form-container p{
  font-size:11px;
}

.form-container input,
.form-container textarea{
  padding:8px;
  font-size:12px;
}

.form-submit{
  padding:10px;
  font-size:14px;
}

.popup-content{
  max-width:320px;
  padding:22px 20px;
}

.popup-content h2{
  font-size:20px;
}

.popup-content p{
  font-size:14px;
}

}






/* footer code */
/* ===== FOOTER BASE ===== */
.footer {
  background: linear-gradient(135deg, #313231, #0e0c18);
  color: white;
  padding: 60px 20px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-logo {
  width: 240px;
  margin-bottom: 15px;
}

/* HEADINGS */
.footer-col h4 {
  color: #13d651;
  margin-bottom: 15px;
  font-size: 20px;
}

/* TEXT */
.footer-col p {
  font-size: 20px;
  line-height: 1.7;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 12px 0;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  font-size: 21px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #13d651;
}

/* SOCIAL */
.social-links {
  display: flex;
  gap: 18px;
  text-align:center;
  margin-top: 15px;
}

.social-links a {
  color: white;
  font-size: 26px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #13d651;
  transform: scale(1.2);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 35px;
  font-size: 19px;
  color: #aaa;
}

/* =========================
   1024px (Tablet / Laptop)
========================= */
@media (max-width:1024px){

  .footer-container{
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
  }

  .footer-col h4{
    font-size: 19px;
  }

  .footer-col p,
  .footer-col ul li a{
    font-size: 19px;
  }

  .social-links a{
    font-size: 24px;
  }
}

/* =========================
   768px (Tablet)
========================= */
@media (max-width:768px){

  .footer{
    padding:50px 20px;
  }

  .footer-container{
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    text-align: center;
  }

  .footer-logo{
    margin: auto;
  }

  .social-links{
    justify-content: center;
  }

  .footer-col h4{
    font-size: 18px;
  }

  .footer-col p,
  .footer-col ul li a{
    font-size: 18px;
  }
}

/* =========================
   480px (Mobile)
========================= */
@media (max-width:480px){

  .footer{
    padding:40px 15px;
  }

  .footer-container{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer-logo{
    width: 200px;
    margin: auto;
  }

  .footer-col h4{
    font-size: 17px;
  }

  .footer-col p,
  .footer-col ul li a{
    font-size: 17px;
  }

  .social-links{
    justify-content: center;
  }

  .social-links a{
    font-size: 22px;
  }

  .footer-bottom{
    font-size: 16px;
  }
}





/* contact page code */

.contact-heading {
  width: 100%;
  min-height: 450px;
  padding: 25px 0;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;

  background: linear-gradient(270deg, #58cb56, #1c7a26, #a4df9c, #059a5e);
  background-size: 500% 300%;
animation: gradientMove 12s linear infinite;
}


.contact-heading p {
  font-size: 22px;
  line-height: 29px;
  margin-top:15px;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* =========================
   1024px 
========================= */
@media (max-width:1024px){

  .contact-heading{
    min-height:420px;
    font-size:35px;
    padding:20px 0;
  }
  .contact-heading h2{
    font-size:42px;
  }
  .contact-heading p{
    font-size:21px;
  }

}


/* =========================
   768px 
========================= */
@media (max-width:768px){

  .contact-heading{
    min-height:360px;
    font-size:36px;
    padding:18px 15px;
  }
.contact-heading h2{
    font-size:36px;
    margin-top:30px;
  }
  .contact-heading p{
    font-size:20px;
    line-height:23px;
  }

}


/* =========================
   480px 
========================= */
@media (max-width:480px){

  .contact-heading{
    min-height:350px;
    padding:15px 12px;
  }
  .contact-heading h2{
    font-size:34px;
    margin-top:60px;
  }
  .contact-heading p{
    font-size:18px;
    line-height:1.2;
  }

}



/*  contact details card  */
.contact-section {
  padding: 80px 10px;
  display: flex;
  justify-content: center;
  background: #dbdfdb;
}

.contact-card-horizontal {
 background: #ffffff;
  width: 100%;
  max-width: 1200px;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  transition: 0.4s ease;
}

.contact-card-horizontal:hover {
 will-change: transform;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top:7px;
  min-width: 220px;
}

.contact-item .icon {
  font-size: 35px;
}

.contact-item h4 {
  margin: 0;
  font-size: 22px;
  color: #222;
}

.contact-item p {
  margin: 3px 0 0;
  font-size: 20px;
  font-weight:600;
  color: #4f514f;
}
/* =========================
   1024px (Small laptops)
========================= */
@media (max-width:1024px){

  .contact-card-horizontal{
    padding:45px 25px;
    gap:25px;
  }

  .contact-item .icon{
    font-size:32px;
  }

  .contact-item h4{
    font-size:20px;
    
  }

  .contact-item p{
    font-size:17px;
    padding:10px;
  }

}


/* =========================
   768px (Tablets)
========================= */
@media (max-width:768px){

  .contact-card-horizontal{
    flex-direction:column;
    align-items:flex-start;
    padding:30px 22px;
    gap:20px;
  }

  .contact-item{
    width:100%;
  }

  .contact-item .icon{
    font-size:30px;
  }
 .contact-item h4{
    font-size:19px;
  }

  .contact-item p{
    font-size:17px;
  }
}


/* =========================
   480px (Mobile)
========================= */
@media (max-width:480px){

  .contact-section{
    padding:60px 15px;
  }

  .contact-card-horizontal{
    padding:25px 18px;
    border-radius:16px;
  }

  .contact-item{
    gap:12px;
  }

  .contact-item .icon{
    font-size:22px;
    margin-bottom:10px;
  }

  .contact-item h4{
    font-size:18px;
  }

  .contact-item p{
    font-size:17px;
  }

}


/* form and map */
.contact-wrapper {
  padding: 60px 10px;
  display: flex;
  gap: 30px;
  background-color: rgb(28, 27, 27);
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Form Section */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.form-heading{
    font-size:27px;
    background-color: rgb(28, 27, 27);
    padding-top:20px;
    text-align:center;
   }
.contact-form h2 {
  margin-bottom: 25px;
  font-size: 35px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 20px;
  transition: 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #0072ff;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to top , #83dc8f, #05b12b);
  color: #fff;
  font-size: 21px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  opacity: 0.9;
  background: linear-gradient(90deg, #7fda97, #14a734);
}

/* Map Section */

.contact-map {
  flex: 1;
  min-width: 300px;
   height: 650px; 
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================
   1024px (Small laptops)
========================= */
@media (max-width:1024px){

  .contact-wrapper{
    gap:30px;
    padding:60px 20px;
  }
  .form-heading{
    font-size:26px;
   }
  .contact-form{
    padding:35px;
  }

  .contact-form h2{
    font-size:28px;
  }
.input-group input,
  .input-group textarea{
    padding:10px 12px;
    font-size:17px;
  }

  .contact-form button{
    padding:12px;
    font-size:18px;
  }
}


/* =========================
   768px (Tablets)
========================= */
@media (max-width:768px){

  .contact-wrapper{
    flex-direction:column;
    align-items:center;
    gap:25px;
  }
   .form-heading{
    font-size:25px;
   }

  .contact-form,
  .contact-map{
    width:100%;
  }

  .contact-map{
    aspect-ratio:16/10;
  }

  .contact-form h2{
    text-align:center;
    font-size:24px;
  }
  .input-group input,
  .input-group textarea{
    padding:10px 12px;
    font-size:17px;
  }

  .contact-form button{
    padding:12px;
    font-size:19px;
  }

}


/* =========================
   480px (Mobile)
========================= */
@media (max-width:480px){

  .contact-wrapper{
    padding:50px 15px;
  }
  .form-heading{
      font-size:21px;
  }
  .contact-form{
    padding:25px 20px;
    border-radius:16px;
  }

  .contact-form h2{
    font-size:20px;
  }

  .input-group input,
  .input-group textarea{
    padding:10px 12px;
    font-size:17px;
  }

  .contact-form button{
    padding:12px;
    font-size:18px;
  }

  .contact-map{
    border-radius:16px;
  }

}
