/* Reset */
body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
}
/* TOP BAR */
.top-bar {
  background: #0b1f2d;
  color: #ffffff;
  font-size: 14px;
}

.top-bar .container {
  padding: 12px 0;
}

/* LEFT */
.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-left a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.3s;
}

.top-left a i {
  color: #7bb441;
  margin-right: 6px;
}

.top-left a:hover {
  opacity: 1;
}

.divider {
  opacity: 0.4;
}

/* RIGHT */
.top-right a {
  color: #ffffff;
  margin-left: 14px;
  font-size: 14px;
  opacity: 0.7;
  transition: 0.3s;
  text-decoration: none;
}

.top-right a:hover {
  color: #7bb441;
  opacity: 1;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 576px) {
  .top-left {
    width: 100%;
    justify-content: center;
    margin-bottom: 4px;
    text-align: center;
  }

  .top-right {
    width: 100%;
    justify-content: center;
    display: flex;
  }
}

/* Header Background */
.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease;
}

.main-header.sticky {
  position: fixed;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-header.sticky .nav-link {
  color: #1f2d3d !important;
}

/* Navbar */
.navbar {
  padding: 5px 0;
}

/* Logo */
.logo-img {
  height: 60px;
  filter: brightness(0) invert(1);

}

.main-header.sticky .logo-img{
  filter: inherit;

}


.dropdown-toggle::after{
  display: none;
}


/* Menu Links */
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #fff !important;
  position: relative;
  padding: 5px 0;
}

.main-header.sticky .nav-link{
  color: #1f2d3d !important;
}

.nav-link:hover,
.nav-link.active {
  color: #7bb441 !important;
}

/* SERVICES DROPDOWN */
.dropdown-menu {
  border-radius: 14px;
  padding: 12px 0;
  border: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.dropdown-item {
  padding: 10px 22px;
  font-weight: 500;
  color: #0b1f2d;
  transition: 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(123,180,65,0.12);
  color: #7bb441;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-submenu > .submenu-toggle::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  border: 0;
  margin-left: 12px;
}

.dropdown-submenu > .submenu-menu {
  top: 0;
  left: 100%;
  margin-top: -8px;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.dropdown-submenu:hover > .submenu-menu {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DESKTOP HOVER OPEN (OPTIONAL BUT PRO) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }

  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateY(10px);
  }

  .navbar .dropdown:hover .dropdown-menu {
    transform: translateY(0);
  }

  .submenu-menu {
    min-width: 260px;
  }
}


/* Subtle underline effect */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #7bb441;
  transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Contact Button */
.contact-btn {
  background: #7bb441;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #689d35;
  color: #fff;
}

/* Mobile */
@media (max-width: 991px) {
  .contact-btn {
    display: none;
  }

  .navbar-nav {
    padding-top: 15px;
  }
}


/* MOBILE MENU BUTTON */
.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #fff;
}

/* OFFCANVAS */
.mobile-offcanvas {
  background: linear-gradient(
    160deg,
    #0b1f2d 0%,
    #132f2a 100%
  );
  color: #ffffff;
  width: 280px;
}

/* TITLE */
.offcanvas-title span {
  color: #7bb441;
}

/* NAV */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.mobile-nav li {
  margin-bottom: 8px;
}

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: block;
  padding: 10px 0;
  transition: 0.3s;
}

.mobile-nav a:hover {
  color: #7bb441;
}

.mobile-submenu {
  margin-left: 10px;
}

.mobile-submenu-toggle {
  padding-left: 12px !important;
  font-size: 14px;
  opacity: 0.95;
}

.mobile-submenu-list {
  list-style: none;
  padding-left: 14px;
  margin-top: 6px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.mobile-submenu-list a {
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
}

/* CTA */
.mobile-nav a.cta {
  background: #7bb441;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  margin-top: 10px;
}

/* CONTACT */
.mobile-contact {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 14px;
}

.mobile-contact i {
  color: #7bb441;
  margin-right: 8px;
}

/* DESKTOP SAFETY */
@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none !important;
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Dark left gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 31, 45, 0.95) 0%,
    rgba(11, 31, 45, 0.7) 45%,
    rgba(11, 31, 45, 0.2) 70%,
    transparent 100%
  );
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-tag {
  color: #7bb441;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-tag span {
  width: 50px;
  height: 3px;
  background: #7bb441;
}

/* HEADINGS */
.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-content h1 span {
  color: #7bb441;
}

.hero-content p {
  margin: 25px 0;
  max-width: 480px;
  opacity: 0.9;
}

/* BUTTON */
.hero-btn {
  background: #7bb441;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
}

.hero-btn:hover {
  background: #689d35;
  color: #fff;
}

