/*-------- File Name: style.css -------------------*/

/*-------- Color Variables (Light Theme - Default) ---------------------------*/
:root {
  /* Primary Colors - Fresh Crop Gradient Palette */
  --primary-green: #31694e;
  --primary-orange: #f0e491;
  --secondary-green: #bbc863;
  --tertiary-green: #658c58;
  --primary-black: #2a5740;
  --dark-gray: #31694e;

  /* Text Colors - Natural Green Tones */
  --text-primary: #3d5847;
  --text-dark: #1f3d2f;
  --text-medium: #2a5740;
  --text-light: #658c58;
  --text-gray: #537556;
  --text-muted: #7a9b6e;
  --text-border: #4a6d52;

  /* Background Colors - Fresh & Vibrant */
  --bg-white: #fafcf8;
  --bg-light: #f5f9f0;
  --bg-accent: #f0e491;
  --bg-footer: #31694e;
  --bg-copyright: #2a5740;

  /* Border Colors - Natural Gradient */
  --border-light: #e5eacf;
  --border-gray: #d4ddbc;
  --border-shadow: #edf2e0;
  --border-dark: #31694e;

  /* WhatsApp Colors */
  --whatsapp-green: #25d366;
  --whatsapp-dark: #128c7e;

  /* Shadow Colors - Green Natural Tones */
  --shadow-light: rgba(49, 105, 78, 0.4);
  --shadow-medium: rgba(49, 105, 78, 0.12);
  --shadow-button: rgba(240, 228, 145, 0.5);
  --shadow-general: #a8bbaa;

  /* Card Colors */
  --card-bg: #ffffff;
  --card-hover: #f5f9f0;
  --card-border: #e5eacf;
}

/*-------- Color Variables (Dark Theme) ---------------------------*/
[data-theme="dark"] {
  /* Primary Colors - Dark Agricultural Palette */
  --primary-green: #2d5f45;
  --primary-orange: #d4c878;
  --secondary-green: #a4b855;
  --tertiary-green: #5a7d4e;
  --primary-black: #1a3529;
  --dark-gray: #d4c878;

  /* Text Colors - Light & Readable on Dark */
  --text-primary: #e8f0ea;
  --text-dark: #f5faf6;
  --text-medium: #c5d9c9;
  --text-light: #a8c4af;
  --text-gray: #a8c4af;
  --text-muted: #7a9b82;
  --text-border: #7a9b82;

  /* Background Colors - Dark & Rich */
  --bg-white: #0f1612;
  --bg-light: #1a2420;
  --bg-accent: #2d4535;
  --bg-footer: #0d1410;
  --bg-copyright: #080b09;

  /* Border Colors - Subtle Dark Borders */
  --border-light: #2a3833;
  --border-gray: #374740;
  --border-shadow: #1a2420;
  --border-dark: #4a5f52;

  /* Shadow Colors - Deeper Shadows for Dark Theme */
  --shadow-light: rgba(0, 0, 0, 0.5);
  --shadow-medium: rgba(0, 0, 0, 0.3);
  --shadow-button: rgba(212, 200, 120, 0.3);
  --shadow-general: #1a2420;

  /* Card Colors */
  --card-bg: #1f2d26;
  --card-hover: #263830;
  --card-border: #2a3833;
}

/*-------- import Files ---------------------------*/

@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(css/font-awesome.min.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/*-------- skeleton ---------------------------------*/

* {
  box-sizing: border-box !important;
  transition: ease all 0.3s;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-primary);
  font-size: 14px;
  font-family: "Sen", sans-serif;
  line-height: 1.80857;
  font-weight: normal;
  overflow-x: hidden;
  background-color: var(--bg-white);
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: var(--text-dark);
  text-decoration: none !important;
  outline: none !important;
  transition: all 0.3s ease-in-out;
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */

.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: var(--card-bg);
  border: 2px solid var(--border-light);
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px var(--shadow-medium);
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-light);
}

.theme-toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-toggle-icon {
  transform: rotate(180deg);
}

