:root {
  --theme-primary: #1a6b3a;
  --theme-secondary: #13d7cb;
  --theme-secondary-light: #b8d9d9;
  --theme-secondary-light1: #ecfdff;
  --theme-text: #6b6969;
  --theme-light-text: #487090;
  --theme-yellow: #f5b800;
  --theme-blue-dark-gray: #c6c6c6;
  --theme-dark-gray: #ced1d8;
  --theme-white: #fff;
  --theme-black-text: #0d1c30;
}

.blue-color {
  color: var(--theme-primary);
}

.text-color {
  color: var(--theme-text);
}

.heading-color {
  color: var(--theme-black-text);
}

.section-heading {
  margin-bottom: 20px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Rubik", sans-serif;
  color: var(--theme-text);
  background: var(--theme-white);
  transition: 0.35s;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 14px;
  width: 100vw;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.7;
}

a {
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  transition: 0.5s all ease-in-out;
}

.slow-effect {
  transition: 0.5s all ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Ruberoid;
}

p {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-text);
  line-height: 1.7;
}

img {
  max-width: 100%;
}

a,
button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: none;
  outline: none;
  background: none;
  transition: 0.5s all ease-in-out;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fs-54 {
  font-size: 28px;
}

.fs-36 {
  font-size: 24px;
}

.fs-27 {
  font-size: 19px;
}

.fs-24 {
  font-size: 27px;
}

.fs-20 {
  font-size: 16px;
}

.fs-18 {
  font-size: 16px;
}

.fs-16 {
  font-size: 16px;
}

.fs-15 {
  font-size: 15px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.l_spacing0_16 {
  letter-spacing: -0.16px;
}

/* Common Section */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.section-label span {
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-black-text);
  text-transform: uppercase;
  position: relative;
  letter-spacing: 1.36px;
  padding-left: 5px;
  padding-right: 5px;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 50px;
  height: 1px;
  background: var(--theme-black-text);
}

.section-heading h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1e3f2d;
  margin-top: 10px;
  margin-bottom: 10px;
}

.section-heading h2 span {
  color: #2e7d32;
}

.section-heading p {
  color: #6a7282;
  font-size: 15px;
  max-width: 760px;
  margin: auto;
}

.text-color {
  color: var(--bs-text-shed);
}

.light-bg {
  background: var(--bs-light-background);
}

.column-title {
  margin-bottom: 14px;
}

.z_index1 {
  z-index: 1;
}

.main-wrapper {
  overflow: hidden;
}

.wow-common-animate {
  visibility: hidden;
}

.hero-slider {
  border-top: 4px solid #c9a227;
  position: relative;
}

.carousel-item {
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 47, 38, 0.65);
  z-index: 1;
}

.carousel-control-next,
.carousel-control-prev {
  z-index: 9;
}

.navbar-custom {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 15px 0;
}

.navbar-custom .nav-link {
  color: var(--theme-white) !important;
  margin: 0 10px;
  font-size: 14px;
  font-weight: 500;
}

.navbar-custom .nav-link:hover {
  color: var(--theme-yellow) !important;
}

.navbar-brand {
  color: var(--theme-white) !important;
  font-weight: bold;
  font-size: 18px;
}

.btn-yellow {
  background: var(--theme-yellow);
  color: var(--theme-black-text);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
}

.btn-yellow:hover {
  background: #ffce38;
  color: var(--theme-black-text);
}

.btn-green {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--theme-white);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
}

.btn-green:hover {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  color: var(--theme-white);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  color: var(--theme-white);
  padding: 0 15px;
}

.hero-badge {
  display: inline-block;
  background: #c9a2272e;
  color: #f0d060;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(245, 184, 0, 0.4);
  font-weight: 600;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
}

.hero-content h1 span {
  color: var(--theme-yellow);
}

.hero-content p {
  margin-top: 20px;
  font-size: 19px;
  color: #e5e7eb;
}

.hero-tags {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-tags span {
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--theme-white);
  border: 1px solid rgb(255 255 255 / 25%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 0.67px solid #ffffff40;
  background: #ffffff1f;
}

.stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
  padding: 25px 0;
  color: var(--theme-white);
}

.stats-bar h2 {
  color: var(--theme-yellow);
  font-weight: 700;
  margin-bottom: 5px;
}