/* OWL NAV */
.hero-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2) !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.hero-slider .owl-nav .owl-prev {
  left: 30px;
}

.hero-slider .owl-nav .owl-next {
  right: 30px;
}

/* STATS CARD */
.hero-stats {
  position: absolute;
  bottom: -70px;
  width: 100%;
  z-index: 3;
}

.hero-stats .container {
  background: #fff;
  border-radius: 16px;
  padding: 35px 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.hero-stats h3 {
  color: #7bb441;
  font-weight: 800;
  margin-bottom: 5px;
}

.hero-stats p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  color: #6c757d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .hero-stats {
    position: relative;
    bottom: 0;
    margin-top: 40px;
  }
}

.company-section {
  padding: 120px 0;
  background: #ffffff;
}

.company-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.company-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* Floating badge */
.company-badge {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background: #0b1f2d;
  color: #ffffff;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  max-width: 260px;
}

.company-badge span {
  font-size: 13px;
  opacity: 0.8;
}

.company-badge strong {
  color: #7bb441;
  font-size: 15px;
}

/* Content */
.section-tag {
  color: #7bb441;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: inline-block;
}

.company-content h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.company-content h2 span {
  color: #7bb441;
}

.company-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 30px;
}

/* Why us */
.why-us h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-us h5 i {
  color: #7bb441;
  font-size: 20px;
}

.why-us ul {
  list-style: none;
  padding: 0;
}

.why-us ul li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.why-us ul li i {
  color: #7bb441;
  font-size: 18px;
  margin-top: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  .company-section {
    padding: 70px 0;
  }

  .company-content h2 {
    font-size: 32px;
  }

  .company-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }
}

/* IMAGE CARD OUTER */
.company-image-card {
  position: relative;
  max-width: 520px;
}

/* IMAGE WRAPPER */
.company-image-inner {
  background: #ffffff;
  padding: 14px;
  border-radius: 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

/* IMAGE ITSELF */
.company-image-inner img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

/* FLOATING LABEL */
.company-float-label {
  position: absolute;
  right: -10px;
  bottom: -22px;
  background: #0b1f2d;
  padding: 18px 22px;
  border-radius: 16px;
  color: #ffffff;
  max-width: 260px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* LABEL TEXT */
.company-float-label span {
  display: block;
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.company-float-label strong {
  color: #7bb441;
  font-size: 15px;
  font-weight: 700;
}

/* RESPONSIVE FIX */
@media (max-width: 991px) {
  .company-image-card {
    margin: 0 auto;
  }

  .company-image-inner img {
    height: 380px;
  }

  .company-float-label {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 20px;
  }
}

/* SECTION BG */
.industries-section {
  padding: 60px 0;
  background: radial-gradient(
    circle at top,
    #122836 0%,
    #0b1f2d 60%,
    #071822 100%
  );
}

/* SECTION TAG */
.section-tag {
  color: #7bb441;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 12px;
}

/* TITLE */
.section-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
}

.section-title span {
  color: #7bb441;
}

/* CARD */
.industry-card {
  height: 140px;
  padding: 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* SUBTLE INNER GLOW */
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(123, 180, 65, 0.12),
    transparent 60%
  );
  opacity: 0;
  transition: 0.3s;
}

.industry-card i {
  font-size: 26px;
  color: #7bb441;
  z-index: 1;
}

.industry-card h5 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  z-index: 1;
}

/* HOVER */
.industry-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.industry-card:hover::before {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .industry-card {
    height: auto;
    padding: 22px;
  }
}

/* SECTION */
.products-section {
  padding: 60px 0;
  background: #ffffff;
}

/* TAG + TITLE */
.section-tag {
  color: #7bb441;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
}

.section-title-dark {
  font-size: 42px;
  font-weight: 800;
  color: #0b1f2d;
}

.section-title-dark span {
  color: #7bb441;
}

/* BROCHURE BUTTON */
.brochure-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  color: #0b1f2d;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
}

.brochure-btn .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #7bb441;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CARD */
.product-card {
  border: 1px solid #e6edf3;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* IMAGE */
.product-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BADGE */
.badge-new {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #7bb441;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

/* BODY */
.product-body {
  padding: 26px;
}

.product-body h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-body p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* SPECS */
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #eef2f6;
  font-size: 14px;
}

.spec-list li span {
  color: #6b7280;
}

.spec-list li strong {
  color: #0b1f2d;
}

/* BUTTON */
.spec-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border: 1px solid #7bb441;
  color: #7bb441;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.spec-btn:hover {
  background: #7bb441;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title-dark {
    font-size: 32px;
  }
}

/* SECTION */
.partners-section {
  padding: 60px 0;
  background: #ffffff;
}