.theme-toggle-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.sun-icon {
  display: none;
  color: #f59e0b;
}

.moon-icon {
  display: block;
  color: #3b82f6;
}

[data-theme="dark"] .sun-icon {
  display: block;
}

[data-theme="dark"] .moon-icon {
  display: none;
}

[data-theme="light"] .light-text {
  display: none;
}

[data-theme="light"] .dark-text {
  display: inline;
}

[data-theme="dark"] .light-text {
  display: inline;
}

[data-theme="dark"] .dark-text {
  display: none;
}

/* ------------LOGO STYLING-------------- */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.logo img {
  height: 7em;
  width: auto;
}

.logo h3 {
  color: var(--bg-white);
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.logo h3 span {
  color: var(--primary-orange);
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  font-weight: normal;
  position: relative;
  padding: 0 0 10px 0;
  line-height: normal;
  color: var(--text-dark);
  margin: 0;
}

h1 {
  font-size: 24px;
}
h2 {
  font-size: 22px;
}
h3 {
  font-size: 18px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 13px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--text-dark);
  text-decoration: none !important;
  opacity: 1;
}

button:focus {
  outline: none;
}

ul,
li,
ol {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

p {
  margin: 20px;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-primary);
}

img {
  max-width: 100%;
  height: auto;
}

:focus {
  outline: 0;
}

.paddind_bottom_0 {
  padding-bottom: 0 !important;
}

.btn-custom {
  margin-top: 20px;
  background-color: transparent !important;
  border: 2px solid var(--border-light);
  padding: 12px 40px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.lead {
  font-size: 18px;
  line-height: 30px;
  color: var(--text-light);
  margin: 0;
  padding: 0;
}

.form-control:focus {
  border-color: var(--primary-green) !important;
  box-shadow: 0 0 0 0.2rem rgba(49, 105, 78, 0.15);
}

.badge {
  font-weight: 500;
}

blockquote {
  margin: 20px 0 20px;
  padding: 30px;
  border-left: 4px solid var(--secondary-green);
  background-color: var(--bg-light);
}

button {
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.full {
  float: left;
  width: 100%;
}

.layout_padding {
  padding-top: 100px;
  padding-bottom: 0px;
}

.padding_0 {
  padding: 0px;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.header_section {
  width: 100%;
  float: left;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--tertiary-green) 100%
  );
  height: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: background 0.3s ease;
}

.bg-light {
  background-color: transparent !important;
}

.navbar {
  padding: 15px 65px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--bg-white);
  font-size: 18px;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-light .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 50%;
  background-color: var(--primary-orange);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link:focus::after {
  width: 80%;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--primary-orange);
}

