/* =====================================================
           CSS CUSTOM PROPERTIES (DESIGN TOKENS)
           ===================================================== */
:root {
  /* Color Palette */
  --color-primary: #c9a962;
  --color-primary-dark: #b8963d;
  --color-primary-light: #dfc78a;

  --color-dark: #0a0a0a;
  --color-dark-light: #141414;
  --color-dark-lighter: #1a1a1a;
  --color-dark-card: #111111;

  --color-light: #ffffff;
  --color-light-muted: #f5f5f5;
  --color-text-muted: #888888;
  --color-text-light: #cccccc;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg,
      #c9a962 0%,
      #dfc78a 50%,
      #c9a962 100%);
  --gradient-dark: linear-gradient(180deg,
      rgba(10, 10, 10, 0) 0%,
      rgba(10, 10, 10, 0.8) 50%,
      rgba(10, 10, 10, 1) 100%);
  --gradient-overlay: linear-gradient(135deg,
      rgba(10, 10, 10, 0.7) 0%,
      rgba(20, 20, 20, 0.5) 100%);

  /* Typography */
  --font-display: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing System (8px base) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slower: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 4px 30px rgba(201, 169, 98, 0.3);

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(20px);
}

/* =====================================================
           BASE STYLES & RESET
           ===================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: white;
  color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--color-primary);
  color: var(--color-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-light);
}

/* =====================================================
           TYPOGRAPHY
           ===================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.display-hero {
  /* font-size: clamp(3rem, 8vw, 7rem); */
  font-size: 90px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.display-large {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
}

.display-medium {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #000;
}

.text-gold {
  color: #1a964d;
}

.text-muted-custom {
  color: var(--color-text-muted);
}

.text-gradient {
  background: linear-gradient(135deg, #038d50, #a4cd43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.8;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
}

.section-label::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
}

/* =====================================================
           BUTTONS
           ===================================================== */
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #038d50, #a4cd43);
  color: #fff;
  border-radius: 10px;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: var(--transition-slow);
}

.btn-primary-custom:hover {
  background: #18954f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-outline-custom {
  background: transparent;
  color: #000;
  border: 1px solid rgb(10 10 10);
  border-radius: 10px;
}

.hero-content .btn-outline-custom {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 10px;
}

.btn-outline-custom:hover {
  background: var(--color-light);
  color: var(--color-dark);
  border-color: var(--color-light);
}

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--color-light);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
}

.btn-icon {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
           NAVIGATION
           ===================================================== */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: var(--transition-base);
}

.navbar-custom.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--glass-border);
}

.navbar-brand-custom {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-light);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-dark);
}

.nav-link-custom {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  padding: var(--space-sm) var(--space-md) !important;
  position: relative;
}

.nav-link-custom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-base);
  transform: translateX(-50%);
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--color-light);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: calc(100% - 2rem);
}

.navbar-toggler-custom {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.toggler-icon {
  width: 24px;
  height: 2px;
  background: var(--color-light);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--transition-base);
}

.toggler-icon:nth-child(1) {
  top: 12px;
}

.toggler-icon:nth-child(2) {
  top: 19px;
}

.toggler-icon:nth-child(3) {
  top: 26px;
}

.navbar-toggler-custom[aria-expanded="true"] .toggler-icon:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 19px;
}

.navbar-toggler-custom[aria-expanded="true"] .toggler-icon:nth-child(2) {
  opacity: 0;
}

.navbar-toggler-custom[aria-expanded="true"] .toggler-icon:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
  top: 19px;
}

/* Mobile Menu */
@media (max-width: 991.98px) {
  .navbar-collapse-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
  }

  .navbar-collapse-custom.show {
    opacity: 1;
    visibility: visible;
  }

  .navbar-collapse-custom .nav-link-custom {
    font-size: 1.5rem;
  }
}

/* =====================================================
           HERO SECTION
           ===================================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  /* padding-bottom: var(--space-4xl); */
  padding-bottom: 230px;
  /* overflow: hidden; */
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: var(--gradient-dark); */
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  top: 180px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tagline-dot {
  width: 8px;
  height: 8px;
  background: #92c544;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-title {
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: #fff;
  max-width: 500px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Floating Cards */
.hero-floating-cards {
  position: absolute;
  right: 5%;
  bottom: 15%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  z-index: 2;
}

.floating-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  animation-delay: -2s;
}

.floating-card:nth-child(3) {
  animation-delay: -4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  25% {
    transform: translateY(-10px) translateX(5px);
  }

  50% {
    transform: translateY(-5px) translateX(-5px);
  }

  75% {
    transform: translateY(-15px) translateX(3px);
  }
}

.floating-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 98, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
}

.floating-content h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.floating-content p {
  font-size: 0.75rem;
  color: #ffffff;
  margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom,
      var(--color-primary),
      transparent);
  position: relative;
}

.scroll-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--color-primary);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    top: 0;
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

@media (max-width: 991.98px) {
  .hero-floating-cards {
    display: none;
  }
}

/* =====================================================
           ABOUT SECTION
           ===================================================== */
.about-section {
  padding: 5rem;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-main img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: var(--transition-slower);
}

.about-image-wrapper:hover .about-image-main img {
  transform: scale(1.05);
}

.about-image-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 2px solid #cccfcd;
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: linear-gradient(135deg, #038d50, #a4cd43);
  color: #fff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-badge-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* .about-content {
        padding-left: var(--space-xl);
      } */

.about-title {
  margin: var(--space-md) 0 var(--space-lg);
  color: #000000;
  margin-top: 6px;
  font-size: 40px;
}