/* TITLE */
.section-tag {
  color: #7bb441;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
}

.section-title-dark {
  font-size: 42px;
  font-weight: 800;
  color: #0b1f2d;
}

.section-title-dark span {
  color: #7bb441;
}

/* PARTNER CARD */
.partner-card {
  height: 120px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eef2f6;
  transition: 0.3s ease;
}

.partner-card img {
  max-width: 70%;
  max-height: 50px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s ease;
}

/* HOVER (DESKTOP ONLY) */
.partner-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* OWL CONTROLS */
.partners-slider .owl-nav button {
  background: #f1f5f9 !important;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.partners-slider .owl-nav .owl-prev {
  left: -60px;
}

.partners-slider .owl-nav .owl-next {
  right: -60px;
}

.partners-slider .owl-dots {
  margin-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title-dark {
    font-size: 32px;
  }

  .partners-slider .owl-nav {
    display: none;
  }
}

/* SECTION BACKGROUND */
.contact-cta-section {
  padding: 60px 0 25px;
  background: linear-gradient(
    120deg,
    #0b1f2d 0%,
    #0b1f2d 60%,
    #132f2a 100%
  );
  color: #ffffff;
  position: relative;
}

/* LEFT */
.contact-info h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 30px;
}

.contact-info h2 span {
  color: #7bb441;
}

/* INFO ROW */
.info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(123, 180, 65, 0.15);
  color: #7bb441;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item strong {
  display: block;
  font-size: 16px;
}

.info-item p {
  margin: 0;
  opacity: 0.85;
}

/* PERSON CARDS */
.contact-person {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-person small {
  color: #7bb441;
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-person h6 {
  margin: 6px 0 4px;
}

.contact-person p {
  margin: 0;
  opacity: 0.85;
}

/* FORM CARD */
.contact-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 26px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
  color: #0b1f2d;
}

.contact-form-card h4 {
  font-weight: 700;
  margin-bottom: 24px;
}

/* FORM */
.form-control {
  border-radius: 12px;
  padding: 14px 16px;
  background: #f5f8fb;
  border: none;
}

.form-control:focus {
  box-shadow: none;
  outline: 2px solid #7bb44140;
}

/* BUTTON */
.submit-btn {
  width: 100%;
  padding: 16px;
  background: #7bb441;
  color: #ffffff;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #689d35;
}

/* FOOTER */
.footer-bottom {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom p {
  margin: 0;
  opacity: 0.7;
}

.footer-bottom span {
  color: #7bb441;
}

.footer-bottom a{
  color: #7bb441;
}

.social-icons a {
  color: #ffffff;
  margin-left: 12px;
  opacity: 0.7;
  transition: 0.3s;
}

.social-icons a:hover {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-info h2 {
    font-size: 32px;
  }

  .contact-form-card {
    padding: 30px;
  }
}

/* SECTION BACKGROUND */
.whyus-section {
  padding: 60px 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    #0b1f2d;
  background-size: 80px 80px;
  color: #ffffff;
}

/* HEADER */
.whyus-header small {
  color: #7bb441;
  font-weight: 700;
  letter-spacing: 2px;
}

.whyus-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 10px 0 14px;
}

.whyus-header h2 span {
  color: #7bb441;
}

.accent-line {
  width: 60px;
  height: 3px;
  background: #7bb441;
  margin-bottom: 60px;
}

/* CARD */
.whyus-card {
  position: relative;
  height: 100%;
  padding: 36px 26px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.whyus-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* ICON */
.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(123,180,65,0.15);
  color: #7bb441;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: 
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whyus-card:hover .icon-box {
  background: rgba(123, 180, 65, 0.25);
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(123, 180, 65, 0.08);
}

/* TEXT */
.whyus-card h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.whyus-card:hover h5 {
  color: #7bb441;
}

.whyus-card p {
  color: #b7c6d3;
  font-size: 15px;
  line-height: 1.6;
  max-width: 220px;
}

/* BACK NUMBER */
.card-number {
  position: absolute;
  right: 18px;
  bottom: 10px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  transition: 
    transform 0.4s ease,
    opacity 0.4s ease;
}



.whyus-card:hover .card-number {
  transform: scale(1.1);
  opacity: 0.08;
}

/* HIGHLIGHT CARD */
.whyus-card.highlight {
  border: 1px solid #7bb441;
  box-shadow: inset 0 0 0 1px rgba(123,180,65,0.2);
}

.green {
  color: #7bb441;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .whyus-header h2 {
    font-size: 32px;
  }

  .whyus-card p {
    max-width: 100%;
  }
}

/* FIXED MOBILE ACTION BUTTONS */
.mobile-fixed-actions {
  position: fixed;
  left: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* BUTTON BASE */
.action-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* WHATSAPP */
.action-btn.whatsapp {
  background: #25d366;
}

/* CALL */
.action-btn.call {
  background: #7bb441;
}

/* HOVER / TAP FEEDBACK */
.action-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

/* MOBILE ONLY */
/* @media (min-width: 992px) {
  .mobile-fixed-actions {
    display: none;
  }
} */


/* GO TO TOP BUTTON */
.go-top-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #7bb441;
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 9999;
}

/* SHOW STATE */
.go-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HOVER */
.go-top-btn:hover {
  background: #689d35;
  transform: translateY(-4px);
}

/* VISUAL SERVICES SECTION */
.services-visual-section {
  padding: 60px 0;
  background: #ffffff;
}

/* HEADER */
.services-visual-section{
  background: #f8fbff;
}
.services-visual-header .section-tag {
  color: #7bb441;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
}

.services-visual-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0b1f2d;
}