/* ==========Dropdown=========== */
.dropdown-menu-enhanced {
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  background-color: var(--card-bg);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  margin-top: 8px;
  animation: fadeInDown 0.2s ease-out;
  transition: background-color 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu-enhanced .dropdown-item {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-size: 15px;
  transition: all 0.2s ease;
  border-radius: 4px;
  margin: 0 8px;
}

.dropdown-menu-enhanced .dropdown-item:hover {
  background-color: var(--card-hover);
  color: var(--text-dark);
  transform: translateX(4px);
  padding-left: 24px;
}

.dropdown-menu-enhanced .dropdown-item:active {
  background-color: var(--border-light);
}

.dropdown-item i {
  font-size: 18px;
  width: 20px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.dropdown-item:hover i {
  opacity: 1;
}

.dropdown-divider {
  margin: 8px 12px;
  border-top: 1px solid var(--border-light);
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .dropdown-toggle::after {
    transition: transform 0.2s ease;
  }
}

@media (max-width: 991px) {
  .dropdown-menu-enhanced {
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    animation: none;
  }

  .dropdown-menu-enhanced .dropdown-item {
    margin: 0;
    border-radius: 0;
  }

  .dropdown-menu-enhanced .dropdown-item:hover {
    transform: none;
    padding-left: 20px;
  }
}

.dropdown-item:focus {
  outline: 2px solid var(--primary-orange);
  outline-offset: -2px;
  background-color: var(--card-hover);
}

/* ============================================
   LAYOUT BORDER
   ============================================ */

.layout_border {
  width: 100%;
  float: left;
  border: 2px solid var(--border-light);
  margin: 20px 0px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ============================================
   BANNER SECTION
   ============================================ */

.banner_section {
  width: 100%;
  float: left;
  background: linear-gradient(
    to bottom,
    var(--bg-white) 0%,
    var(--bg-light) 100%
  );
  height: auto;
  padding: 0px 0px;
  transition: background 0.3s ease;
}

.banner_taital_main {
  width: 100%;
  float: left;
  padding-left: 90px;
  padding-top: 90px;
  padding-bottom: 50px;
}

.banner_taital {
  width: 100%;
  font-size: 50px;
  color: var(--dark-gray);
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.banner_list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.banner_list li {
  font-size: 18px;
  color: var(--dark-gray);
  position: relative;
  padding-left: 25px;
}

.banner_list li::before {
  content: "•";
  color: var(--secondary-green);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 22px;
  vertical-align: middle;
}

.banner_img {
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.btn_main {
  width: 100%;
  display: flex;
  margin-top: 30px;
}

.started_text {
  width: 170px;
  margin-right: 20px;
}

.started_text a {
  width: 100%;
  display: block;
  padding: 12px 10px;
  color: var(--text-dark);
  background-color: var(--primary-orange);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-button);
}

.started_text a:hover {
  background-color: var(--primary-green);
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(49, 105, 78, 0.4);
}

.started_text.active a {
  background-color: var(--primary-green);
  color: var(--bg-white);
}

#main_slider a.carousel-control-prev {
  left: 0px;
  top: 220px;
}
#main_slider a.carousel-control-next {
  right: 0px;
  top: 220px;
}

#main_slider .carousel-control-next,
#main_slider .carousel-control-prev {
  width: 55px;
  height: 55px;
  opacity: 1;
  font-size: 30px;
  color: var(--primary-green);
  border-radius: 100%;
  margin: 0 auto;
  background-color: var(--card-bg);
  transition: all 0.3s ease;
}

#main_slider .carousel-control-next:hover,
#main_slider .carousel-control-prev:hover {
  background-color: var(--primary-green);
  color: var(--bg-white);
  transform: scale(1.1);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about_section {
  width: 100%;
  float: left;
  background-color: var(--bg-white);
  height: auto;
  padding: 90px 0px;
  transition: background-color 0.3s ease;
}

.about_taital {
  width: 100%;
  float: left;
  font-size: 40px;
  color: var(--dark-gray);
  font-weight: 600;
  padding-top: 10px;
  position: relative;
  display: inline-block;
}

.about_taital::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--secondary-green),
    var(--primary-orange)
  );
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.about_text {
  width: 100%;
  float: left;
  font-size: 16px;
  color: var(--text-medium);
  margin: 0px;
  line-height: 1.8;
}

.about_section_2 {
  padding-top: 30px;
}

.ipsum_text {
  width: 100%;
  float: left;
  font-size: 16px;
  color: var(--text-medium);
  margin: 0px;
  line-height: 1.8;
}

.read_bt {
  width: 170px;
  float: left;
  padding-top: 55px;
}

.read_bt a {
  width: 100%;
  display: block;
  font-size: 18px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  text-align: center;
  border-radius: 50px;
  padding: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(49, 105, 78, 0.2);
}

.read_bt a:hover {
  background-color: var(--secondary-green);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(187, 200, 99, 0.4);
}

.about_taital_box {
  width: 100%;
  height: 100%;
  float: left;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  border-radius: 15px;
  overflow: hidden;
}

.about_sections {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
  padding: 16px 14px;
  box-shadow: 0 4px 10px var(--shadow-medium);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.about_img {
  width: 100%;
  height: 100%;
  float: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
}

/* ============================================
   SHOP SECTION (VEGETABLES)
   ============================================ */

.vagetables_section {
  width: 100%;
  float: left;
  background: linear-gradient(
    to bottom,
    var(--bg-light) 0%,
    var(--bg-white) 100%
  );
  padding: 60px 0;
  transition: background 0.3s ease;
}

.top-line {
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-green),
    var(--secondary-green),
    var(--primary-orange)
  );
  margin-bottom: 40px;
  border-radius: 2px;
}

