/* =========================================================
   RESET & GLOBAL
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  font-family: Arial, "Poppins", sans-serif;
}
body {
  background: #fff;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
} /* Ensure flexible images */

/* Scroll Animation Base */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.9s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   PRELOADER
========================================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: #0e3826;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.loader {
  width: 45px;
  height: 45px;
  border: 5px solid #c1953b;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   NAVBAR (Optimized Padding)
========================================================= */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.375rem 4.375rem; /* 22px 70px */
  background: #ffffffb8;
  backdrop-filter: blur(8px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Modern touch */
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.logo-icon {
  width: 2.375rem;
  height: 2.375rem;
}
.logo h2 {
  font-size: 1.375rem;
  color: #0e3826;
  font-weight: 700;
}
.logo p {
  font-size: 0.6875rem;
  color: #0e3826;
  margin-top: -0.3125rem;
}

.nav-links {
  display: flex;
  gap: 2.375rem;
}
.nav-links a {
  color: #0e3826;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #c1953b;
}

.btn-small {
  background: #0e3826;
  color: #fff !important;
  padding: 0.5625rem 1rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.3s;
}
.btn-small:hover {
  background: #173c2b;
}

/* Hamburger — hidden by default */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #0e3826;
}

/* Mobile Nav */
@media (max-width: 850px) {
  .navbar {
    padding: 1.375rem 1.5rem;
  }
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: #0e3826;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.6875rem;
    transition: 0.5s;
    z-index: 1000;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    color: #fff;
    font-size: 1.25rem;
  }
  .nav-links a:hover {
    color: #c1953b;
  }
}

/* =========================================================
   HERO (Responsive scaling)
========================================================= */
.hero {
  height: 100vh;
  background: center/cover;
  display: flex;
  align-items: center;
  margin-top: 5.3125rem; /* Compensation for fixed navbar */
  position: relative;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 35, 22, 0.65);
}

.hero-container {
  position: relative;
  max-width: 40.625rem;
  margin-left: 5.625rem;
  color: #fff;
}
.badge {
  font-size: 0.8125rem;
  background: #ffffff20;
  padding: 0.4375rem 1.125rem;
  border-radius: 20px;
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 1.5625rem;
}
.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #c1953b;
}

.hero h1 {
  font-size: 3.75rem;
  line-height: 1.15;
  font-weight: 700;
}
.gold {
  color: #c1953b;
  font-style: italic;
}

.subtitle {
  margin: 1.375rem 0;
  line-height: 1.55;
  font-size: 1.0625rem;
}

.hero-btns {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.625rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: #c1953b;
  padding: 0.8125rem 1.75rem;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-primary:hover {
  background: #a88134;
}
.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 0.8125rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}
.btn-secondary:hover {
  background: #ffffff30;
}

.stats {
  display: flex;
  gap: 4.375rem;
  margin-top: 3.4375rem;
}
.stats h3 {
  font-size: 2.375rem;
  font-weight: 700;
}
.stats p {
  font-size: 0.8125rem;
  margin-top: -0.3125rem;
}

