.about-page {
  background: #f7ead9;
}

.section-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ff7a00;
  margin-bottom: 10px;
  display: inline-block;
}

/* ================= HERO BASE ================= */
.about-hero {
  position: relative;
  min-height: 100vh;
  /* better than fixed height */
  width: 100%;
  background-image: url('../img/about1.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 120px 8% 60px;
  color: #fff;
  overflow: hidden;
  animation: zoomBg 20s ease-in-out infinite alternate;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

/* BACKGROUND ZOOM */
@keyframes zoomBg {
  0% {
    background-size: 105%;
  }

  100% {
    background-size: 115%;
  }
}

/* ================= OVERLAY ================= */
.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.45) 40%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0.1) 100%);
}

/* ================= CONTENT ================= */
.about-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  width: 100%;
  /* ADD THIS */

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);

  padding: 50px;
  border-radius: 24px;

  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= HEADING ================= */
.about-content h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #ffffff;

  /* MAIN TEXT WHITE */
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Highlight only important words */
.about-content h1 span {
  background: linear-gradient(90deg, #ff7a00, #ff3b3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 122, 0, 0.4));
}

/* ================= TAGLINE ================= */
.tagline {
  font-size: 18px;
  color: #ff7a00;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.subline {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;

  max-width: 90%;

  /* elegant feel */
  letter-spacing: 0.3px;

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffb27a;
  margin-bottom: 15px;
  position: relative;
}

/* small line before label */
.label::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #ff7a00;
  margin-right: 10px;
  vertical-align: middle;
}

/* ================= DESCRIPTION ================= */
.desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}

.desc a {
  color: #ff7a00;
  font-weight: 600;
  position: relative;
  text-decoration: none;
}

/* underline animation */
.desc a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #ff7a00, #ff3b3b);
  transition: 0.3s;
}

.desc a:hover::after {
  width: 100%;
}

/* ================= BUTTONS ================= */
.about-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

/* PRIMARY BUTTON */
.about-page .about-hero .btn-primary {
  background: linear-gradient(90deg, #ff7a00, #ff3b3b);
  padding: 15px 30px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* glowing hover */
.about-page .about-hero .btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 122, 0, 0.6);
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 15px 30px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  transition: 0.4s;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* ================= STATS ================= */
.about-stats {
  display: flex;
  gap: 50px;
}

/* animated numbers feel */
.about-stats h3 {
  font-size: 30px;
  color: #ff7a00;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(255, 122, 0, 0.5);
}

.about-stats p {
  font-size: 13px;
  color: #bbb;
  letter-spacing: 0.5px;
}

/* ================= RESPONSIVE DESIGN ================= */

/* 📱 Large tablets (1024px and below) */
@media (max-width: 1024px) {
  .about-hero {
    padding: 100px 6% 50px;
    background-image: url('/img/about-mobile.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }

  .about-content {
    max-width: 100%;
    padding: 40px;
  }

  .about-content h1 {
    font-size: 44px;
  }

  .desc {
    font-size: 16px;
  }

  .about-stats {
    gap: 30px;
    flex-wrap: wrap;
  }
}

/* 📱 Tablets (768px and below) */
@media (max-width: 768px) {
  .about-hero {
    padding: 90px 5% 40px;
    text-align: center;
    justify-content: center;
    background-image: url('/img/about-mobile.webp');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }

  .about-overlay {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.55));
  }

  .about-content {
    padding: 30px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
  }

  .about-content h1 {
    font-size: 36px;
  }

  .tagline {
    font-size: 16px;
  }

  .subline {
    max-width: 100%;
    font-size: 14.5px;
  }

  .about-actions {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
    gap: 25px;
  }
}

/* 📱 Mobile (480px and below) */
@media (max-width: 480px) {
  .about-hero {
    padding: 80px 4% 30px;
    min-height: auto;

    background-image: url('/img/about-mobile.webp');
    background-repeat: no-repeat;
    background-size: contain;
    /* ✅ now works */
    background-position: top center;
    background-color: #000;
    /* fills empty space nicely */
  }

  .about-content {
    padding: 22px;
    border-radius: 14px;
  }

  .about-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .tagline {
    font-size: 14px;
  }

  .subline {
    font-size: 13.5px;
  }

  .desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-stats {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .about-stats h3 {
    font-size: 24px;
  }

  .about-stats p {
    font-size: 12px;
  }
}

/* 📱 Very small phones (360px and below) */
@media (max-width: 360px) {
  .about-content h1 {
    font-size: 24px;
  }

  .about-hero {
    background-size: contain;
    background-position: top center;
  }


  .btn-primary,
  .btn-outline {
    padding: 12px 20px;
    font-size: 14px;
  }
}


/* =========================================
   STORY SECTION BASE
   Premium gradient + soft animated background
========================================= */
.about-page .about-section .container {
  width: min(90%, 1200px);
  margin: auto;
  position: relative;
  z-index: 2;
}

/* ================= SECTION BASE ================= */
.about-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 20% 30%, rgba(255, 122, 0, 0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 59, 59, 0.06), transparent 40%),
    linear-gradient(180deg, #f8f9fb, #ffffff, #fdf7f2);
}

.about-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.15), transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.about-section::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image: repeating-radial-gradient(circle at 0 0,
      rgba(0, 0, 0, 0.02) 0,
      rgba(0, 0, 0, 0.02) 1px,
      transparent 1px,
      transparent 2px);

  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

