* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #ffffff;
  color: #333;
}

/* Hero Section */
.aboutsection {
  display: flex;
  padding: 60px 40px;
  gap: 40px;
}

.about-text {
  flex: 1.2;
}
.color {
  color: #692c3f;
}
.about-text h1 {
  font-size: 42px;
  color: #7a2e3a;
  margin-bottom: 20px;
}

.about-text h3 {
  color: #7a2e3a;
  margin-top: 25px;
  margin-bottom: 8px;
  text-transform: lowercase;
}

.about-text p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.aboutsection {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* right side wrapper */
.about-images {
  position: relative;
  width: 520px;
  height: 480px;
}

/* center image */
.center {
  width: 427px;
  height: 404px;
  object-fit: cover;
}

/* small images */
.small {
  position: absolute;
  width: 117px;
  height: 148px;
  object-fit: cover;
  border-radius: 20px;
  z-index: -1;
}
/* right image section */
.about-images {
  position: relative;
  width: 520px; /* FIXED WIDTH */
  height: 520px; /* FIXED HEIGHT */
  flex-shrink: 0; /* text ke pressure se shrink nahi hoga */
  height: 590px;
}

/* center image */
.center {
  width: 427px;
  height: 404px;
  object-fit: cover;
  display: block;
  margin: auto;
  position: relative;
  top: 90px;
}

/* common small images */
.small {
  position: absolute;
  width: 117px;
  height: 148px;
  object-fit: cover;
  border-radius: 20px;
}

/* positions (as per 2nd screenshot) */
.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.left {
  top: 120px;
  left: 0;
}

.right {
  top: 120px;
  right: 0;
}

.bottom-left {
  bottom: 0;
  left: 80px;
}

.bottom-right {
  bottom: 0;
  right: 80px;
}

/* responsive */
@media (max-width: 768px) {
  .about-images {
    margin: 40px auto 0;
    transform: scale(0.9);
  }
}

/* Vision Mission */
.vm-section {
  display: flex;
  gap: 30px;
  padding: 40px;
}

.card {
  flex: 1;
  padding: 30px;
  border-radius: 8px;
}

.vision {
  background: #e9f7df;
}

.mission {
  background: #e9f7df;
}

.card h2 {
  color: #7a2e3a;
  margin-bottom: 15px;
  text-align: center;
}

.card ul li {
  font-size: 14px;
  margin-bottom: 10px;
  list-style-image: url("icons/li-icon.png");

  padding-left: 20px;
  margin-left: 24px;
  position: relative;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .vm-section {
    flex-direction: column;
  }
}
.core-values {
  background: #f2ffd9;
  padding: 70px 30px;
  text-align: center;
}

.core-values h2 {
  font-size: 36px;
  color: #7a2e3a;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.value-card {
  background: #f7ffea;
  padding: 35px 25px;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.value-card h3 {
  color: #4c6b2f;
  margin-bottom: 15px;
  font-size: 18px;
}

.value-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
}

/* Center big card */
.center-card {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .center-card {
    max-width: 100%;
  }
}
.management {
  padding: 60px 40px;
  background: #ffffff;
}

.management h2 {
  font-size: 32px;
  color: #692c3f;
  margin-bottom: 40px;
}

/* Grid */
.management-grid {
  display: flex;
  gap: 100px;
  align-items: center;
}

/* Card */
.manager-card {
  background: #e9f7df;
  display: flex;
  gap: 40px;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 800px;
}

/* Left section - Image and Info */
.manager-left {
  flex-shrink: 0;
  text-align: center;
}

/* Image */
.manager-img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  display: block;
}

/* Name */
.manager-card h3 {
  font-size: 24px;
  line-height: 30px;
  color: #465f21;
  font-family: "Recursive", sans-serif;
  font-weight: bold;
}

/* Title */
.manager-title {
  font-size: 16px;
  line-height: 30px;
  color: #465f21;
  font-family: "Magra", sans-serif;
  font-weight: normal;
  margin-bottom: 0;
}

/* Right section - Description */
.manager-right {
  flex: 1;
}

.manager-right p {
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  font-family: "Magra", sans-serif;
  margin-bottom: 15px;
}

.manager-right p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .manager-card {
    flex-direction: column;
    gap: 20px;
  }

  .manager-left {
    text-align: left;
  }
}
