* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= NAVBAR ================= */

.custom-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  padding: 18px 0;
  transition: 0.4s ease;
}

/* Sticky Navbar */

.custom-navbar.sticky {
  position: fixed;
  animation: smoothTop 0.4s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

@keyframes smoothTop {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Logo */

.logo {
  font-size: 34px;
  font-weight: 700;
  text-decoration: none;
  color: #47b549;
}
.logo img{
    max-height: 42px;
}

/* ================= DESKTOP MENU ================= */

.navbar-nav .nav-link {
  color: #222;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 18px !important;
  position: relative;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #47b549;
}

.navbar-nav .nav-link.active {
  color: #47b549;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 6px;
  width: 28px;
  height: 3px;
  border-radius: 20px;
  background: #47b549;
}

/* REMOVE BOOTSTRAP ICON */

.navbar-nav .dropdown-toggle::after {
  display: none !important;
}

/* CUSTOM RIGHT ICON */

.desktop-menu .nav-item > .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-menu .nav-item > .nav-link::before {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  color: #47b549;
  order: 2;
  transition: 0.3s;
}

.desktop-menu .nav-item:hover > .nav-link::before {
  transform: rotate(180deg);
}

/* HOME MENU NO ICON */

.desktop-menu .nav-item:first-child > .nav-link::before {
  display: none;
}

/* ================= DESKTOP SUBMENU ================= */

.nav-item {
  position: static;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 35px 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.35s ease;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  border-top: 1px solid rgb(212, 209, 209);
}

.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Grid */

.submenu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Item */

.submenu-item {
  background: #f8fffa;
  border-radius: 18px;
  padding: 22px;
  transition: 0.3s;
  cursor: pointer;
}

.submenu-item:hover {
  background: #eef9f0;
  transform: translateY(-5px);
}

/* Icon */

.submenu-icon {
  width: 60px;
  height: 60px;
  background: #e9f8eb;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.submenu-icon i {
  font-size: 24px;
  color: #47b549;
}

.submenu-item h5 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

.submenu-item p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ================= RIGHT BUTTONS ================= */

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-buttons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.nav-buttons a i {
  font-size: 18px;
  position: relative;
  z-index: 2;
}

/* Call */

.call-btn {
  background: #fff4e5;
  color: #ff9800;
}

.call-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ff9800;
  transform: scale(0);
  transition: 0.4s;
  border-radius: 50%;
}

.call-btn:hover::before {
  transform: scale(1);
}

.call-btn:hover {
  color: #fff;
  transform: translateY(-4px);
}

/* Mail */

.mail-btn {
  background: #eef4ff;
  color: #2563eb;
}

.mail-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2563eb;
  transform: scale(0);
  transition: 0.4s;
  border-radius: 50%;
}

.mail-btn:hover::before {
  transform: scale(1);
}

.mail-btn:hover {
  color: #fff;
  transform: translateY(-4px);
}

/* Whatsapp */

.whatsapp-btn {
  background: #ebfbef;
  color: #47b549;
}

.whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #47b549;
  transform: scale(0);
  transition: 0.4s;
  border-radius: 50%;
}

.whatsapp-btn:hover::before {
  transform: scale(1);
}

.whatsapp-btn:hover {
  color: #fff;
  transform: translateY(-4px);
}

/* ================= MOBILE ================= */

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler i {
  font-size: 30px;
  color: #222;
}

/* Offcanvas */

.offcanvas {
  width: 320px !important;
}

.offcanvas-header {
  border-bottom: 1px solid #eee;
  padding: 20px;
}

.offcanvas-body {
  padding: 20px;
  overflow-y: auto;
}

/* Mobile Menu */

