/* Universal Container Class */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* Poppins Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Global Reset and Consistent Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background-color);
}

:root {
  /* Global Container Variables */
  --max-width: 1250px;
  --container-padding: 20px;
  --section-spacing: 60px;

  /* Main Focus Color */
  --primary-color: #4caf50;
  --primary-dark: #388e3c;
  --primary-light: #c8e6c9;

  /* For Text and Background */
  --background-color: #f5f5f5;
  --surface-color: #ffffff;
  --text-secondary: #333333;

  /* For Buttons, Links or Highlights */
  --accent-color: #81c784;
  --accent-dark: #2e7d32;
  --accent-light: #e8f5e9;

  /* Shadow and Border */
  --shadow-color: rgba(0, 0, 0, 0.1);
  --border-color: #e0e0e0;

  /* Hover Effects */
  --hover-primary: #66bb6a;
  --hover-text: #388e3c;
  --primary-green: #2e8b57;
  --secondary-green: #32cd32;
  --light-green: #90ee90;
  --dark-green: #006400;
  --background-green: #f8fff8;
  --text-dark: #333333;
  --white: #ffffff;
  --error-color: #4caf50;
}

/* Universal Container Class */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* ===== MAIN NAVIGATION BAR STYLES ===== */

.main-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-bar {
  width: 100%;
  height: 80px;
}

.nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo a img {
  width: 60px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo a:hover img {
  transform: scale(1.05);
}

.nav-bar .links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-bar .links a {
  text-decoration: none;
  color: var(--accent-light);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-bar .links li a::before {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background-color: var(--light-green);
  transition: width 0.3s;
  bottom: -5px;
  position: absolute;
}

.nav-bar .links li a:hover::before {
  width: 100%;
}

.nav-bar .links li a:hover {
  color: var(--light-green);
}

.nav-bar .links li a.active {
  color: var(--primary-green);
}

.nav-bar .links li a.active::before {
  width: 100%;
  background-color: var(--primary-green);
}

.right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-bar .toggle_btn {
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  z-index: 99;
  transition: color 0.3s ease;
}

.nav-bar .toggle_btn:hover {
  color: var(--light-green);
}

.nav-bar .info-button {
  color: var(--text-dark);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-bar .info-button:hover {
  color: var(--light-green);
}

.info-button img {
  width: 1.3rem;
  opacity: 100%;
  filter: none;
  transition: transform 0.3s ease;
}

.info-button:hover img {
  transform: scale(1.1);
}

/* ===== MOBILE DROPDOWN MENU ===== */

.dropdown_menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  z-index: 999;
  padding: 20px;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.dropdown_menu.open {
  left: 0;
}

.dropdown_menu .close_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 20px 0;
  border-bottom: 2px solid var(--light-green);
  margin-bottom: 20px;
}

.dropdown_menu .menu_logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.dropdown_menu .close_btn i {
  font-size: 1.5rem;
  cursor: pointer;
  background: var(--light-green);
  border-radius: 50%;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  color: var(--dark-green);
  transition: all 0.3s ease;
}

.dropdown_menu .close_btn i:hover {
  background: var(--secondary-green);
  transform: rotate(90deg);
}

.mobile-links {
  list-style: none;
  margin-bottom: 30px;
}

.mobile-links li {
  margin: 15px 0;
}

.mobile-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
  color: var(--light-green);
}

.mobile-contact {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-align: center;
}

.mobile-contact p {
  color: var(--white);
  margin: 10px 0;
  font-size: 0.95rem;
}

/* ===== HERO SLIDER SECTION (Only for index.html) ===== */

.hero-slider {
  margin-top: 80px;
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slider-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}

/* Slider text and button */
.slider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--container-padding);
}

.left-align {
  text-align: left;
}

.center-align {
  text-align: center;
}

.right-align {
  text-align: right;
}

