/* ------------------- Google Fonts ----------------------- */

@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");
/* font-family: 'Poppins', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Raleway: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");
/* font-family: 'Raleway', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
/* font-family: 'Inter', sans-serif; */

/* ------------------- Color Variables ----------------------- */
:root {
  --primary-green: #006625;
  --primary-green-light: #008a33;
  --primary-green-dark: #004d1c;
  --primary-green-lighter: #e8f5ea;
  --primary-green-pale: #f4faf5;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --text-dark: #212529;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.main-container {
  padding-right: 0;
  padding-left: 0;
}

/* ------------------- Hero Slider Enhancements ----------------------- */
.carousel-item img {
  height: 70vh;
  min-height: 500px;
  object-fit: cover;
  filter: brightness(0.8);
}

.carousel-control-prev,
.carousel-control-next {
  background: linear-gradient(to right, rgba(0, 102, 37, 0.8), transparent);
  width: 10%;
  transition: all 0.3s ease;
}

.carousel-control-next {
  background: linear-gradient(to left, rgba(0, 102, 37, 0.8), transparent);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: linear-gradient(to right, rgba(0, 102, 37, 0.9), transparent);
}

.carousel-control-next:hover {
  background: linear-gradient(to left, rgba(0, 102, 37, 0.9), transparent);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 24px 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background-color: transparent;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: var(--primary-green);
  opacity: 1;
  transform: scale(1.2);
}

.carousel-caption {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 102, 37, 0.8) 100%);
  border-radius: 12px;
  padding: 2rem;
  bottom: 40px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 600px;
}

.carousel-caption h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

/* ------------------- Site Line Section ----------------------- */
.site-line {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  position: relative;
}

.site-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.05) 50%, transparent 51%);
}

.site-line h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.site-line p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ------------------- Why Choose Us Section ----------------------- */
.wcus-subHeading {
  margin-top: 2rem;
  color: var(--primary-green) !important;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.intro-heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.card {
  margin: 1rem;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 102, 37, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  background: var(--white);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 40px rgba(0, 102, 37, 0.2);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card-text {
  text-align: justify !important;
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-img-top {
  filter: brightness(1.1) contrast(1.1);
  transition: all 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* ------------------- Customer Help Section ----------------------- */
.cust-help {
  background: linear-gradient(135deg, var(--primary-green-pale) 0%, var(--off-white) 100%);
  position: relative;
}

.cust-help::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23006625' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.cust-help .row {
  position: relative;
  z-index: 1;
}

.cust-help-subHeading {
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: var(--primary-green) !important;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cust-help-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.cust-learn-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-green) !important;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.cust-learn-more:hover {
  transform: translateX(6px);
  border-bottom-color: var(--primary-green);
  color: var(--primary-green-dark) !important;
}

.cust-learn-more i {
  margin-left: 0.5rem;
  transition: all 0.4s ease;
}

.cust-learn-more:hover i {
  transform: translateX(8px);
}

/* ----------------------------------------------------------------------- Our Profile Page ----------------------------------------------------------------------- */

.ourp-subHeading {
  color: var(--primary-green) !important;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.ourp-heading {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 2.5rem;
}

/* ----------------------------------------------------- Chairman Page ------------------------------------------- */

.chairman-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)),
    url("../assets/chairman-bg-image.jpg") no-repeat center;
  background-size: cover;
}

.chairman-heading {
  color: #fff;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
}

.chairman-subHeading {
  color: #fff;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
}

.d-message {
  text-align: justify;
}

/* --------------------------------------------------------- Services Page ---------------------------------------------- */

.services-breadcrumb {
  background: var(--primary-green-lighter);
  border-bottom: 1px solid var(--light-gray);
}

.services-breadcrumb .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.services-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--primary-green);
  font-weight: 600;
}

.services-breadcrumb .breadcrumb-item a {
  color: var(--primary-green);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services-breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-green-dark);
}

.services-breadcrumb .breadcrumb-item.active {
  color: var(--medium-gray);
  font-family: 'Inter', sans-serif;
}

.services-hero {
  background: linear-gradient(135deg, var(--primary-green-pale) 0%, var(--off-white) 100%);
  position: relative;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23006625' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='5' cy='5' r='3'/%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.services-hero .container {
  position: relative;
  z-index: 1;
}

.services-subheading {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1rem;
}

