/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 8%;
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    border-radius: 0 0 50px 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .hero-text h1 {
    font-size: 3rem;
    color: #0c4535;
    font-weight: 700;
    line-height: 1.3;
  }
  
  .hero-text span {
    color: #ff9800;
  }
  
  .hero-text p {
    margin-top: 15px;
    margin-right: 10px;
    font-size: 1.4rem;
    color: #444;
  }
  
  .hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
  }
  
  .btn {
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size:  1.3rem;
  }
  
  .btn.primary {
    background: #0c4535;
    color: #fff;
  }
  
  .btn.primary:hover {
    background: #093126;
  }
  
  .btn.secondary {
    background: #ff9800;
    color: #fff;
  }
  
  .btn.secondary:hover {
    background: #e68900;
  }
  
 
  .hero-img {
    text-align: center;
    flex: 1;                  /* let it share space with text */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
  }
  
  .hero-img img {
    width: 100%;              /* take full available width */
    max-width: 500px;         /* don’t grow too much on big screens */
    height: auto;             /* keep aspect ratio */
    border-radius: 25px;
    padding: 5px;
    /* background: linear-gradient(135deg, #0c4535, #145c48); */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border: 1px solid #ff9800;
    transition: all 0.4s ease;
    margin: 15px;
    box-sizing: border-box;
  }
  
  .hero-img img:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3), 0 0 20px #ff9800;
  }
  
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-img img {
      display: none;   /* smaller on mobile */
    }
  }


  .colore{
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    text-align: center;
  }
  /* Features Section */
  .features {
    padding: 60px 8%;
    background: var(--secondary-color);
  }
  
  .feature-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
  }
 
  .feature-box {
    background: #fff;
    padding: 30px 20px;
    width: 260px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;

  
  }
  .feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* default 4 per row */
    gap: 25px;
    align-items: center;
    justify-content: center;
    
  }
  .feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 13px 28px rgba(0,0,0,0.1);
  }
  
  .feature-box i {
    font-size: 45px;
    color: #ff9800;
    margin-bottom: 15px;
  }
  
  .feature-box h4 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: #0c4535;
    font-weight: bold;
  }
  
  /* Paras Section */
  .paras {
    padding: 60px 8%;
  }
  
  .para-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 25px;
  }
  
  .para-card {
    background: #0c4535;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .feature-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    
  }
  .para-card:hover {
    background: #ff9800;
    transform: translateY(-5px);
  }
 
  /* On laptops (<= 1024px) → 2 per row */
@media (max-width: 1024px) {
    .feature-row {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* On mobile (<= 576px) → 1 per row */
  @media (max-width: 576px) {
    .feature-row {
      grid-template-columns: 1fr;
    }
  }
 /* ===== ABOUT SECTION ===== */
.about {
  padding: 80px 8%;
  background: var(--secondary-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

/* Left Image with overlay card */
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Floating card on image */
.about-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary-color);
  color: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  max-width: 80%;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  font-size: 0.9rem;
  line-height: 1.4;
}
.about-card .stars {
  margin-top: 8px;
  color: #ff9800;
  font-size: 1rem;
}

/* Right Side Text */
.about-text h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}
.about-text h4 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ff9800;
  margin-bottom: 20px;
}
.about-text h4 span {
  color: var(--primary-color);
}
.about-text p {
  font-size: 1.4rem;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}
.about-text .btn.primary {
  background: var(--primary-color);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  font-size:  1.3rem;
}
.about-text .btn.primary:hover {
  background: #ff9800;
  color: #0e5a42;
}

/* Responsive */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-img {
    order: -1; /* move image on top for mobile */
  }
  .about-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    text-align: center;
  }
}
.aboutheadign{
  font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}
/* ===== CONTACT SECTION ===== */
.contact {
  padding: 80px 8%;
  background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Text */
.contact-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.contact-text h2 span {
  color: #0e5a42; /* accent shade */
}
.contact-text p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}
.contact-text .contact-info {
  list-style: none;
  padding: 0;
}
.contact-text .contact-info li {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #333;
}
.contact-text .contact-info i {
  color: var(--primary-color);
  margin-right: 8px;
}

/* Right Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
}
.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #c8d9d2;
  border-radius: 8px;
  font-size: 1.4rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 6px rgba(12, 69, 53, 0.15);
}
.contact-form textarea {
  resize: none;
}

.contact-form .btn.primary {
  background: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: bold;
  transition: background 0.3s ease;

}
.contact-form .btn.primary:hover {
  background: #ff9800;
  color: #0e5a42;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-text .contact-info {
    text-align: center;
  }
}
.para-slider {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 20px 0;
}

.para-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}
.para-track::-webkit-scrollbar {
  display: none; /* hide ugly scrollbar */
}

.para-card {
  flex: 0 0 auto;
  min-width: 120px;
  text-align: center;
  background: #004d40;
  color: #fff;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s;
}
.para-card:hover {
 
  background: #ff9800;
  transform: translateY(-5px);
  text-decoration: none;
  color: #004d40;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff9800;
  color: #00695c;
  border: none;
  padding: 5px 10px ;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  z-index: 2;
}
.arrow.left { left: 0; }
.arrow.right { right: 0; }
.arrow:hover { background: #00695c; color: #e68900; }

  /* 🌍 Country Box (responsive size) */
  .country-box {
    width: 100%;              /* full width inside swiper */
    max-width: 240px;         /* don’t get too big */
    height: 170px;
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: auto;             /* center inside slide */
  }
  
  
  .country-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  }
  
  /* Flag */
  .country-box img {
    width: clamp(50px, 8vw, 90px);   /* responsive flag size */
    height: auto;
    margin-bottom: 15px;
    border-radius: 6px;
    object-fit: cover;
  }
  
  /* Country Name */
  .country-box h4 {
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    font-weight: bold;
    color: #0c4535;
    margin: 0;
  }
  
  /* 🔘 Swiper Buttons */
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #ff9800;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
  }
  
  /* 🔘 Swiper Pagination Dots */
  .swiper-pagination {
    position: relative !important;
    margin-top: 20px;
    text-align: center;
  }
  
  /* 📱 Responsive Tweaks */
  @media (max-width: 768px) {
    .country-box {
      width: 180px;
      height: 150px;
      padding: 15px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
      width: 35px;
      height: 35px;
    }
  }
  
  @media (max-width: 480px) {
    .country-box {
      width: 150px;
      height: 130px;
      padding: 12px;
    }
    
    .country-box img {
      width: 60px;
    }
    
    .country-box h4 {
      font-size: 1rem;
    }
  }.mySwiper {
    width: 100%;
    overflow: hidden;
  }
  
  