/* =======================
   GLOBAL RESET
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
    
}

body {
  align-items: center;
  overflow-x: hidden;
  background-color: #ffffff;
}


/* =========================
   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;
}

/* =========================
   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;
  }
}

/* =========================
   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;
  }
}


/* =======================
   HEADER & LOGO
======================= */
.header {
  background: #fff;
 padding-top: 10px;
 padding-bottom: 10px;
 padding-right: 30px;
 
  display: flex;
  padding-left: 8px;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* =========================
   LOGO BASE
========================= */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
}


 .logo img {
  height: 70px;
  width: 70px;
  margin-left: 5px  ;
}


/* =========================
   LOGO TEXT WRAPPER
========================= */
/* .logo-text {
  display: flex;
  flex-direction: column;
   
  overflow: visible;
} */

/* =========================
   MAIN TITLE (GRADIENT)
========================= */
.logo-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #E1B352, #7c5a0f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 2;
  display: inline-block;
}

/* =========================
   SUB TITLE (GRADIENT)
========================= */
.logo-subtitle {
  font-size: 12px;

   font-weight: 700;
  letter-spacing: 0.6px;
  background: linear-gradient(90deg, #b39148, #5b5b1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: -1;
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 992px) {
  .logo img {
    width: 60px;
    height: 55px;

  }

  .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;
  }
}

/* =======================
   NAVBAR
======================= */
.navbar {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
  -webkit-transition: transform 0.3s ease, color 0.3s ease;
  -moz-transition: transform 0.3s ease, color 0.3s ease;
  -ms-transition: transform 0.3s ease, color 0.3s ease;
  -o-transition: transform 0.3s ease, color 0.3s ease;
}

.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);
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #0f7d39;
  transition: width 0.3s ease;
  -webkit-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -ms-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

/* =======================
   BUTTONS
======================= */
.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -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;
}

.btn-dark {
  background: #000;
}

.btn-green {
  background: #0f7d39;
}
.btn a{
  list-style: none;
  text-decoration:none ;
  color: white;
}
.btn a:hover{
  color: white;
}



.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 ICON
======================= */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 4px 0;
  transition: 0.4s;
  -webkit-transition:;
  -moz-transition:;
  -ms-transition:;
  -o-transition:;
}

.menu-icon.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
  -webkit-transform: rotate(45deg) translate(5px, 6px);
  -moz-transform: rotate(45deg) translate(5px, 6px);
  -ms-transform: rotate(45deg) translate(5px, 6px);
  -o-transform: rotate(45deg) translate(5px, 6px);
}

.menu-icon.open span:nth-child(2) {
  opacity: 0;
}

.menu-icon.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
  -moz-transform: rotate(-45deg) translate(6px, -6px);
  -ms-transform: rotate(-45deg) translate(6px, -6px);
  -o-transform: rotate(-45deg) translate(6px, -6px);
}

/* =======================
   SLIDER (RESPONSIVE)
======================= */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  -webkit-transition:;
  -moz-transition:;
  -ms-transition:;
  -o-transition:;
}

.slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* =======================
   SLIDE TEXT
======================= */
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}


.slide-content h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom:5px;
  text-transform: uppercase;
}

.slide-content h1 span {
  color: #3adc78;
}

.slide-content p {
  font-size: 20px;
  line-height: 1.7;
}

/* =======================
   TEXT ANIMATION
======================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    -webkit-transform:;
    -moz-transform:;
    -ms-transform:;
    -o-transform:;
}
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform:;
    -moz-transform:;
    -ms-transform:;
    -o-transform:;
}
}

.slide.active h1 {
  animation: fadeUp 1s ease forwards;
  -webkit-animation:;
}

.slide.active p {
  animation: fadeUp 1.3s ease forwards;
  -webkit-animation:;
}

/* =======================
   SLIDER DOTS
======================= */
.dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform:;
  -moz-transform:;
  -ms-transform:;
  -o-transform:;
}

.dot {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.5;
  border-radius: 50%;
  margin: 0 6px;
  display: inline-block;
}

.dot.active {
  opacity: 1;
}

/* =======================
   WHATSAPP FLOAT BUTTON
======================= */
.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;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  -webkit-transform:;
  -moz-transform:;
  -ms-transform:;
  -o-transform:;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 992px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
  }

  .navbar.active {
    right: 0;
  }

  .menu-icon {
    display: flex;
  }

  .btn:hover,
  .navbar a:hover {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

  .slide-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  

  .slide-content {
    left: 5%;
    right: 5%;
  }

  .slide-content h1 {
    font-size: 26px;
  }

  .slide-content p {
    font-size: 15px;
    
  }

  .slider {
    height: 85vh;
  }
.btn-dark{
  padding-inline: 23px;
}
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 24px;
    bottom: 18px;
    right: 18px;
  }
}
/* dropdown menu design
 */
 /* =======================
   DROPDOWN (CLICK BASED)
======================= */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  border-radius: 6px;
  /*SHADOW*/box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  z-index: 999;
  -webkit-border-radius:;
  -moz-border-radius:;
  -ms-border-radius:;
  -o-border-radius:;
}