.bottom-line {
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-orange),
    var(--secondary-green),
    var(--primary-green)
  );
  margin-top: 40px;
  border-radius: 2px;
}

.order_taital {
  width: 100%;
  float: left;
  font-size: 45px;
  color: var(--dark-gray);
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.order_text {
  width: 100%;
  float: left;
  font-size: 18px;
  color: var(--text-medium);
  padding-bottom: 20px;
  margin: 0px;
  text-align: center;
  font-style: italic;
}

.vagetables_taital {
  width: 100%;
  float: left;
  font-size: 40px;
  color: var(--dark-gray);
  font-weight: bold;
  margin-top: 50px;
  position: relative;
  display: inline-block;
}

.vagetables_taital::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--secondary-green),
    var(--primary-orange)
  );
  bottom: -5px;
  left: 0;
  border-radius: 2px;
}

.vagetables_text {
  width: 100%;
  float: left;
  font-size: 16px;
  color: var(--text-light);
  margin: 10px 0;
  font-style: italic;
}

/* ----T/C MODAL---- */
.tc-button {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--tertiary-green)
  );
  color: white;
  border: none;
  padding: 14px 32px;
  display: block;
  margin: 20px auto;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(49, 105, 78, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tc-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(49, 105, 78, 0.4);
  background: linear-gradient(
    135deg,
    var(--tertiary-green),
    var(--primary-green)
  );
}

.tc-box {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--shadow-light);
  z-index: 999;
  backdrop-filter: blur(5px);
}

.tc-box.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-content {
  background: var(--card-bg);
  width: 90%;
  max-width: 500px;
  padding: 30px;
  border-radius: 15px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--border-light);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.tc-content h3 {
  color: var(--primary-green);
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 20px;
  color: var(--text-gray);
  line-height: 1;
  transition: all 0.3s ease;
  pointer-events: auto;
  width: 35px;
  height: 35px;
  user-select: none;
  touch-action: manipulation;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-light);
  z-index: 1000;
}

.close i {
  pointer-events: none;
}

.close:hover {
  color: var(--primary-green);
  background-color: var(--primary-orange);
  transform: rotate(90deg);
}

/* PRODUCT CARDS */
.hover01 figure {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 5px 20px var(--shadow-medium);
  transition: all 0.3s ease;
}

.hover01 figure:hover {
  box-shadow: 0 10px 35px var(--shadow-light);
  transform: translateY(-5px);
}

.hover01 figure img {
  transform: scale(1);
  transition: 0.5s ease-in-out;
  border-radius: 15px;
}

.column {
  margin: 15px 0px 0;
  padding: 0;
}

.course-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-img {
  position: relative;
}

.info-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  background: var(--primary-green);
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.info-btn:hover {
  background: var(--primary-orange);
  color: var(--text-dark);
  transform: scale(1.1);
}

.info-box {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  color: #fff;
  padding: 16px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 4;
  overflow-y: auto;
  border-radius: 15px;
}

[data-theme="dark"] .info-box {
  background: rgba(15, 22, 18, 0.95);
}

.info-box h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--primary-orange);
}

.info-box li {
  font-size: 1.1em;
}

.info-box.active {
  opacity: 1;
  pointer-events: auto;
}

figure {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--card-bg);
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.harshal_text {
  width: 100%;
  float: left;
  text-align: center;
  color: var(--text-dark);
  font-size: 20px;
  padding-top: 20px;
  font-weight: bold;
}

.rate_text {
  width: 100%;
  float: left;
  text-align: center;
  font-size: 24px;
  color: var(--primary-green);
  font-weight: bold;
  padding-bottom: 0px;
}

.read_bt_1 {
  width: 150px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
}