.slider-text p {
  font-size: 3.5rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.slider-text button {
  padding: 15px 35px;
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-radius: 30px;
  border: 2px solid var(--light-green);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.slider-text button:hover {
  background-color: var(--secondary-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Ensure active slide text is visible */
.slide.active .slider-text p,
.slide.active .slider-text button {
  opacity: 1;
}

/* Previous and Next Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  background-color: rgba(46, 139, 87, 0.8);
  color: var(--white);
  font-size: 22px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.3s ease;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.prev:hover,
.next:hover {
  background-color: var(--secondary-green);
  transform: translateY(-50%) scale(1.1);
}

/* Dot container */
.dots-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 12px;
}

.dots-container .dot {
  height: 14px;
  width: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dots-container .dot.active-dot {
  background-color: var(--secondary-green);
  transform: scale(1.2);
  border-color: var(--white);
}

.dots-container .dot:hover {
  background-color: var(--light-green);
  transform: scale(1.1);
}

/* ===== OFFCANVAS MENU STYLES ===== */

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 350px;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--light-green),
    var(--background-green)
  );
  z-index: 9999;
  padding: 25px;
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.offcanvas-menu.active {
  right: 0;
}

.offcanvas-menu .close_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 25px 0;
  border-bottom: 2px solid var(--primary-green);
  margin-bottom: 25px;
}

.offcanvas-menu .menu_logo img {
  height: 45px;
  width: auto;
  filter: brightness(0.8);
}

.offcanvas-menu .close_btn i {
  font-size: 1.5rem;
  cursor: pointer;
  background: var(--primary-green);
  border-radius: 50%;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  color: white;
  transition: all 0.3s ease;
}

.offcanvas-menu .close_btn i:hover {
  background: var(--dark-green);
  transform: rotate(90deg);
}

/* Offcanvas Header */
.offcanvas-header {
  margin-bottom: 30px;
}

.offcanvas-header p {
  text-align: justify;
  color: var(--dark-green);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border-left: 4px solid var(--primary-green);
}

/* Contact Info */
.offcanvas-contact {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
}

.offcanvas-contact h3 {
  margin: 0 0 20px 0;
  font-size: 1.4rem;
  color: var(--dark-green);
  font-weight: 700;
  border-bottom: 2px solid var(--primary-green);
  padding-bottom: 10px;
}

.offcanvas-contact h4 {
  font-size: 1rem;
  margin: 15px 0 10px 0;
  color: var(--dark-green);
  font-weight: 600;
  line-height: 1.5;
}

.offcanvas-contact p {
  font-size: 1rem;
  margin: 12px 0;
  color: var(--primary-green);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Menu Links */
.menu {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
}

.menu h3 {
  margin: 0 0 20px 0;
  font-size: 1.4rem;
  color: var(--dark-green);
  font-weight: 700;
  border-bottom: 2px solid var(--primary-green);
  padding-bottom: 10px;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin: 15px 0;
  position: relative;
  list-style: none;
}

.menu li a {
  text-decoration: none;
  color: var(--primary-green);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  padding: 15px 25px 15px 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.menu li a::before {
  content: "▸";
  position: absolute;
  left: 10px;
  color: var(--secondary-green);
  transition: transform 0.3s ease;
}

.menu li a:hover {
  color: var(--dark-green);
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu li a:hover::before {
  transform: translateX(5px);
  color: var(--dark-green);
}

/* Social Media Section */

.offcanvas-socialmedia h4 {
  margin: 0 0 25px 0;
  font-size: 1.4rem;
  color: var(--dark-green);
  font-weight: 700;
  border-bottom: 2px solid var(--primary-green);
  padding-bottom: 10px;
}

.social-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 50%;
  position: relative;
}

.social-icon img {
  width: 26px;
  height: 26px;
  transition: all 0.3s ease;
  filter: brightness(0.8);
}

.social-icon:hover img {
  transform: scale(1.1);
}

/* Social Media Tooltips */

.social-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
}
/* Alternative Solution */
.offcanvas-socialmedia {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  overflow: visible; /* यो थप्नुहोस् */
}

.social-icons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px; /* Gap बढाउनुहोस् */
  flex-wrap: wrap;
  position: relative;
  overflow: visible; /* यो थप्नुहोस् */
}

.social-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; /* Size बढाउनुहोस् */
  height: 60px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent; /* Border थप्नुहोस् */
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Tooltip लाई थप राम्रो बनाउन */
.social-tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover .social-tooltip {
  opacity: 1;
  visibility: visible;
  top: -45px;
}

/* Body Overlay */
/* Body Overlay - FIXED */
.body-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: opacity 0.4s ease, visibility 0.4s;
  backdrop-filter: blur(3px);
  pointer-events: none;
}