.services-visual-header h2 span {
  color: #7bb441;
}

/* CARD */
.service-visual-card {
  position: relative;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
}

.service-visual-card.tall {
  height: 380px;
}

/* IMAGE */
.service-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* OVERLAY */
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,31,45,0.15) 0%,
    rgba(11,31,45,0.85) 70%
  );
  color: #ffffff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.4s ease;
}

.service-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-overlay p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.4s ease;
  max-width: 420px;
}

/* HOVER EFFECTS */
.service-visual-card:hover img {
  transform: scale(1.08);
}

.service-visual-card:hover .service-overlay p {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-visual-header h2 {
    font-size: 32px;
  }

  .service-visual-card,
  .service-visual-card.tall {
    height: 280px;
  }
}


/* SUBMIT REQUIREMENT FIXED BUTTON */
.submit-requirement-btn {
  position: fixed;
  right: 25px;               /* hides half, like screenshot */
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;

  background: #0b1f2d;
  color: #ffffff;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px 8px 0 0;
  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 9999;

  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.submit-requirement-btn:hover {
  /* right: -48px; */
  background: #7bb441;
  color: #ffffff;
}

/* ============================= */
/* INNER PAGE HERO / BREADCRUMB */
/* ============================= */

.inner-page-hero {
  position: relative;
  padding: 220px 0 100px;
  
  overflow: hidden;
}

/* Dark Overlay */
.inner-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 28, 58, 0.95) 0%,
    rgba(8, 28, 58, 0.85) 40%,
    rgba(8, 28, 58, 0.75) 100%
  );
}

/* Content above overlay */
.inner-page-hero .container {
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.inner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.inner-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
  transition: 0.3s ease;
}

.inner-breadcrumb a:hover {
  opacity: 1;
  color: #7bb441;
}

.inner-breadcrumb .separator {
  color: #ff6a00; /* subtle orange accent like screenshot */
  font-size: 18px;
}

.inner-breadcrumb .active {
  color: #7bb441;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .inner-page-hero {
    padding: 80px 0 70px;
  }
}


/* =============================== */
/* ABOUT NARRATIVE SECTION */
/* =============================== */

.about-narrative-section {
  padding: 60px 0;
  background-color: #f6f6f6;

  /* subtle dot pattern like screenshot */
  background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
  background-size: 18px 18px;
}

/* IMAGE SIDE */
.about-narrative-image {
  position: relative;
}

.about-narrative-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* FLOATING BADGE */
.about-narrative-badge {
  position: absolute;
  bottom: -35px;
  right: 40px;
  background: #ffffff;
  padding: 22px 36px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;

  border-left: 6px solid #ff5a1f;

  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
}

.badge-number {
  font-size: 36px;
  font-weight: 800;
  color: #ff5a1f;
}

.badge-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #1f2a37;
  line-height: 1.4;
}

/* RIGHT CONTENT */
.about-narrative-content {
  padding-left: 60px;
}

.narrative-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ff5a1f;
  display: inline-block;
  margin-bottom: 16px;
}

.narrative-title {
  font-size: 44px;
  font-weight: 800;
  color: #0b1f2d;
  margin-bottom: 26px;
}

.about-narrative-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #5f6b76;
  margin-bottom: 20px;
}

.about-narrative-content strong {
  color: #0b1f2d;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .about-narrative-content {
    padding-left: 0;
    margin-top: 50px;
  }

  .about-narrative-badge {
    bottom: -25px;
    right: 20px;
  }

  .narrative-title {
    font-size: 34px;
  }
}

/* =============================== */
/* ABOUT CORE VALUES SECTION */
/* =============================== */

.about-core-values-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

/* Dark overlay */
.about-core-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(8, 28, 58, 0.95) 0%,
      rgba(8, 28, 58, 0.85) 40%,
      rgba(8, 28, 58, 0.95) 100%
  );
}

