:root {
  --blue: #0053a6;
  --dark-blue: #06213f;
  --orange: #f36c0a;
  --white: #ffffff;
  --light: #f5f7fa;
  --gray: #697386;
  --dark: #101828;
  --shadow: 0 18px 50px rgba(6, 33, 63, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background: var(--white);
}

a {
  text-decoration: none;
}

.capp-navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(6, 33, 63, 0.08);
  padding: 14px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--dark-blue);
}

.navbar-brand img {
  height: 42px;
  width: auto;
}

.nav-link {
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 7px;
}

.nav-link:hover {
  color: var(--orange);
}

.nav-btn,
.btn-main {
  background: linear-gradient(135deg, var(--orange), #ff8a22);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
  border: none;
  box-shadow: 0 12px 25px rgba(243, 108, 10, 0.28);
}

.nav-btn:hover,
.btn-main:hover {
  background: var(--dark-blue);
  color: var(--white);
}

.btn-outline-main {
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
}

.btn-outline-main:hover {
  background: var(--blue);
  color: var(--white);
}

.hero-section {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at top right, rgba(243, 108, 10, 0.18), transparent 30%),
    linear-gradient(135deg, #f8fbff, #ffffff);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaf3ff;
  color: var(--blue);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero-section h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  color: var(--dark-blue);
  margin-bottom: 22px;
}

.hero-section p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.8;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.hero-stats div {
  background: var(--white);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
}

.hero-stats span {
  color: var(--gray);
  font-weight: 700;
  font-size: 13px;
}

.hero-image-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  right: 28px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.floating-card i {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.floating-card strong {
  display: block;
  color: var(--dark-blue);
  font-weight: 900;
}

.floating-card span {
  color: var(--gray);
  font-size: 14px;
}

.section-padding {
  padding: 90px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading span,
.cert-box span,
.contact-info span {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
}

.section-heading h2,
.cert-box h2,
.contact-info h2 {
  color: var(--dark-blue);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  margin: 12px 0 16px;
}

.section-heading p,
.cert-box p,
.contact-info p {
  color: var(--gray);
  line-height: 1.8;
}

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

.image-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-grid img:nth-child(2) {
  margin-top: 48px;
}

.mission-section {
  padding: 80px 0;
  background: var(--dark-blue);
}

.mission-card {
  background: var(--white);
  border-radius: 30px;
  padding: 40px;
  height: 100%;
  box-shadow: var(--shadow);
}

.mission-card i,
.value-card i,
.service-card i {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf3ff;
  color: var(--blue);
  font-size: 30px;
  margin-bottom: 24px;
}

.mission-card h3 {
  color: var(--dark-blue);
  font-weight: 900;
}

.mission-card p {
  color: var(--gray);
  line-height: 1.8;
}

.orange-card {
  border-top: 6px solid var(--orange);
}

.values-section {
  background: var(--light);
}

.value-card,
.service-card,
.contact-form,
.contact-info {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6, 33, 63, 0.06);
}

.value-card h5,
.service-card h5 {
  color: var(--dark-blue);
  font-weight: 900;
}

.value-card p,
.service-card p {
  color: var(--gray);
  margin: 0;
}

.operations-section {
  background: var(--white);
}

.service-card {
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.plants-section {
  background:
    linear-gradient(135deg, rgba(6, 33, 63, 0.92), rgba(0, 83, 166, 0.9)),
    url("https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.plants-section .section-heading h2,
.plants-section .section-heading p {
  color: var(--white);
}

.plant-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.plant-list div {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 18px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.certification-section img {
  width: 100%;
  height: 200px; /* adjust depending on your design */
  object-fit: contain; /* this is the key */
  object-position: center;
  display: block;
}

.certification-section {
  background: var(--light);
}

.cert-box {
  background: var(--white);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.cert-box img {
  width: 100%;
  height: 420px;
  /* object-fit: cover; */
  border-radius: 26px;
}

.csr-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.csr-gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.csr-gallery img:first-child {
  height: 360px;
  grid-row: auto;
}

@media (max-width: 991px) {
  .csr-gallery {
    grid-template-columns: 1fr;
  }

  .csr-gallery img,
  .csr-gallery img:first-child {
    height: 320px;
  }
}
.contact-section {
  background: var(--light);
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.contact-item i {
  color: var(--orange);
  font-size: 24px;
}

.form-control {
  border-radius: 16px;
  padding: 15px 18px;
  border: 1px solid #d8dee8;
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 83, 166, 0.12);
}

.footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 38px 0;
}

.footer h5 {
  font-weight: 900;
}

.footer p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 130px;
  }

  .hero-image-card img {
    height: 520px;
  }

  .csr-gallery {
    grid-template-columns: 1fr;
  }

  .csr-gallery img,
  .csr-gallery img:first-child {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .navbar-brand span {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-image-card img {
    height: 430px;
  }

  .image-grid,
  .plant-list {
    grid-template-columns: 1fr;
  }

  .image-grid img:nth-child(2) {
    margin-top: 0;
  }

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

/* Home */

.premium-hero-section {
  position: relative;
  overflow: hidden;
  padding: 155px 0 100px;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(243, 108, 10, 0.22), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 83, 166, 0.35), transparent 32%),
    linear-gradient(135deg, #06213f 0%, #003b78 54%, #06213f 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.premium-hero-section::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -120px;
  top: 90px;
  border-radius: 50%;
  background: rgba(243, 108, 10, 0.18);
  filter: blur(20px);
}

.premium-hero-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.14);
  filter: blur(18px);
}

.premium-hero-content,
.premium-hero-image {
  position: relative;
  z-index: 1;
  animation: heroFadeUp 0.9s ease both;
}

.premium-hero-image {
  animation-delay: 0.15s;
}

.premium-hero-section .hero-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.premium-hero-section .hero-badge i {
  color: var(--orange);
}

.premium-hero-section h3 {
  color: #ffffff;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.premium-hero-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.85;
  max-width: 630px;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: var(--dark-blue);
}

.premium-hero-stats div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  transition: 0.35s ease;
}

.premium-hero-stats div:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.16);
}

.premium-hero-stats strong {
  color: #ffffff;
}

.premium-hero-stats span {
  color: rgba(255, 255, 255, 0.72);
}

.premium-hero-image {
  border-radius: 38px;
  overflow: hidden;
  min-height: 620px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.premium-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 33, 63, 0.05), rgba(6, 33, 63, 0.45));
}