.dropdown-menu a {
  padding: 12px 18px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #0f7d39;
}

/* Active dropdown */
.nav-dropdown.active .dropdown-menu {
  display: flex;
}

/* MOBILE (keep shadow but softer) */
@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    background: #ffffff;
    border-radius: 4px;
    /*softermobileshadow*/box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
}
/* main page section end */


/* about us part one section */

/* =======================
   EAGLE ABOUT SECTION
======================= */

#eagle-about-section {
  font-family: "Segoe UI", sans-serif;
  background: #fafafa;
  padding: 80px 5%;
}

/* Layout */
.eagle-about-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 10px;

}

/* =======================
   IMAGE (SQUARE STYLE)
======================= */

.eagle-about-image {
  width: 100%;
  max-width: 530px;
  aspect-ratio: 1 / 1;
  border-radius:2px;
  overflow: hidden;
  margin-left: 60px;
  -webkit-border-radius:2px;
  -moz-border-radius:2px;
  -ms-border-radius:2px;
  -o-border-radius:2px;
}

.eagle-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* =======================
   CONTENT
======================= */

.eagle-about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:20px;
  margin-left: 80px;

}

.eagle-about-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #7c5a0f;
  margin-bottom: 14px;
}

.eagle-about-heading {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  color: #0f7d39;
  margin-bottom: 22px;
}

.eagle-about-text {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 34px;
}

/* Features */
.eagle-about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
  margin-bottom: 38px;
}

.eagle-about-features span {
  font-size: 15px;
  color: #333;
  padding-left: 28px;
  position: relative;
}

.eagle-about-features span::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #c9a24d;
  font-size: 14px;
}

/* Quote */
.eagle-about-quote {
  max-width: 560px;
  background: #fafafa;
  padding: 20px 24px;
  border-left: 5px solid #c9a24d;
  font-style: italic;
  color: #444;
  border-radius: 4px;
}

/* =======================
   ANIMATIONS
======================= */

.eagle-animate-left,
.eagle-animate-up {
  opacity: 0;
  transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -moz-transition: all 0.8s ease-out;
  -ms-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
}

.eagle-animate-left {
  transform: translateX(-40px);
  -webkit-transform: translateX(-40px);
  -moz-transform: translateX(-40px);
  -ms-transform: translateX(-40px);
  -o-transform: translateX(-40px);
}

.eagle-animate-up {
  transform: translateY(30px);
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
}

.eagle-show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
}

/* =======================
   RESPONSIVE
======================= */

/* Tablet */
@media (max-width: 1024px) {
  .eagle-about-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .eagle-about-image {
    margin: auto;
    max-width: 380px;
  }

  .eagle-about-content {
    align-items: center;
  }

  .eagle-about-features {
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }

  .eagle-about-quote {
    margin: auto;
  }
}

/* Mobile */
@media (max-width: 600px) {
  #eagle-about-section {
    padding: 60px 20px;
  }

  .eagle-about-image {
    max-width: 300px;
    margin-bottom: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}
.eagle-about-image img{
  margin-left: 8px;
}
.eagle-about-content{
  margin-left: 1px;
  gap: 5px;
}

  .eagle-about-heading {
    font-size: 28px;
  }

  .eagle-about-text {
    font-size: 15px;
  }

  .eagle-about-features {
   grid-template-columns: repeat(2, 1fr);
  
  }
    .eagle-about-features span {
    padding-left: 10px;

    font-size: 14px;
  }

  .eagle-about-features span::before {
    font-size: 13px;
    left: 0; /* keep aligned */
    top: 1px; /* slight vertical fine-tune */
  }
}

/* about us section design end */

/* Services section design */
.services-section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-tag {
  color: #8a6b2d;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: "Segoe UI", sans-serif;
}

.section-title {
  color: #1c7c3a;
  font-size: 32px;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.service-card.show {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #eaf6ef;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.icon-box i {
  color: #1c7c3a;
  font-size: 18px;
}

.service-card h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* our services section end */

/* visa step section design */
#eagle-tower-visa-steps {
  padding: 70px 20px;
  font-family: "Segoe UI", sans-serif;
  background: #ffffff;
}

.eagle-tower-visa-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.eagle-tower-visa-heading {
  font-size: 36px;
  color: #0f7d39;
  margin-bottom: 60px;
}

/* GRID */
.eagle-tower-visa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
}

/* CARD */
.eagle-tower-visa-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
}

.eagle-tower-visa-card.show {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

/* CIRCLE IMAGE */
.eagle-tower-visa-circle {
  position: relative;
  width: 170px;
  height: 170px;
  margin: auto;
  border-radius: 50%;
  border: 3px solid #0f7d39;
  overflow: hidden;
  -webkit-border-radius:;
  -moz-border-radius:;
  -ms-border-radius:;
  -o-border-radius:;
}

.eagle-tower-visa-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NUMBER */
.eagle-tower-visa-circle span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
}