/* Content above overlay */
.about-core-values-section .container {
  position: relative;
  z-index: 2;
}

/* Small Green Tag */
.core-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #7bb441;
  display: block;
  margin-bottom: 18px;
}

/* Main Heading */
.core-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Glass Cards */
.core-value-card {
  padding: 45px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  transition: all 0.35s ease;
  height: 100%;
}

/* Hover Effect */
.core-value-card:hover {
  transform: translateY(-10px);
  border-color: #7bb441;
  background: rgba(255, 255, 255, 0.08);
}

/* Icon */
.core-icon {
  font-size: 28px;
  color: #7bb441;
  margin-bottom: 20px;
}

/* Title */
.core-value-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

/* Paragraph */
.core-value-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
}

/* ================================= */
/* ABOUT LEADERSHIP SECTION */
/* ================================= */

.about-leadership-section {
  padding: 60px 0;
  background-color: #f6f6f6;

  /* subtle dotted pattern */
  background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
  background-size: 18px 18px;
}

/* Header */
.leadership-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #ff5a1f;
  display: block;
  margin-bottom: 12px;
}

.leadership-title {
  font-size: 42px;
  font-weight: 800;
  color: #0b1f2d;
}

.leadership-header {
  position: relative;
}

.leadership-divider {
  flex: 1;
  height: 2px;
  background: #e3e8ee;
  margin-left: 40px;
}

/* Leader Card */
.leader-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.leader-card:hover {
  transform: translateY(-10px);
}

.leader-card img {
  width: 100%;
  border-radius: 16px;
  padding: 20px;
}

.leader-info {
  padding: 0 25px 30px;
}

.leader-info h5 {
  font-size: 22px;
  font-weight: 700;
  color: #0b1f2d;
  margin-bottom: 6px;
}

.leader-info span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff5a1f;
}

/* CTA Card */
.leader-cta-card {
  background: #f15a0f;
  border-radius: 20px;
  padding: 60px 40px;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-icon {
  font-size: 30px;
  margin-bottom: 25px;
}

.leader-cta-card h4 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.leader-cta-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #ffffff;
  color: #f15a0f;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #0b1f2d;
  color: #ffffff;
}
/* ================================= */
/* ABOUT HUB SECTION */
/* ================================= */

.about-hub-section {
  padding: 60px 0;
  background-color: #f6f6f6;

  /* subtle dotted pattern like screenshot */
  background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
  background-size: 18px 18px;
}

.about-hub-wrapper {
  display: flex;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* LEFT PANEL */
.about-hub-content {
  flex: 1;
  background: #071a2f;
  padding: 80px 70px;
  color: #ffffff;
}

/* Small Tag */
.hub-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #7bb441;
  display: block;
  margin-bottom: 18px;
}

/* Title */
.hub-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 28px;
}

/* Paragraph */
.hub-text {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  margin-bottom: 60px;
}

.hub-text strong {
  color: #ffffff;
}

/* Stats */
.hub-stats {
  display: flex;
  gap: 80px;
}

.hub-stat h3 {
  font-size: 42px;
  font-weight: 800;
  color: #7bb441;
  margin-bottom: 8px;
}

.hub-stat span {
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
}

/* RIGHT IMAGE */
.about-hub-image {
  flex: 1;
}

.about-hub-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (max-width: 992px) {

  .about-hub-wrapper {
    flex-direction: column;
  }

  .about-hub-content {
    padding: 50px 40px;
  }

  .hub-stats {
    flex-direction: column;
    gap: 30px;
  }

}

/* ================================= */
/* ABOUT TIMELINE SECTION */
/* ================================= */

.about-timeline-section {
  padding: 60px 0;
  background-color: #f6f6f6;

  /* dotted background */
  background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
  background-size: 18px 18px;
}

/* Header */
.timeline-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #ff5a1f;
  display: block;
  margin-bottom: 15px;
}

.timeline-title {
  font-size: 44px;
  font-weight: 800;
  color: #0b1f2d;
  margin-bottom: 80px;
}

/* Wrapper */
.timeline-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

/* Vertical Line */
.timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: #d9e1ea;
  transform: translateX(-50%);
}

/* Item */
.timeline-item {
  position: relative;
  width: 100%;
  margin-bottom: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left content */
.timeline-item.left .timeline-content {
  width: 45%;
  text-align: right;
}

/* Right content */
.timeline-item.right .timeline-content {
  width: 45%;
  text-align: left;
}

/* Dot */
.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px #ffffff;
}

/* Dot Colors */
.timeline-dot.orange {
  background: #f15a0f;
  left: 49%;
    position: absolute;
}