.premium-hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, var(--orange), #ffc107);
}

.premium-hero-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.premium-hero-image:hover img {
  transform: scale(1.06);
}

.hero-image-label {
  position: absolute;
  z-index: 3;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.hero-image-label i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), #ff8a22);
  font-size: 26px;
}

.hero-image-label strong {
  display: block;
  color: var(--dark-blue);
  font-weight: 900;
}

.hero-image-label span {
  color: var(--gray);
  font-size: 14px;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .premium-hero-section {
    padding: 135px 0 85px;
  }

  .premium-hero-image,
  .premium-hero-image img {
    min-height: auto;
    height: 520px;
  }
}

@media (max-width: 575px) {
  .premium-hero-section h1 {
    font-size: 40px;
  }

  .premium-hero-image,
  .premium-hero-image img {
    height: 430px;
  }

  .hero-image-label {
    left: 18px;
    right: 18px;
    bottom: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Vision and Mission */

.vision-mission-section {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(6, 33, 63, 0.97), rgba(0, 83, 166, 0.92)),
    url("https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.vision-mission-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  background: #ffffff;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.vm-image {
  position: relative;
  min-height: 320px;
}


/* 🔵 BLUE LINE (first / outer) */
.vm-image::before {
  content: "";
  position: absolute;
  top: 0;
  right: 9px;
  width: 10px;
  height: 100%;
  background: var(--blue);
}

/* 🟠 ORANGE LINE (second / inner) */
.vm-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 9px;
  height: 100%;
  background: var(--orange);
}

.vm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vm-content {
  padding: 70px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vm-card span {
  color: #f36c0a;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 13px;
}

.vm-card h2 {
  color: #0053a6;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  margin: 12px 0 18px;
}

.vm-card p {
  color: #697386;
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.vm-divider {
  height: 1px;
  background: linear-gradient(90deg, #f36c0a, rgba(0, 83, 166, 0.15));
  margin: 42px 0;
}


/* Core Values
.premium-values-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(243, 108, 10, 0.14), transparent 28%),
    linear-gradient(135deg, #f7faff 0%, #ffffff 45%, #eef5ff 100%);
}

.premium-values-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 83, 166, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 83, 166, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.values-header {
  position: relative;
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
  z-index: 1;
}

.values-header span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 13px;
  margin-bottom: 14px;
}

.values-header span::before,
.values-header span::after {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.values-header h2 {
  color: var(--dark-blue);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
}

.values-header p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}

.values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.premium-value-card {
  position: relative;
  min-height: 250px;
  padding: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 83, 166, 0.1);
  border-radius: 30px;
  box-shadow: 0 18px 45px rgba(6, 33, 63, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  animation: valueFadeUp 0.7s ease both;
}

.premium-value-card:nth-child(2) { animation-delay: 0.08s; }
.premium-value-card:nth-child(3) { animation-delay: 0.16s; }
.premium-value-card:nth-child(4) { animation-delay: 0.24s; }
.premium-value-card:nth-child(5) { animation-delay: 0.32s; }
.premium-value-card:nth-child(6) { animation-delay: 0.4s; }

.premium-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 83, 166, 0.45), rgba(243, 108, 10, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.35s ease;
}

.premium-value-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -55px;
  bottom: -55px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 108, 10, 0.16), transparent 70%);
  transition: 0.35s ease;
}

.premium-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(6, 33, 63, 0.18);
  border-color: rgba(243, 108, 10, 0.24);
}

.premium-value-card:hover::before {
  opacity: 1;
}

.premium-value-card:hover::after {
  transform: scale(1.25);
}

.value-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(0, 83, 166, 0.08);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.value-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--dark-blue));
  color: var(--white);
  font-size: 30px;
  margin-bottom: 28px;
  box-shadow: 0 14px 28px rgba(0, 83, 166, 0.22);
  transition: 0.35s ease;
}

.premium-value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--orange), #ff8a22);
  transform: rotate(-4deg) scale(1.06);
}

.premium-value-card h5 {
  position: relative;
  color: var(--dark-blue);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.premium-value-card p {
  position: relative;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

@keyframes valueFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-values-section {
    padding: 90px 0;
  }
}

@media (max-width: 575px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .premium-value-card {
    min-height: auto;
    padding: 30px;
  }

  .values-header h2 {
    font-size: 34px;
  }
} */

/* Core Values */

.premium-values-section {
  position: relative;
  min-height: 980px;
  padding: 0 0 90px;
  overflow: hidden;
  background:
    linear-gradient(rgba(138, 213, 228, 0.78), rgba(138, 213, 228, 0.78)),
    url("https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.premium-values-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(121, 205, 224, 0.28);
  pointer-events: none;
}

.values-title-band {
  position: relative;
  z-index: 1;
  height: 116px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(
    to bottom,
    #0053a6 0,
    #0053a6 58px,
    #f36c0a 58px,
    #f36c0a 104px,
    transparent 104px
  );
}

.values-title-band h2 {
  color: #ffffff;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  margin: 12px 0 0;
  text-align: center;
}

.values-overlay-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 105px auto 0;
  text-align: center;
}

.values-intro {
  color: #ffffff;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 115px;
}

.values-list {
  display: grid;
  gap: 28px;
}

.value-row h3 {
  color: #0053a6;
  font-size: clamp(38px, 5.2vw, 66px);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.value-row p {
  color: #ffffff;
  font-size: clamp(22px, 2.7vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .premium-values-section {
    min-height: auto;
    padding-bottom: 70px;
  }

  .values-title-band {
    height: 92px;
    background: linear-gradient(
      to bottom,
      #0053a6 0,
      #0053a6 46px,
      #f36c0a 46px,
      #f36c0a 82px,
      transparent 82px
    );
  }

  .values-overlay-content {
    margin-top: 70px;
  }

  .values-intro {
    margin-bottom: 70px;
  }

  .values-list {
    gap: 24px;
  }
}


/* Social Responsibility  */

.premium-csr-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(243, 108, 10, 0.14), transparent 30%),
    linear-gradient(135deg, #f7fff8 0%, #ffffff 45%, #eefaf0 100%);
}

.premium-csr-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 139, 60, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 139, 60, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.csr-header {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.csr-header span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f36c0a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.csr-header span::before,
.csr-header span::after {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2e8b3c, #f36c0a, #ffc107);
}

.csr-header h2 {
  color: #06213f;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
}

.csr-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #697386;
  font-size: 18px;
  line-height: 1.8;
}

.premium-csr-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 290px;
  gap: 22px;
}

.csr-item {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 22px 55px rgba(6, 33, 63, 0.16);
  animation: csrFadeUp 0.8s ease both;
}

.csr-item:nth-child(2) { animation-delay: 0.1s; }
.csr-item:nth-child(3) { animation-delay: 0.2s; }
.csr-item:nth-child(4) { animation-delay: 0.3s; }

.csr-large {
  grid-row: span 2;
}

.csr-wide {
  grid-column: span 2;
}

.csr-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.csr-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 33, 63, 0.05), rgba(6, 33, 63, 0.78)),
    linear-gradient(135deg, rgba(46, 139, 60, 0.45), rgba(243, 108, 10, 0.18));
  transition: 0.45s ease;
}

.csr-item::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  opacity: 0;
  transform: scale(0.96);
  transition: 0.45s ease;
}