.about-description {
  color: #000000;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  /* padding-top: var(--space-xl); */
  border-top: 1px solid var(--glass-border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (max-width: 991.98px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-content {
    padding-left: 0;
  }

  .about-image-accent {
    right: -20px;
    bottom: -20px;
  }

  .about-badge {
    left: 20px;
    bottom: 20px;
  }
}

/* =====================================================
           PROJECTS SECTION
           ===================================================== */
.projects-section {
  padding: 5rem;
  /* background: var(--color-dark-light); */
  background: #f6f6f6;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.section-header-content {
  max-width: 600px;
}

.section-header-content .section-label {
  margin-bottom: var(--space-md);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-lg);
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.project-card.large {
  grid-column: span 7;
  height: 500px;
}

.project-card.medium {
  grid-column: span 5;
  height: 500px;
}

.project-card.small {
  grid-column: span 4;
  height: 400px;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slower);
}

.project-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
          to top,
          rgba(10, 10, 10, 0.95) 0%,
          rgba(10, 10, 10, 0) 60%
        ); */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition-base);
}

.project-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #289b4c;
  margin-bottom: 0;
}

.project-title {
  font-family: var(--font-display);
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  transition: var(--transition-base);
}

.project-location {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: #ffffff;
}

.project-arrow {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-base);
}

.project-card:hover .project-image {
  transform: scale(1.1);
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top,
      rgba(10, 10, 10, 1) 0%,
      rgba(10, 10, 10, 0.3) 100%);
}

.project-card:hover .project-title {
  color: #39a24b;
}

.project-card:hover .project-arrow {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {

  .project-card.large,
  .project-card.medium,
  .project-card.small {
    grid-column: span 12;
    height: 350px;
  }
}

@media (max-width: 575.98px) {

  .project-card.large,
  .project-card.medium,
  .project-card.small {
    height: 280px;
  }
}

/* =====================================================
           WHY CHOOSE US SECTION
           ===================================================== */
.features-section {
  padding: 5rem;
  position: relative;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(201, 169, 98, 0.1) 0%,
      transparent 70%);
  pointer-events: none;
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.feature-card {
  background: var(--color-dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 169, 98, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--color-primary);
  color: var(--color-dark);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.feature-description {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.feature-number {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

/* Zigzag Layout for larger screens */
@media (min-width: 992px) {
  .feature-card:nth-child(2) {
    transform: translateY(60px);
  }

  .feature-card:nth-child(4) {
    transform: translateY(60px);
  }

  .feature-card:nth-child(2):hover,
  .feature-card:nth-child(4):hover {
    transform: translateY(55px);
  }
}

@media (max-width: 767.98px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.testimonials-section {
  padding: 5rem;
  background: #fff;
  overflow: hidden;
}

.testimonials-wrapper {
  position: relative;
}

.testimonials-slider {
  display: flex;
  gap: var(--space-lg);
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 calc(50% - var(--space-sm));
  /* background: var(--color-dark-card); */
  border: 1px solid rgb(18 17 17 / 20%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  min-height: 370px;
}

.testimonial-quote-icon {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: 2rem;
  color: rgb(47 158 76);
  line-height: 1;
}

.testimonial-rating {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}

.testimonial-rating i {
  color: #2f9e4c;
  font-size: 0.875rem;
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.author-avatar {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #309f4c;
}

.author-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 2px;
  color: #000000;
}

.author-role {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Slider Navigation */
.slider-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: var(--space-xl);
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: linear-gradient(135deg, #038d50, #a4cd43);
  color: var(--color-light);
  cursor: pointer;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #00000036;
  color: #fff;
  border-color: #00000036;
}

.slider-dots {
  display: flex;
  gap: var(--space-xs);
  display: none;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glass-border);
  cursor: pointer;
  transition: var(--transition-base);
}

.slider-dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: var(--radius-full);
}

@media (max-width: 991.98px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

/* =====================================================
           GALLERY SECTION
           ===================================================== */
.gallery-section {
  padding: 5rem;
  background-color: #f6f6f6;
}

.gallery-section p {
  font-family: "Playfair Display", serif;
  color: #000000;
  font-size: 18px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slower);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--color-light);
  transform: scale(0.5);
  transition: var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

@media (max-width: 991.98px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item {
    height: 200px;
  }
}

/* =====================================================
           CONTACT SECTION
           ===================================================== */
.contact-section {
  padding: var(--space-4xl) 0;
  background: var(--color-dark-light);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
}

.contact-info {
  padding-right: var(--space-xl);
}

.contact-info .section-label {
  margin-bottom: var(--space-md);
}

.contact-info .display-medium {
  margin-bottom: var(--space-lg);
}

.contact-description {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 98, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-text h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-text p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

.contact-social {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--color-primary);
  color: var(--color-dark);
  border-color: var(--color-primary);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  position: relative;
  margin-bottom: var(--space-md);
}

.form-group.full-width {
  grid-column: span 2;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--color-dark);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--color-light);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='[w3.org](http://www.w3.org/2000/svg)' width='16' height='16' fill='%23888888' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--color-dark);
  color: var(--color-light);
}

.form-label-floating {
  position: absolute;
  top: 50%;
  left: var(--space-md);
  transform: translateY(-50%);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: var(--transition-base);
}

.form-input:focus~.form-label-floating,
.form-input:not(:placeholder-shown)~.form-label-floating {
  top: 0;
  font-size: 0.75rem;
  background: var(--color-dark);
  padding: 0 4px;
  color: var(--color-primary);
}

.form-submit {
  width: 100%;
  margin-top: var(--space-sm);
}

@media (max-width: 991.98px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding-right: 0;
  }
}

@media (max-width: 575.98px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }
}