.stats-bar p {
  font-size: 13px;
  color: #ccc;
  margin: 0;
}

.navbar-toggler {
  background-color: var(--theme-yellow);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ----------Latest Projects Section ------------ */
.projects-section {
  padding: 60px 0;
  background: #fafafa;
}

.project-card {
  background: var(--theme-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ececec;
  transition: all 0.3s ease;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.project-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.badge-new {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #198754;
  color: var(--theme-white);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 30px;
  font-weight: 700;
}

.badge-city {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--theme-white);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 30px;
}

.price-box {
  background: linear-gradient(180deg, #f3f8f3 0%, #edf5ee 100%);
  border: 1px solid #dfe8df;
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 15px;
}

.starting-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #8b8b8b;
  text-transform: uppercase;
}

.price-value {
  font-size: 20px;
  font-weight: 800;
  color: #2e7d32;
  margin: 0;
  line-height: 1.2;
}

.plot-size {
  margin: 4px 0 0;
  font-size: 11px;
  font-weight: 600;
  color: #c89b2d;
}

.project-content {
  padding: 15px;
}

.starting {
  font-size: 10px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #2e7d32;
  line-height: 1;
  margin-bottom: 4px;
}

.area {
  font-size: 12px;
  color: #c29a32;
  margin-bottom: 15px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  font-size: 13px;
  color: #555;
}

.features li {
  margin-bottom: 6px;
}

.enquire-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #edf3ee;
  color: var(--theme-primary);
  padding: 10px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Rubik", sans-serif;
}

.enquire-btn:hover {
  background: var(--theme-primary);
  color: var(--theme-white);
}

.swiper-pagination-bullet-active {
  background: #2e7d32;
}

/* ------------About Us Section------------------ */
.about-us-section {
  padding: 60px 0;
}

.about-us-section .section-heading h2,
.get-in-touch-wrapper .section-heading h2 {
  font-size: 25px;
}

/* LEFT IMAGE */
.about-image-wrap {
  position: relative;
}

.about-image-card {
  position: relative;
  border: 4px solid #d2a321;
  border-radius: 18px;
  overflow: hidden;
  z-index: 2;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.image-overlay-content {
  position: absolute;
  bottom: 18px;
  left: 0;
  color: var(--theme-white);
  z-index: 3;
  right: 0;
  text-align: center;
}

.image-overlay-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.image-overlay-content p {
  font-size: 13px;
  margin: 0;
  color: #f0d060;
}

.projects-badge {
  position: absolute;
  left: -35px;
  bottom: -40px;
  background: #198754;
  color: var(--theme-white);
  padding: 14px 16px;
  border-radius: 10px;
  text-align: center;
  z-index: 4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.projects-badge h3 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
}

.projects-badge span {
  font-size: 12px;
}

.bg-shape-green {
  position: absolute;
  width: 112px;
  height: 112px;
  background: rgb(26 107 28 / 20%);
  border-radius: 50%;
  left: -18px;
  top: -18px;
  z-index: 1;
}

.bg-shape {
  position: absolute;
  width: 187px;
  height: 187px;
  background: rgb(201 162 39 / 10%);
  border-radius: 50%;
  right: 5px;
  bottom: -55px;
  z-index: 1;
}

.about-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #4a5565;
  margin-bottom: 0;
}

.about-content p strong {
  font-size: 14px;
  font-weight: 700;
  color: Green;
}

/* FEATURES */
.feature-box {
  font-size: 14px;
  color: #173b2b;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-box {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #1a6b3a1f;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* TRUST BADGE */
.trust-badge {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(135deg,
      rgba(26, 107, 58, 0.08) 0%,
      rgba(201, 162, 39, 0.08) 100%);
  color: #173b2b;
  font-weight: 700;
  font-size: 16px;
  border-radius: 14px;
  border: 1px solid #c9a2274d;
}

/* ---------------------Company Highlights------------------------------ */
.highlights-section {
  padding: 60px 0;
}

.highlights-wrapper {
  background: linear-gradient(90deg, #06351f, #0d4b28, #0a3d23);
  border-radius: 14px;
  padding: 80px 24px;
  color: var(--theme-white);
}

.highlights-section .section-label span {
  color: #c9a227;
}

.highlights-section .section-label::before,
.highlights-section .section-label::after {
  background: #c9a227;
}

/* heading */
.highlights-section .section-heading h2 {
  color: var(--theme-white);
}

.highlights-section .section-heading h2 span {
  color: #f0d060;
}

/* cards */
.highlight-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  position: relative;
}

.highlight-card:before {
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0) 0%,
      #1a6b3a 50%,
      rgba(0, 0, 0, 0) 100%);
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.highlights-section .col-md-6:nth-child(even) .highlight-card .company-icon-box {
  color: #f0d060;
}

.highlights-section .col-md-6:nth-child(even) .highlight-card h3 {
  color: #f0d060;
}

.highlights-section .col-md-6:nth-child(even) .highlight-card::before {
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0) 0%,
      #c9a227 50%,
      rgba(0, 0, 0, 0) 100%);
}

