/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* TOP BAR */
/* =========================
   TOP BAR — DESKTOP
========================= */
.top-bar {
  background-color: #0f7d39;
  color: #ffffff;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  font-size: 14px;
}

/* LEFT CONTENT */
.top-left {
  display: grid;
  grid-auto-flow: column;
  gap: 18px;
  align-items: center;
}

/* RIGHT CONTENT */
.top-right {
  justify-self: end;
  white-space: nowrap;
  font-weight: bolder;
}
.whatsapp-float {
  position: fixed;
  bottom: 55px;
  right: 75px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 28px;
  z-index: 2000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
/* =========================
   MOBILE & TABLET
========================= */
@media (max-width: 768px) {
  .top-bar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 8px;
  }

  /* phone + email stay in ONE ROW */
  .top-left {
    grid-auto-flow: column;
    justify-content: center;
    justify-items: center;
    gap: 14px;
  }

  .top-right {
    justify-self: center;
    font-size: 12px;
    letter-spacing: 0.5px;
  }
     .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 24px;
    bottom: 18px;
    right: 18px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .top-bar {
    padding: 10px 12px;
    font-size: 12px;
  }

  .top-left span {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 6px;
  }

  .top-right {
    font-size: 11px;
  }
  
}

/* =========================
   VERY SMALL DEVICES
========================= */
@media (max-width: 360px) {
  .top-bar {
    font-size: 8px;
    padding: 8px;
    gap: 8px;
  }

  .top-left span {
    font-size: 8px;
  }

  .top-right {
    font-size: 8px;
  }
}