/* ================= GRID ================= */
.about-page .grid-2 {
  display: flex;
  align-items: center;
  gap: 60px;
}

.grid-2:hover .text {
  transform: translateY(-4px);
}

/* ================= IMAGE ================= */
.s-image {
  flex: 1;
}

.img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* 
    */
  /* layered shadow for depth */
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.12),
    0 40px 80px rgba(0, 0, 0, 0.08);

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE */
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.img-wrap:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 40px 80px rgba(0, 0, 0, 0.2);
}

.img-wrap:hover img {
  transform: scale(1.08);
}

/* 🔥 GRADIENT BORDER GLOW */
.img-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(120deg, #ff7a00, #ff3b3b, transparent);
  z-index: -1;
  opacity: 0.6;
}

/* 🔥 OVERLAY SHINE */
.img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(255, 122, 0, 0.15),
      transparent 60%);
  opacity: 0;
  transition: 0.5s ease;
}

.img-wrap:hover::after {
  opacity: 1;
}

/* 🔥 FLOATING ACCENT SHAPE */
.img-wrap .accent {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff7a00, #ff3b3b);
  border-radius: 20px;
  opacity: 0.9;
  filter: blur(10px);
  z-index: 0;
}

/* OPTIONAL subtle animation */
.img-wrap:hover .accent {
  transform: scale(1.1);
  transition: 0.4s;
}

/* ================= TEXT ================= */
.about-section .text {
  transition: transform 0.4s ease;
  flex: 1;
}

/* heading */
.about-section .text h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.3;
  color: #0b2c5f;
  letter-spacing: -0.5px;
}

/* gradient highlight */
.about-section .text h2 span {
  background: linear-gradient(90deg, #ff7a00, #ff3b3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;

}

/* paragraph */
.about-section .text p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 18px;
}

/* ================= HIGHLIGHT BOX ================= */
.highlight-box {
  margin-top: 25px;
  padding: 16px 22px;
  background: linear-gradient(90deg,
      rgba(255, 122, 0, 0.08),
      rgba(255, 59, 59, 0.05));
  border-left: 5px solid #ff7a00;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: #333;
  transition: 0.3s ease;
}


/* subtle hover */
.highlight-box:hover {
  background: rgba(255, 122, 0, 0.12);
}

@media (max-width: 1024px) {
  .about-section {
    padding: 80px 0;
  }

  .about-page .grid-2 {
    gap: 40px;
  }

  .about-section .text h2 {
    font-size: 34px;
  }

  .about-section .text p {
    font-size: 15px;
  }

  .highlight-box {
    font-size: 14px;
    padding: 14px 18px;
  }
}

@media (max-width: 768px) {
  .about-page .grid-2 {
    flex-direction: column;
    gap: 35px;
  }

  .s-image,
  .about-section .text {
    width: 100%;
  }

  .about-section {
    padding: 70px 0;
  }

  .about-section .text {
    text-align: center;
  }

  .about-section .text h2 {
    font-size: 30px;
  }

  .about-section .text p {
    font-size: 14.5px;
  }

  .highlight-box {
    text-align: left;
  }

  .img-wrap {
    border-radius: 16px;
  }

  .img-wrap .accent {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 0;
  }

  .about-page .about-section .container {
    width: 92%;
  }

  .about-section .text h2 {
    font-size: 26px;
    line-height: 1.35;
  }

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

  .highlight-box {
    font-size: 13.5px;
    padding: 12px 16px;
    border-left: 4px solid #ff7a00;
  }

  .img-wrap {
    border-radius: 14px;
  }

  .img-wrap img {
    height: auto;
  }

  .img-wrap .accent {
    width: 50px;
    height: 50px;
    bottom: -10px;
    right: -10px;
  }
}