.csr-overlay {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  z-index: 3;
  color: #ffffff;
  transform: translateY(10px);
  transition: 0.45s ease;
}

.csr-overlay span {
  display: inline-block;
  color: #ffc107;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.csr-overlay h4 {
  max-width: 520px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.18;
  margin: 0;
}

.csr-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.05);
}

.csr-item:hover::before {
  background:
    linear-gradient(180deg, rgba(6, 33, 63, 0.1), rgba(6, 33, 63, 0.86)),
    linear-gradient(135deg, rgba(46, 139, 60, 0.62), rgba(243, 108, 10, 0.28));
}

.csr-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.csr-item:hover .csr-overlay {
  transform: translateY(0);
}

@keyframes csrFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .premium-csr-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 280px;
  }

  .csr-large,
  .csr-wide {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 575px) {
  .premium-csr-section {
    padding: 80px 0;
  }

  .premium-csr-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .csr-large,
  .csr-wide {
    grid-column: auto;
  }

  .csr-overlay {
    left: 24px;
    right: 24px;
  }

  .csr-overlay h4 {
    font-size: 21px;
  }
}

/* Contact Us */

.premium-contact-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(0, 83, 166, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(243, 108, 10, 0.15), transparent 30%),
    linear-gradient(135deg, #f7faff 0%, #ffffff 45%, #eef5ff 100%);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-panel,
.contact-form-card {
  border-radius: 34px;
  box-shadow: 0 24px 65px rgba(6, 33, 63, 0.14);
  animation: contactFadeUp 0.8s ease both;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 48px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 33, 63, 0.96), rgba(0, 83, 166, 0.92)),
    url("https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.contact-panel span,
.form-heading span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-panel h2 {
  position: relative;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  margin: 16px 0;
  color: #ffffff;
}

.contact-panel > p {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.contact-detail-list {
  position: relative;
  display: grid;
  gap: 18px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  transition: 0.35s ease;
}

.contact-detail:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.16);
}