.timeline-dot.green {
  background: #a3d84a;
  left: 49%;
  /* left: 49%;
    position: absolute; */
}

/* Year */
.year {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.year.orange {
  color: #f15a0f;
}

.year.green {
  color: #a3d84a;
}

/* Title */
.timeline-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: #0b1f2d;
  margin-bottom: 12px;
}

/* Paragraph */
.timeline-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7683;
}

/* ================================= */
/* SERVICE HERO SECTION */
/* ================================= */

.service-hero-section {
  position: relative;
  padding: 150px 0 160px;
  
  overflow: hidden;
}

/* Dark Gradient Overlay */
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(8, 28, 58, 0.95) 0%,
      rgba(8, 28, 58, 0.90) 35%,
      rgba(8, 28, 58, 0.65) 60%,
      rgba(8, 28, 58, 0.2) 100%
  );
}

/* Content above overlay */
.service-hero-section .container {
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.service-breadcrumb {
  margin-bottom: 35px;
  font-size: 15px;
  font-weight: 500;
}

.service-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.3s;
}

.service-breadcrumb a:hover {
  color: #7bb441;
}

.service-breadcrumb span {
  margin: 0 10px;
  color: rgba(255,255,255,0.5);
}

.service-breadcrumb .active {
  color: #7bb441;
  font-weight: 600;
}

/* Hero Title */
.service-hero-title {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 28px;
}

.service-hero-title span {
  color: #7bb441;
}

/* Paragraph */
.service-hero-text {
  font-size: 19px;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin-bottom: 50px;
}

/* Buttons */
.service-hero-buttons {
  display: flex;
  gap: 25px;
}

/* Green Button */
.btn-primary-green {
  background: #7bb441;
  color: #ffffff;
  padding: 16px 34px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary-green:hover {
  background: #6aa133;
  transform: translateY(-3px);
}

/* Outline Button */
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: #ffffff;
  padding: 16px 34px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-outline-white:hover {
  background: #ffffff;
  color: #071a2f;
}

/* ================================= */
/* WHY RENT SECTION */
/* ================================= */

.why-rent-section {
  padding: 60px 0;
  background-color: #f6f6f6;
}

/* Title */
.why-rent-title {
  font-size: 42px;
  font-weight: 800;
  color: #0b1f2d;
  margin-bottom: 12px;
}

/* Green underline */
.why-rent-underline {
  width: 70px;
  height: 5px;
  background: #7bb441;
  margin: 0 auto 60px;
  border-radius: 4px;
}

/* Card */
.why-rent-card {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.35s ease;
  height: 100%;
}

/* Hover */
.why-rent-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Icon Box */
.why-rent-icon {
  width: 70px;
  height: 70px;
  background: rgba(123, 180, 65, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.why-rent-icon i {
  font-size: 26px;
  color: #7bb441;
}

/* Card Title */
.why-rent-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: #0b1f2d;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Paragraph */
.why-rent-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7683;
}

@media (max-width: 768px) {
  .why-rent-title {
    font-size: 30px;
  }

  .why-rent-card {
    padding: 35px 25px;
  }
}


/* ================================= */
/* FLEET AT A GLANCE SECTION */
/* ================================= */

.fleet-glance-section {
  padding: 60px 0;
  background: #f6f6f6;
}

/* Header */
.fleet-glance-title {
  font-size: 42px;
  font-weight: 800;
  color: #0b1f2d;
  margin-bottom: 15px;
}

.fleet-glance-subtitle {
  font-size: 16px;
  color: #6b7683;
  max-width: 600px;
  line-height: 1.8;
}

/* Browse Link */
.fleet-glance-link a {
  font-size: 16px;
  font-weight: 600;
  color: #7bb441;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.fleet-glance-link a:hover {
  gap: 14px;
}

/* Card */
.fleet-glance-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  height: 100%;
}

.fleet-glance-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Image */
.fleet-glance-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* Body */
.fleet-glance-body {
  padding: 28px 25px 25px;
}

.fleet-glance-body h5 {
  font-size: 20px;
  font-weight: 700;
  color: #0b1f2d;
  margin-bottom: 12px;
}

.fleet-glance-body p {
  font-size: 15px;
  color: #6b7683;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Bottom Meta */
.fleet-glance-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fleet-glance-meta span {
  color: #7bb441;
  font-weight: 700;
  font-size: 15px;
}

.fleet-glance-meta i {
  color: #b8c0c8;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.fleet-glance-meta i:hover {
  color: #7bb441;
}


@media (max-width: 768px) {
  .fleet-glance-title {
    font-size: 30px;
  }

  .fleet-glance-img img {
    height: 200px;
  }
}


/* ================================= */
/* STREAMLINED RENTAL PROCESS */
/* ================================= */

.rental-process-section {
  position: relative;
  padding: 130px 0 120px;
  background: linear-gradient(135deg, #071c2b 0%, #0b2d3f 100%);
  overflow: hidden;
}

/* Subtle diagonal overlay */
.rental-process-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,255,255,0.03), transparent);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

/* Header */
.rental-process-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.rental-process-header p {
  font-size: 17px;
  color: #b6c3ce;
  max-width: 650px;
  margin: 0 auto 90px;
  line-height: 1.8;
}

/* Steps Wrapper */
.rental-process-steps {
  position: relative;
}

/* Horizontal Line */
.rental-line {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.15);
  z-index: 1;
}