@media (max-width: 360px) {
  .about-section .text h2 {
    font-size: 22px;
  }

  .about-section .text p {
    font-size: 13.5px;
  }

  .highlight-box {
    font-size: 13px;
  }

  .img-wrap {
    border-radius: 12px;
  }
}


/* ================= SECTION ================= */
.philosophy-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  background: linear-gradient(180deg,
      #f6efe7 0%,
      #e8d8c8 50%,
      #d9c3ad 100%);
}

/* bottom depth shadow */
.philosophy-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;

  background: radial-gradient(circle, rgba(0, 0, 0, 0.15), transparent 70%);
  filter: blur(90px);
}

/* subtle glow */
.philosophy-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 250px;
  height: 250px;

  background: radial-gradient(circle, rgba(255, 122, 0, 0.15), transparent 70%);
  filter: blur(80px);
}

/* ================= HEADER ================= */
.center {
  text-align: center;
  margin-bottom: 60px;
}

.center h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #2b1a10;
}

.subtext {
  font-size: 16px;
  color: #6b5a4a;
}

/* ================= CARDS ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD DESIGN */
.about-page .philosophy-section .card {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #fffaf5);
  border-radius: 20px;
  padding: 40px 30px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.06);

  transition: all 0.4s ease;
  overflow: hidden;
}

/* premium hover */
.about-page .philosophy-section .card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 40px 90px rgba(0, 0, 0, 0.08);
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;

  background: linear-gradient(90deg, #ff7a00, #ff3b3b);
}

/* glow border on hover */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #ff7a00, transparent);
  opacity: 0;
  transition: 0.4s;
}

.card:hover::before {
  opacity: 0.1;
}


/* ================= ICON ================= */

.philosophy-section .icon {
  font-size: 30px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ff7a00, #ff3b3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 5px 10px rgba(255, 122, 0, 0.3));
}

/* ================= TEXT ================= */
.about-page .philosophy-section .card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f140c;

}

.about-page .philosophy-section .card p {
  font-size: 14.5px;
  color: #5c4b3c;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .philosophy-section {
    padding: 80px 0;
  }

  .center h2 {
    font-size: 34px;
  }

  .subtext {
    font-size: 15px;
  }

  .cards {
    gap: 20px;
  }

  .card {
    padding: 30px 24px;
  }
}

@media (max-width: 768px) {
  .cards {
    flex-wrap: wrap;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);

  }

  .card {
    width: calc(50% - 10px);
    /* 2 cards per row */
  }

  .center {
    margin-bottom: 40px;
  }

  .center h2 {
    font-size: 30px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .philosophy-section {
    padding: 60px 0;
  }

  .about-page .philosophy-section .container {
    width: 92%;
  }

  .cards {
    flex-direction: column;
    gap: 18px;
    grid-template-columns: 1fr;

  }

  .card {
    width: 100%;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .center h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .subtext {
    font-size: 14px;
  }

  .philosophy-section .icon {
    font-size: 26px;
  }

  .card h3 {
    font-size: 17px;
  }

  .card p {
    font-size: 13.5px;
    line-height: 1.6;
  }
}

@media (max-width: 360px) {
  .center h2 {
    font-size: 22px;
  }

  .card {
    padding: 20px 16px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }
}

/* =========================================================
   INFRASTRUCTURE SECTION - PREMIUM IMAGE UPDATE
   HTML Supported:
   <section class="infra-section">
     <div class="container">
       <div class="grid-2 reverse">
         <div class="section-img">...</div>
         <div class="text">...</div>
       </div>
     </div>
   </section>
========================================================= */

.infra-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  margin-top: -20px;
  background: linear-gradient(135deg,
      #ffffff 0%,
      #f6f9fc 40%,
      #eef3f8 100%);
}

/* ambient glow */
.infra-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.15), transparent 70%);
  filter: blur(120px);
  pointer-events: none;
}

/* bottom depth */
.infra-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08), transparent 70%);
  filter: blur(120px);
  pointer-events: none;
}

.infra-section .container {
  position: relative;
  z-index: 2;
}