.read_bt_1 a {
  width: 100%;
  display: block;
  font-size: 16px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--tertiary-green)
  );
  color: var(--bg-white);
  text-align: center;
  border-radius: 50px;
  padding: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(49, 105, 78, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read_bt_1 a:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-green),
    var(--primary-orange)
  );
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-button);
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.testimonial_section {
  width: 100%;
  padding: 100px 0;
  position: relative;
  background: linear-gradient(
    to bottom,
    var(--bg-white) 0%,
    var(--bg-light) 100%
  );
  overflow: hidden;
  transition: background 0.3s ease;
}

.testimonial_taital {
  width: 100%;
  font-size: 40px;
  color: var(--dark-gray);
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.testimonial_section::after,
.testimonial_section::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  background-image: url(../images/quote-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
}

.testimonial_section::after {
  left: 40px;
  top: 130px;
}
.testimonial_section::before {
  right: 40px;
  top: 130px;
}

.testimonial_box {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 73%;
  margin: 0 auto;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow-medium);
  transition: all 0.3s ease;
}

.testimonial_box:hover {
  box-shadow: 0 15px 50px var(--shadow-light);
  transform: translateY(-5px);
}

.client_img {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-green);
}

.client_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial_content {
  flex: 1;
  text-align: left;
}

.testimonial_text {
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 15px;
}

.client_main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px auto 0;
  width: fit-content;
}

.client_name {
  font-size: 20px;
  color: var(--primary-green);
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}

.customer_text {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .testimonial_box {
    flex-direction: column;
    text-align: center;
    width: 90%;
  }
  .testimonial_content {
    text-align: center;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact_section {
  width: 100%;
  float: left;
  padding-bottom: 90px;
  background-color: var(--bg-white);
  transition: background-color 0.3s ease;
}

.contact_taital {
  width: 100%;
  float: left;
  font-size: 40px;
  color: var(--dark-gray);
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.contact_section_2 {
  width: 100%;
  float: left;
  padding-top: 55px;
}

.mail_text {
  width: 100%;
  float: left;
  font-size: 16px;
  color: var(--text-primary);
  border: 2px solid var(--border-light);
  background-color: var(--card-bg);
  padding: 12px 20px;
  margin-bottom: 30px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.mail_text:focus {
  border-color: var(--primary-green);
  background-color: var(--card-hover);
  outline: none;
}

.massage-bt {
  color: var(--text-primary);
  width: 100%;
  font-size: 16px;
  background-color: var(--card-bg);
  padding: 20px;
  border: 2px solid var(--border-light);
  height: 150px;
  margin-bottom: 30px;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  resize: vertical;
}

.massage-bt:focus {
  border-color: var(--primary-green);
  background-color: var(--card-hover);
  outline: none;
}

.send_bt {
  width: 170px;
  float: left;
}

.send_bt button {
  width: 100%;
  padding: 14px 28px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--bg-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--tertiary-green)
  );
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(49, 105, 78, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.send_bt button:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-green),
    var(--primary-orange)
  );
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow-button);
}

.send_bt button:active {
  transform: translateY(0);
}

.map-responsive {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.map_main {
  padding-top: 30px;
}

/* ============================================
   FOOTER SECTION
   ============================================ */
/* ============================================
   FOOTER SECTION - FIXED FOR BOTH THEMES
   ============================================ */

.footer_section {
  width: 100%;
  float: left;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--primary-black) 100%
  );
  height: auto;
  padding: 90px 0px 50px;
  color: #ffffff;
  transition: background 0.3s ease;
}

/* Dark theme footer - slightly lighter for contrast */
[data-theme="dark"] .footer_section {
  background: linear-gradient(
    135deg,
    #1a3529 0%,
    #0d1410 100%
  );
}