.mobile-nav .nav-link {
  color: #222;
  font-weight: 500;
  padding: 16px 0 !important;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Mobile Submenu */

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-submenu.show {
  max-height: 500px;
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  margin-top: 10px;
  background: #f8fffa;
  border-radius: 14px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.mobile-submenu i {
  color: #47b549;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .desktop-menu {
    display: none !important;
  }

  .desktop-buttons {
    display: none;
  }

  .submenu {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* hero */

.hero-section {
  width: 100%;
  background: linear-gradient(135deg, #1b641c, #3da53e);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 155px 20px 72px;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
}

/* 4D tilt wrapper */

.hero-inner {
  transform-style: preserve-3d;
  transition: transform 0.08s linear;
  will-change: transform;
  width: 100%;
}

/* Mouse light orb */

.hero-light {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    left 0.06s linear,
    top 0.06s linear;
  z-index: 1;
  opacity: 0;
}

/* Review Badge */

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.review-badge:hover {
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px) scale(1.02);
}

.review-badge img {
  width: 38px;
}

.review-badge .stars {
  color: #ffd54f;
  font-size: 20px;
  letter-spacing: 2px;
}

.review-badge span {
  color: #e7eef8;
  font-size: 18px;
  font-weight: 500;
}

/* Hero Heading */

.hero-section h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 8px 12px rgba(0, 0, 0, 0.35);
  margin-bottom: 30px;
  transform: translateZ(30px);
}

.hero-section h1 span {
  color: #66f2ff;
}

/* Hero Paragraph */

.hero-section p {
  max-width: 950px;
  margin: auto;
  color: #dbe4ee;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 300;
  transform: translateZ(15px);
}

/* Tags */

.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  transform: translateZ(20px);
}

.hero-tags a {
  text-decoration: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  font-size: 16px;
  font-weight: 500;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-tags a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero-tags a:hover::before {
  opacity: 1;
}

.hero-tags a:hover {
  background: #47b549;
  border-color: #47b549;
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 12px 32px rgba(71, 181, 73, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .hero-section {
    padding: 130px 20px 90px;
  }
  .hero-section h1 {
    font-size: 30px;
  }
  .hero-section p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 25px;
    line-height: 1.3;
  }
  .hero-section p {
    font-size: 17px;
    line-height: 1.8;
  }
  .review-badge {
    padding: 10px 20px;
    gap: 10px;
  }
  .review-badge .stars {
    font-size: 18px;
  }
  .review-badge span {
    font-size: 16px;
  }
  .hero-tags {
    gap: 12px;
  }
  .hero-tags a {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
  }
}

.scroll-section {
  width: 100%;
  background: #1d4268;
  padding: 22px 0;
  overflow: hidden;
  /* border-top:1px solid #eee;
        border-bottom:1px solid #eee; */
}

.scroll-track {
  width: 100%;
  overflow: hidden;
}

.scroll-content {
  display: flex;
  align-items: center;
  gap: 25px;
  width: max-content;
  animation: scrollLeft 28s linear infinite;
}

.scroll-content span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fff9;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 500;
  color: #222;
  white-space: nowrap;
  border: 1px solid #e6f6e8;
  transition: 0.3s;
}

/* .scroll-content span:hover{
        background:#47b549;
        color:#fff;
        transform:translateY(-3px);
    } */

.scroll-content span i {
  color: #47b549;
  font-size: 18px;
  transition: 0.3s;
}

/* .scroll-content span:hover i{
        color:#fff;
    } */

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */

@media (max-width: 767px) {
  .scroll-content span {
    padding: 12px 22px;
    font-size: 15px;
  }
}

/* about section */
.about-section {
  background: #fff;
  overflow: hidden;
}

/* Subtitle */
.about-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #48b54a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about-subtitle i {
  font-size: 16px;
}

/* Title */
.about-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 20px;
}

.about-title span {
  color: #48b54a;
}

/* Description */
.about-description {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.9;
}