.body-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Z-index hierarchy सही गर्नुहोस् */
.main-navbar {
  z-index: 1000;
}
.dropdown_menu {
  z-index: 1001;
}
.offcanvas-menu {
  z-index: 1002;
}

/* Hide scrollbar for offcanvas */
.offcanvas-menu::-webkit-scrollbar,
.dropdown_menu::-webkit-scrollbar {
  display: none;
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Smooth transitions for menus */
.dropdown_menu,
.offcanvas-menu,
.body-overlay {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Print Styles */
@media print {
  .main-navbar,
  .hero-slider,
  .offcanvas-menu,
  .dropdown_menu,
  .body-overlay {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }
}

/* Sections Common Styles */
.hero-section,
.about-section,
.services-section,
.contact-section {
  padding: 60px 0;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  border-radius: 15px;
  margin: 30px 0;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-text {
  flex: 2;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.solutions-cta .cta-buttons .btn-primary,
.solutions-cta .cta-buttons .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.solutions-cta .cta-buttons .btn-primary,
.solutions-cta .cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--dark-green);
  color: var(--dark-green);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.contact-form .btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-green),
    var(--primary-green)
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--light-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: var(--light-green);
  color: var(--dark-green);
}

.btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-feature {
  flex: 1;
}

.feature-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-box h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.feature-box p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--light-green);
  font-weight: bold;
}

/* About Section */
.about-section {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.about-text {
  flex: 2;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-green);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.about-highlights {
  flex: 1;
}

.about-highlights h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-green);
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights-list li {
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 25px;
}

.highlights-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-green);
  font-size: 1.5rem;
  line-height: 1;
}

.highlights-list li:last-child {
  border-bottom: none;
}

/* Services Section */
.services-section {
  margin: 30px 0;
}

.services-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--dark-green);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--secondary-green)
  );
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-green);
}

.service-card p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  color: var(--secondary-green);
  gap: 10px;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(
    135deg,
    var(--light-green),
    var(--background-green)
  );
  border-radius: 15px;
  margin: 30px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  align-items: center;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-green);
}

.contact-info > p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark-green);
}