.footer_text {
  width: 100%;
  font-size: 30px;
  color: #ffffff;
  font-family: "Sen", sans-serif;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer_menu ul {
  margin: 0px;
  padding: 0px;
}

.footer_menu li {
  margin-bottom: 10px;
}

.footer_menu li a {
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer_menu li a:hover {
  color: var(--primary-orange);
  padding-left: 10px;
}

span.angle_icon {
  font-size: 14px;
  padding-right: 10px;
  transition: all 0.3s ease;
  color: #ffffff;
}

span.angle_icon:hover,
span.angle_icon.active {
  color: var(--primary-orange);
}

p.dummy_text {
  width: 70%;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0px;
  line-height: 1.6;
}

.social_icon {
  width: 100%;
  float: left;
  margin-top: 20px;
}

.social_icon ul {
  margin: 0px;
  padding: 0px;
  display: inline-block;
}

.social_icon li {
  float: left;
  margin-right: 10px;
}

.social_icon li a {
  float: left;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 50%;
  font-size: 16px;
  width: 45px;
  height: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social_icon li a:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #1f3d2f;
  transform: translateY(-3px);
}

/* Dark theme social icons - better contrast */
[data-theme="dark"] .social_icon li a {
  background-color: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .social_icon li a:hover {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: #0f1612;
}

.location_text ul {
  margin: 0px;
  padding: 0px;
}

.location_text li {
  font-size: 16px;
  color: #ffffff;
  padding: 0px 0px 15px 0px;
}

.location_text li a {
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.location_text li a:hover {
  color: var(--primary-orange);
}

.padding_left_10 {
  padding-right: 15px;
  color: var(--primary-orange);
}

/* ============================================
   COPYRIGHT SECTION - FIXED FOR BOTH THEMES
   ============================================ */

.copyright_section {
  width: 100%;
  float: left;
  background-color: var(--primary-black);
  height: auto;
  padding: 25px 0;
  transition: background-color 0.3s ease;
}

/* ============================================
   COPYRIGHT SECTION
   ============================================ */

.copyright_section {
  width: 100%;
  float: left;
  background-color: var(--bg-copyright);
  height: auto;
  padding: 25px 0;
  transition: background-color 0.3s ease;
}

.copyright_text {
  width: 100%;
  float: left;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0;
}

.copyright_text a {
  color: var(--primary-orange);
  font-weight: 600;
}

.copyright_text a:hover {
  color: var(--secondary-green);
  text-decoration: underline;
}

/* Dark theme copyright - even darker */
[data-theme="dark"] .copyright_section {
  background-color: #080b09;
}

.copyright_text {
  width: 100%;
  float: left;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0;
}

.copyright_text a {
  color: var(--primary-orange);
  font-weight: 600;
  transition: color 0.3s ease;
}

.copyright_text a:hover {
  color: var(--secondary-green);
  text-decoration: underline;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 20px;
  right: 16px;
  max-width: 90vw;
  max-height: 90vh;
  background: linear-gradient(
    135deg,
    var(--whatsapp-green),
    var(--whatsapp-dark)
  );
  color: var(--bg-white);
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

.whatsapp-icon {
  width: 50px;
  height: 50px;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.margin_bottom90 {
  margin-bottom: 90px;
}

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */

@media (max-width: 768px) {
  .banner_taital {
    font-size: 35px;
    width: 100%;
  }

  .banner_taital_main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar {
    padding: 15px 20px;
  }

  .testimonial_box {
    width: 95%;
    padding: 30px 20px;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    position: fixed;
    bottom: max(env(safe-area-inset-bottom), 20px);
    right: max(env(safe-area-inset-right), 16px);
  }

  .whatsapp-icon {
    width: 42px;
    height: 42px;
  }

  .theme-toggle {
    top: 10px;
    right: 10px;
    padding: 8px 16px;
  }

  .theme-toggle-text {
    display: none;
  }

  .theme-toggle-icon {
    width: 20px;
    height: 20px;
    font-size: 18px;
  }
}

/* ============================================
   SCROLL ANIMATIONS (OPTIONAL)
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

*:focus-visible {
  outline: 3px solid var(--primary-orange);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--primary-orange);
  outline-offset: 3px;
}

@media (prefers-contrast: high) {
  .started_text a,
  .read_bt a,
  .read_bt_1 a {
    border: 2px solid var(--text-dark);
  }
}