/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root{
  --green: #7ac943;
  --header-h: 72px;
  --dark: #0b0b0b;
}

/* Reset */
*{box-sizing:border-box;margin:0;padding:0}
html,body{
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body{
  font-family:"Poppins",sans-serif;
  color:#111;
  background:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  padding-top:var(--header-h); /* avoids header overlap */
}

/* HEADER */
header{
  position:fixed;top:0;left:0;right:0;
  height:var(--header-h);
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 40px;
  background:rgba(0,0,0,0.85);backdrop-filter: blur(4px);
  z-index:1500;
}
.logo{display:flex;align-items:center;gap:12px}
.logo img{height:52px;width:auto;display:block}
.logo h1{color:var(--green);font-size:18px;font-weight:700;letter-spacing:1px}

/* Desktop navbar */
.navbar{display:flex}
.navbar ul{display:flex;gap:22px;align-items:center;list-style:none}
.navbar a{color:#fff;text-decoration:none;font-weight:500;padding:6px 4px;transition:color .2s}
.navbar a:hover,.navbar a.active{color:var(--green)}
.btn{background:var(--green);color:#fff;padding:8px 16px;border-radius:28px;text-decoration:none}

/* ===== BANNER STYLES ===== */
.banner-container {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 800px;
  margin: 0;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  z-index: 1;
  overflow: hidden;
}

.banner-slide.active {
  opacity: 1;
  z-index: 2;
}

.banner-content {
  position: absolute;
  bottom: 100px;
  left: 10%;
  max-width: 600px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease-out 0.3s;
}

.banner-slide.active .banner-content {
  transform: translateY(0);
  opacity: 1;
}

.banner-text {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin-bottom: 15px;
  line-height: 1.2;
}

.banner-subtext {
  color: white;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  margin-bottom: 30px;
  line-height: 1.6;
}

.banner-button {
  display: inline-block;
  background: var(--green);
  color: #333;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.banner-button:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.banner-navigation {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
  outline: none;
}

.banner-dot.active {
  background-color: var(--green);
  transform: scale(1.2);
}

/* Floating Buttons */
.floating-btns {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.floating-btns:hover {
  opacity: 1;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #004aad, #ff7b00);
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  text-decoration: none;
}

.float-btn i {
  font-size: 20px;
  transition: transform 0.4s ease;
}

.float-btn span {
  position: absolute;
  right: 60px;
  background: rgba(0, 0, 0, 0.85);
  padding: 8px 14px;
  border-radius: 30px;
  color: #fff;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.float-btn:hover span {
  opacity: 1;
  transform: translateX(0);
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 128, 0, 0.4);
}

.float-btn.call {
  background: linear-gradient(135deg, #25d366, #128C7E);
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128C7E);
}

.float-btn.help {
  background: linear-gradient(135deg, #ff7b00, #ff5500);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-btn {
  animation: floaty 3s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .banner-text {
    font-size: 2.8rem;
  }
  
  .banner-subtext {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .banner-container {
    height: 70vh;
  }
  
  .banner-content {
    left: 5%;
    right: 5%;
    text-align: center;
  }
  
  .banner-text {
    font-size: 2.2rem;
  }
  
  .banner-subtext {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .banner-button {
    padding: 12px 30px;
  }
  
  .floating-btns {
    bottom: 20px;
    right: 20px;
  }
  
  .float-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .banner-container {
    height: 60vh;
  }
  
  .banner-text {
    font-size: 1.8rem;
  }
  
  .banner-subtext {
    font-size: 0.95rem;
  }
  
  .banner-button {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  
  .floating-btns {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .float-btn {
    width: 45px;
    height: 45px;
  }
  
  .float-btn i {
    font-size: 18px;
  }
}

/* Pulse animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  .btn {
    background: var(--green);
    color: #fff;
    padding: 8px 16px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse 2s infinite;
    display: inline-block;
  }
  
  .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      background-color: rgb(10, 10, 10);
    }

    .btn-primary {
        background: var(--green);
        color: #fff;
        padding: 8px 16px;
        border-radius: 15px;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: pulse 2s infinite;
        display: inline-block;
      }
      
    .btn-primary:hover {
          transform: translateY(-2px);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          background-color: rgb(10, 10, 10);
        }

/* Hamburger (hidden on desktop) */
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer}
.hamburger span{width:26px;height:3px;background:#fff;border-radius:3px;display:block;transition:transform .25s,opacity .25s}

/* HERO */
.hero{position:relative;height:calc(60vh - var(--header-h));min-height:300px;overflow:hidden}
.hero video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));}
.hero-content{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);text-align:center;color:#fff;z-index:2;padding:18px;max-width:1100px}
.hero-content h2{font-size:3rem;margin-bottom:10px}
.hero-content h2 span{color:var(--green)}
.hero-content p{font-size:1.1rem;margin-bottom:18px}
.btn-primary{background:var(--green);padding:12px 26px;border-radius:30px;color:#fff;text-decoration:none;font-weight:600}

/* Sections */
.section{padding:70px 10%;text-align:center}
.section.dark{background:#0f0f0f;color:#eee}
.section h2{color:var(--green);margin-bottom:14px;font-size:2rem}
.section p{max-width:900px;margin:0 auto;line-height:1.7}

/* Footer */
footer{background:#000;color:#bfbfbf;padding:18px;text-align:center;font-size:.95rem}

/* NUMBER SECTION */
.number-top {
  background: transparent;
  background-image: url('../images/whitebg2.jpg');
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.8s ease-out;
}

.number-contact {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 0 20px;
}

.section-heading {
  color: #7ac943;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  animation: slideIn 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
}

.number-phone,
.number-email {
  color: #7ac943;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  padding: 12px 20px;
  border-radius: 8px;
  background: black;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideIn 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.number-email {
  animation-delay: 0.2s;
}

.number-phone:hover,
.number-email:hover {
  background: #7ac943;
  color: #0b0b0b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.number-phone:active,
.number-email:active {
  transform: translateY(0);
}

.number-phone::before,
.number-email::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #7ac943;
  transition: width 0.3s ease;
}

.number-phone:hover::before,
.number-email:hover::before {
  width: 70%;
}

/* Animations */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .number-top {
    padding: 30px 0;
  }
  
  .section-heading {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .contact-buttons {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .number-phone,
  .number-email {
    width: 100%;
  }
  
  .number-phone,
  .number-email {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 1rem;
    padding: 10px 15px;
  }
  
  .number-email {
    animation-delay: 0.1s;
  }
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Left Side: Contact Info */
.contact-info {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  background: #0f0f0f;
  color: #fff;
}

.contact-info h2 {
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--green);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-item i {
  color: var(--green);
  font-size: 20px;
  margin-top: 5px;
}

.contact-item h4 {
  color: var(--green);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--green);
}

.about-us {
  margin: 25px 0;
  line-height: 1.7;
  color: #ccc;
}

.logo-container {
  margin-top: 30px;
  text-align: center;
}

.contact-logo {
  max-width: 150px;
  height: auto;
}

/* Right Side: Contact Form */
.contact-form {
  flex: 1.5;
  padding: 40px;
  background: #fff;
}

.contact-form h2 {
  color: #7ac943;
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-form h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--green);
}

/* Form Layout */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  min-width: 0; /* Prevents flex items from overflowing */
  margin-bottom: 0;
}

.form-group.full-width {
  flex: 0 0 100%;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.required {
  color: #ff4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(122, 201, 67, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: #5daa2d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Form Validation */
input:required:invalid,
select:required:invalid,
textarea:required:invalid {
  border-left: 3px solid #ff4444;
}

input:required:valid,
select:required:valid,
textarea:required:valid {
  border-left: 3px solid var(--green);
}

/* Responsive Design */
@media (max-width: 900px) {
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    width: 100%;
  }
  
  .form-group.full-width {
    margin-bottom: 20px;
  }
  header {
    padding: 10px 18px;
  }
  
  .logo h1 {
    font-size: 15px;
  }
  
  .navbar {
    display: none;
    position: fixed;
    top: var(--header-h);
    right: 14px;
    width: 86vw;
    max-width: 300px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
    padding: 18px;
    transform: translateX(110%);
    transition: transform 0.25s ease-in-out;
  }
  
  .navbar.active {
    transform: translateX(0%);
  }
  
  .hamburger {
    display: flex;
  }
  
  .contact-wrapper {
    flex-direction: column;
    margin: 0 15px;
  }
  
  .contact-info,
  .contact-form {
    padding: 30px 25px;
  }
  
  .contact-form h2,
  .contact-info h2 {
    font-size: 1.6rem;
  }
}

/* Animation for form elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

/* Add delay to each form group */
.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }
.form-group:nth-child(8) { animation-delay: 0.8s; }
.form-group:nth-child(9) { animation-delay: 0.9s; }
.form-group:nth-child(10) { animation-delay: 1s; }

/* Custom select styling */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 40px !important;
}

  /* Slide Left Animation */
  .slide-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s ease-out;
  }
  
  .slide-left.show {
    opacity: 1;
    transform: translateX(0);
  }

  /* ===== Slide Right ===== */
.slide-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease-out;
  }
  
  .slide-right.show {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* ===== Slide Up ===== */
  .slide-up {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease-out;
  }
  
  .slide-up.show {
    opacity: 1;
    transform: translateY(0);
  }
  