.contact-item p {
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Specific icon colors and effects */
.feature-card:nth-child(1) .feature-icon {
  filter: hue-rotate(0deg);
}

.feature-card:nth-child(2) .feature-icon {
  filter: hue-rotate(90deg);
}

.feature-card:nth-child(3) .feature-icon {
  filter: hue-rotate(180deg);
}

.feature-card:nth-child(4) .feature-icon {
  filter: hue-rotate(270deg);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Contact & Map Section */
.contact-map-section {
  padding: 60px 0;
  background: var(--white);
}

.contact-map-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Left Side - Text Content */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.business-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 15px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.address {
  color: var(--text-dark);
  line-height: 1.5;
  font-size: 1rem;
}

.view-map-link {
  color: var(--primary-green);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-map-link:hover {
  color: var(--secondary-green);
  text-decoration: underline;
}

.divider {
  height: 1px;
  background: var(--border-color);
  margin: 10px 0;
}

.contact-convincer h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 20px;
  line-height: 1.4;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item strong {
  display: block;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1rem;
}

.contact-item p {
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

/* Right Side - Map */
.map-side {
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.map-container {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.map-container iframe {
  flex: 1;
  border: none;
}

.map-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f8f9fa;
  border-top: 1px solid var(--border-color);
  font-size: 0.8rem;
}

.map-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.google-logo {
  font-weight: 600;
  color: #4285f4;
}

.map-terms {
  color: #666;
}

.map-links {
  display: flex;
  gap: 15px;
}

.map-link {
  color: #4285f4;
  text-decoration: none;
  font-size: 0.8rem;
}

.map-link:hover {
  text-decoration: underline;
}

/* Simple Call to Action Section */
.cta-simple {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  margin: 30px 0;
  border-radius: 15px;
  text-align: center;
}

.cta-simple-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-simple-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-simple-content .btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--white);
  color: var(--primary-green);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  border: 2px solid transparent;
}

.cta-simple-content .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: var(--light-green);
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  color: var(--white);
  padding: 50px 0 0 0;
  margin-top: var(--section-spacing);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-section h4 {
  color: var(--light-green);
  margin-bottom: 25px;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--secondary-green);
  border-radius: 2px;
}

/* Footer Logo Section */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-logo img {
  width: 55px;
  height: 55px;
  filter: brightness(0) invert(1);
}

.footer-logo h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
}

.footer-description {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
  font-size: 1rem;
}

.footer-links a::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--secondary-green);
  transition: transform 0.3s ease;
  font-weight: bold;
}

.footer-links a:hover {
  color: var(--light-green);
  transform: translateX(8px);
}

.footer-links a:hover::before {
  transform: translateX(5px);
  color: var(--light-green);
}

/* Contact Info */
.contact-info p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-links a:hover {
  background: var(--secondary-green);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: var(--light-green);
}

.social-links img {
  width: 22px;
  height: 22px;

  transition: transform 0.3s ease;
}

.social-links a:hover img {
  transform: scale(1.2);
}

/* Copyright Section */
.copyright-section {
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  padding: 30px 0;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.copyright-container {
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1250px;
  justify-content: space-between;
}

.copyright-left p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 1rem;
}

.copyright-right p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 1rem;
}

.design-credit {
  color: var(--light-green);
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding: 2px 5px;
  transition: all 0.3s ease;
}

.design-credit::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-green);
  transition: width 0.3s ease;
}

.design-credit:hover {
  color: var(--secondary-green);
}

.design-credit:hover::before {
  width: 100%;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-section {
  animation: fadeInUp 0.6s ease forwards;
}

.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-section:nth-child(4) {
  animation-delay: 0.4s;
}

/* Smooth transitions for menus */
.dropdown_menu,
.offcanvas-menu,
.body-overlay {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================== */
/* SOLUTIONS PAGE STYLES */
/* =========================================== */

/* Solutions Page Specific Styles */

/* Solutions Main Content */
.solutions-main {
  padding: 40px 0 60px;
  min-height: 60vh;
}

/* Hero Section */
.solutions-hero {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 50px;
}

.solutions-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.solutions-hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Solution Sections */
.solution-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.solution-section:last-of-type {
  border-bottom: none;
}

.alt-bg {
  background: linear-gradient(135deg, var(--background-green), #f8fdf8);
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.solution-content.reverse {
  direction: rtl;
}

.solution-content.reverse > * {
  direction: ltr;
}

.solution-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 20px;
}

.solution-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.solution-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: var(--text-dark);
}

.solution-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-green);
  font-weight: bold;
  font-size: 1.1rem;
}

.solution-image {
  text-align: center;
}

.solution-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.solution-image img:hover {
  transform: scale(1.02);
}

/* Why Choose Section - Same as Home Page */
.why-choose-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--background-green), #f0f8f0);
  margin: 30px 0;
  border-radius: 15px;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-choose-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 15px;
}