/* ================= GRID ================= */

.infra-section .grid-2,
.infra-section .container .grid-2 {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 75px;
}

/* Your HTML has image first and text second.
   This keeps text on left and image on right. */
.infra-section .grid-2.reverse .text {
  order: 1;
}

.infra-section .grid-2.reverse .section-img {
  order: 2;
}

/* ================= IMAGE BIG PREMIUM ================= */

.infra-section .section-img {
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 28px;
  isolation: isolate;
}

/* premium shadow behind image */
.infra-section .section-img::before {
  content: "";
  position: absolute;
  inset: 40px 12px -40px 12px;
  background: rgba(8, 34, 70, 0.22);
  filter: blur(50px);
  border-radius: 34px;
  z-index: 0;
  pointer-events: none;
}

/* soft blue glow */
.infra-section .section-img::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(0, 119, 204, 0.12), transparent 72%);
  filter: blur(35px);
  z-index: 0;
  pointer-events: none;
}

.infra-section .section-img img {
  position: relative;
  z-index: 2;
  display: block;

  width: 100%;
  height: 520px;
  max-width: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: 28px;

  box-shadow:
    0 25px 65px rgba(8, 34, 70, 0.18),
    0 60px 120px rgba(8, 34, 70, 0.12);

  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
}

.infra-section .section-img:hover img {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 35px 90px rgba(8, 34, 70, 0.24),
    0 80px 150px rgba(8, 34, 70, 0.16);
}

/* ================= TEXT - KEEP SAME STYLE ================= */

.infra-section .text {
  position: relative;
  padding-left: 26px;
}

/* same premium accent line */
.infra-section .text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 3px;
  height: 70px;

  background: linear-gradient(to bottom,
      #0b2c5f,
      #0077cc,
      rgba(0, 119, 204, 0.2));

  border-radius: 10px;

  box-shadow:
    0 0 12px rgba(0, 119, 204, 0.25);
}

/* heading color same as your current style */
.infra-section .section-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ff6b00;
}

.infra-section .text h2 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.5px;

  background: linear-gradient(90deg, #0b2c5f, #0077cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.infra-section .text p {
  font-size: 16px;
  line-height: 1.85;
  color: #5a6675;
  max-width: 520px;
  margin-bottom: 24px;
}

.infra-section .text p strong {
  color: #0b2c5f;
  font-weight: 700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .infra-section .grid-2,
  .infra-section .container .grid-2 {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 55px;
  }

  .infra-section .section-img,
  .infra-section .section-img img {
    min-height: 470px;
    height: 470px;
  }

  .infra-section .text h2 {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  .infra-section {
    padding: 95px 0;
  }

  .infra-section .grid-2,
  .infra-section .container .grid-2 {
    gap: 45px;
  }

  .infra-section .section-img,
  .infra-section .section-img img {
    min-height: 430px;
    height: 430px;
  }

  .infra-section .text h2 {
    font-size: 36px;
  }

  .infra-section .text p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .infra-section {
    padding: 75px 0;
  }

  .infra-section .grid-2,
  .infra-section .container .grid-2 {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .infra-section .grid-2.reverse .text {
    order: 1;
  }

  .infra-section .grid-2.reverse .section-img {
    order: 2;
  }

  .infra-section .text {
    padding-left: 0;
    text-align: center;
    margin: auto;
  }

  .infra-section .text::before {
    display: none;
  }

  .infra-section .text h2 {
    font-size: 32px;
  }

  .infra-section .text p {
    margin-left: auto;
    margin-right: auto;
    font-size: 14.5px;
  }

  .infra-section .section-img,
  .infra-section .section-img img {
    min-height: 360px;
    height: 360px;
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .infra-section {
    padding: 60px 0;
  }

  .infra-section .text h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .infra-section .section-label {
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .infra-section .text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .infra-section .section-img,
  .infra-section .section-img img {
    min-height: 280px;
    height: 280px;
    border-radius: 18px;
  }

  .infra-section .section-img::before,
  .infra-section .section-img::after {
    display: none;
  }
}

@media (max-width: 360px) {
  .infra-section .text h2 {
    font-size: 22px;
  }

  .infra-section .text p {
    font-size: 13.5px;
  }
}



/* ================= QUALITY SECTION (LIGHT PREMIUM TRUST) ================= */
.quality-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;

  /* smooth continuation from infra */
  background: linear-gradient(180deg,
      #f8f9fb 0%,
      #f3e7dc 50%,
      #ffffff 100%);
}

/* 🟠 warm trust glow */
.quality-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 380px;
  height: 380px;

  background: radial-gradient(circle,
      rgba(255, 122, 0, 0.12),
      transparent 70%);

  filter: blur(120px);
}

/* 🔵 brand trust glow */
.quality-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 380px;
  height: 380px;

  background: radial-gradient(circle,
      rgba(0, 119, 204, 0.10),
      transparent 70%);

  filter: blur(120px);
}

/* ================= HEADER ================= */
.quality-header {
  text-align: center;
  margin-bottom: 70px;
}

.quality-header h2 {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 15px;

  background: linear-gradient(90deg, #0b2c5f, #0077cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quality-header p {
  font-size: 17px;
  color: #6b5a4a;
}

/* ================= CARD ================= */
.quality-card {
  max-width: 900px;
  margin: auto;
  position: relative;
  width: 100%;
  padding: 50px;
  border-radius: 28px;

  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.5));

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.7);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

/* glow */
.quality-card::before {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: 40px;

  background: radial-gradient(circle,
      rgba(0, 119, 204, 0.08),
      transparent 70%);

  filter: blur(60px);
  z-index: -1;
}

/* ================= TEXT ================= */
.quality-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #4e5b6b;
  text-align: center;
}

