/* --- Base Variables & Reset --- */
:root {
  --primary-blue: #0B5ED7;
  /* Honeywell/Siemens Blue */
  --primary-hover: #0A58CA;
  /* Darker Blue */
  --accent-cyan: #00C2FF;
  /* Tech Cyan */
  --dark-bg: #071B2F;
  /* Deep Slate Industrial Dark Blue */
  --dark-blue: #071B2F;
  /* Deep Slate */
  --text-main: #1E293B;
  /* Slate (800) */
  --text-muted: #64748B;
  /* Slate (500) */
  --bg-light: #F5F8FC;
  /* Slate Light */
  --bg-white: #ffffff;
  --white: #ffffff;
  --primary-gradient: linear-gradient(135deg, #0B5ED7 0%, #00C2FF 100%);
  --radius-lg: 20px;
  --shadow-soft: 0 10px 30px rgba(7, 27, 47, 0.05);
  --shadow-medium: 0 15px 40px rgba(7, 27, 47, 0.08);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.breadcrumbs {
  font-family: 'Playfair Display', Georgia, serif;
}

body {
  overflow-x: clip;
  background-color: var(--bg-white);
  color: var(--text-main);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Global Scroll Animation --- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   ABOUT HERO — IMMERSIVE SPLIT DESIGN
   ====================================================== */
.about-section {
  overflow: visible;
  background: transparent;
  padding-top: 145px; /* Comfortable gap below the navbar */
  padding-bottom: 60px;
}

/* Card wrapper matching homepage style */
.about-hero-card {
  background: #9babb4;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 20px 60px rgba(7,27,47,0.12);
  padding: 32px 42px; /* Slightly increased padding for better balance */
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

/* ── Left: Image Panel ── */
.about-img-panel {
  position: relative;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-img {
  width: 100%;
  height: auto;
  max-height: 395px; /* Slightly increased height */
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transition: transform 0.5s ease;
}

.about-img-panel:hover .about-hero-img {
  transform: scale(1.03);
}

/* Hide glass badge — no longer needed with transparent PNG */
.about-glass-badge {
  display: none;
}

/* Dark cinematic gradient overlay */
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(7, 27, 47, 0.1) 0%,
      rgba(7, 27, 47, 0.6) 60%,
      rgba(7, 27, 47, 0.92) 100%);
  z-index: 1;
  border-radius: inherit;
}

/* Diagonal SVG-style edge that bleeds into the right panel */
.about-img-edge {
  display: none;
}

/* Glassmorphism badge bottom-left */
.about-glass-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 16px 24px;
  min-width: 155px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.badge-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #ffffff 0%, #00C2FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.about-content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 36px 20px 40px;
  background: transparent;
  position: relative;
}

/* Eyebrow */
.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-blue);
  flex-shrink: 0;
  animation: eyebrow-pulse 2.4s ease-in-out infinite;
}

@keyframes eyebrow-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(11, 94, 215, 0.55);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(11, 94, 215, 0);
  }
}

.about-eyebrow span:last-child {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--primary-blue);
}

.about-main-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.95rem; /* Slightly larger heading size */
  font-weight: 800;
  color: var(--dark-bg);
  line-height: 1.22;
  margin-bottom: 14px;
}

.heading-gradient {
  background: linear-gradient(120deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Stats Bar */
.about-stats-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 18px; /* Slightly more spacing */
  margin-bottom: 15px;
  box-shadow: 0 4px 24px rgba(7, 27, 47, 0.07);
  border: 1px solid rgba(11, 94, 215, 0.1);
  gap: 0;
}

.astat {
  flex: 1;
  text-align: center;
}

.astat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem; /* Slightly larger numbers */
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 4px;
}

.astat span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.astat-divider {
  width: 1px;
  height: 36px;
  background: rgba(11, 94, 215, 0.14);
  flex-shrink: 0;
}

/* Description */
.about-desc-text {
  font-size: 0.88rem; /* Slightly larger readable text */
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 15px;
}

/* Feature Pills */
.about-feature-pills {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-feature-pills li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px; /* More comfortable padding */
  background: #ffffff;
  border-radius: 10px;
  font-size: 0.84rem; /* Slightly larger text */
  color: var(--text-main);
  font-weight: 500;
  border-left: 3px solid var(--primary-blue);
  box-shadow: 0 2px 10px rgba(7, 27, 47, 0.05);
  transition: transform 0.28s ease, border-left-color 0.28s ease, box-shadow 0.28s ease;
}

.about-feature-pills li:hover {
  transform: translateX(7px);
  border-left-color: var(--accent-cyan);
  box-shadow: 0 4px 18px rgba(11, 94, 215, 0.1);
}

.about-feature-pills li i {
  color: var(--primary-blue);
  font-size: 1rem;
  flex-shrink: 0;
  transition: color 0.28s ease;
}