.services-main-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.services-description {
  color: var(--medium-gray);
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-content {
  padding: 3rem 0;
}

.services-sidebar {
  margin-bottom: 2rem;
}

.services-nav-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 102, 37, 0.1);
  border: 1px solid var(--light-gray);
  position: sticky;
  top: 100px;
}

.services-nav-title {
  color: var(--primary-green);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.services-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-nav-list li {
  margin-bottom: 0.75rem;
}

.services-nav-list a {
  display: flex;
  align-items: center;
  color: var(--medium-gray);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.services-nav-list a:hover {
  color: var(--primary-green);
  background: var(--primary-green-lighter);
  border-color: var(--primary-green);
  transform: translateX(3px);
}

.services-nav-list a i {
  margin-right: 0.75rem;
  width: 20px;
  color: var(--primary-green);
}

.services-main-content {
  padding-left: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 102, 37, 0.08);
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  scroll-margin-top: 120px;
}

.service-card:hover {
  box-shadow: 0 8px 40px rgba(0, 102, 37, 0.15);
  transform: translateY(-2px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.service-title {
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-content p {
  color: var(--medium-gray);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: justify;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.service-features li {
  display: flex;
  align-items: center;
  color: var(--medium-gray);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.service-features li i {
  color: var(--primary-green);
  margin-right: 0.75rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .services-main-content {
    padding-left: 0;
    margin-top: 1rem;
  }
  
  .services-nav-card {
    position: static;
  }
  
  .services-main-heading {
    font-size: 2.25rem;
  }
}

/* --------------------------------------------------------- Profile Page ---------------------------------------------- */

.profile-breadcrumb {
  background: var(--primary-green-lighter);
  border-bottom: 1px solid var(--light-gray);
}

.profile-breadcrumb .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.profile-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--primary-green);
  font-weight: 600;
}

.profile-breadcrumb .breadcrumb-item a {
  color: var(--primary-green);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.profile-breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-green-dark);
}

.profile-breadcrumb .breadcrumb-item.active {
  color: var(--medium-gray);
  font-family: 'Inter', sans-serif;
}

.profile-hero {
  background: linear-gradient(135deg, var(--primary-green-pale) 0%, var(--off-white) 100%);
  position: relative;
}

.profile-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23006625' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='5' cy='5' r='3'/%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.profile-hero .container {
  position: relative;
  z-index: 1;
}

.profile-subheading {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1rem;
}

.profile-main-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.profile-description {
  color: var(--medium-gray);
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.profile-content {
  padding: 3rem 0;
  background: var(--off-white);
}

.profile-note-card {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0, 102, 37, 0.2);
}

.profile-note-card i {
  font-size: 1.5rem;
  opacity: 0.9;
}

.profile-note-card div {
  font-family: 'Inter', sans-serif;
}

.profile-note-card strong {
  color: var(--white);
  font-weight: 600;
}

.documents-grid {
  display: grid;
  gap: 3rem;
}

.document-card {
  background: var(--white);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 25px rgba(0, 102, 37, 0.1);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: all 0.3s ease;
}

.document-card:hover {
  box-shadow: 0 8px 40px rgba(0, 102, 37, 0.15);
  transform: translateY(-2px);
}

.document-header {
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-green-pale) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--light-gray);
}

.document-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.document-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.document-title {
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.document-description {
  color: var(--medium-gray);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.document-viewer {
  padding: 0;
}

.document-viewer iframe {
  border-radius: 0 0 16px 16px;
  border: none;
  background: var(--white);
}

@media (max-width: 768px) {
  .profile-main-heading {
    font-size: 2.25rem;
  }
  
  .document-header {
    padding: 2rem;
  }
  
  .profile-note-card {
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .documents-grid {
    gap: 2rem;
  }
}

/* --------------------------------------------------------- Chairman Page ---------------------------------------------- */

.chairman-breadcrumb {
  background: var(--primary-green-lighter);
  border-bottom: 1px solid var(--light-gray);
}

.chairman-breadcrumb .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.chairman-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--primary-green);
  font-weight: 600;
}

.chairman-breadcrumb .breadcrumb-item a {
  color: var(--primary-green);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.chairman-breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-green-dark);
}

.chairman-breadcrumb .breadcrumb-item.active {
  color: var(--medium-gray);
  font-family: 'Inter', sans-serif;
}

.chairman-hero {
  background: linear-gradient(135deg, var(--primary-green-pale) 0%, var(--off-white) 100%);
  position: relative;
}