.footer {
  background: #292E34;
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .navbar-brand-custom {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  color: #40a54b;
}

.footer-links {
  list-style: none;
  padding: 0 0 0 23px;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: #ffffff;
  font-size: 0.9375rem;
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: #1e984d;
  padding-left: 5px;
}

.footer-newsletter p {
  color: #ffffff;
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
}

.newsletter-input {
  flex: 1;
  background: var(--color-dark-light);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  color: var(--color-light);
  font-size: 0.9375rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.newsletter-btn {
  padding: var(--space-sm) var(--space-md);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: var(--space-md);
  background: #206931;
}

.footer-copyright {
  color: #fff;
  font-size: 0.875rem;
  ;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
  justify-content: end;
}

.footer-legal ul li a {
  color: #fff;
  font-size: 0.875rem;
}

.footer-legal ul {
  gap: 30px;
}

.footer-legal ul li {
  list-style-type: none;
}

.footer-legal a:hover {
  color: var(--color-primary);
}

@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================================================
           BACK TO TOP BUTTON
           ===================================================== */
.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-base);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-light);
  transform: translateY(-5px);
}

/* NAVBAR */
.navbar-pro {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  z-index: 1000;
  transition: 0.4s;
}

.navbar-pro.scrolled {
  top: 10px;
  backdrop-filter: blur(20px);
}

/* INNER */
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 30px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* LOGO */
.logo-box {
  background: linear-gradient(135deg, #c9a962, #dfc78a);
  padding: 10px;
  border-radius: 6px;
}

/* NAV LINKS */
.nav-links li a {
  margin: 0 25px;
  position: relative;
  color: #fff;
}

.nav-links ul li {
  list-style-type: none;
}

/* SLIDE UNDERLINE */
.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #038d50, #a4cd43);
  left: 0;
  bottom: -5px;
  transition: 0.4s;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* MAGNETIC BUTTON */
.cta-magnetic {
  padding: 12px 25px;
  background: linear-gradient(135deg, #038d50, #a4cd43);
  border-radius: 30px;
  display: inline-block;
  transition: 0.2s;
}

/* MENU BUTTON */
.menu-btn {
  width: 30px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: white;
  margin: 6px 0;
  transition: 0.4s;
}

/* ANIMATE TO X */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-btn.active span:nth-child(3) {display: none;}

/* FULLSCREEN MENU */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 85%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transform: translateY(-100%);
    transition: 0.6s ease;
    z-index: 99999;
}


.menu-overlay.active {
  transform: translateY(0);
}

.menu-overlay a {
  font-size: 30px;
  letter-spacing: 2px;
      background: linear-gradient(135deg, #038d50, #a4cd43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  font-family: var(--font-display);
}

.menulinks {
  font-size: 30px;
  letter-spacing: 2px;
      background: linear-gradient(135deg, #038d50, #a4cd43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  font-family: var(--font-display);
}

/* =====================================================
           CURSOR EFFECTS (OPTIONAL)
           ===================================================== */
.cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-primary);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    border-color 0.3s ease;
}

.cursor-outline.hover {
  width: 60px;
  height: 60px;
  border-color: rgba(201, 169, 98, 0.5);
}

@media (max-width: 991.98px) {

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

/* =====================================================
           PRELOADER
           ===================================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--glass-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.preloader-progress {
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #038d50, #a4cd43) !important;
  animation: loading 2s ease-in-out forwards;
}

@keyframes loading {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/* =====================================================
           UTILITY CLASSES
           ===================================================== */
.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.z-1 {
  z-index: 1;
}

.nav-inner .logo img {
  width: 105px;
}

/* Animation Delays */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}


.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c3e50;
  line-height: 1;
}