.why-choose-header p {
  font-size: 1.1rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--secondary-green)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-card p {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Solutions CTA */
.solutions-cta {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  padding: 50px 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
}

.solutions-cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.solutions-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Solutions Page Buttons */
.solutions-main .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--white);
  color: var(--primary-green);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.solutions-main .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: var(--light-green);
  color: var(--dark-green);
}

.solutions-main .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.solutions-main .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Animation for Solutions Page */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.solution-content,
.feature-card,
.solutions-cta {
  animation: fadeInUp 0.6s ease forwards;
}

.solution-section:nth-child(1) .solution-content {
  animation-delay: 0.1s;
}
.solution-section:nth-child(2) .solution-content {
  animation-delay: 0.2s;
}
.solution-section:nth-child(3) .solution-content {
  animation-delay: 0.3s;
}
.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* =========================================== */
/* SUPPORT PAGE STYLES */
/* =========================================== */

/* Support Main Content */
.support-main {
  padding: 40px 0 60px;
  min-height: 60vh;
}

/* Support Hero Section */
.support-hero {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 50px;
}

.support-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.support-hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.support-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.support-hero .support-stats .stat-number,
.support-hero .support-stats .stat-label {
  color: var(--white);
  opacity: 0.8;
}

/* Support Services Section */
.support-services {
  padding: 60px 0;
}

.support-services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-green);
  text-align: center;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-card li {
  padding: 5px 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 20px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-green);
  font-weight: bold;
}

/* Tiandy Section Styles */
.tiandy-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--background-green), #f8fdf8);
  border-radius: 15px;
  margin: 40px 0;
}

.tiandy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.tiandy-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 20px;
}

.tiandy-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tiandy-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-dark);
  padding: 15px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.feature i {
  color: var(--primary-green);
  width: 20px;
  font-size: 1.2rem;
}

.tiandy-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.tiandy-links .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: var(--primary-green);
  color: var(--white);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tiandy-links .btn-primary:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tiandy-links .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.tiandy-links .btn-secondary:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Support Channels */
.support-channels {
  padding: 60px 0;
}

.support-channels h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-green);
  text-align: center;
  margin-bottom: 15px;
}

.support-channels > p {
  font-size: 1.1rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 50px;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.channel-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.channel-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--white);
}

.channel-icon.phone {
  background: var(--primary-green);
}
.channel-icon.email {
  background: #ea4335;
}
.channel-icon.whatsapp {
  background: #25d366;
}
.channel-icon.onsite {
  background: #ff6b00;
}

.channel-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 10px;
}

.channel-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 5px;
}

.channel-time {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.channel-link {
  display: inline-block;
  padding: 10px 20px;
  background: var(--primary-green);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.channel-link:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    var(--light-green),
    var(--background-green)
  );
  border-radius: 15px;
  margin: 40px 0;
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-green);
  text-align: center;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark-green);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(46, 139, 87, 0.05);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

/* Support Form Section */
#supportForm-section {
  display: flex;
  padding: 60px 0;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.form-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 15px;
}

.form-info > p {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--dark-green);
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--text-dark);
  margin: 0;
}

#supportForm {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-green);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

#supportForm .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

#supportForm .btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-green),
    var(--primary-green)
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--light-green);
}

/* Animation for Support Page */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.channel-card,
.faq-item,
#supportForm {
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.channel-card:nth-child(1) {
  animation-delay: 0.1s;
}
.channel-card:nth-child(2) {
  animation-delay: 0.2s;
}
.channel-card:nth-child(3) {
  animation-delay: 0.3s;
}
.channel-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

/* Contact Main Container */
.contact-main {
  padding-top: 80px;
}

/* 1) HERO SECTION */
.contact-hero {
  text-align: center;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  border-radius: 10px;
  margin-bottom: 60px;
}