.about-feature-pills li:hover i {
  color: var(--accent-cyan);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .about-content-panel {
    padding: 50px 40px 50px 55px;
  }

  .about-main-heading {
    font-size: 2rem;
  }
}

@media (max-width: 880px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 30px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .about-img-panel {
    width: 100%;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    position: relative;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .about-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
  }

  .about-img-edge {
    display: none !important;
  }

  .about-glass-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: auto;
    width: auto;
    max-width: 240px;
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 0;
    text-align: left;
  }

  .badge-number {
    font-size: 1.8rem !important;
    margin-bottom: 4px !important;
  }

  .badge-label {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
  }

  .badge-label br {
    display: block;
  }

  .about-content-panel {
    padding: 30px 0;
    box-sizing: border-box;
  }

  .about-main-heading {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .about-stats-bar {
    flex-direction: row;
    gap: 15px;
    padding: 15px;
    margin-bottom: 20px;
  }

  .astat-divider {
    display: block;
    width: 1px;
    background: rgba(11, 94, 215, 0.14);
    align-self: stretch;
  }

  .astat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    width: auto;
  }

  .astat strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 4px;
    min-width: auto;
  }

  .astat span {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.3px;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .about-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 0 16px !important;
  }

  .about-content-panel {
    padding: 24px 0 !important;
    box-sizing: border-box;
  }

  .about-main-heading {
    font-size: 1.35rem !important;
    margin-bottom: 10px !important;
  }

  .about-glass-badge {
    bottom: 12px !important;
    left: 12px !important;
    right: auto !important;
    width: auto !important;
    max-width: 180px !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
  }

  .badge-number {
    font-size: 1.3rem !important;
  }

  .badge-label {
    font-size: 0.72rem !important;
  }

  .about-desc-text {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }

  .about-feature-pills {
    margin-bottom: 35px !important;
    /* Space buffer for floating chat/call buttons */
  }

  .about-feature-pills li {
    font-size: 0.82rem !important;
    gap: 6px !important;
  }

  .about-stats-bar {
    margin-bottom: 15px !important;
    flex-direction: row !important;
    padding: 10px !important;
    gap: 8px !important;
  }

  .astat {
    flex: 1 !important;
    width: auto !important;
  }

  .astat strong {
    font-size: 1.15rem !important;
  }

  .astat span {
    font-size: 0.65rem !important;
  }
}



/* =========================================
   3. MISSION & VISION SECTION (Editorial)
   ========================================= */
.mission-vision {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(rgba(7, 27, 47, 0.85), rgba(7, 27, 47, 0.85)),
    url('/assets/images/Tanker Unloading System.jpeg') center/cover fixed no-repeat;
  color: var(--white);
}

.mission-vision .main-title {
  color: var(--white) !important;
}

.mission-vision .subtitle {
  color: var(--accent-cyan) !important;
}

.mission-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.015;
  background-size: 30px 30px;
  background-image:
    linear-gradient(to right, var(--primary-blue) 1px, transparent 1px),
    linear-gradient(to bottom, var(--primary-blue) 1px, transparent 1px);
}

.mission-vision>* {
  position: relative;
  z-index: 1;
}

.editorial-mv-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.editorial-mv-row {
  display: flex;
  flex-wrap: wrap;
  background: rgba(7, 27, 47, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.editorial-mv-row:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.editorial-mv-row:nth-child(1):hover {
  border-color: var(--primary-blue);
}

.editorial-mv-row:nth-child(2):hover {
  border-color: var(--accent-cyan);
}

.editorial-title-col {
  flex: 1 1 300px;
  padding: 45px;
  background: linear-gradient(135deg, #071B2F 0%, #112D4E 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease;
}

.editorial-title-col::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.editorial-mv-row:nth-child(1):hover .editorial-title-col {
  background: linear-gradient(135deg, #0B5ED7 0%, #071B2F 100%);
}

.editorial-mv-row:nth-child(2):hover .editorial-title-col {
  background: linear-gradient(135deg, #00C2FF 0%, #071B2F 100%);
}

.watermark-num {
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  font-family: 'Poppins', sans-serif;
  user-select: none;
  transition: var(--transition);
}

.editorial-mv-row:hover .watermark-num {
  transform: scale(1.08) rotate(-5deg);
  color: rgba(255, 255, 255, 0.06);
}

.editorial-title-col h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  position: relative;
  z-index: 2;
}

.editorial-content-col {
  flex: 2 2 500px;
  padding: 45px;
  display: flex;
  align-items: center;
  position: relative;
}

.editorial-content-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 0%;
  width: 4px;
  background-color: var(--primary-blue);
  transform: translateY(-50%);
  opacity: 0.3;
  transition: var(--transition);
}

.editorial-mv-row:nth-child(2) .editorial-content-col::before {
  background-color: var(--accent-cyan);
}

.editorial-mv-row:hover .editorial-content-col::before {
  height: 70%;
  opacity: 1;
}

.editorial-content-col p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin: 0;
  transition: var(--transition);
}

.editorial-mv-row:hover .editorial-content-col p {
  transform: translateX(10px);
  color: var(--white);
}

@media (max-width: 768px) {

  .editorial-title-col,
  .editorial-content-col {
    padding: 30px;
  }

  .editorial-content-col::before {
    left: 30px;
    top: 0;
    height: 4px;
    width: 60px;
  }

  .editorial-content-col p {
    padding-top: 15px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   4. INDUSTRIES WE SERVE SECTION (Full-Image)
   ========================================= */
.industries-section {
  padding: 80px 20px;
  background-color: var(--bg-white);
}

.industries-overlay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.industry-overlay-card {
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
}

.card-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 27, 47, 0.95) 0%, rgba(7, 27, 47, 0.4) 60%, rgba(7, 27, 47, 0.1) 100%);
  z-index: 1;
  transition: var(--transition);
}

.card-content-wrap {
  position: relative;
  z-index: 2;
  padding: 30px;
  width: 100%;
  transform: translateY(20px);
  transition: var(--transition);
}

.industry-overlay-card .card-icon {
  font-size: 2rem;
  color: var(--accent-cyan);
  margin-bottom: 15px;
  transition: var(--transition);
  background: none;
  width: auto;
  height: auto;
  display: inline-block;
}

.industry-overlay-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.industry-overlay-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  opacity: 0;
  transition: var(--transition);
}

