@font-face {
  font-family: "SAMARN";
  src: url("../assets/Font/SAMARN__.TTF");
}

/* General Body and Container */
body {
  background-color: #f8f9fa;
  color: #343a40;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

/* Hero Image Section */
.aboutusimg {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
  margin-top: 10vh;
  margin-bottom: 25px;
}
.about {
  width: 195px;
  text-align: justify;
}

.img-aboutus {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Section Styling */
section {
  margin-bottom: 4rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out;
}

section:hover {
  transform: translateY(-5px);
}

/* Headings and Typography */
h1.fontbig {
  color: #2c3e50;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  border-left: 5px solid #90ce70;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

h3.fw-normal {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.stylish-font {
  font-family: "Tangerine", cursive;
  font-size: 4rem;
  font-weight: 700;
  color: #34495e;
}

.hindi-font {
  font-family: "SAMARN", sans-serif;
  font-weight: normal; /* Custom fonts often have their own weight */
  font-size: 2.5rem;
  color: #90ce70;
}

/* Responsive Design */
@media (max-width: 768px) {
  .aboutusimg {
    height: 40vh;
    margin-top: 12vh;
  }

  h2 {
    font-size: 1.8rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .stylish-font {
    font-size: 3rem;
  }

  .hindi-font {
    font-size: 2rem;
  }

  section {
    padding: 1.5rem;
  }
}