.contact-detail i {
  min-width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--orange);
  color: #ffffff;
  font-size: 23px;
}

.contact-detail strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-detail p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  margin: 0;
}

.contact-form-card {
  padding: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 83, 166, 0.1);
  backdrop-filter: blur(14px);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading h3 {
  color: var(--dark-blue);
  font-size: 34px;
  font-weight: 900;
  margin: 8px 0 0;
}

.premium-contact-form label {
  color: var(--dark-blue);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.premium-contact-form .form-control {
  border-radius: 18px;
  padding: 15px 18px;
  border: 1px solid #d8dee8;
  background: #ffffff;
}

.premium-contact-form .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 108, 10, 0.13);
}

.premium-submit-btn {
  margin-top: 8px;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 900;
  color: #ffffff;
  border: none;
  background: linear-gradient(135deg, var(--orange), #ff8a22);
  box-shadow: 0 14px 28px rgba(243, 108, 10, 0.28);
}

.premium-submit-btn:hover {
  background: linear-gradient(135deg, var(--dark-blue), var(--blue));
  color: #ffffff;
}

.premium-submit-btn i {
  margin-left: 8px;
}

.contact-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  margin: 16px 0;
  color: #ffffff; /* keep white since it's on dark bg */
}

@keyframes contactFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-card {
  animation-delay: 0.12s;
}

