/* Base Styles */
:root {
  --primary: #2e9d4e;
  --primary-dark: #248a41;
  --primary-light: #e6f7eb;
  --secondary: #f5f5f5;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --bg-dark: #1a1a1a;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --radius: 0.5rem;
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.text-center {
  text-align: center;
}

.mt-large {
  margin-top: 3rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-text {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn svg {
  margin-left: 0.5rem;
}

.btn-primary {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: inline-flex;
  font-size: 0.85rem;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--text-white);
  color: var(--text-white);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-light {
  background-color: var(--text-white);
  color: var(--primary);
}

.btn-light:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-outline-light {
  background-color: transparent;
  border: 1px solid var(--text-white);
  color: var(--text-white);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.text-link {
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link svg {
  margin-left: 0.25rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #e5e7eb; /* Light gray border */
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
              0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  height: 5rem; /* 20 x 0.25rem = 5rem = 80px */
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  margin-left:0;
}

.logo img {
  height: 3rem; 
  width: auto;
}

.navbar{
  display: none;            /* hidden */
  align-items: center;       /* items-center */
  gap: 2rem;                 /* gap-8 = 2rem */
}

/* For medium screens (md) and above */
@media (min-width: 768px) {
  .hidden-md-flex {
    display: flex;           /* md:flex overrides hidden */
  }
}


.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-white);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding-top: var(--header-height);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-nav {
  padding: 2rem 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 500;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 150;
  display: none;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-white);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-image-container {
  position: relative;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Approach Section */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.approach-image-container {
  position: relative;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.approach-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.approach-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach-item {
  display: flex;
  gap: 1rem;
}

.approach-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-top: 0.25rem;
}

.approach-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.approach-description {
  color: var(--text-light);
}

/* Products Section */


.product-card {
  background-color: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  width: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image-container {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.gallery-item {
  width: 1000px;
}

.gallery-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.image-slider {
  position: relative;
  width: 100%;
  align-items: center;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 550px;
  border-radius: var(--radius);
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--text-white);
  text-align: center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--text-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.slider-prev {
  left: 1rem;
}

.slider-next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--text-white);
}

/* Video Section */
.video-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-container::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.benefit-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(46, 157, 78, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-description {
  color: var(--text-light);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-light);
}

.testimonial-content {
  color: var(--text-light);
  font-style: italic;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary);
  color: var(--text-white);
  text-align: center;
  padding: 5rem 0;
}

.cta-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-info {
  max-width: 300px;
}

.footer-logo {
  height: 4px;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
}

.footer-link:hover {
  color: var(--text-white);
}

.footer-address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
}

.footer-address p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* Page Header */
.page-header {
  background-color: var(--primary);
  color: var(--text-white);
  padding: 3rem 0;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 0;
}

/* Contact Form Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info {
  max-width: 600px;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-item-text {
  color: var(--text-light);
}

.contact-form-container {
  max-width: 600px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(46, 157, 78, 0.2);
}

.form-success {
  background-color: #e6f7eb;
  border: 1px solid #2e9d4e;
  color: #2e9d4e;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.form-success-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.value-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-description {
  color: var(--text-light);
}

/* Media Queries */
@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
  }

  .cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .navbar {
    display: block;
  }

  .mobile-menu-button {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.main-section {
  width:100%;
  justify-content: center;
  display: flex;
  flex-direction: column;
 
}

.section-white.section-white {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .section-white {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.mis-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.heading-xl {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.heading-lg {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.heading-md {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.text-gray {
  color: #4b5563; /* Tailwind's gray-700 */
}

.text-primary {
  color:#2e9d4e 
}

.image-wrapper {
  position: relative;
  width: 110%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .grid-2col {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-grid {
  align-items: center;
  margin-bottom: 4rem;
}

.commitment-grid {
  gap: 2rem;
}

.card {
  background-color: #f9fafb; /* gray-50 */
  padding: 2rem;
  border-radius: 0.5rem;
}

.list-disc {
  list-style-type: disc;
  padding-left: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.text-center {
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #2e9d4e; /* Primary color 90% */
}

.icon-chevron-right {
  margin-left: 0.5rem;
}


.pro-container {
  max-width: 1500px;
  margin: 0 auto;
}

.contact-section {
  background: white;
  padding: 40px;
  border-radius: 8px;
}

.main-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info, .contact-form {
  background: #fff;
}

.sub-heading {
  font-size: 28px;
  margin-bottom: 20px;
}

.description {
  margin-bottom: 30px;
  color: #555;
}

.info-block {
  margin-bottom: 20px;
}

.info-block h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.google-map {
  margin-top: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

input, select, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

.submit-bt {
  display: block;
  background-color: #2e9d4e;
  color: white;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-bt:hover {
  background-color: #248a41;
}

.business-hours {
  margin-top: 30px;
}

.business-hours h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.pro-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}
h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}
p.description {
  color: #555;
  margin-bottom: 50px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.product {
  display: flex;
  flex-wrap: wrap;
  background: white;
  margin-bottom: 60px;
  padding: 20px;
  border-radius: 10px;
  align-items: center;
}
.product-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.product-image img {
  width: 300px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;

}
.product-content {
  flex: 2;
  padding: 20px;
}
.product-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}
.product-content p {
  color: #666;
  margin-bottom: 20px;
}
.features-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}
ul.features {
  list-style: disc inside;
  padding-left: 20px;
  color: #555;
}
ul.features li {
  margin-bottom: 10px;
}
.button {
  display: inline-block;
  background: #2e9d4e;
  color: white;
  padding: 10px 20px;
  margin-top: 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}
.button:hover {
  background: #2e9d4e;
}
@media (max-width: 768px) {
  .product {
    flex-direction: column;
  }
  .product-image img {
    width: 100%;
    height: auto;
  }
}
.ab-container {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  padding: 0 20px;
}

/* Section styling */
.section-about {
  padding: 4rem 0;
  background-color: #ffffff;
}

/* Headings */
.heading-primary {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: left;
}

.heading-secondary {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

/* About grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.about-text p {
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #4b5563; /* Tailwind's gray-700 */
}
.about-image {
  position: relative;
  height: 400px;
  width: 700px;   
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Values section */
.values-section {
  margin-bottom: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.value-card {
  background: #f9fafb; /* Tailwind's gray-50 */
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2e9d4e; /* Tailwind's primary color (blue) */
  margin-bottom: 1rem;
}

.text-gray {
  color: #4b5563;
}

/* Contact button */
.contact-button {
  text-align: center;
  margin-top: 2rem;
}

.btn-primary {
  display: inline-block;
  background-color: #2e9d4e;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #2e9d4e;
}

/* Responsive design */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.priv-main {
  flex: 1;
}

/* Section styling */
.priv-section {
  padding: 4rem 1rem;
  background-color: #e5e7eb; /* bg-gray-200 */
}

/* Container */
.priv-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.priv-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Content styling */
.priv-content {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.75rem;
  color: #333;
}

/* Paragraphs */
.priv-text {
  margin-bottom: 1.2rem;
}

/* Subheadings */
.priv-subheading {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

/* List styling */
.priv-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.priv-list li {
  margin-bottom: 0.5rem;
}
