/* Hero container - set your desired height */
.hero {
  height: 600px !important; /* Adjust this value (250px, 300px, 350px) */
  /*margin-bottom: 60px;*/
  /*padding-bottom: 0;*/
  overflow: hidden; /* Hides the cropped portion */
  position: relative;
}
/* Hero background image - crops from TOP */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom; /* Shows BOTTOM, crops from TOP */
  opacity: 1;
}
.who {
  text-align: center;
  padding: 30px 20px 80px;
  background: #fff8f0;
  margin-bottom: 0;
}
.who h2 {
  font-family: 'Kalam', cursive;
  font-size: 2.5rem;
  color: #a66a2c;
  margin-top:-10px;
  margin-bottom:0px;
}
.who .intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  text-align: center; /* Changed from left to center */
  max-width: 1000px; /* Increased from 200px to make text wider */
  margin: 0 auto 30px auto; /* Centers the text block horizontally */
}
/* Cards Container - 2x2 Grid Layout */
.cards-container {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
/* Individual Card Styling */
.card {
  background: #fdfcf8;
  padding: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: row;
  align-items: center;  /* This centers content vertically! ✅ */
  gap: 5px;
}
/*.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(33, 128, 141, 0.3);
}*/
/* Card Logo/Icon */
.card-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 0;
}
/* Card Content */
.card-content {
  text-align: left;
}
.card-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #A8754B;
  font-style: italic;
  margin-bottom: 0; 
}
.card-content p {
  font-size: 15px;
  color: #626C71;
  margin-top: 0; 
}
/* Story Section Wrapper */
.story {
  text-align: center;
  margin-top: 0;
  padding: 40px 10% 0 10%;  /* ✅ Top padding instead of margin */
}
.story-row {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}
/* Heading inside story section */
.story h2 {
  font-family: 'Kalam', cursive;
  font-size: 2.5rem;
  color: #a66a2c;
  margin-bottom:20px;
}
/* Story Image - Make it smaller */
.story-image {
  flex: 1 1 350px;
  text-align: center;
}
.story-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
/* Story Text - Takes remaining space */
.story-text {
  flex: 1 1 350px;
  min-width: 300px;
}
.story-text p {
  font-size: 1.05rem;
  line-height: 2.5;
  color: #444;
  margin-bottom: 0;
  text-align: justify;
}