@media (max-width: 991px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .premium-contact-section {
    padding: 90px 0;
  }
}

@media (max-width: 575px) {
  .contact-panel,
  .contact-form-card {
    padding: 32px 24px;
    border-radius: 28px;
  }

  .contact-detail {
    flex-direction: column;
  }
}


/* Business Overview */

.premium-business-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(243, 108, 10, 0.16), transparent 28%),
    linear-gradient(135deg, #f7faff 0%, #ffffff 50%, #eef5ff 100%);
}

.business-overview-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(6, 33, 63, 0.94), rgba(0, 83, 166, 0.86)),
    url("assets/images/business-overview.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 75px rgba(6, 33, 63, 0.22);
}

.business-label {
  min-height: 620px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.business-label span,
.business-label strong {
  display: inline-block;
  padding: 8px 18px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.business-label span {
  background: var(--blue);
}

.business-label strong {
  background: var(--orange);
}

.business-content {
  position: relative;
  padding: 70px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.section-kicker {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.business-content h2 {
  color: var(--dark-blue);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  margin: 12px 0 26px;
}

.business-content p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.business-content strong {
  color: var(--dark-blue);
}

.business-highlight {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 83, 166, 0.08), rgba(243, 108, 10, 0.08));
  border: 1px solid rgba(0, 83, 166, 0.12);
}

.business-highlight i {
  min-width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), #ff8a22);
  color: #ffffff;
  font-size: 24px;
}

.business-highlight p {
  margin: 0;
}

@media (max-width: 991px) {
  .business-overview-card {
    grid-template-columns: 1fr;
  }

  .business-label {
    min-height: 260px;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .business-content {
    padding: 45px 34px;
  }
}

@media (max-width: 575px) {
  .premium-business-section {
    padding: 80px 0;
  }

  .business-content {
    padding: 34px 24px;
  }

  .business-highlight {
    flex-direction: column;
  }
}


/* Footer */

.premium-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(243, 108, 10, 0.18), transparent 28%),
    linear-gradient(135deg, #06213f 0%, #003b78 55%, #06213f 100%);
}

.premium-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.85fr 1.25fr;
  gap: 38px;
  padding-bottom: 44px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 18px;
  padding: 8px;
}

.footer-logo span {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.footer-brand p,
.footer-contact p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
}

.footer-brand p {
  max-width: 390px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: 0.35s ease;
}

.footer-socials a:hover {
  background: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(243, 108, 10, 0.3);
}

.footer-links h5,
.footer-contact h5 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 11px;
  font-weight: 600;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 12px;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.3s ease;
}