.contact-hero h1 {
  font-size: 3rem;
  color: #eee;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #eee;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 2) CONTACT INFORMATION SECTION */
.contact-section {
  padding: 80px 0;
}

.contact-section.alt-bg {
  background-color: #f8f9fa;
}

.contact-info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding: 10px;
}

.contact-info-card {
  background: white;
  padding: 30px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--dark-green);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--error-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
}

.contact-info-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.contact-info-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 5px;
}

/* 3) CONTACT FORM SECTION */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-intro {
  text-align: center;
  margin-bottom: 40px;
}

.form-intro h2 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.form-intro p {
  color: #6c757d;
  font-size: 1.1rem;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* 4) MAP & LOCATION SECTION */
.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 15px;
}

.location-text h2 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 2.2rem;
  text-align: center;
}

.location-text p {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.location-detail i {
  color: #3498db;
  font-size: 1.2rem;
  margin-top: 3px;
}

.location-detail h4 {
  color: #2c3e50;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.location-detail p {
  margin: 0;
  color: #6c757d;
  font-size: 1rem;
}

.location-map {
  height: 400px;
  background: #f8f9fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
  text-align: center;
  color: #6c757d;
}

.map-placeholder i {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 15px;
}

.map-placeholder p {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.map-placeholder small {
  font-size: 0.9rem;
}

/* 5) FAQ SECTION */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.faq-header p {
  color: #6c757d;
  font-size: 1.1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question h3 {
  color: #2c3e50;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

.faq-toggle {
  color: #3498db;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 25px;
  max-height: 200px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* 6) CALL TO ACTION */
.contact-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: white;
  border-radius: 10px;
  margin: 60px 0;
}

.contact-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  background: var(--dark-green);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  background: transparent;
  border: 2px solid white;
}

.btn-primary:hover {
  background: #eeeeee;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--hover-text);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* About Main Container */
.about-main {
  padding-top: 80px;
}

/* 1) HERO SECTION */
.about-hero {
  text-align: center;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  margin-bottom: 60px;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--light-green);
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* 2) ABOUT COMPANY SECTION */
.about-company {
  padding: 80px 0;
}

.company-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.company-text h2 {
  color: var(--dark-green);
  margin-bottom: 25px;
  font-size: 2.5rem;
  position: relative;
}

.company-text h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary-green);
  border-radius: 2px;
}

.company-text p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  background: var(--background-green);
  padding: 25px 20px;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--primary-green);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--dark-green);
  font-weight: 600;
}

.company-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 3) VISION & MISSION SECTION */
.vision-mission {
  padding: 80px 0;
  background: var(--background-green);
}

.vm-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.vm-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vm-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 2rem;
}

.vm-card h3 {
  color: var(--dark-green);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.vm-card p {
  color: var(--text-dark);
  line-height: 1.6;
}

/* 4) SERVICES SECTION */
.about-services {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: var(--dark-green);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-dark);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.8rem;
}

.service-card h3 {
  color: var(--dark-green);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--text-dark);
  line-height: 1.6;
}

/* 5) WHY CHOOSE US SECTION */
.why-choose-us {
  padding: 80px 0;
  background: var(--background-green);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.5rem;
}

.feature-card h3 {
  color: var(--dark-green);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--text-dark);
  line-height: 1.6;
}

/* 6) CLIENTS SECTION */
.clients-section {
  padding: 80px 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.client-category {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.client-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--white);
  font-size: 1.5rem;
}

.client-category h3 {
  color: var(--dark-green);
  font-size: 1.2rem;
}

/* 7) CALL TO ACTION */
.about-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  border-radius: 10px;
  margin: 60px 0;
}

.about-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

/* About Page Specific Buttons */
.about-main .btn-primary {
  display: inline-block;
  background: var(--light-green);
  color: var(--dark-green);
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.about-main .btn-primary:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-main .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--white);
}

.about-main .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