/* Step */
.rental-step {
  position: relative;
  z-index: 2;
  padding: 0 25px;
}

/* Number Circle */
.rental-circle {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border: 2px solid #7bb441;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

/* Step Heading */
.rental-step h5 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

/* Step Paragraph */
.rental-step p {
  font-size: 15px;
  color: #b6c3ce;
  line-height: 1.7;
}

/* Hover Effect */
.rental-step:hover .rental-circle {
  background: #7bb441;
  color: #071c2b;
  box-shadow: 0 0 25px rgba(123,180,65,0.4);
}


@media (max-width: 992px) {
  .rental-line {
    display: none;
  }

  .rental-circle {
    width: 75px;
    height: 75px;
    font-size: 22px;
  }

  .rental-process-header h2 {
    font-size: 32px;
  }
}


/* ============================= */
/* REQUEST A QUOTE SECTION */
/* ============================= */

.quote-section {
  padding: 120px 0;
  background: #f5f6f7;
}

/* Outer Container */
.quote-wrapper {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* LEFT PANEL */
.quote-left {
  background: #7fb446;
  color: #0b1c2b;
  height: 100%;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-left h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 25px;
}

.quote-left p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 280px;
}

/* Contact */
.quote-contact {
  margin-top: 60px;
}

.quote-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-weight: 600;
}

.quote-contact-item i {
  font-size: 18px;
}

/* RIGHT PANEL */
.quote-right {
  padding: 60px 60px;
}

.quote-right h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #0b1c2b;
}

/* Labels */
.quote-right label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #4b5b6a;
}

/* Inputs */
.quote-right input,
.quote-right select,
.quote-right textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e2e6ea;
  padding: 14px 18px;
  font-size: 15px;
  background: #f8f9fa;
  outline: none;
  transition: all 0.3s ease;
}

.quote-right input:focus,
.quote-right select:focus,
.quote-right textarea:focus {
  border-color: #7fb446;
  box-shadow: 0 0 0 3px rgba(127,180,70,0.15);
}

/* Button */
.quote-btn {
  width: 100%;
  background: #7fb446;
  border: none;
  padding: 16px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #0b1c2b;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  background: #6ca53a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(127,180,70,0.35);
}

@media (max-width: 992px) {
  .quote-left {
    padding: 50px 30px;
  }

  .quote-right {
    padding: 40px 30px;
  }

  .quote-left h2 {
    font-size: 28px;
  }
}


/* =============================== */
/* EQUIPMENT DETAIL PAGE */
/* =============================== */

.equipment-detail-section {
  padding: 60px 0;
  background: #f5f6f7;
}

/* Image */
.equipment-main-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Tag */
.equipment-tag {
  display: inline-block;
  background: #e6f1db;
  color: #6fa93a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: 20px;
  font-weight: 600;
}

/* Title */
.equipment-title {
  font-size: 34px;
  font-weight: 800;
  margin: 15px 0;
  color: #0b1c2b;
}

/* Description */
.equipment-description {
  color: #5a6b7a;
  line-height: 1.8;
  margin-bottom: 25px;
}

.equipment-description strong {
  color: #6fa93a;
}

/* Buttons */
.equipment-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn-primary-dark {
  background: #0b1c2b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-outline-light {
  border: 1px solid #dcdfe3;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  color: #0b1c2b;
}

/* Spec Card */
.equipment-spec-card {
  background: #0d2238;
  color: #fff;
  padding: 35px;
  border-radius: 18px;
  margin-bottom: 40px;
}

.equipment-spec-card h4 {
  color: #7fb446;
  margin-bottom: 30px;
  font-weight: 700;
}

.spec-item {
  margin-bottom: 20px;
}

.spec-item span {
  display: block;
  font-size: 12px;
  color: #7c8fa3;
  text-transform: uppercase;
}

.spec-item strong {
  font-size: 16px;
}

/* Features */
.equipment-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.equipment-feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.equipment-feature-card i {
  color: #6fa93a;
  font-size: 22px;
  margin-bottom: 15px;
}