.quality-card strong {
  color: #0b2c5f;
}

/* ================= HOVER ================= */
.quality-card:hover {
  transform: translateY(-6px);
}

@media (max-width: 1024px) {
  .quality-section {
    padding: 90px 0;
  }

  .quality-header h2 {
    font-size: 36px;
  }

  .quality-header p {
    font-size: 16px;
  }

  .quality-card {
    padding: 40px;
    border-radius: 24px;
  }

  .quality-card p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .quality-section {
    padding: 80px 0;
  }

  .quality-header {
    margin-bottom: 50px;
  }

  .quality-header h2 {
    font-size: 30px;
  }

  .quality-header p {
    font-size: 15px;
  }

  .quality-card {
    padding: 30px 25px;
    border-radius: 20px;
  }

  .quality-card p {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .quality-section {
    padding: 60px 0;
  }

  .about-page .quality-section .container {
    width: 92%;
  }

  .quality-header h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .quality-header p {
    font-size: 14px;
  }

  .quality-card {
    padding: 24px 20px;
    border-radius: 16px;

    /* reduce heavy blur for performance */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .quality-card p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* remove extra glow for clean mobile look */
  .quality-card::before {
    display: none;
  }
}

@media (max-width: 360px) {
  .quality-header h2 {
    font-size: 22px;
  }

  .quality-card {
    padding: 20px 16px;
  }

  .quality-card p {
    font-size: 13.5px;
  }
}

/* ================= PACKAGING SECTION ================= */
.packaging-section {
  padding: 130px 0;
  position: relative;
  overflow: hidden;

  background: linear-gradient(180deg,
      #f6f9fc 0%,
      #eef3f8 50%,
      #ffffff 100%);
}

/* 🔵 tech glow */
.packaging-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;

  background: radial-gradient(circle,
      rgba(0, 119, 204, 0.15),
      transparent 70%);

  filter: blur(120px);
}

/* 🟠 food glow */
.packaging-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 380px;
  height: 380px;

  background: radial-gradient(circle,
      rgba(255, 122, 0, 0.12),
      transparent 70%);

  filter: blur(120px);
}

/* ================= HEADER ================= */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 10px;

  background: linear-gradient(90deg, #0b2c5f, #0077cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 17px;
  color: #6b5a4a;
}

.section-header p a {
  color: #ff7a00;
  font-weight: 600;
  text-decoration: none;
}

.section-header p a:hover {
  text-decoration: underline;
}

/* ================= GRID ================= */
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.pack-card {
  padding: 40px 30px;
  border-radius: 22px;

  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.6));

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.7);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.06);

  transition: all 0.4s ease;

  position: relative;
  overflow: hidden;
}

/* accent line */
.pack-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;

  background: linear-gradient(90deg, #ff7a00, #0077cc);
}

/* hover */
.pack-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.12);
}

/* ================= ICON ================= */
.packaging-section .icon {
  font-size: 28px;
  color: #0b2c5f;
  margin-bottom: 15px;
}

/* ================= TEXT ================= */
.pack-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b2c5f;
}