.chairman-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23006625' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='5' cy='5' r='3'/%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.chairman-hero .container {
  position: relative;
  z-index: 1;
}

.chairman-subheading {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1rem;
}

.chairman-main-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.chairman-description {
  color: var(--medium-gray);
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.chairman-content {
  padding: 4rem 0;
  background: var(--off-white);
}

.chairman-image-section {
  margin-bottom: 2rem;
}

.chairman-image-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 25px rgba(0, 102, 37, 0.1);
  border: 1px solid var(--light-gray);
  text-align: center;
  position: sticky;
  top: 100px;
}

.chairman-image-wrapper {
  margin-bottom: 2rem;
}

.chairman-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-green);
  box-shadow: 0 8px 20px rgba(0, 102, 37, 0.2);
}

.chairman-info {
  border-top: 1px solid var(--light-gray);
  padding-top: 1.5rem;
}

.chairman-name {
  color: var(--primary-green);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.chairman-title {
  color: var(--medium-gray);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin: 0;
}

.chairman-message-section {
  padding-left: 2rem;
}

.message-card {
  background: var(--white);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 25px rgba(0, 102, 37, 0.1);
  border: 1px solid var(--light-gray);
  overflow: hidden;
}

.message-header {
  background: linear-gradient(135deg, var(--primary-green-pale) 0%, var(--white) 100%);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.message-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.message-title {
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}

.message-content {
  padding: 2.5rem;
}

.message-content p {
  color: var(--medium-gray);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.message-signature {
  background: var(--primary-green-pale);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  border-left: 4px solid var(--primary-green);
}

.signature-text {
  color: var(--medium-gray);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.signature-name {
  color: var(--primary-green);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .chairman-main-heading {
    font-size: 2.25rem;
  }
  
  .chairman-message-section {
    padding-left: 0;
  }
  
  .chairman-image-card {
    position: static;
  }
  
  .message-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* --------------------------------------------------------- Contact Us Page ---------------------------------------------- */

.contact-breadcrumb {
  background: var(--primary-green-lighter);
  border-bottom: 1px solid var(--light-gray);
}

.contact-breadcrumb .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--primary-green);
  font-weight: 600;
}

.contact-breadcrumb .breadcrumb-item a {
  color: var(--primary-green);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-breadcrumb .breadcrumb-item a:hover {
  color: var(--primary-green-dark);
}

.contact-breadcrumb .breadcrumb-item.active {
  color: var(--medium-gray);
  font-family: 'Inter', sans-serif;
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary-green-pale) 0%, var(--off-white) 100%);
  position: relative;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='25' height='25' viewBox='0 0 25 25' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23006625' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='5' cy='5' r='3'/%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-subheading {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1rem;
}

.contact-main-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.contact-description {
  color: var(--medium-gray);
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-intro {
  padding: 3rem 0;
}

.contact-intro-card {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 25px rgba(0, 102, 37, 0.1);
  border: 1px solid var(--light-gray);
}

.intro-image-wrapper {
  margin-bottom: 2rem;
}

.intro-image {
  max-width: 150px;
  height: auto;
}

.intro-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.intro-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin: 0;
  line-height: 1.6;
}

.contact-main {
  padding: 4rem 0;
  background: var(--off-white);
}

.contact-section-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 25px rgba(0, 102, 37, 0.1);
  border: 1px solid var(--light-gray);
  height: 100%;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.section-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-icon i {
  color: var(--white);
  font-size: 1.5rem;
}

.section-title {
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}

.office-cards,
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.office-card,
.contact-info-card {
  background: var(--primary-green-pale);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-green);
  transition: all 0.3s ease;
}

.office-card:hover,
.contact-info-card:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 15px rgba(0, 102, 37, 0.1);
}

.office-header,
.info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.office-flag,
.info-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.office-flag i,
.info-icon i {
  color: var(--white);
  font-size: 1rem;
}

.office-country,
.info-title {
  color: var(--primary-green);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

.office-address,
.info-content p {
  color: var(--medium-gray);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.info-content p {
  margin-bottom: 0.5rem;
}

.info-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .contact-main-heading {
    font-size: 2.25rem;
  }
  
  .intro-text {
    font-size: 1.5rem;
  }
  
  .contact-intro-card {
    padding: 2rem;
  }
  
  .section-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* --------------- Custom Scrollbar --------------- */

/* width */
::-webkit-scrollbar {
  width: 08px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