/* top bar design end */
/* HEADER */
.header {
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img {
   width: 70px;
   height: 70px;
   margin-left: 5px;
  }

.logo-title {
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(90deg, #E1B352, #7c5a0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-subtitle {
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(90deg, #b39148, #5b5b1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.navbar a:hover {
  color: #0f7d39;
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fafafa;
  min-width: 180px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
}
.dropdown-menu a {
  padding: 10px 14px;
  white-space: nowrap;
}
.nav-dropdown.active .dropdown-menu {
  display: flex;
}

/* BUTTONS */
.btn {
  padding: 8px 16px;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.btn-dark { background: #000; }
.btn-green { background: #0f7d39; }
.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
}

/* MOBILE MENU */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-icon span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 4px 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .menu-icon { display: flex; }
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    display: none;
    padding: 15px;
  }
  .navbar.active { display: flex; }
  .nav-dropdown.active .dropdown-menu {
    position: static;
    box-shadow: none;
  }
}

/* logo responsive */
/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 992px) {
  .logo img {
    width: 75px;
  }

  .logo-title {
    font-size: 23px;
  }

  .logo-subtitle {
    font-size: 10px;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 400px) {
  .logo {
    gap: 4px;
  }

   .logo img {
    width: 50px;
    height: 45px;
  }

  .logo-title {
    font-size: 18px;
  }

  .logo-subtitle {
    font-size: 8px;
  }
}
.btn a{
  list-style: none;
  text-decoration:none ;
  color: white;
}
.btn a:hover{
  color: rgb(118, 241, 118);
}
/* header and top bar logo design end */

/* =========================
   ABOUT SECTION
===1====================== */
.about-section {
  background: #ffffff;
  padding: 40px 20px; /* REDUCED */
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 30px; /* REDUCED */
}

.about-content {
  flex: 50%;
  margin-left: 40px;
}

.about-content h2 {
  font-size: 34px;
  color: #0f7d39;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-btn {
  background: #0f7d39;
  padding: 12px 30px;
  border-radius: 6px;
  border: none;
}
.about-btn:hover{
  background: #1da250;
    transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
}

.about-btn a {
  color: #fff;
  text-decoration: none;
}

/* IMAGE */
.about-illustration {
  flex: 40%;
  display: flex;
  justify-content: center;
}

.about-illustration img {
  width: 100%;
  max-width: 380px;   /* desktop size */
  height: 350px;       /* 🔑 responsive */
  object-fit: contain;
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width:576px){
  .about-content{
    margin-left: 5px;
    margin-right: 5px;
  }
}

/* =========================
   RECRUITMENT SECTION
========================= */
/* =========================
   RECRUITMENT SECTION
========================= */

.recruitment {
  padding: 50px 20px; /* REDUCED GAP */
  background: #ffffff;
}

.recruitment-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
  flex-direction: row; /* ✅ DESKTOP DEFAULT */
}

/* IMAGE */
.recruitment-image {
  flex: 45%;
  display: flex;
  justify-content: center;
}

.recruitment-image img {
  max-width: 420px; /* desktop size */
  height: auto;
  object-fit: contain;
}

/* CONTENT */
.recruitment-content {
  flex: 55%;
}

.recruitment-content h2 {
  font-size: 32px;
  color: #0f7d39;
  margin-bottom: 16px;
}

.recruitment-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

/* =========================
   TABLET & MOBILE
========================= */

@media (max-width: 992px) {
  .recruitment-container {
    flex-direction: column-reverse; /* ✅ ONLY FOR RESPONSIVE */
    text-align: center;
    gap: 40px;
  }

  .recruitment-image img {
    max-width: 320px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 576px) {
  .recruitment-image img {
    max-width: 240px;
  }

  .recruitment-content h2 {
    font-size: 26px;
  }

  .recruitment-content p {
    font-size: 14.5px;
  }
}


/* recruitment section end */

/* what we do section started */


/* SECTION */
.et-what-we-do {
  padding: 70px 20px;
 
}

.et-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT CONTENT */
.et-content {
  flex: 1;
}

.et-heading {
  color: #0f7d39;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

.et-list {
  list-style: none;
}

.et-list li {
  font-size: 17px;
  margin-bottom: 14px;
  color: #222;
  line-height: 1.6;
}

/* RIGHT IMAGE */
.et-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}



.et-circle img {
  width: 90%;
  height: auto;
  object-fit: contain;
}

/* FLOAT ANIMATION */
@keyframes float {
  0% { transform: translateY(0); -webkit-transform: translateY(0); -moz-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); }
  50% { transform: translateY(-10px); -webkit-transform: translateY(-10px); -moz-transform: translateY(-10px); -ms-transform: translateY(-10px); -o-transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .et-container {
    flex-direction: column;
    text-align: center;
  }

  .et-heading {
    font-size: 26px;
  }

  .et-circle {
    width: 260px;
    height: 240px;
  }
}
@media (max-width: 576px){
.et-what-we-do{
  padding: 5px;
}
.et-circle{
  height: 150px;
  
}
.et-what-we-do{
   margin-top: 10px;
}
}
/* what we do section end */

/* meet the expert section design */
.experts-section {
  padding: 60px 20px;
  background: #ffffff;
}

.experts-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Title */
.experts-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f7d39;
  margin-bottom: 10px;
}

.experts-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Card */
.expert-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.expert-card:hover {
  transform: translateY(-8px);
}

/* Image Circle */
.expert-image {
  width: 130px;
  height: 130px;
  margin: 0 auto 15px;
  background: #00bf63;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-image img {
  width: 90%;
  height: auto;
}

/* Name */
.expert-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/* Role */
.expert-role {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #a36b00;
}

/* ======================
   Responsive
====================== */
@media (max-width: 992px) {
  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .experts-title {
    font-size: 26px;
  }

  .experts-subtitle {
    font-size: 14px;
  }

  .experts-grid {
    grid-template-columns: 1fr;
  }

  .expert-image {
    width: 120px;
    height: 120px;
  }
}
/* meet the expert section design end */
/* footer section */
.footer {
  background-color: #0f7d39;
  color: #fff;
  padding-top: 60px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 30px;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}
.footer-col ul li a{
  list-style: none;
  text-decoration: none;
  color: #fff;
}

.footer-col ul li span {
  font-weight: bold;
}

.footer-col ul li:hover {
  opacity: 0.8;
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.social-icons a:hover {
  background: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* copyright section design  */
/* ===============================
   COPYRIGHT SECTION
================================= */
#copyright-section {
  background-color: #0d6f32; /* slightly darker than footer */
  padding: 15px 20px;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

.copyright-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.copyright-left {
  text-align: left;
  font-size: 14px;
}

.copyright-center {
  text-align: center;
}

.copyright-center img {
  height: 60px;
  width: 100px;
  border-radius: 6px;
  background: #fff;
  padding: 5px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.copyright-right {
  text-align: right;
  font-size: 14px;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .copyright-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .copyright-left,
  .copyright-right {
    text-align: center;
  }

  .copyright-center img {
    height: 40px;
    width: auto;
  }
}

/* copyright section design end */
/* footer section end */