/* ===================================== */
/* ABOUT SECTION */
/* ===================================== */

.about-ransaara-krs {
  width: 100%;
  padding: 110px 5%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* LEFT */

.about-left-krs {
  position: relative;
  z-index: 2;
}

.about-tag-krs {
  display: inline-block;
  padding: 12px 26px;
  background: rgba(15, 92, 102, 0.1);
  color: #0f5c66;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.about-left-krs h2 {
  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 30px;
  color: #111;
  font-weight: 800;
}

.about-main-text-krs {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 22px;
}

/* FEATURES */

.about-feature-grid-krs {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.about-feature-card-krs {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 32px 28px;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.about-feature-card-krs::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #0f5c66, #b88a44);
}

.about-feature-card-krs:hover {
  transform: translateY(-10px);
}

.feature-icon-krs {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f5c66, #b88a44);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-feature-card-krs h3 {
  margin-bottom: 14px;
  font-size: 24px;
  color: #111;
}

.about-feature-card-krs p {
  line-height: 1.8;
  color: #666;
}

/* RIGHT */

.about-right-krs {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* STORY CARD */

.story-card-krs {
  position: relative;
  min-height: 380px;
  border-radius: 35px;
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1610030469983-98e550d6193c?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.story-overlay-krs {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
}

.story-content-krs {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: #fff;
}

.story-content-krs span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}

.story-content-krs h3 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 18px;
}

.story-content-krs p {
  line-height: 1.9;
  color: #e7e7e7;
}

/* PHILOSOPHY */

.philosophy-card-krs {
  background: linear-gradient(135deg, #0f5c66, #b88a44);
  border-radius: 35px;
  padding: 45px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.philosophy-card-krs::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -80px;
  right: -80px;
}

.philosophy-card-krs h3 {
  font-size: 36px;
  margin-bottom: 25px;
}

.philosophy-card-krs p {
  line-height: 2;
  color: #f3f3f3;
  margin-bottom: 30px;
}

.philosophy-card-krs a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: #fff;
  color: #0f5c66;
  padding: 16px 28px;
  border-radius: 60px;
  font-weight: 700;
  transition: 0.4s;
}

.philosophy-card-krs a:hover {
  transform: translateY(-5px);
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media (max-width: 1200px) {
  .about-ransaara-krs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-ransaara-krs {
    padding: 80px 5%;
  }

  .about-left-krs h2 {
    font-size: 42px;
  }

  .about-feature-grid-krs {
    grid-template-columns: 1fr;
  }

  .story-content-krs h3,
  .philosophy-card-krs h3 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .about-left-krs h2 {
    font-size: 34px;
  }

  .about-main-text-krs {
    font-size: 15px;
  }

  .story-content-krs {
    padding: 28px;
  }

  .philosophy-card-krs {
    padding: 30px;
  }

  .about-feature-card-krs {
    padding: 26px 22px;
  }
}