.footer-links a:hover::before {
  width: 7px;
}

.footer-contact {
  display: grid;
  gap: 15px;
}

.footer-contact > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact i {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), #ff8a22);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  transition: 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--orange);
}

@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .premium-footer {
    padding-top: 60px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom div {
    flex-direction: column;
    gap: 8px;
  }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), #ff8a22);
  box-shadow: 0 14px 30px rgba(243, 108, 10, 0.35);
  transition: 0.3s ease;
}

.back-to-top:hover {
  color: #ffffff;
  transform: translateY(-6px);
  background: linear-gradient(135deg, var(--dark-blue), var(--blue));
}

/* Contact Us */

.affiliates-section {
  padding: 90px 0;
  background: #ffffff;
}

.affiliates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}

.affiliate-logo-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  padding: 28px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.affiliate-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.affiliate-logo-card img {
  max-width: 100%;
  max-height: 75px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.3s ease;
}

.affiliate-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 991px) {
  .affiliates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .affiliates-grid {
    grid-template-columns: 1fr;
  }
}

/* Temporary */

.contact-info-card {
  padding: 48px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 83, 166, 0.1);
  box-shadow: 0 24px 65px rgba(6, 33, 63, 0.14);
  backdrop-filter: blur(14px);
  animation: contactFadeUp 0.8s ease both;
}

.info-card-header span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.info-card-header h3 {
  color: var(--dark-blue);
  font-size: 34px;
  font-weight: 900;
  margin: 10px 0 14px;
}

.info-card-header p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

.inquiry-checklist {
  display: grid;
  gap: 18px;
}

.inquiry-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: #f7faff;
  border: 1px solid rgba(0, 83, 166, 0.08);
}

.inquiry-item i {
  color: var(--orange);
  font-size: 24px;
  margin-top: 2px;
}

.inquiry-item strong {
  display: block;
  color: var(--dark-blue);
  font-weight: 900;
  margin-bottom: 4px;
}

.inquiry-item p {
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}

.quick-contact-box {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 83, 166, 0.08), rgba(243, 108, 10, 0.08));
  border: 1px solid rgba(0, 83, 166, 0.12);
}

.quick-contact-box h5 {
  color: var(--dark-blue);
  font-weight: 900;
  margin-bottom: 8px;
}

.quick-contact-box p {
  color: var(--gray);
  margin-bottom: 18px;
}

@media (max-width: 575px) {
  .contact-info-card {
    padding: 32px 24px;
    border-radius: 28px;
  }

  .info-card-header h3 {
    font-size: 28px;
  }

  .inquiry-item {
    flex-direction: column;
  }
}

/* Machines */

.equipment-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(243, 108, 10, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7faff 48%, #eef5ff 100%);
}

.equipment-header {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.equipment-header span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.equipment-header h2 {
  color: var(--dark-blue);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  margin: 14px 0 18px;
}

.equipment-header p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 auto;
}

.equipment-highlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.equipment-highlight > div {
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 83, 166, 0.1);
  box-shadow: 0 18px 45px rgba(6, 33, 63, 0.1);
}

.equipment-highlight i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), #ff8a22);
  font-size: 26px;
  margin-bottom: 18px;
}

.equipment-highlight h4 {
  color: var(--dark-blue);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.equipment-highlight p {
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.equipment-card {
  background: #ffffff;
  border: 1px solid rgba(6, 33, 63, 0.08);
  border-radius: 26px;
  padding: 18px;
  min-height: 230px;
  box-shadow: 0 16px 40px rgba(6, 33, 63, 0.1);
  transition: 0.35s ease;
}

.equipment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(6, 33, 63, 0.16);
}

.equipment-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 14px;
}

.equipment-card h5 {
  color: var(--dark-blue);
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  margin: 0;
}

@media (max-width: 1199px) {
  .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .equipment-highlight,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .equipment-section {
    padding: 80px 0;
  }
}