.company-icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
  border-radius: 10px;
  background: rgba(255, 215, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #3af59b;
}

.highlight-card h3 {
  color: #3af59b;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 5px;
}

.highlight-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 700;
}

.highlight-card p {
  color: #ffffff8c;
  margin: 0;
}

/* image */
.highlight-image {
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* ----------------Our Services Section------------------------ */
.services-section {
  padding: 60px 0;
}

/* LEFT CARD */
.left-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 520px;
  height: 100%;
  text-align: center;
}

.left-card:before {
  content: "";
  background: linear-gradient(0deg,
      #051e0e 3.56%,
      rgba(47, 191, 101, 0) 125.93%);
  position: absolute;
  left: auto;
  right: auto;
  height: 100%;
  width: 100%;
}

.left-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.left-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
  color: var(--theme-white);
}

.left-title {
  font-size: 50px;
  font-weight: 800;
  color: #ffc107;
}

.left-card p {
  font-size: 20px;
  color: var(--theme-white);
  line-height: 30px;
}

/* SERVICE CARD */
.service-card {
  background: var(--theme-white);
  border-radius: 18px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
}

/* ICON */
.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #198754;
  flex-shrink: 0;
  background: linear-gradient(135deg,
      rgba(26, 107, 58, 0.08) 0%,
      rgba(201, 162, 39, 0.08) 100%);
}

/* TITLE */
.service-title {
  font-size: 17px;
  font-weight: 700;
  margin-top: 20px;
  color: #0f2d1a;
  margin-bottom: 5px;
}

.service-card p {
  color: #6b7280;
}

/* BADGE */
.badge-custom {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  background: #fff3cd;
  color: #a07a10;
  white-space: nowrap;
  font-weight: 600;
  border: 1px solid #edddc0;
}

/* GREEN CARD */
.green-card {
  background: #0f5132;
  color: var(--theme-white);
  border-radius: 18px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.green-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: #21713f;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.green-card p {
  color: #ffffffbf;
}

.get-in-touch-wrapper {
  background: #f8fdf9;
  padding: 60px 0;
}

.address-box span {
  display: block;
  color: #1d7540;
  font-weight: 600;
}

.contact-box {
  border: 1px solid #dce8de;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--theme-white);
  transition: all 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eef3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #198754;
  flex-shrink: 0;
}

.contact-content small {
  display: block;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 2px;
  font-weight: 500;
}

.contact-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #173b2b;
  font-family: "Rubik", sans-serif;
}

/* -----------------Amenities Section------------------------- */
.amenities-section {
  padding: 60px 0;
  background: #f8fdf9;
}

/* Amenities Cards */
.amenity-card {
  background: var(--theme-white);
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
  box-shadow: 0px 2px 12px 0px #0000000d;
}

.amenity-card:hover {
  transform: translateY(-4px);
}

.amenity-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: linear-gradient(135deg,
      rgba(26, 107, 58, 0.08) 0%,
      rgba(201, 162, 39, 0.08) 100%);
}

.amenity-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1f2d24;
}

.amenity-card p {
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
}

