html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Tahoma", "Arial", sans-serif;
  background-color: #f6f8fb;
  color: #1f2933;
  line-height: 1.7;
}

/* Top bar */
.top-bar {
  background: linear-gradient(90deg, #032712, #064420);
  color: #fff;
  padding: 0.45rem 0;
  font-size: 0.9rem;
}

.top-bar .btn-consult {
  background: linear-gradient(135deg, #36d85b, #1ab344);
  border: none;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}

.top-bar .social-icons a {
  color: #fff;
  margin-inline: 0.25rem;
  font-size: 1.1rem;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.top-bar-text {
  font-size: 0.8rem;
}

/* Navbar */
.navbar-main {
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  z-index: 1030;
}

.navbar-brand-logo {
  height: 48px;
  width: auto;
}

.navbar-brand-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333;
  padding-inline: 0.75rem !important;
  font-size: 0.95rem;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #0b7a36;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  bottom: 0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  transition: width 0.2s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 50%;
}

/* Hero section */
.hero-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/1.jpeg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.hero-content h1 {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-content h2 {
  font-size: clamp(1.3rem, 2.25vw, 1.6rem);
  margin-bottom: 1.75rem;
  font-weight: 600;
}

.hero-btn {
  background: linear-gradient(135deg, #36d85b, #1ab344);
  border: none;
  border-radius: 999px;
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 16px 35px rgba(34, 197, 94, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.45);
}

/* Features */
.features-strip {
  background: linear-gradient(to bottom, #f6f8fb 0%, #ffffff 40%);
  padding: 3rem 0 4rem;
  margin-top: -3rem;
  position: relative;
  z-index: 1;
}

.feature-box {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background-color: #e8f9ee;
  color: #0b7a36;
  font-size: 1.6rem;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(34, 197, 94, 0.45);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.feature-text {
  font-size: 0.95rem;
  color: #555;
}

/* Shared section styles */
.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #0f172a;
}

.section-lead {
  color: #6b7280;
  font-size: 0.98rem;
}

/* About section */
.about-section {
  padding: 4rem 0 3.5rem;
  background-color: #ffffff;
}

.about-image-wrapper {
  max-width: 360px;
  margin-inline: auto;
  position: relative;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 6px solid #27c43a33;
  z-index: -1;
}

.about-main-image {
  border-radius: 50%;
  object-fit: cover;
}

.about-point {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.about-point i {
  color: #27c43a;
  margin-top: 0.15rem;
}

.about-point h6 {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.about-point p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: #666;
}

.stats-row {
  margin-top: 0.5rem;
}

.stat-card {
  background-color: #f4faf5;
  border-radius: 0.75rem;
  text-align: center;
  padding: 1rem 0.5rem;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0b7a36;
}

.stat-label {
  font-size: 0.78rem;
  color: #555;
}

/* Services */
.services-section {
  padding: 3rem 0 3.5rem;
  background: radial-gradient(circle at top, #e5f9f0 0, #f6f8fb 55%);
}

.service-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.8rem 1.4rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  height: 100%;
  border: 1px solid rgba(148, 163, 184, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
  border-color: rgba(34, 197, 94, 0.5);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #bbf7d0, #22c55e);
  color: #052e16;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.service-text {
  font-size: 0.92rem;
  color: #4b5563;
  margin-bottom: 0;
}

/* Steps section */
.steps-section {
  padding: 3.5rem 0 3.8rem;
  background-color: #ffffff;
}

.step-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
  padding: 1.7rem 1.4rem;
  height: 100%;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e8f9ee;
  color: #0b7a36;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-card h6 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

.step-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

/* Office section */
.office-section {
  padding: 3.5rem 0 3.8rem;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf3);
}

.office-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.93rem;
  color: #444;
}

.office-list i {
  color: #27c43a;
}

.partners-strip {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #d3e8d8;
}

.partner-logo {
  border-radius: 0.75rem;
  border: 1px solid #e0eee3;
  padding: 1rem;
  background-color: #ffffff;
  font-size: 0.9rem;
  color: #555;
}

/* Contact */
.contact-section {
  padding: 3.5rem 0 3.8rem;
  background-color: #ffffff;
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 0.6rem;
}

.contact-info-card {
  background: radial-gradient(circle at top left, #1f2937, #020617);
  color: #fff;
  border-radius: 1rem;
  padding: 1.8rem 1.5rem;
}

.contact-info-card h5,
.contact-info-card h6 {
  text-align: center;
}

.contact-info-card ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
  font-size: 0.93rem;
}

.contact-info-ltr {
  direction: ltr;
  text-align: left;
}

.contact-info-card ul li i {
  color: #27c43a;
}

.social-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
}

.social-circle.instagram {
  background-color: #e1306c;
}

.social-circle.tiktok {
  background-color: #000000;
}

.social-circle.x {
  background-color: #111111;
}

.social-circle.facebook {
  background-color: #1877f2;
}

.mini-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0.75rem;
  margin-top: 1rem;
  font-size: 0.8rem;
}

.main-footer {
  background-color: #020617;
  color: #eee;
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: 70vh;
  }

  .features-strip {
    margin-top: -2rem;
  }

  .top-bar-text {
    font-size: 0.7rem;
  }
}

/* Footer */
.main-footer {
  background-color: #050505;
  color: #eee;
}

.footer-top {
  padding: 2.5rem 0 2rem;
}

.footer-brand .footer-logo {
  max-width: 180px;
}

.footer-title {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer-links li + li {
  margin-top: 0.3rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #27c43a;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.footer-contact li.footer-email {
  word-break: break-all;
}

.footer-contact i {
  color: #27c43a;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  color: #f5f5f5;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #27c43a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #020202;
}

.whatsapp-float {
  position: fixed;
  bottom: 18px;
  left: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  z-index: 1040;
}

.whatsapp-float:hover {
  background-color: #22bf5a;
}

.contact-float {
  position: fixed;
  bottom: 86px;
  left: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #0ea5e9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  z-index: 1040;
}

.contact-float:hover {
  background-color: #0284c7;
}

/* Map */
.map-section {
  padding: 2.5rem 0 3.5rem;
  background-color: #f4faf5;
}

.map-embed-wrapper {
  position: relative;
  width: 100%;
  padding-top: 45%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