/* Hover States */
.industry-overlay-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.industry-overlay-card:hover .card-overlay-gradient {
  background: linear-gradient(to top, rgba(7, 27, 47, 0.98) 0%, rgba(7, 27, 47, 0.6) 100%);
}

.industry-overlay-card:hover .card-content-wrap {
  transform: translateY(0);
}

.industry-overlay-card:hover p {
  opacity: 1;
}

.industry-overlay-card:hover .card-icon {
  transform: scale(1.1) translateY(-2px);
  color: var(--white);
}

@media (max-width: 992px) {

  .image-column,
  .content-column {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2.5rem;
  }

  .main-title {
    font-size: 2.2rem;
  }
}

/* =========================================
   5. INFRASTRUCTURE & FACILITIES SECTION
========================================= */
.infrastructure-section {
  padding: 80px 0;
  background: radial-gradient(circle at 50% 50%, rgba(11, 94, 215, 0.08) 0%, rgba(203, 213, 225, 0.6) 100%), #E2E8F0;
  position: relative;
  overflow: hidden;
}

.infrastructure-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, var(--primary-blue) 1px, transparent 1px),
    linear-gradient(to bottom, var(--primary-blue) 1px, transparent 1px);
  animation: infra-grid-move 35s linear infinite;
}

@keyframes infra-grid-move {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 40px 40px;
  }
}

.infrastructure-section>* {
  position: relative;
  z-index: 1;
}

.infrastructure-list-layout {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 50px;
}

.infra-editorial-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.infra-editorial-row:nth-child(even) {
  flex-direction: row-reverse;
}

.infra-editorial-img-col {
  flex: 1 1 45%;
}

.infra-img-offset-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  background-color: var(--primary-blue);
  padding: 0;
}

.infra-img-offset-wrap img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  box-shadow: var(--shadow-medium);
}

.infra-img-offset-wrap::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid var(--primary-blue);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effects */
.infra-editorial-row:hover img {
  transform: translate(-6px, -6px);
  box-shadow: var(--shadow-md);
}

.infra-editorial-row:hover .infra-img-offset-wrap::after {
  transform: translate(6px, 6px);
}

.infra-editorial-content-col {
  flex: 1 1 55%;
  display: flex;
  align-items: center;
}

.infra-content-inner {
  max-width: 500px;
  text-align: left;
}

.infra-step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.infra-content-inner h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 16px;
  line-height: 1.3;
}

.infra-content-inner p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {

  .infra-editorial-row,
  .infra-editorial-row:nth-child(even) {
    flex-direction: column;
    gap: 40px;
  }

  .infra-editorial-img-col,
  .infra-editorial-content-col {
    width: 100%;
    flex: 1 1 100%;
  }

  .infra-img-offset-wrap img {
    height: 280px;
  }

  .infra-content-inner {
    max-width: 100%;
    text-align: center;
  }

  .mission-vision,
  .infrastructure-section,
  .industries-section {
    padding: 60px 0 !important;
  }

  .about-section {
    padding: 65px 0 60px 0 !important;
  }
}

@media (max-width: 576px) {

  .mission-vision,
  .infrastructure-section,
  .industries-section {
    padding: 40px 0 !important;
  }

  .about-section {
    padding-top: 65px !important;
  }
}