/* Hero Responsive Adjustments */
@media (max-width: 950px) {
  .hero-container {
    margin-left: 2rem;
    padding: 1rem 0;
  }
}
@media (max-width: 650px) {
  .hero-container {
    max-width: 90%;
    margin: auto;
    text-align: center;
  }
  .hero h1 {
    font-size: 3rem;
    line-height: 1.2;
  }
  .hero-btns {
    justify-content: center;
  }
  .stats {
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .stats {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* =========================================================
   SERVICES (Grid adjustments)
========================================================= */
/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 5.625rem 0 4.375rem;
  color: #173c2b;
}

.heading {
  max-width: 46.875rem;
  margin: auto;
  text-align: center;
  margin-bottom: 3.4375rem;
  padding: 0 1rem;
}

.sub-title {
  color: #c1953b;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.heading h2 {
  font-size: 2rem;
  margin: 0.75rem 0;
  font-weight: 700;
}
.heading p {
  font-size: 1rem;
  color: #48544e;
}

/* ===== FLEX CARDS ===== */
.services-grid {
  width: 92%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: space-between;
}

/* NORMAL CARD */
.card {
  background: #fff;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  flex: 1 1 calc(25% - 1.75rem); /* 4 per row desktop */
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 12.1875rem;
  object-fit: cover;
}

.card-body {
  padding: 1.375rem;
  flex-grow: 1;
}

.card-body h3 {
  font-size: 1.125rem;
  margin: 0.5rem 0;
  font-weight: 700;
}

.card-body p {
  font-size: 0.875rem;
  line-height: 1.42;
  color: #48544e;
}

.icon {
  font-size: 1.4375rem;
}

.learn {
  font-weight: 600;
  color: #173c2b;
  transition: 0.3s;
}
.learn:hover {
  color: #c1953b;
}

/* ===== EMERGENCY CARD (NO IMG) ===== */
.card-wide.no-img {
  display: flex;
  flex: 1 1 100%;
  background: linear-gradient(135deg, #124733, #0d3a2a);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: 0.3s;
}
.card-wide.no-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.canvas-banner {
  background: rgba(255, 255, 255, 0.1);
  padding: 18px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  margin-bottom: 22px;
}

.emergency-icon {
  font-size: 1.6rem;
}

.banner-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #edd296;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.wide-body {
  width: 100%;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.wide-body h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 1rem 0 1.2rem;
}

.wide-body p {
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.55;
  opacity: 0.95;
  margin-bottom: 2rem;
}

/* CTA */
.call-btn {
  display: inline-block;
  background: #c1953b;
  color: #fff;
  padding: 0.9rem 1.7rem;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}
.call-btn:hover {
  background: #e4b76c;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* TABLET — 2 cards per row */
@media (max-width: 991px) {
  .card {
    flex: 1 1 calc(50% - 1.75rem);
  }
}

/* MOBILE — 1 card per row */
@media (max-width: 560px) {
  .card {
    flex: 1 1 100%;
  }
  .wide-body {
    text-align: center;
    padding: 2.3rem 1.5rem;
  }
  .canvas-banner {
    margin: 0 auto 1.4rem;
  }
  .call-btn {
    margin: auto;
  }
}

/* =========================================================
   ABOUT US (Verification section renamed and styled)
========================================================= */
.verify-section {
  padding: 5.625rem 0;
  color: #173c2b;
}
.verify-container {
  width: 88%;
  margin: auto;
  display: flex;
  gap: 3.4375rem;
  align-items: flex-start;
}
.verify-image {
  width: 50%;
  position: relative;
}
.verify-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.11);
}
.quote-box {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: #fff;
  padding: 1.125rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-style: italic;
  width: 16.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.verify-content {
  width: 50%;
}
.sub-head {
  color: #c1953b;
  font-weight: 700;
  font-size: 0.8125rem;
}
.verify-content h2 {
  font-size: 1.9375rem;
  margin: 0.625rem 0 0.9375rem;
}
.verify-desc {
  color: #48544e;
  font-size: 0.9375rem;
  line-height: 1.52;
  margin-bottom: 1.5625rem;
}

.verify-table {
  background: #f6f7f5;
  border-radius: 10px;
  padding: 1.625rem;
}
.row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e0e3e0;
  padding: 0.6875rem 0;
  font-size: 0.875rem;
}
.row.header {
  border: none;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.status {
  font-weight: 700;
  color: #0c632d;
}
.green-dot {
  width: 0.5625rem;
  height: 0.5625rem;
  background: #0c632d;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.375rem;
}

@media (max-width: 950px) {
  .verify-container {
    flex-direction: column;
    width: 92%;
  }
  .verify-image,
  .verify-content {
    width: 100%;
  }
  .verify-image {
    order: 2;
  }
  .verify-content {
    order: 1;
    margin-bottom: 2rem;
  }
}
@media (max-width: 480px) {
  .quote-box {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
}

/* =========================================================
   CAREERS (Removed all styles)
========================================================= */

/* =========================================================
   CONTACT FORM (Updated form styling for better UX)
========================================================= */
.contact-section {
  padding: 5.625rem 1rem;
  text-align: center;
  background: #f8faf8;
}
.contact-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #173c2b;
}
.contact-section p {
  color: #48544e;
  max-width: 34.375rem;
  margin: auto;
}
.contact-form {
  width: 95%;
  max-width: 34.375rem;
  margin: 2.375rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  /* Added select styling */
  padding: 0.8125rem 1rem;
  border: 1px solid #c6cec8;
  border-radius: 6px;
  font-size: 0.9375rem;
  outline: none;
  width: 100%;
  appearance: none; /* Remove default select styling for better control */
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2348544e'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.5em 1.5em;
  cursor: pointer;
}
.contact-form select:invalid {
  color: #48544e;
} /* Styling for placeholder option */

.submit-btn {
  background: #0e3826;
  color: #fff;
  padding: 0.8125rem 1.25rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: background 0.3s;
}
.submit-btn:hover {
  background: #173c2b;
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  background: #093629;
  padding: 4.375rem 0 0;
  color: #dfece6;
}
.footer-container {
  width: 88%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.8125rem;
}
.footer-col h3 {
  font-size: 1.5625rem;
  margin-bottom: 0.75rem;
}
.footer-col h4 {
  color: #edd296;
  font-size: 1.0625rem;
  margin-bottom: 1rem;
}
.footer-desc {
  line-height: 1.5;
  font-size: 0.875rem;
  max-width: 16.25rem;
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}
.footer-col ul li a {
  color: #dfece6;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #edd296;
}

.footer-bottom {
  margin-top: 2.8125rem;
  background: #06271f;
  padding: 1.125rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: #bccbc4;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col:nth-child(1) .footer-desc {
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col:nth-child(1) .footer-desc {
    margin: auto;
  }
}




/* ===== CIRCLE SERVICES SECTION ===== */
.circle-services {
  padding: 90px 0 70px;
  background: #fcfaf7;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.circle-services-heading h5 {
  font-size: 18px;
  color: #6da24d;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: .5px;
}

.circle-services-heading h2 {
  font-size: 46px;
  margin-bottom: 55px;
  color: #0e3b28;
  font-weight: 700;
}

.circle-services-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 42px;
}

.circle-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 170px;
  transition: .3s ease;
}