/* Images */
.about-image-card {
  overflow: hidden;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.about-image-card:hover img {
  transform: scale(1.05);
}

.about-image-tall {
  height: 430px;
  border-radius: 120px 120px 0 0;
}

.about-image-circle {
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.about-image-bottom {
  height: 320px;
  border-radius: 0 0 120px 120px;
}

/* Award Box */
.about-award-box {
  background: #48b54a;
  border-radius: 30px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.about-award-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: #48b54a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.about-award-box h6 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.about-award-box p {
  margin: 0;
  font-size: 14px;
}

/* Features */
.about-feature-item {
  display: flex;
  gap: 18px;
}

.about-feature-icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #48b54a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.about-feature-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.about-feature-content p {
  margin: 0;
  color: #6b7280;
  line-height: 1.8;
}

/* Quote Box */
.about-quote-box {
  background: #f4fbf4;
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  position: relative;
}

.about-quote-box p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.quote-icon {
  position: absolute;
  right: 20px;
  bottom: 10px;
  font-size: 55px;
  color: #48b54a;
  opacity: 0.25;
}

/* Bottom */
.about-bottom {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.about-btn {
  background: #48b54a;
  color: #fff;
  text-decoration: none;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  color: #fff;
  background: #3fa142;
}

.about-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #48b54a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-contact-icon i {
  font-size: 20px;
}

.about-contact-info small {
  display: block;
  color: #888;
}

.about-contact-info h6 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

/* Responsive */
@media (max-width: 991px) {
  .about-title {
    font-size: 25px;
  }

  .about-image-tall {
    height: 350px;
  }

  .about-image-bottom {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .about-title {
    font-size: 20px;
  }

  .about-image-tall {
    height: 280px;
    border-radius: 70px 70px 0 0;
  }

  .about-image-bottom {
    height: 220px;
    border-radius: 0 0 70px 70px;
  }

  .about-feature-item {
    flex-direction: column;
    gap: 12px;
  }

  .about-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* COUNTER SECTION CODE */
.counter-section {
  background: #48b54a;
  padding: 25px 0;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.counter-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.counter-content h3 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.counter-content p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

@media (max-width: 991px) {
  .counter-box {
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
  }

  .counter-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .counter-box {
    gap: 12px;
  }

  .counter-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 18px;
  }

  .counter-content h3 {
    font-size: 22px;
  }

  .counter-content p {
    font-size: 12px;
  }
}

/* SERVICES SECTION CODE */

.stack-services {
  background: #f8fafc;
  padding: 40px 0;
}

.stack-title {
  text-align: center;
  margin-bottom: 60px;
}

.stack-title span {
  color: #48b54a;
  font-weight: 600;
}

.stack-title h2 {
  font-size: 45px;
  font-weight: 800;
}

.stack-wrapper {
  position: relative;
}

.stack-card {
  height: 500px;
  position: sticky;
  top: 100px;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 35px;
  padding: 45px;
  margin-bottom: 80px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.stack-card:nth-child(1) {
  transform: scale(0.96);
}

.stack-card:nth-child(2) {
  transform: scale(0.98);
}

.stack-content {
  width: 50%;

  padding-right: 30px;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #48b54a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.stack-content h3 {
  font-size: 45px;
  font-weight: 800;
}

.stack-content p {
  color: #64748b;
  line-height: 1.8;
}

.stack-content a {
  display: inline-block;
  margin-top: 20px;
  background: #052642;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
}

.stack-img {
  width: 50%;
  height: 100%;
}

.stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .stack-card {
    height: auto;
    flex-direction: column;
    padding: 25px;
    top: 80px;
  }

  .stack-content,
  .stack-img {
    width: 100%;
  }

  .stack-content h3 {
    font-size: 32px;
  }

  .stack-img {
    height: 260px;
    margin-top: 25px;
  }
}

/* Features Section */
.feature-strip {
  background: linear-gradient(135deg, #1b641c, #3da53e);
  padding: 30px 0;
}

.feature-box {
  height: 100%;

  background: white;

  border-radius: 25px;

  padding: 35px 25px;

  text-align: center;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.4s;

  position: relative;

  overflow: hidden;
}

.feature-box:before {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  background: #eaf8eb;

  border-radius: 50%;

  top: -50px;
  right: -50px;
}

.feature-box:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.feature-content {
  position: relative;
  z-index: 2;
}

.feature-icon {
  width: 75px;
  height: 75px;

  margin: auto;
  margin-bottom: 20px;

  border-radius: 20px;

  background: linear-gradient(135deg, #48b54a, #16a34a);

  color: white;

  display: flex;

  align-items: center;

  justify-content: center;
}

.feature-icon i {
  font-size: 32px;
}

.feature-content h3 {
  font-size: 18px;

  font-weight: 800;

  text-transform: uppercase;

  color: #111827;

  margin-bottom: 10px;
}

.feature-content p {
  font-size: 14px;

  color: #64748b;

  margin: 0;
}

@media (max-width: 767px) {
  .feature-strip {
    padding: 50px 15px;
  }

  .feature-box {
    padding: 30px 20px;
  }

  .feature-icon {
    width: 65px;
    height: 65px;
  }

  .feature-icon i {
    font-size: 26px;
  }
}

/* video Testimonial */
.video-testimonial-section {
  padding: 90px 0;
  background: #f8fafc;
}

.video-title {
  font-size: 45px;
  font-weight: 800;
}

.video-title span {
  color: #48b54a;
}

.video-subtitle {
  color: #64748b;
}

.video-slider {
  margin-top: 50px;
}

.video-card {
  overflow: hidden;

  border-radius: 25px;

  background: #000;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-card a {
  display: block;

  position: relative;
}

.video-card video {
  width: 100%;

  height: 280px;

  object-fit: cover;

  display: block;
}

.play-btn {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: #48b54a;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 25px;
}

.owl-nav {
  display: flex;

  justify-content: center;

  gap: 20px;

  margin-top: 35px;
}

.owl-prev,
.owl-next {
  width: 45px;

  height: 45px;

  border-radius: 50% !important;

  background: #48b54a !important;

  color: white !important;
}

@media (max-width: 768px) {
  .video-title {
    font-size: 30px;
  }

  .video-card video {
    height: 220px;
  }
}

/* Footer section */
.modern-footer {
  background: #111827;

  color: white;

  padding-top: 70px;
}

.footer-contact-card {
  background: #1f2937;

  border-radius: 20px;

  padding: 22px;

  display: flex;

  align-items: center;

  gap: 18px;

  transition: 0.35s;
}

.footer-contact-card:hover {
  transform: translateY(-8px);

  background: #253247;
}

.footer-icon {
  width: 55px;

  height: 55px;

  border-radius: 16px;

  background: #48b54a;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: 0.3s;
}

.footer-contact-card:hover .footer-icon {
  transform: rotate(10deg) scale(1.1);
}

.footer-icon i {
  font-size: 22px;
}

.footer-contact-card h6 {
  font-size: 13px;

  color: #94a3b8;

  margin: 0;
}

.footer-contact-card p {
  margin: 4px 0 0;

  font-size: 15px;
}

.modern-footer hr {
  border-color: rgba(255, 255, 255, 0.15);

  margin: 50px 0;
}

.footer-main h4 {
  font-size: 20px;

  margin-bottom: 20px;
}

.footer-text {
  color: #94a3b8;

  line-height: 1.8;

  font-size: 14px;
}

.modern-footer ul {
  padding: 0;

  list-style: none;
}

.modern-footer li {
  margin-bottom: 10px;
}

.modern-footer a {
  text-decoration: none;

  color: #94a3b8;

  font-size: 14px;

  transition: 0.3s;
}

.modern-footer a:hover {
  color: #48b54a;

  padding-left: 5px;
}

.footer-social {
  display: flex;

  gap: 12px;

  margin-top: 20px;
}

.footer-social a {
  width: 38px;

  height: 38px;

  border-radius: 50%;

  background: #1f2937;

  display: flex;

  align-items: center;

  justify-content: center;

  color: white;
}

.footer-social a:hover {
  background: #48b54a;

  padding-left: 0;
}

.newsletter-box {
  height: 50px;

  display: flex;

  background: white;

  border-radius: 50px;

  overflow: hidden;
}

.newsletter-box input {
  border: none;

  outline: none;

  padding: 0 20px;

  width: 100%;
}

.newsletter-box button {
  width: 55px;

  border: none;

  background: #48b54a;

  color: white;
}

.footer-bottom {
  margin-top: 50px;

  padding: 20px;

  background: #0b1220;

  text-align: center;
}

.footer-bottom p {
  margin: 0;

  color: #94a3b8;

  font-size: 14px;
}

@media (max-width: 768px) {
  .modern-footer {
    padding-top: 50px;
  }

  .footer-contact-card {
    padding: 18px;
  }

  .footer-main h4 {
    margin-top: 15px;
  }
}

/* Why Choise Us */
.why-modern {
  background: linear-gradient(135deg, #052642, #48b54a);

  padding: 90px 0;

  overflow: hidden;
}

.why-content {
  color: white;
}

.why-tag {
  display: inline-block;

  background: rgba(255, 255, 255, 0.15);

  padding: 8px 18px;

  border-radius: 50px;

  font-size: 14px;

  margin-bottom: 20px;
}

.why-content h2 {
  font-size: 50px;

  font-weight: 800;

  line-height: 1.2;

  margin-bottom: 20px;
}

.why-content h2 span {
  color: #dfff00;
}

.why-content p {
  color: rgba(255, 255, 255, 0.85);

  line-height: 1.8;

  font-size: 16px;

  max-width: 420px;
}

.why-btn {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 25px;

  background: #fff;

  color: #052642;

  padding: 13px 28px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.why-btn:hover {
  background: #052642;

  color: white;
}

.why-card {
  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 25px;

  padding: 30px;

  height: 100%;

  transition: 0.35s;
}

.why-card:hover {
  transform: translateY(-10px);

  background: #fff;
}

.why-icon {
  width: 60px;

  height: 60px;

  border-radius: 18px;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;

  transition: 0.35s;
}

.why-icon i {
  font-size: 25px;

  color: #48b54a;
}

.why-card:hover .why-icon {
  background: #48b54a;

  transform: rotate(10deg);
}

.why-card:hover .why-icon i {
  color: white;
}

.why-card h5 {
  color: white;

  font-size: 20px;

  margin-bottom: 10px;
}

.why-card:hover h5 {
  color: #052642;
}

.why-card p {
  color: rgba(255, 255, 255, 0.8);

  font-size: 14px;

  line-height: 1.7;

  margin: 0;
}

.why-card:hover p {
  color: #64748b;
}

@media (max-width: 991px) {
  .why-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .why-modern {
    padding: 60px 0;
  }

  .why-content h2 {
    font-size: 32px;
  }

  .why-card {
    padding: 25px;
  }
}

/* =========================
   WORKING PROCESS SECTION
========================= */
.working-process-modern {
  padding: 90px 0;

  background: #f7fafc;
}

.process-heading {
  text-align: center;

  max-width: 600px;

  margin: auto;

  margin-bottom: 60px;
}

.process-heading span {
  color: #48b54a;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}

.process-heading h2 {
  font-size: 45px;

  font-weight: 800;

  color: #0f172a;

  margin: 15px 0;
}

.process-heading p {
  color: #64748b;

  font-size: 16px;
}

.process-grid {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 25px;
}

.process-card {
  width: 280px;

  background: white;

  padding: 35px 25px;

  border-radius: 25px;

  text-align: center;

  position: relative;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.process-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 25px 50px rgba(72, 181, 74, 0.18);
}

.process-card.active {
  background: linear-gradient(135deg, #48b54a, #16a34a);
}

.process-card.active h4,
.process-card.active p {
  color: white;
}

.step-number {
  position: absolute;

  top: 15px;

  right: 20px;

  font-size: 35px;

  font-weight: 800;

  color: #e5e7eb;
}

.process-icon {
  width: 75px;

  height: 75px;

  margin: auto;

  margin-bottom: 20px;

  border-radius: 22px;

  background: #ecfdf5;

  display: flex;

  align-items: center;

  justify-content: center;
}

.process-icon i {
  font-size: 30px;

  color: #48b54a;
}

.process-card.active .process-icon {
  background: white;
}

.process-card h4 {
  font-size: 21px;

  font-weight: 700;

  color: #0f172a;

  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;

  line-height: 1.7;

  color: #64748b;

  margin: 0;
}

.process-line {
  width: 60px;

  height: 2px;

  background: #d1d5db;
}

@media (max-width: 991px) {
  .process-grid {
    flex-direction: column;
  }

  .process-line {
    display: none;
  }

  .process-card {
    width: 100%;

    max-width: 330px;
  }

  .process-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .working-process-modern {
    padding: 60px 0;
  }

  .process-heading h2 {
    font-size: 28px;
  }
}