/* Bottom CTA */
.cta-box {
  margin-top: 60px;
  background: linear-gradient(90deg, #0f4b28, #0a3a20);
  color: var(--theme-white);
  padding: 18px 22px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.cta-box h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.cta-box p {
  margin: 10px 0 0 0;
  font-size: 14px;
  color: #ffffffb2;
}

/* Right Promo Card */
.promo-card {
  background: #146b35;
  border-radius: 20px;
  overflow: hidden;
  color: var(--theme-white);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.promo-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-bottom-left-radius: 120px;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-content {
  padding: 20px;
  position: relative;
  top: -75px;
}

.promo-content small {
  display: block;
  margin-bottom: 15px;
  color: #d9e6dc;
}

.promo-content h3 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  padding-top: 10px;
}

.promo-content h3 span {
  color: #ffc107;
  font-size: 44px;
}

.promo-content p {
  color: #e4eee7;
  font-size: 14px;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #1fc96d;
  color: var(--theme-white);
  text-decoration: none;
  border-radius: 25px;
  font-size: 13px;
}

/* --------------------Video Section---------------------- */
.videos-section {
  padding: 60px 0;
  background: var(--theme-white);
}

/* Video Card */
.video-card {
  background: var(--theme-white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.video-thumb {
  position: relative;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Top left badge */
.video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d3aa32;
  color: var(--theme-black-text);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 20px;
}

/* Bottom right duration */
.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--theme-white);
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 4px;
}

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #198754;
  font-weight: bold;
}

.play-btn img {
  width: auto;
  height: auto;
  object-fit: none;
}

/* Content */
.video-content {
  padding: 15px;
}

.video-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: #0f2d1a;
  margin-bottom: 8px;
  line-height: 1.5;
}

.video-content p {
  margin: 0;
  font-size: 13px;
  color: #888;
}

/* Subscribe Button */
.subscribe-btn {
  display: inline-block;
  margin-top: 40px;
  background: #ff0000;
  color: var(--theme-white);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  font-family: Ruberoid;
}

.subscribe-btn:hover {
  background: #d90000;
  color: var(--theme-white);
}

.testimonial-section {
  padding: 60px 0;
  position: relative;
  background-color: #f9f6f0;
}

/* Swiper */
.swiper {
  margin-top: 40px;
  padding-bottom: 50px;
}

/* Card */
.testimonial-card {
  background: var(--theme-white);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Quote icon */
.quote {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 28px;
  color: #eaeaea;
}

/* Stars */
.stars {
  color: #f4b400;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Text */
.testimonial-text {
  font-size: 14px;
  color: #000000bf;
  margin-bottom: 20px;
  line-height: 1.6;
  padding: 0 5px;
}

/* User */
.user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.user-name {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: var(--theme-primary);
}

.user-role {
  font-size: 12px;
  color: #999;
}

/* Edge Fade Effect */
.testimonial-section::before,
.testimonial-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-section::before {
  left: 0;
  background: linear-gradient(to right, #f4f6f5, transparent);
}

.testimonial-section::after {
  right: 0;
  background: linear-gradient(to left, #f4f6f5, transparent);
}

.info-box {
  background: var(--theme-white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0px 25px 50px -12px #1a6b3a14;
}

.info-box h4 {
  color: #0f2d1a;
  font-size: 20px;
  font-weight: 800;
}

.info-box p {
  color: #9ca3af;
  font-size: 13px;
}

.info-box .form-label {
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.info-box .form-control {
  font-size: 14px;
  color: #11182780;
  background: #f9fafb;
  border-color: #e5e7eb;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 14px;
}

.info-box .btn {
  background: linear-gradient(135deg, #1a6b3a 0%, #238a4e 100%);
  border-radius: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-white);
}

.info-box .btn:hover {
  background: #06893b;
}

/* ------------Footer------------- */
.footer {
  background-color: #092614;
  color: var(--theme-white);
  padding: 27px 0;
}

footer p {
  font-weight: 300;
  font-size: 16px;
  margin-top: 20px;
}

footer li {
  padding-bottom: 5px;
}

.footer a {
  color: var(--theme-white);
  text-decoration: none;
}

.footer a:hover {
  color: #ccc;
}

.footer-title {
  color: var(--theme-white);
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  padding-top: 10px;
  font-size: 14px;
}

.wpcf7-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wpcf7-submit.loading {
  pointer-events: none;
  opacity: 0.7;
}

.wpcf7-submit.loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: none;
  animation: spin 0.6s linear infinite;
}

.wpcf7-submit.loading .btn-loader {
  display: inline-block;
}

.wpcf7-submit.loading .btn-text {
  opacity: 0.6;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}