.circle-service-item img {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  object-fit: cover;
  transition: .35s;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .12);
}

.circle-service-item:hover img {
  transform: scale(1.07);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .18);
}

.circle-service-item p {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #0e3b28;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .circle-services-heading h2 {
    font-size: 38px;
  }
}

@media (max-width: 650px) {
  .circle-service-item {
    width: 140px;
  }
  .circle-service-item img {
    width: 135px;
    height: 135px;
  }
  .circle-services-wrapper {
    gap: 32px 24px;
  }
}

@media (max-width: 450px) {
  .circle-services-heading h2 {
    font-size: 32px;
  }
  .circle-service-item {
    width: 120px;
  }
  .circle-service-item img {
    width: 115px;
    height: 115px;
  }
}


/* LinkedIn Footer Badge */
.linkedin-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #dfece6;
  transition: 0.3s;
}

.linkedin-badge img {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  transition: 0.3s;
}

.linkedin-badge:hover img {
  transform: scale(1.08);
}

.linkedin-badge:hover span {
  color: #0a66c2;
}


.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  object-fit: contain;
}

.linkedin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  color: #dfece6;
  transition: .3s;
}

.linkedin-badge img {
  width: 20px;
  height: 20px;
}

.linkedin-badge:hover {
  color: #edd296;
  transform: translateY(-2px);
}

@media (max-width: 650px) {
  .footer-brand {
    justify-content: center;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 6px;
  }
  .linkedin-badge {
    justify-content: center;
  }
}

.footer-col p b {
  color: #edd296;
}
.footer-col p {
  margin-bottom: 12px;
  line-height: 1.45;
}

.footer-col p a {
  color: #dfece6;
  text-decoration: none;
  font-weight: 600;
}
.footer-col p a:hover {
  color: #edd296;
}