/* TEXT */
.eagle-tower-visa-card h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #222;
}

.eagle-tower-visa-card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .eagle-tower-visa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .eagle-tower-visa-heading {
    font-size: 28px;
  }

  .eagle-tower-visa-grid {
    grid-template-columns: 1fr;
  }
}

/* visa step section design end */
/* review section  */
/* =========================
   EAGLE TOWER REVIEW SECTION
========================= */

.eagle-review-section {
  background-color: #fafafa;
  padding: 80px 20px;
  font-family: "Segoe UI", sans-serif;
}

.eagle-review-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.eagle-review-tag {
  color: #8a6b2d;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.eagle-review-title {
  color: #1c7c3a;
  font-size: 32px;
  margin-bottom: 50px;
}

/* Grid */
.eagle-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card */
.eagle-review-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: left;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);

  /* animation initial */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.eagle-review-card.eagle-review-show {
  opacity: 1;
  transform: translateY(0);
}

/* Stars */
.eagle-review-stars {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 4px;
}

.eagle-review-stars i {
  font-size: 14px;
  color: #f4c150;
}

/* Header */
.eagle-review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.eagle-review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: #eaf6ef;
  flex-shrink: 0;
}

.eagle-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.eagle-review-info h4 {
  font-size: 16px;
  color: #222;
  margin-bottom: 2px;
}

.eagle-review-info span {
  font-size: 13px;
  color: #777;
}

/* Text */
.eagle-review-text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .eagle-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .eagle-review-title {
    font-size: 24px;
  }

  .eagle-review-grid {
    grid-template-columns: 1fr;
  }
}
/* counting section design */
.stats-section {
  
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 180px;
  text-align: center;
}

.stat-box {
  padding: 20px;
}

.stat-box i {
  font-size: 40px;
  color: #0f7d39;

}

.stat-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0f7d39;
  margin: 10px 0;
}

.stat-box p {
  font-size: 16px;
  color: #333;
  font-weight: 650;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    
  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* counting 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 */



/* Client section design */
/* ================= CLIENT / PARTNERS SECTION ================= */

.client-partners-section {
  padding: 20px 20px 40px;
  overflow: hidden;
  background: #ffffff;
}

/* ================= HEADER ================= */

.client-partners-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.client-partners-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #0f7d39;
  font-family: "Segoe UI", sans-serif;
}

.client-partners-subtitle {
  margin-top: 14px;
  font-size: 17px;
  color: #64748b;
  line-height: 1.6;
  font-family: "Segoe UI", sans-serif;
}

/* ================= CAROUSEL ================= */

.client-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
}

.client-carousel-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: client-marquee 32s linear infinite;
}

.client-carousel-track.reverse {
  animation: client-marquee-reverse 36s linear infinite;
}

.pause-on-hover:hover .client-carousel-track {
  animation-play-state: paused;
}

/* ================= CLIENT CARD ================= */

.client-card {
  width: 220px;
  height: 130px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.client-card img {
  max-width: 150px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: transform 0.3s ease, filter 0.3s ease;
  -webkit-transition: transform 0.3s ease, filter 0.3s ease;
  -moz-transition: transform 0.3s ease, filter 0.3s ease;
  -ms-transition: transform 0.3s ease, filter 0.3s ease;
  -o-transition: transform 0.3s ease, filter 0.3s ease;
  -webkit-filter: grayscale(0%);
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.08);
}

.client-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* ================= FADE EDGES ================= */

.client-carousel-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.client-carousel-fade.left {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.client-carousel-fade.right {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

/* ================= ANIMATIONS ================= */

@keyframes client-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes client-marquee-reverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .client-card {
    width: 170px;
    height: 110px;
  }

  .client-card img {
    max-width: 120px;
    max-height: 55px;
  }
}

/* partner section design end */


/* join us section  */

/* =========================
   EXPAND SECTION
========================= */
.expand-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.expand-container {
  max-width: 1100px;
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 70px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* Animation active */
.expand-container.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   TEXT STYLES
========================= */
.expand-heading {
  font-size: 36px;
  font-weight: 600;
  color: #0f7d39;
  margin-bottom: 16px;
}

.expand-text {
  font-size: 17px;
  color: #5f6b7a;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* =========================
   BUTTONS
========================= */
.expand-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.expand-btn {
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary Button */
.expand-btn.primary {
  background: #0f7d39;
  color: #ffffff;
}

.expand-btn.primary:hover {
  background: #0c672f;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 125, 57, 0.35);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

/* Secondary Button */
.expand-btn.secondary {
  border: 2px solid #0f7d39;
  color: #0f7d39;
  background: transparent;
}

.expand-btn.secondary:hover {
  background: #0f7d39;
  color: #ffffff;
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .expand-container {
    padding: 50px 25px;
  }

  .expand-heading {
    font-size: 28px;
  }

  .expand-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .expand-heading {
    font-size: 24px;
  }

  .expand-btn {
    width: 100%;
    text-align: center;
  }
}
/* join us secton end */