/* Applications */
.equipment-subheading {
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 14px;
  color: #0b1c2b;
}

.equipment-application-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.equipment-application-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.equipment-application-card span {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
}

/* Sidebar */
.equipment-sidebar {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #6fa93a;
  position: sticky;
  top: 120px;
}

.equipment-sidebar input,
.equipment-sidebar select,
.equipment-sidebar textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e3e6ea;
  margin-bottom: 15px;
}

.equipment-btn-green {
  width: 100%;
  background: #7fb446;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
}

.equipment-support-card {
  background: #0d2238;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
}


/* ============================= */
/* GALLERY SECTION */
/* ============================= */

.gallery-section {
  padding: 100px 0;
  background: #f5f6f7;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.gallery-item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Effect */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* ============================= */
/* PAGINATION */
/* ============================= */

.gallery-pagination {
  margin-top: 50px;
  text-align: center;
}

.gallery-pagination ul {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 10px;
}

.gallery-pagination ul li a,
.gallery-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e1e4e8;
  color: #0b1c2b;
  font-weight: 600;
}

.gallery-pagination ul li a.active {
  background: #f26522;
  color: #fff;
  border: none;
}

/* ============================= */
/* CTA SECTION */
/* ============================= */

.gallery-cta {
  padding: 80px 0;
}

.gallery-cta-wrapper {
  background: linear-gradient(135deg, #0b1c2b, #1e2e42);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.gallery-cta-left h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.gallery-cta-left p {
  color: #c3c9d3;
  max-width: 500px;
}

.gallery-cta-right {
  display: flex;
  gap: 20px;
}

.cta-primary {
  background: #f26522;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(242,101,34,0.4);
}

.cta-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 28px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
}


@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-cta-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================= */
/* PARTNERS SECTION */
/* ============================= */

.partners-section {
  padding: 60px 0;
  background: #f5f6f7;
}

/* HEADER */

.partners-header {
  max-width: 700px;
  margin: 0 auto 80px;
}

.partners-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #f26522;
  margin-bottom: 15px;
}

.partners-title {
  font-size: 40px;
  font-weight: 800;
  color: #0b1c2b;
  margin-bottom: 20px;
}

.partners-description {
  font-size: 17px;
  color: #5c6b7a;
  line-height: 1.7;
}

/* ============================= */
/* GRID */
/* ============================= */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */

.partners-card {
  background: #eef1f4;
  border-radius: 16px;
  padding: 35px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.partners-card img {
  max-height: 80px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* Hover Effect */

.partners-card:hover {
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transform: translateY(-6px);
}

.partners-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partners-title {
    font-size: 30px;
  }
}


/* ============================== */
/* PRESENCE SECTION */
/* ============================== */

.presence-section {
  padding: 120px 0;
  background: #f5f6f7;
}

/* HEADING */

.presence-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0b1c2b;
}

.presence-heading p {
  color: #6c7a89;
  margin-bottom: 40px;
}

/* CARD BASE */

.presence-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  position: relative;
}

/* Accent Borders */

.presence-card-hq {
  border-left: 4px solid #f26522;
}

.presence-card-regional {
  border-left: 4px solid #7dbb42;
}

/* Card Header */

.presence-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.presence-icon {
  width: 50px;
  height: 50px;
  background: #fdeee8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f26522;
  font-size: 20px;
}

.presence-icon.green {
  background: #eaf5e1;
  color: #7dbb42;
}

.presence-highlight {
  color: #7dbb42;
  font-weight: 600;
}

.presence-highlight-orange {
  color: #f26522;
  font-weight: 600;
}

/* Contact List */

.presence-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.presence-contact-list li {
  margin-bottom: 10px;
  color: #5c6b7a;
}

.presence-contact-list i {
  color: #f26522;
  margin-right: 8px;
}

/* Regional Description */

.presence-desc {
  color: #5c6b7a;
  margin-bottom: 15px;
}

/* Tags */

.presence-tags span {
  background: #f0f1f3;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-right: 8px;
  font-weight: 500;
}

/* FORM CARD */

.presence-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.presence-form-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0b1c2b;
}

/* INPUTS */

.presence-form-card label {
  font-size: 13px;
  font-weight: 600;
  color: #6c7a89;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.presence-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  background: #f0f1f3;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.presence-input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(242,101,34,0.3);
}

.presence-textarea {
  resize: none;
}

/* BUTTON */

.presence-btn {
  width: 100%;
  background: #f26522;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

.presence-btn:hover {
  background: #d85417;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(242,101,34,0.3);
}


@media (max-width: 991px) {
  .presence-form-card {
    margin-top: 40px;
  }
}