.pack-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6675;
}

/* ================= RESPONSIVE ================= */

/* 📱 1024px ↓ */
@media (max-width: 1024px) {
  .packaging-section {
    padding: 100px 0;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .section-header p {
    font-size: 16px;
  }

  .packaging-grid {
    gap: 25px;
  }

  .pack-card {
    padding: 32px 24px;
  }
}

/* 📱 768px ↓ */
@media (max-width: 768px) {
  .packaging-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .pack-card h3 {
    font-size: 18px;
  }

  .pack-card p {
    font-size: 14px;
  }
}

/* 📱 480px ↓ */
@media (max-width: 480px) {
  .packaging-section {
    padding: 60px 0;
  }

  .about-page .packaging-section .container {
    width: 92%;
  }

  .packaging-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-header h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 14px;
  }

  .pack-card {
    padding: 24px 20px;
    border-radius: 16px;

    /* lighter blur for mobile performance */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .pack-card p {
    font-size: 13.5px;
  }

  /* remove heavy glow for clean mobile */
  .packaging-section::before,
  .packaging-section::after {
    display: none;
  }
}

/* 📱 360px ↓ */
@media (max-width: 360px) {
  .section-header h2 {
    font-size: 22px;
  }

  .pack-card {
    padding: 20px 16px;
  }
}

/* ================= EXPORT LOGISTICS SECTION ================= */
.export-logistics-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;

  background: linear-gradient(180deg,
      #f6f9fc 0%,
      #eef3f8 50%,
      #ffffff 100%);
}

/* 🌍 glow */
.export-logistics-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 119, 204, 0.15), transparent 70%);
  filter: blur(140px);
}

/* 🟠 glow */
.export-logistics-section::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.12), transparent 70%);
  filter: blur(140px);
}

/* ================= GRID ================= */
.export-logistics-section .about-page .grid-2 {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* ================= TEXT ================= */
.export-logistics-section .text h2 {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #0b2c5f, #0077cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.export-logistics-section .text h2 span {
  background: linear-gradient(90deg, #ff7a00, #ff3b3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.export-logistics-section .text p {
  font-size: 16px;
  line-height: 1.9;
  color: #5a6675;
  margin-bottom: 15px;
}

/* ================= IMAGE ================= */
.export-logistics-section .section-img {
  position: relative;
  isolation: isolate;
  display: block;
  /* ✅ prevents inline issues */
  width: 100%;
  /* ✅ important */
  max-width: 100%;


}

/* glass frame */
.export-logistics-section .section-img::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 32px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 1;
}

/* glow */
.export-logistics-section .section-img::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(0, 119, 204, 0.12), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

/* image */
.export-logistics-section .section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  z-index: 2;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 60px 140px rgba(0, 0, 0, 0.08);

  transition: transform 0.5s ease;
}

.export-logistics-section .section-img:hover img {
  transform: scale(1.05);
}

/* ================= HIGHLIGHT ================= */
.export-logistics-section .highlight-box {
  margin-top: 25px;
  padding: 18px 22px;
  border-radius: 10px;

  background: linear-gradient(90deg,
      rgba(255, 122, 0, 0.08),
      rgba(0, 119, 204, 0.06));

  border-left: 5px solid #ff7a00;
  font-size: 14.5px;
  color: #2b3b4f;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */

/* 📱 1024px ↓ */
@media (max-width: 1024px) {
  .export-logistics-section {
    padding: 100px 0;
  }

  .export-logistics-section .about-page .grid-2 {
    gap: 50px;
  }

  .export-logistics-section .text h2 {
    font-size: 36px;
  }

  .export-logistics-section .text p {
    font-size: 15px;
  }
}

/* 📱 768px ↓ (STACK LAYOUT) */
@media (max-width: 768px) {
  .export-logistics-section .about-page .grid-2 {
    flex-direction: column;
    gap: 40px;
  }

  .export-logistics-section {
    padding: 80px 0;
  }

  .export-logistics-section .text {
    text-align: center;
  }

  .export-logistics-section .text h2 {
    font-size: 30px;
  }

  .export-logistics-section .text p {
    font-size: 14.5px;
  }
}

/* 📱 480px ↓ */
@media (max-width: 480px) {
  .export-logistics-section {
    padding: 60px 0;
  }

  .about-page .export-logistics-section .container {
    width: 92%;
  }

  .export-logistics-section .text h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .export-logistics-section .text p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* simplify heavy effects */
  .export-logistics-section .section-img::before,
  .export-logistics-section .section-img::after {
    display: none;
  }

  .export-logistics-section .section-img img {
    border-radius: 16px;
    box-shadow:
      0 15px 40px rgba(0, 0, 0, 0.12);
  }

  .export-logistics-section .highlight-box {
    font-size: 13.5px;
    padding: 14px 16px;
  }
}

/* 📱 360px ↓ */
@media (max-width: 360px) {
  .export-logistics-section .text h2 {
    font-size: 22px;
  }

  .export-logistics-section .highlight-box {
    font-size: 13px;
  }
}

/* ================= GLOBAL VISION (LIGHT PREMIUM) ================= */
.global-vision-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;

  /* ☀️ light premium base */
  background: linear-gradient(180deg,
      #f7fafc 0%,
      #eef4f9 50%,
      #e9f1f7 100%);
}

/* 🌍 soft glow (light version) */
.global-vision-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 25% 30%, rgba(0, 119, 204, 0.12), transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 122, 0, 0.08), transparent 50%);

  filter: blur(80px);
  z-index: 0;
}

