/* ==================================================
   ABOUT PAGE – PRAYUL NATURALS (FINAL ENHANCED)
================================================== */

/* ================= HERO ================= */
/* ================= HERO – ABOUT (ANIMATED) ================= */

.about-hero {
  background:linear-gradient(180deg, #fbd86f 0% , rgb(222, 143, 25)70%);
  color: #ffffff;
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative floating shapes */
.about-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

/* Content wrapper */
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

/* Typography */
.about-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.about-hero p {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 70px 24px;
  }

  .about-hero h1 {
    font-size: 2.3rem;
  }

  .about-hero p {
    font-size: 1.05rem;
  }
}
/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 50px 0;
  background: #ffffff;
}

.about-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 32px;
}

/* DESKTOP: LEFT TEXT / RIGHT IMAGE */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80PX;
  align-items: center;
}

/* TEXT */
.about-left {
  max-width: 620px;
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: #0b1a2c;
}

.about-description {
  font-size: 1.05rem;
  line-height: 2;
  color: #4b5563;
  text-align: justify;          /* ✅ JUSTIFIED */
  text-justify: inter-word;     /* ✅ CLEAN SPACING */
}

/* IMAGE */
.about-right {
  display: flex;
  justify-content: center;
}

.about-right img {
  width: 100%;
  max-width: 520px;
  max-height: 520px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: -30px 30px 80px rgba(0,0,0,0.25);
}

/* TABLET */
@media (max-width: 1024px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-right img {
    height: 480px;
  }
}

/* MOBILE: IMAGE FIRST */
@media (max-width: 768px) {

  .about-section {
    padding: 10px 0;
  }

  .about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10PX;
  }

  .about-right {
    order: 1;
  }

  .about-left {
    order: 2;
  }

  .about-title {
    font-size: 2rem;
    text-align: center;
  }

  .about-description {
    text-align: justify;        /* ✅ MOBILE JUSTIFIED */
    text-justify: inter-word;
    line-height: 1.85;
    word-spacing: 0.6px;        /* ✅ BETTER MOBILE READABILITY */
  }

  .about-right img {
    height: 420px;
    border-radius: 12px;
  }
}



/* ================= MISSION / VISION / VALUES ================= */
.mission-vision-section {
  background: linear-gradient(180deg, #fbd86f 0% , rgb(237, 170, 70)70%);
  padding: 80px 24px;
}

.mission-vision-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.mission-card,
.vision-card,
.values-card {
  background: linear-gradient(
    135deg,
    #ffffff,
    #f1faf4
  );
  padding: 42px 32px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(7,216,59,0.18);
}

/* ICON ENHANCEMENT */
.card-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  background: rgb(217, 143, 32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: #ffffff;
  box-shadow: 0 14px 34px rgb(217, 143, 32);
}

/* ================= WHY CHOOSE US ================= */
.why-us-section {
  padding: 90px 24px;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #031428;
}

.why-us-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-us-card {
  background: linear-gradient(
    135deg,
    #ffffff,
    #fffff1,
    #ffffff
  );
  padding: 38px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #e77454;
  transition: 0.35s ease;
}

.why-us-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgb(217, 143, 32);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(180deg, #fbd86f 0% , rgb(237, 170, 70)70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: #ffffff;
  box-shadow: 0 14px 34px rgb(217, 143, 32);
}

/* ================= MOBILE – FINAL ================= */
@media (max-width: 768px) {

  body {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-container {
    padding: 0;
    max-width: 100%;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 26px;
    width: 100%;
  }

  .about-right,
  .about-left {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  /* IMAGE FIRST */
  .about-right {
    order: 1;
  }

  .about-left {
    order: 2;
  }

  .about-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 16px;
  }

  /* JUSTIFIED MOBILE TEXT (SAFE) */
  .about-description {
    width: 100%;
    max-width: 100%;
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.85;
    word-spacing: 0.6px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 1.05rem;
  }
}
/* =========================================
   DESKTOP – REDUCE SIDE SPACING / FIT SCREEN
========================================= */
@media (min-width: 1200px) {

  /* Allow wider content on large screens */
  .about-container,
  .mission-vision-wrapper,
  .why-us-grid,
  .about-hero-content {
    max-width: 1400px; /* was 1200 */
  }

  /* Reduce excessive side padding */
  .about-container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .mission-vision-section,
  .why-us-section {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* EXTRA LARGE SCREENS (4K / ultrawide) */
@media (min-width: 1600px) {

  .about-container,
  .mission-vision-wrapper,
  .why-us-grid,
  .about-hero-content {
    max-width: 1600px;
  }
}
/* =====================================
   BRAND PHILOSOPHY – CONTENT LEFT / LOGO RIGHT
===================================== */
.brand-philosophy-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fbd86f 0% , rgb(237, 170, 70)70%);
}

.brand-philosophy-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 10px;
}

/* LEFT CONTENT */
.philosophy-content {
  max-width: 650px;
}

.philosophy-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background:rgb(217, 143, 32);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.philosophy-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #031428;
  margin-bottom: 22px;
}

.philosophy-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #000000;
  text-align: justify;
}

.philosophy-text strong {
  color: #222222;
}

/* RIGHT LOGO */
.philosophy-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.philosophy-logo {
  max-width: 620px;
  width: 100%;
  height: auto;
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 1024px) {
  .brand-philosophy-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .philosophy-content {
    max-width: 100%;
  }

  .philosophy-text {
    text-align: center;
  }

  .philosophy-logo {
    max-width: 260px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .brand-philosophy-section {
    padding: 60px 0;
  }

  .philosophy-title {
    font-size: 2.1rem;
  }

  .philosophy-logo {
    max-width: 220px;
  }
}
/* =====================================
   BRAND PHILOSOPHY – MOBILE LOGO FIRST
===================================== */
@media (max-width: 768px) {

  .brand-philosophy-container {
    grid-template-columns: 1fr;
  }

  /* LOGO FIRST */
  .philosophy-logo-wrap {
    order: 1;
    margin-bottom: 28px;
  }

  /* TEXT AFTER */
  .philosophy-content {
    order: 2;
  }

  .philosophy-text {
    text-align: justify;
  }

  .philosophy-title {
    text-align: center;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