.stat-plus {
  font-size: 2.5rem;
  font-weight: 400;
  color: #20994e;
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* .whychoose-section {
  background: #fff;
  padding: 50px 0;
  font-family: "Playfair Display", serif;
}

.whychoose-title {
  text-align: center;
  margin-bottom: 50px;
}

.whychoose-title h2 {
  font-size: 60px;
  background: linear-gradient(135deg, #038d50, #a4cd43);
  -webkit-background-clip: text;
  color: transparent;
}

.whychoose-stack {
  position: relative;
  width: 80%;
  margin: auto;
}

.whychoose-item {
  position: sticky;
  top: 120px;
  height: 350px;
  margin-bottom: 80px;

  border-radius: 20px;
  overflow: hidden;

  transform: scale(0.9);
  opacity: 0.5;
  transition: 0.5s ease;
}

.img1 { background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") center/cover no-repeat; }
.img2 { background: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c") center/cover no-repeat; }
.img3 { background: url("https://images.unsplash.com/photo-1600047509782-20d39509f26d") center/cover no-repeat; }
.img4 { background: url("https://images.unsplash.com/photo-1600607687644-c7171b42498f") center/cover no-repeat; }
.img5 { background: url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2") center/cover no-repeat; }
.img6 { background: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae") center/cover no-repeat; }

.whychoose-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}
.content {
  position: relative;
  color: #fff;
  padding: 40px;
  max-width: 600px;
}
.whychoose-item.active {
  transform: scale(1);
  opacity: 1;
}
.content h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

.content p {
  font-size: 17px;
  color: #ddd;
} */

.testimonials-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* .testimonial-card {
  margin: 10px;
} */

.testimonials-wrapper {
  overflow: hidden;
}

.author-img-box {
  position: relative;
  width: 60px;
  height: 60px;
}

.author-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.google-icon {
  /* position: absolute;
    bottom: 12%;
    left: 16%; */
  margin-left: -45px;
  margin-bottom: -49px;
  width: 30px !important;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.gallery-item a {
  /* display: block; */
  position: relative;
}

.gallery-overlay {
  pointer-events: none;
  /* keeps overlay but allows click */
}

/* .testimonial-card {
  min-width: 100%;
  flex: 0 0 100%;
} */
.custom-nav {
  list-style: none;
  gap: 30px;
}

.custom-nav li {
  position: relative;
}

/* FIX: make sure parent allows dropdown */
.custom-nav {
  overflow: visible;
}

/* Dropdown hidden by default */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  min-width: 220px;
  display: none;
  /* IMPORTANT */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 8px 0 10px;
  z-index: 999;
  margin-top: 0px;
}

/* Show on hover */
.dropdown:hover>.dropdown-menu {
  display: block;
}

/* Sub dropdown */
.dropdown-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: rgba(0, 0, 0, 0.4);
  min-width: 200px;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 10px 0;
}

/* Show sub menu */
.dropdown-sub:hover>.dropdown-sub-menu {
  display: block;
}

/* Links */
.dropdown-menu a,
.dropdown-sub-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
}

/* .dropdown-menu a:hover {
  background: #f5f5f5;
} */
.dropdown a {
  margin: 0 !important;
}

.footer-newsletter ul li {
  list-style-type: none;
  margin-bottom: 20px;
}

.footer-newsletter {
  position: relative;
}

.footer-newsletter ul li i {
  position: absolute;
  left: -3px;
  margin-top: 7px;
}

.footer-links li a {
  position: relative;
}

.footer-links li a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  position: absolute;
  left: -20px;
  top: 0;
  color: #40a54b;
  font-size: 0.875rem;
}

/* how-it-works-styles */
.how-it-works {
  background: #f8f8f8;
  padding: 80px 0;
}

/* Section Label */
.section-label span {
  font-size: 12px;
  letter-spacing: 3px;
  color: #000;
  font-weight: 600;
  position: relative;
}

/* .section-label span::before,
.section-label span::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #c9a14a;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
} */

/* Title */
.main-title {
  font-size: 48px;
  font-weight: 500;
  color: #000;
}

/* .main-title span {
  color: #c9a14a;
  font-style: italic;
} */

/* Subtitle */
.subtitle {
  max-width: 650px;
  margin: auto;
  color: #777;
  font-size: 15px;
}

/* Steps Wrapper */
.steps-wrapper {
  margin-top: 60px;
  position: relative;
}

/* Line */
.step-line {
  position: absolute;
  top: 53px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  /* controls line length */
  height: 1px;
  background: #1b964e;
  z-index: 0;
}

/* Step Box */
.step-box {
  width: 55px;
  height: 55px;
  border: 1px solid #1b964e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  background: #fff;
  font-weight: 600;
  color: #1b964e;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.step-box:hover {
  background: #1b964e;
  color: #fff;
  transform: translateY(-6px);
}

/* Step Titles */
.how-it-works h6 {
  margin-top: 20px;
  font-weight: 500;
  font-size: 15px;
  color: #000;
}

.how-it-works p {
  font-size: 14px;
  color: #777;
  font-weight: 300;
  /* max-width: 180px; */
  text-align: center;
  margin: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .step-line {
    display: none;
  }

  .main-title {
    font-size: 28px;
  }
}

/* end-how-it-works-styles */

/* Wrapper */
.ticker-wrapper {
  background: #259b4e;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

/* Scrolling Content */
.ticker {
  display: inline-block;
  padding: 12px 0;
  animation: scroll-left 20s linear infinite;
}

/* Duplicate for seamless loop */
.ticker span {
  display: inline-block;
  margin: 0 40px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

/* Diamond separator */
.ticker span::after {
  content: "◆";
  margin-left: 40px;
  font-size: 10px;
  color: #fff;
  opacity: 0.6;
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover (optional) */
.ticker-wrapper:hover .ticker {
  animation-play-state: paused;
}

/* SECTION */
.blog-section {
  padding: 80px 0;
  background: #fff;
}

/* TITLE */
.blog-title {
  font-size: 42px;
  font-weight: 700;
}

.blog-title span {
  color: #c9a14a;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 14px;
  /* overflow: hidden; */
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.blog-img {
  height: 220px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 18px;
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.blog-content span {
  font-size: 12px;
  color: #999;
}

.blog-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
  color: #000;
}

.blog-content p {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
}

/* READ MORE BUTTON */
.read-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #2b9d4d;
  text-decoration: none;
  position: relative;
}

.read-btn::after {
  content: "→";
  margin-left: 6px;
  transition: 0.3s;
}

.read-btn:hover::after {
  margin-left: 10px;
}

/* VIEW ALL BUTTON */
.view-all-btn {
  margin-top: 40px;
  border-radius: 10px;
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
  font-weight: 500;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #038d50, #a4cd43);
  color: #fff;
  border: 0;
}

/* OWL FIX */
.blog-owl .owl-stage {
  display: flex;
}

.blog-owl .owl-item {
  display: flex;
  justify-content: center;
}

/* ARROWS */
.blog-owl .owl-nav button {
  position: absolute;
  top: 40%;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #038d50, #a4cd43) !important;
  color: #fff !important;
  border: none;
}

.blog-owl .owl-nav .owl-prev {
  left: -72px;
}

.blog-owl .owl-nav .owl-next {
  right: -72px;
}

.blog-owl .owl-nav button:hover {
  background: #000 !important;
}

/* REMOVE DOTS */
.blog-owl .owl-dots {
  display: none;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .blog-title {
    font-size: 28px;
  }

  .blog-owl .owl-nav .owl-prev {
    left: 0;
  }

  .blog-owl .owl-nav .owl-next {
    right: 0;
  }
}


/* ----------------==================------------------ */


.page-header {
  background: url("../images/innerpage-banner.jpg") no-repeat;
  background-size: cover !important;
  background-position: center !important;
  width: 100%;
  height: 50vw;
  max-height: 400px;
  position: relative;
  padding: 215px 0px 0px;
  align-items: center;
}

.page-header .active {
  background: linear-gradient(135deg, #038d50, #a4cd43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========------========= */

.about-us-section-1 {
  padding: 80px 0 60px;
}

.about-us-section-1 .about-us-content h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #038d50, #a4cd43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
}

.about-us-section-1 .about-us-content p {
  margin-bottom: 14px;
  line-height: 1.8;
  color: #000000;
  letter-spacing: 0.6px;
  text-align: justify;
}

.about-us-section-1 .about-us-content {
  padding-left: 20px;
}

.about-us-section-1 .about-us-image img {
  border-radius: 20px;
}

.about-us-section-1 .about-us-image {
  position: relative;
}

/* .about-us-section-1 .about-us-image::after {
    content: '';
    width: 0;
    height: 0;
    border-bottom: 200px solid #7146f3;
    border-right: 200px solid transparent;
    position: absolute;
    left: -15px;
    bottom: -15px;
    z-index: -1;
} */

.about-us-section-1 .about-us-image::after {
  content: '';
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #038d50, #a4cd43);
  position: absolute;
  left: -15px;
  bottom: -15px;
  z-index: -1;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}

.section-padng-80 {
  padding: 80px 0 15px;
}

.section-padng-btm-80 {
  padding: 85px 0 15px;
}

.section-padng-0 {
  padding: 85px 0 10px;
}

.inner-projects-section {

  background-color: white;
}

.inner-projects-section h1 {
  font-size: 40px !important;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #000;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: unset;
}

.project-box {
  position: relative;
  width: 95%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.project-box::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  width: 70px;
  height: 65px;
  border-left: 3px solid #c79a2e;
  border-top: 3px solid;
  border-image-source: linear-gradient(135deg, #038d50, #a4cd43);
  border-image-slice: 1;
}

.project-box::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: 71px;
  width: 70px;
  height: 65px;
  border-right: 3px solid #c79a2e;
  border-bottom: 3px solid;
  border-image-source: linear-gradient(135deg, #038d50, #a4cd43);
  border-image-slice: 1;
}

.project-box img{
    min-height: 270px;
}

.project-box h3 {
  color: #40a54b;
  margin-top: 15px;
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.4px;
  height: 65px;
}

/* ========--------========== */

.blog-section {
  padding: 70px 0px;
}

.blogs-cards {
  border: 1px solid rgb(196, 196, 196);
  border-radius: 10px;
}

.blogs-cardsimgs img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  height: 210px;
  object-fit: cover;
}

.blogs-cardstext {
  /* --tw-shadow: 0 0 3px #0000001a; */
  padding: 0px 10px 20px 14px;
}

.blogs-cardstext h3 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 9px;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
}

.blogs-cardstext p {
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blogs-cardstext span p {
  display: grid;
  gap: 10px;
  margin-bottom: 0px;
  color: black;
}

.blogs-cardstext a {
  color: #0f172b;
  /*font-family: "Rubik", "sans-serif";*/
  /* text-decoration: underline; */
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s, text-decoration 0.2s;
}

.blogs-cardstext a:hover {
  color: #40a54b
}

.blogs-cardstext a i {
  font-size: 11px;
  padding-top: 2px;
  text-decoration: none;
  padding-left: 4px;
}

.blogs-cardstext .info-ul {
  margin-bottom: 10px;
  margin-top: 10px;
  padding-left: 0px;
}

.blogs-cardstext .info-ul li {
  display: inline-block;
  margin-right: 0px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.blogs-cardstext .info-ul li span {
  display: inline-block;
  margin-right: 0px;
  font-size: 14px;
  font-weight: 500;
  color: #000 !important;   /* solid black */
  font-family: var(--font-body);

  /* remove gradient text effect */
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

.blogs-cardstext .info-ul li a {
  color: #000;
  text-decoration: none;
}

.blogs-cardstext .info-ul li::before {
  display: inline-block;
  content: "";
  background: #40a54b;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 7px;
  margin-bottom: 2px;
}

.blogdetl-section {
  padding: 90px 0px 65px;
}

.blog-section-left-box {
  background: #fff;
  padding: 18px;
  position: relative;
  margin-bottom: 30px;
  width: 100%;
  float: left;
}

.blog-section-left-box img {
  width: 100%;
}

.blog-section-left-box .info-ul {
  margin-bottom: 10px;
  margin-top: 10px;
  padding-left: 0px;
}

.blog-section-left-box .info-ul li {
  display: inline-block;
  margin-right: 4px;
  font-size: 16px;
  font-weight: 500;
  color: black;
}

.blog-section-left-box .info-ul li a {
  color: #000;
  text-decoration: none;
}

.blog-section-left-box .info-ul li::before {
  display: inline-block;
  content: "";
  background: #40a54b;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 6px;
  margin-bottom: 3px;
}

.blogdetl-section h3 {
  font-size: 23px;
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  letter-spacing: 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: black;
}

.blogdetl-section p {
  font-size: 15.3px;
  font-weight: 400;
  color: #3c3c3c;
  font-family: "Roboto", sans-serif;
  margin-top: 0px;
  text-align: left;
  line-height: 28px;
  margin-bottom: 0px;
}

.blog-bottom .blog-share {
  text-align: right;
  width: 100%;
}

.blog-bottom .blog-share .blog-sb {
  padding: 7px 8px;
  display: inline-flex;
  text-transform: uppercase;
  font-size: 13px;
  background: #f4f4f4;
  border-radius: 25px;
  text-align: center;
}

.blog-bottom .blog-share ul {
  margin-left: 15px;
  margin-bottom: 0;
  padding-left: 0px;
}

.blog-bottom .blog-share ul li {
  margin-right: 13px;
  font-size: 18px;
  display: inline-block;
}

.blog-bottom .blog-share ul li i.fa-square-whatsapp {
  color: #25d366;
}

.blog-bottom .blog-share ul li i.fa-square-x-twitter {
  color: #000;
}

.blog-bottom .blog-share ul li i.fa-square-instagram {
  background: linear-gradient(to right, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.blog-bottom .blog-share ul li i.fa-square-facebook {
  color: #3b5998;
}

.blog-section-right-box {
  background: #fff;
  padding: 18px;
  position: relative;
  margin-bottom: 30px;
}

.blog-section-right-box h4 {
  font-size: 16px;
  margin-bottom: 22px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: black;
}

.blog-bottom {
  margin-top: 18px;
}

.blog-section-right-box ul {
  padding-left: 0px;
}

.blog-section-right-box ul li {
  font-size: 14px;

  padding-bottom: 10px;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #eee;
  padding-left: 23px;
}

.blog-section-right-box ul li a {
    color: black;
    width: 65%;
    display: block;
}

.blog-section-right-box ul li a i{ margin-left: -25px;}

.blog-section-right-box ul li span {
    float: right;
    color: #40a54b;
    margin-right: -100px;
}

/* --------=================--------- */

.ongoing-project-section-4 {
  background: #292E34;
  padding: 60px 0 40px;
}

.ongoing-project-map iframe {
  width: 100%;
  height: 440px;
  border: none;
  border-radius: 10px;
}

.ongoing-project-section-4 .location-highlight ul li {
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: 0.6px;
}

.ongoing-project-section-4 .location-highlight h2 {
  margin-bottom: 23px;
}

/* ========----====== */

.ongoing-project-section-5 {
  padding: 70px 0px 0px;
}

.ongoing-project-section-5 .project-gallery {
  margin-bottom: 30px;
}

.ongoing-project-section-5 .project-gallery img {
  border-radius: 20px;
  height: 200px;
  width: 100%;
}

.ongoing-project-section-5 h1 {
  font-size: 40px !important;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #40a54b;
  margin-bottom: 45px;
  text-align: center;
  line-height: 30px;
  letter-spacing: unset;
}

.ongoing-project-testimonials {
  padding: 10px 0px 60px;
}

/* ====== */

.faq-section {
  background-color: #7ebb3e38;
  position: relative;
  display: block;
  padding: 65px 0 55px;
}

.faq-section h2 {
  font-size: 40px !important;
  font-weight: 500;
  color: #000000;
  margin-bottom: 45px;
  text-align: center;
  line-height: 30px;
  letter-spacing: unset;
}

.faq-section .faq {
  width: 100%;
}

.faq-section .faq-item {
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgb(0 0 0 / 8%);
  margin-bottom: 30px;

}


.faq-section .faq-question {
  background: #fff;
  color: #000;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* pushes icon to right */
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: var(--font-display);
  font-size: 17px;
}

.faq-section .faq-item:not(.active) .faq-question {
  background: #ffffff;
  color: #333;
  text-align: left;
}

.faq-section .faq-answer {
  display: none;
  padding: 20px;
  background: #fff;
  color: #444;
  line-height: 1.6;
  border-top: 1px solid rgb(0 0 0 / 8%);
}

.faq-section .faq-item.active .faq-answer {
  display: block;
}

.faq-section .faq-answer p {
  color: #000000;
  line-height: 1.8;
}

.faq-section .icon {
  margin-right: 10px;
  display: none;
}

.faq-section .arrow i {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.ongoing-project-section-3 {
  padding: 70px 0px 60px;
}

.ongoing-project-section-3 .project-heading h1 {
  font-size: 35px !important;
  font-weight: 500;
  color: #000000;
  margin-bottom: 45px;
  text-align: center;
  line-height: 55px;
  letter-spacing: unset;
}

.ongoing-project-section-3 .project-heading img {
  margin: 0 auto 20px;
}

.ongoing-project-section-3 .project-img img {
  width: 100%;
  border-radius: 0px;
  height: 450px;
}

.ongoing-project-section-3 .project-img {
  position: relative;
}

.project-img::before {
  content: "";
  position: absolute;
  left: 1px;
  top: -10px;
  width: 70px;
  height: 65px;
  border-left: 3px solid #c79a2e;
  border-top: 3px solid;
  border-image-source: linear-gradient(135deg, #038d50, #a4cd43);
  border-image-slice: 1;
}

.project-img::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: -11px;
  width: 70px;
  height: 65px;
  border-right: 3px solid #c79a2e;
  border-bottom: 3px solid;
  border-image-source: linear-gradient(135deg, #038d50, #a4cd43);
  border-image-slice: 1;
}


.approved-section {
  padding: 20px 0px 40px;
  /* background-image: url(../images/main-image.jpg); */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* .approved-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.438); /* mask color 
    z-index: 1;
} */

.approved-section * {
  position: relative;
  z-index: 2;
  align-items: center;
}

.approved-middle .image{margin-bottom: 0px;}

/*.approved-middle .image img{*/
/*    height: 300px;*/
/*}*/

.approved-section h2 {
  font-size: 35px !important;
  font-weight: 500;
  color: #000;
  margin-bottom: 45px;
  text-align: center;
  line-height: 30px;
  letter-spacing: unset;
}

.approved-section .approved-left h5 {
  font-size: 20px !important;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
  line-height: 30px;
  letter-spacing: 1px;
}

.approved-section .approved-right h5 {
  font-size: 20px !important;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
  line-height: 30px;
  letter-spacing: 1px;
}

.approved-left p,
.approved-right p {
  color: #000;
  line-height: 1.8;
  letter-spacing: 0.6px;
  text-align: center;
}
.approved-section table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin: 20px auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.approved-section .project-table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin: 20px auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.approved-section table th {
  /* background-color: #006400;  */
  color: #000;
  text-align: left;
  padding: 10px 15px;
  width: 40%;
  border-right: 1px solid;
}

.approved-section .project-table td {
  /* background-color: #f9f9f9; */
  padding: 10px 15px;
  color: #000;
}

.approved-section .project-table a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.approved-section .project-table a:hover {
  text-decoration: underline;
}

.project-table tr {
  border: 1px solid;
}

/* =====-----=== */

.ongoing-project-section-2 {
  padding: 0px;
}

.about-projectrow {
  display: flex;
  gap: 0px;
}

.project-about-left {
  width: 60%;
}

.project-about-right {
  width: 40%;
  background: #292E34;
  padding: 60px 35px 60px 60px;
}

.project-about-right p{margin-bottom: 30px;}

.ongoing-project-section-2 .project-about-left img {
  width: 100%;
  height: 500px;
  border-radius: 0px;
  object-fit: cover;
}

/* ========= */

.ongoing-project-section-1 {
  padding: 60px 0px 48px;
}

.ongoing-project-section-1 .about-project-overview h2 {
  font-size: 35px !important;
  font-weight: 500;
  color: #000000;
  margin-bottom: 40px;
  text-align: center;
  line-height: 30px;
  letter-spacing: unset;
}

.ongoing-project-section-1 .about-project-overview p {
  color: #000000;
  line-height: 1.8;
  letter-spacing: 0.6px;
  text-align: justify;
}

.project-special-features {
  display: flex;
  gap: 30px;
  margin-top: 0px;
}

.feature-item-1 {
  width: 50%;
  margin-top: 20px;
}

.project-about-right h2 {
  margin-bottom: 20px;
  line-height: 48px;
}

/* =========== */

.amenities-section {
  padding: 5px 0px 60px;
}

.amenities-section h2 {
  color: #000000;
  text-align: center;
  margin-bottom: 45px;
}

.amenities-section .amenity-item {
  position: relative;
  display: block;
  margin-top: 17px;
  text-align: center;
  border-radius: .25rem !important;
  background-color: #fff !important;
  padding: 1rem !important;
  margin-bottom: 20px !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
  min-height: 140px;
}

.amenities-section .amenity-item img,
.amenities-section .amenity-item i {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #079007;
  /* Your theme green color */
  margin: 0 auto 10px;
}

.amenities-section .amenity-item h5 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0px;
}

/* ========== */

.floor-section {
  padding: 0px 0px 60px;
}

.floor-section h2 {
  color: #000000;
  text-align: center;
  margin-bottom: 45px;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
  padding: 0;
  justify-content: center;
}

.tabs li {
  list-style: none;
  padding: 10px 40px;
  background: #ffffff;
  cursor: pointer;
  border-radius: 5px;
  color: black;
  border: 1px solid green;
}

.tabs li.active {
  background: linear-gradient(135deg, #038d50, #a4cd43);
  color: #fff;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-pane img {
  width: 100%;
  max-width: 600px;
  border: 1px solid #c7c7c7;
  height: 260px;
}


/* ===---=== */

.contact-section h6 {
  color: #f4c400;
  font-weight: 600;
  letter-spacing: 2px;
}

.contact-section h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 20px;
}

.contact-section p {
  color: #555;
  max-width: 600px;
}

.form-control {
  border: 1px solid #ddd;
  padding: 15px;
  height: auto;
  border-radius: 0;
  margin-bottom: 20px;
}

textarea.form-control {
  height: 150px;
}

.btn-submit {
  background: linear-gradient(135deg, #038d50, #a4cd43);
  color: #000;
  font-weight: 600;
  padding: 15px;
  width: 100%;
  border: none;
  text-transform: uppercase;
}


.career-section {
  padding: 100px 0px;
}

.career-content {
  color: black;
  padding-right: 60px;
}

.career-content p {
  margin-bottom: 26px;
}

.career-content h2 {
  margin-bottom: 25px;
}

/* ===--=== */

.partners-section {
  padding: 60px 0px 0px;
}

.partners-section h2 {
  font-size: 40px !important;
  font-weight: 500;
  color: #000000;
  margin-bottom: 45px;
  text-align: center;
  line-height: 30px;
  letter-spacing: unset;
}

.partner-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.partner-logos img {
  width: 13.66%;
  height: auto;
}

/* ===--=== */

.enquiry-section h2 {
  font-size: 40px !important;
  font-weight: 500;
  color: #000000;
  margin-bottom: 50px;
  text-align: center;
  line-height: 30px;
  letter-spacing: unset;
}

.enquiry-section {
  padding: 60px 0px 60px;
}

.enquiry-form {
  position: relative;
}

.enquiry-form .float-text {
  position: absolute;
  left: 12px;
  top: 100%;
  font-size: 50px;
  color: #e9eaed;
  font-weight: 800;
  line-height: 1em;
  letter-spacing: 6px;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left top;
}

.enquiry-form .form-control {
  color: #5f707f;
  border-color: #e1e1e1;
  outline: 0;
  box-shadow: none;
}

.enquiry-section .enquiry-form .country-code {
    width: 120px;
}

/* =======-======- */

.about-inner-section-2 {
  padding: 60px 0px 60px;
}

.about-inner-section-2 .team-image h5 {
  color: #000;
  margin-bottom: 10px;
}

.about-inner-section-2 .team-image p {
  color: #000;
  margin-bottom: 0px;
}

.about-inner-section-2 .founder-content {
  color: #000;
}

.about-inner-section-2 .founder-content h3 {
  background: linear-gradient(135deg, #038d50, #a4cd43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  font-size: 30px;
}

.about-inner-section-2 .founder-content p {
  font-size: 15px;
  letter-spacing: 0.6px;
  text-align: justify;
  line-height: 26px;
  margin-bottom: 15px;
}

/* ========-----------========= */

.inner-contact-section-1 {
  padding: 80px 0px 70px;
  background-color: #F8F7F3;
}

.inner-contact-section-1 .enquiry-form .form-control {
  padding: 12px 28px 12px 15px;
}

.moverspackers-contact-info-text {
  padding: 13px 70px 16px 30px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #292E34;
  margin-bottom: 24px;
}

.moverspackers-contact-info-text p {
  color: white;
  margin-bottom: 5px;
}

.moverspackers-contact-info span {
  position: absolute;
  right: 13px;
  top: 15px;
}

.moverspackers-contact-info span:before {
  content: '';
  position: absolute;
  right: -45px;
  top: -43px;
  width: 102px;
  height: 102px;
  border-radius: 100%;
  background: linear-gradient(135deg, #038d50, #a4cd43);
}

.moverspackers-contact-info span img {
  position: relative;
  font-size: 30px;
  color: #fff;
}

/* ===== */

.vision-inner-section {
  padding: 0px 0px 15px;
  /* background-image: url(../images/vision-bg.jpg); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.vision-inner-section .vision-content {
  color: #ffffff;
  /* background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1); */
  padding: 30px 30px 16px 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #038d50, #a4cd43);
}

.vision-inner-section .vision-content p {
  text-align: justify;
  padding-right: 0px;
  margin-bottom: 11px;
  font-size: 15px;
  letter-spacing: 0.6px;
}

.vision-inner-section .mission-content {
  color: #ffffff;
  /* background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1); */
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #038d50, #a4cd43);
}

.vision-inner-section .mission-content p {
  text-align: justify;
  font-size: 15px;
  letter-spacing: 0.6px;
  line-height: 25px;
  margin-bottom: 0px;
}

.aboutpage-partners {
  padding: 0px 0px 60px !important;
}

.about-inner-section-2 h2 {
  font-size: 40px !important;
  font-weight: 500;
  color: #000000;
  margin-bottom: 45px;
  text-align: center;
  line-height: 30px;
  letter-spacing: unset;
}

.about-inner-counter h2 {
  font-size: 40px !important;
  font-weight: 500;
  color: #000000;
  margin-bottom: 45px;
  text-align: center;
  line-height: 30px;
  letter-spacing: unset;
}

.about-inner-counter .counter-item {
  text-align: center;
  padding: 20px;
}

.about-inner-counter .counter-item img {
  width: 80px;
  height: auto;
  object-fit: cover;
  margin: 0 auto 10px;
  text-align: center;
}

.about-inner-counter .counter-item h4 {
  font-size: 28px;
  font-weight: 700;
  color: #40a54b;
  margin-bottom: 10px;
}

.about-inner-counter .counter-item p {
  font-size: 16px;
  color: #000;
  letter-spacing: 0.6px;
}

.about-inner-counter .counter-gridfrom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.about-inner-counter {
  padding: 0px 0px 60px;
}

.brochure {
  background: linear-gradient(135deg, #038d50, #a4cd43);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  position: fixed;
  z-index: 1;
  bottom: 20px;
  right: 20px;
}

.phone-group {
  display: flex;
  gap: 10px;
}

.country-code {
  width: 90px;
}

.phone-number {
  flex: 1;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='black'%3E%3Cpath d='M5 7l5 5 5-5H5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
  padding-right: 35px;
}

#whatsAppIcon {
    display: block;
    position: fixed;
    right: 15px;
    bottom: 80px;
    width: 50px;
    height: 50px;
    background-color: rgb(84, 180, 96);
    text-align: center;
    line-height: 50px;
    color: rgb(255, 255, 255);
    font-size: 24px;
    z-index: 9999;
    border-radius: 50%;
}

.social-icons {
    position: relative;
    padding-left: 0px;
    margin-top: 25px;
    margin-bottom: 0px;
}

.social-icons li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #f4f4f4;
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.social-icons li {
    position: relative;
    float: left;
    margin-left: 26px;
    margin-right: 15px !important;
    margin-bottom: 0px !important;
}

.social-icons li i {
    left: 0px !important;
    margin-top: 0px !important;

}

/* ========-----------===== */

.dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.dropdown-toggle i{
  margin-left: 10px;    
  background: linear-gradient(135deg, #038d50, #a4cd43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dropdown-menu-mobile {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
}

.dropdown-menu-mobile a {
    display: block;
    margin-bottom: 10px;
    font-size: 21px;
    text-align: center;
}

.mobile-dropdown.active .dropdown-menu-mobile {
    display: block;
}

.dropdown-toggle::after {
    display: none !important;
}

.menu-overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: black;
    top: 0;
    left: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.menu-overlay{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: black;
    transition: 0.4s;
    padding: 135px 30px 30px;
    z-index: 999;
}

.menu-overlay.active{
    right: 0;
}

.close-btn{
    color: white;
    font-size: 30px;
    cursor: pointer;
    margin-bottom: 20px;
}

.menu-btn{
    cursor: pointer;
}

.menu-btn span{
    display: block;
    width: 30px;
    height: 3px;
    background: rgb(255, 255, 255);
    margin: 5px 0;
}

/* ==--== */

.dropdown-menu-mobile,
.sub-dropdown-menu {
    display: none;
    padding-left: 15px;
}

.mobile-dropdown.active .dropdown-menu-mobile {
    display: block;
}

.mobile-sub-dropdown.active .sub-dropdown-menu {
    display: block;
}

.dropdown-toggle,
.sub-dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.sub-dropdown-toggle{margin-bottom: 10px;}

.sub-dropdown-toggle span{font-size: 20px; margin-bottom: 0px;}

.sub-dropdown-toggle i{
  margin-left: 10px; 
  font-size: 11px;   
   background: linear-gradient(135deg, #038d50, #a4cd43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    background: #000;
    overflow-y: scroll;
    transition: 0.4s;
    padding: 20px;
    z-index: 999;
}

.menu-overlay::-webkit-scrollbar {
    width: 5px;
}

.menu-overlay::-webkit-scrollbar-thumb {
    background: #888;
}