/* subtle clean grid */
.global-vision-section::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image: repeating-radial-gradient(circle,
      rgba(0, 0, 0, 0.03) 0,
      rgba(0, 0, 0, 0.03) 1px,
      transparent 1px,
      transparent 8px);

  opacity: 0.18;
  z-index: 0;
}

/* ================= HEADER ================= */
.global-vision-section .center h2 {
  font-size: 46px;
  font-weight: 900;

  /* clean premium blue */
  background: linear-gradient(90deg, #0b2c5f, #0077cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

/* subtext */
.global-vision-section .subtext {
  font-size: 16px;
  color: #5a6b7a;
}

/* label */
.global-vision-section .section-label {
  color: #ff7a00;
  letter-spacing: 2px;
}

/* ================= TEXT ================= */
.wide-text {
  max-width: 900px;
  margin: 60px auto 0;
  text-align: center;
  padding: 0 15px;
}

/* paragraph (light theme readable gray) */
.wide-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #4a5a68;
  margin-bottom: 18px;
}

/* ================= HIGHLIGHT ================= */
.global-highlight {
  margin-top: 35px;
  padding: 20px 25px;

  display: inline-block;

  /* soft light glass effect */
  background: linear-gradient(90deg,
      rgba(0, 119, 204, 0.08),
      rgba(255, 122, 0, 0.06));

  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;

  font-size: 14.5px;
  font-weight: 500;
  color: #1f2d3a;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
  .global-vision-section {
    padding: 100px 0;
  }

  .global-vision-section .center h2 {
    font-size: 36px;
  }

  .global-vision-section .subtext {
    font-size: 15px;
  }

  .wide-text {
    margin-top: 40px;
    max-width: 700px;
  }

  .wide-text p {
    font-size: 15px;
  }

  .global-highlight {
    padding: 18px 22px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .global-vision-section {
    padding: 80px 0;
  }

  .global-vision-section .center h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .global-vision-section .subtext {
    font-size: 14.5px;
  }

  .wide-text {
    margin-top: 35px;
    padding: 0 10px;
  }

  .wide-text p {
    font-size: 14.5px;
    line-height: 1.8;
  }

  .global-highlight {
    margin-top: 25px;
    padding: 16px 20px;
    font-size: 13.8px;
  }
}

@media (max-width: 480px) {
  .global-vision-section {
    padding: 60px 0;
  }

  .about-page .global-vision-section .container {
    width: min(90%, 1200px);
    margin: auto;
    position: relative;
    z-index: 2;
  }

  .global-vision-section .center h2 {
    font-size: 26px;
  }

  .global-vision-section .subtext {
    font-size: 14px;
  }

  .wide-text {
    margin-top: 30px;
  }

  .wide-text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .global-highlight {
    display: block;
    width: 100%;
    text-align: center;

    padding: 14px 16px;
    font-size: 13.5px;
    border-radius: 12px;
  }

  /* reduce heavy background effects */
  .global-vision-section::before,
  .global-vision-section::after {
    opacity: 0.4;
  }
}

@media (max-width: 360px) {
  .global-vision-section .center h2 {
    font-size: 22px;
  }

  .wide-text p {
    font-size: 13.5px;
  }

  .global-highlight {
    font-size: 13px;
  }
}