/* --- Global Styles & Variables --- */
:root {
  --dark-blue: #0D253F;
  --light-gray: #F7F9FC;
  --medium-gray: #EAECEF;
  --text-color: #333;
  --accent-orange: #1E90FF;
  --white: #FFFFFF;
  --font-family: 'Inter', sans-serif;
}

body {
  font-family: var(--font-family);
  margin: 0;
  background-color: var(--white);
  color: var(--text-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  display: block;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  padding: 1rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #CC3333, #E55A5A);
  width: 0%;
  transition: width 0.3s ease;
  z-index: 1001;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}

.header.scrolled::after {
  width: 100%;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo h1 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin: 0;
  transition: color 0.3s ease;
}

.header.scrolled .logo h1 {
  color: #003087;
}

.gks-text {
  color: #FFFFFF;
}

.logistics-text {
  color: #CC3333;
}

.header.scrolled .gks-text {
  color: #003087;
}

.nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.nav ul li a.active {
  color: #CC3333;
}

.nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #CC3333;
}

.header.scrolled .nav ul li a {
  color: #1A1A1A;
}

.header.scrolled .nav ul li a.active {
  color: #CC3333;
}

.nav ul li a:hover {
  color: #CC3333;
  transform: scale(1.05);
}

.language-toggle {
  display: flex;
  align-items: center;
}

#languageToggle {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFFFFF;
}

#languageToggle:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.1);
}

.lang-text {
  font-weight: 500;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  background: #003087;
  border: none;
  font-size: 1.5rem;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
  min-width: 48px;
  border-radius: 4px;
  padding: 0.5rem;
  position: relative;
}

.menu-toggle:hover {
  color: #FFFFFF;
  background: #003087;
  text-decoration: underline;
  text-decoration-color: #CC3333;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.header.scrolled .menu-toggle {
  color: #FFFFFF;
  background: #003087;
}

/* --- Main Page Content --- */
.page-content {
  padding-top: 6rem;
  padding-bottom: 4rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: center;
}

/* Main Page Title - Modern & Dynamic */
.page-content > .section-title:first-child {
  margin-top: 0;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0D253F 0%, #1a4d8f 50%, #CC3333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
}

/* Animated Underline Effect */
.page-content > .section-title:first-child::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #CC3333, #E55A5A, #CC3333);
  border-radius: 2px;
  animation: expandWidth 1s ease-out 0.3s both;
}

/* Decorative Dots */
.page-content > .section-title:first-child::before {
  content: '◆';
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: #CC3333;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 0.5s forwards;
}

/* Section Titles (other than main) */
.page-content > .section-title:not(:first-child) {
  margin-top: 4rem;
  font-size: 2.2rem;
  color: #0D253F;
  position: relative;
  padding-left: 20px;
}

.page-content > .section-title:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, #CC3333, #E55A5A);
  border-radius: 3px;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 120px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* --- Top Section: Featured & Video --- */
.page-content .top-section {
  display: grid !important;
  grid-template-columns: 2fr 1fr !important;
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.featured-story-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  color: var(--white);
  height: 100%;
  min-height: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-story-card.featured-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(220, 38, 38, 0.2);
}

/* Dynamic Hero Composite */
.featured-hero-composite {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.featured-base-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.featured-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 48, 135, 0.85) 0%,
    rgba(26, 77, 143, 0.75) 30%,
    rgba(204, 51, 51, 0.70) 70%,
    rgba(0, 48, 135, 0.85) 100%
  );
  mix-blend-mode: multiply;
  z-index: 1;
}

.featured-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(30deg, rgba(255, 255, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.03) 87.5%, rgba(255, 255, 255, 0.03)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.03) 87.5%, rgba(255, 255, 255, 0.03)),
    linear-gradient(30deg, rgba(255, 255, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.03) 87.5%, rgba(255, 255, 255, 0.03)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.03) 87.5%, rgba(255, 255, 255, 0.03)),
    linear-gradient(60deg, rgba(255, 255, 255, 0.05) 25%, transparent 25.5%, transparent 75%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05)),
    linear-gradient(60deg, rgba(255, 255, 255, 0.05) 25%, transparent 25.5%, transparent 75%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
  z-index: 2;
  opacity: 0.4;
}

/* Animated Connection Points */
.connection-points {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.connection-point {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 3px solid #CC3333;
  border-radius: 50%;
  box-shadow: 
    0 0 20px rgba(204, 51, 51, 0.8),
    0 0 40px rgba(204, 51, 51, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.connection-point::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(204, 51, 51, 0.3);
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

.point-1 {
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.point-2 {
  top: 35%;
  right: 25%;
  animation-delay: 0.5s;
}

.point-3 {
  bottom: 30%;
  left: 30%;
  animation-delay: 1s;
}

.point-4 {
  bottom: 25%;
  right: 20%;
  animation-delay: 1.5s;
}

/* Connection Lines */
.connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(204, 51, 51, 0.8) 20%, 
    rgba(255, 255, 255, 0.9) 50%, 
    rgba(204, 51, 51, 0.8) 80%, 
    transparent 100%
  );
  box-shadow: 0 0 10px rgba(204, 51, 51, 0.6);
  transform-origin: left center;
  animation: drawLine 3s ease-in-out infinite;
}

@keyframes drawLine {
  0%, 100% {
    opacity: 0.3;
    width: 0%;
  }
  50% {
    opacity: 1;
    width: 100%;
  }
}

.line-1 {
  top: 28%;
  left: 21%;
  width: 52%;
  transform: rotate(-5deg);
  animation-delay: 0.3s;
}

.line-2 {
  bottom: 28%;
  left: 32%;
  width: 38%;
  transform: rotate(2deg);
  animation-delay: 1.3s;
}

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

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 48, 135, 0.70) 30%,
    rgba(0, 48, 135, 0.4) 60%,
    transparent 100%
  );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10;
  transition: all 0.4s ease;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-story-card:hover .featured-overlay {
  padding-bottom: 2rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.90) 0%,
    rgba(0, 48, 135, 0.80) 30%,
    rgba(0, 48, 135, 0.5) 60%,
    transparent 100%
  );
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: #FFFFFF;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 4px 15px rgba(220, 38, 38, 0.4),
    0 0 20px rgba(220, 38, 38, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: badgePulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.featured-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 
      0 4px 15px rgba(220, 38, 38, 0.4),
      0 0 20px rgba(220, 38, 38, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 
      0 4px 20px rgba(220, 38, 38, 0.6),
      0 0 30px rgba(220, 38, 38, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

@keyframes badgeShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.featured-overlay h2 {
  margin: 0.75rem 0 0.5rem 0;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.5),
    0 4px 20px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(0, 48, 135, 0.4);
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.featured-story-card:hover .featured-overlay h2 {
  transform: translateY(-3px);
  text-shadow: 
    0 3px 15px rgba(0, 0, 0, 0.6),
    0 6px 25px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(220, 38, 38, 0.3);
}

.featured-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 0.4rem 0;
  letter-spacing: 0.5px;
}

.featured-date::before {
  content: '📅';
  font-size: 1rem;
  filter: grayscale(0.3);
}

/* Add a subtle bottom accent line */
.featured-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2.5rem;
  right: 2.5rem;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #dc2626 20%,
    #ef4444 50%,
    #dc2626 80%,
    transparent 100%
  );
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-story-card:hover .featured-overlay::after {
  opacity: 1;
}

.video-spotlight-card {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
  gap: 1rem;
  box-sizing: border-box;
}

.spotlight-pre-title {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.spotlight-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 0.5rem 0 1rem 0;
  letter-spacing: 1px;
}

.video-thumbnail-wrapper {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.video-thumbnail-wrapper .video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.second-video {
  margin-top: 1rem;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark-blue);
  transition: transform 0.3s;
}

.video-thumbnail-wrapper:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: var(--dark-blue);
  font-size: 0.95rem;
}

/* --- Main Content Grid --- */
.main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.column-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-blue);
  border-bottom: 2px solid var(--medium-gray);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Employee Spotlight */
.employee-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.employee-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.employee-name {
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.employee-quote {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* Latest Articles */
.article-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--medium-gray);
}
.article-item:first-child { padding-top: 0; }
.article-item:last-child { border-bottom: none; }

.article-icon {
  font-size: 1.5rem;
}

.article-title {
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.article-date {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
}

/* Industry Insights */
.industry-insights-card {
  border: 1px solid var(--medium-gray);
  border-radius: 8px;
  overflow: hidden;
}

.insight-content {
  padding: 1rem;
}

.insight-content h4 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
}

.read-more-btn {
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.read-more-btn:hover {
  background-color: var(--accent-orange);
  color: var(--dark-blue);
}


/* --- Photo Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

/* --- Modern Content Grid --- */
.page-content .modern-content-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem;
  margin: 3rem 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.content-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #CC3333, #E55A5A);
}

.content-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  position: relative;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-style: italic;
}

/* Employee Portraits */
.portraits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.portrait-card {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}

.portrait-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portrait-image {
  position: relative;
  height: 120px;
  overflow: hidden;
}

.portrait-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portrait-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(204, 51, 51, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portrait-card:hover .portrait-overlay {
  opacity: 1;
}

.portrait-card:hover .portrait-image img {
  transform: scale(1.1);
}

.view-profile {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portrait-info {
  padding: 0.8rem;
}

.portrait-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.3rem;
}

.portrait-role {
  font-size: 0.8rem;
  color: #CC3333;
  font-weight: 600;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portrait-quote {
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
  line-height: 1.4;
  margin: 0;
}

/* No-image portrait card variant */
.portrait-card--no-image {
  background: linear-gradient(155deg, #ffffff 0%, #f4f7fb 100%);
  border: 1.5px solid rgba(10, 61, 98, 0.08);
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.portrait-card--no-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0a3d62 0%, #e63946 100%);
}
.portrait-card--no-image:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 61, 98, 0.22);
  box-shadow: 0 18px 38px rgba(10, 61, 98, 0.12);
}
.portrait-card--no-image .portrait-info {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.portrait-card--no-image .portrait-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a3d62 0%, #1b5c8a 100%);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  box-shadow: 0 6px 18px rgba(10,61,98,0.22);
}
.portrait-card--no-image .portrait-name {
  font-size: 1.15rem;
  margin: 0;
}
.portrait-card--no-image .portrait-role {
  font-size: 0.78rem;
  margin: 0 0 0.35rem;
}
.portrait-card--no-image .portrait-quote {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 0.6rem;
}
.portrait-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  color: #0a3d62;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.portrait-card--no-image:hover .portrait-link { gap: 0.6rem; color: #e63946; }

/* Latest Articles */
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.article-card:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

/* Clickable Article Links */
a.article-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(204, 51, 51, 0.05), rgba(229, 90, 90, 0.05));
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

a.article-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #CC3333, #E55A5A);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

a.article-link:hover::before {
  transform: scaleY(1);
}

a.article-link:hover {
  background: white;
  border-color: rgba(204, 51, 51, 0.2);
  transform: translateX(10px);
  box-shadow: 0 8px 24px rgba(204, 51, 51, 0.15);
}

a.article-link .article-icon {
  background: linear-gradient(135deg, #CC3333, #E55A5A);
  box-shadow: 0 4px 12px rgba(204, 51, 51, 0.3);
}

a.article-link:hover .article-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(204, 51, 51, 0.4);
}

.article-icon {
  font-size: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #CC3333, #E55A5A);
  border-radius: 12px;
  color: white;
}

.article-content {
  flex: 1;
}

.article-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.article-date {
  font-size: 0.8rem;
  color: #CC3333;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.article-excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.view-all-articles {
  text-align: center;
  margin-top: 2rem;
}

.btn-secondary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #CC3333;
  border: 2px solid #CC3333;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #CC3333;
  color: white;
  transform: translateY(-2px);
}

/* Industry Insights */
.insights-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.insights-card:hover {
  transform: translateY(-3px);
}

.insight-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insights-card:hover .insight-image img {
  transform: scale(1.05);
}

.insight-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #CC3333;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.insight-content {
  padding: 2rem;
}

.insight-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.insight-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.insight-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.insight-date,
.insight-pages {
  font-size: 0.8rem;
  color: #CC3333;
  font-weight: 600;
  background: rgba(204, 51, 51, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
}

.btn-primary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #CC3333, #E55A5A);
  color: white;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(204, 51, 51, 0.3);
}

/* --- Company News Section --- */
.company-news-section {
  margin: 4rem 0;
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

.company-news-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.company-story-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.company-story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #CC3333, #E55A5A);
}

.story-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  position: relative;
}

.story-content h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #CC3333, #E55A5A);
  border-radius: 2px;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #CC3333;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.company-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-card:nth-child(5) {
  grid-column: span 1;
}

.video-card:nth-child(6),
.video-card:nth-child(7) {
  grid-column: span 1;
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.video-card:hover .video-element {
  transform: scale(1.02);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(204, 51, 51, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.play-button:hover {
  background: rgba(204, 51, 51, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 1rem 1.5rem 0.5rem;
}

.video-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0 1.5rem 1.5rem;
  line-height: 1.5;
}

/* --- Footer --- */
.footer {
  background: #000000;
  color: #FFFFFF;
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 1;
  font-family: 'Inter', sans-serif;
}

.footer .shade-overlay {
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

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

.footer-logo-header {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.1);
}

.footer-logo h3 {
  font-size: 2.5rem;
  margin: 0;
  color: #FFFFFF;
  font-weight: 800;
}

.footer-gks-text {
  color: #003087;
}

.footer-logistics-text {
  color: #CC3333;
}

.footer-logo p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 400px;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  color: #FFFFFF;
  font-size: 1.6rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #CC3333;
  transform: scale(1.2);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  font-weight: 700;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #CC3333, #E55A5A);
  border-radius: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #CC3333;
  transition: width 0.3s ease;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

.footer-links ul li a:hover {
  color: #CC3333;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  color: #FFFFFF;
  font-size: 1rem;
}

.footer-contact p a {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-contact p a:hover {
  color: #CC3333;
  text-decoration: underline;
}

.footer-divider {
  height: 2px;
  background: #CC3333;
  margin: 2.5rem 0;
}

.footer-copy {
  text-align: center;
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 400;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #CC3333;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
}

.back-to-top:hover {
  transform: scale(1.1);
  background: #B22222;
}

/* --- Responsive Design --- */

/* Large Desktop - 1200px to 1400px */
@media (max-width: 1400px) {
  .container {
      width: 92%;
  }
  
  .page-content > .section-title:first-child {
      font-size: 2.8rem;
  }
}

/* Desktop - 992px to 1200px */
@media (max-width: 1200px) {
  .container {
      width: 90%;
  }
  
  /* Main title adjustments */
  .page-content > .section-title:first-child {
      font-size: 2.5rem;
      padding: 1.5rem 0;
  }
  
  .page-content > .section-title:first-child::before,
  .page-content > .section-title:first-child::after {
      width: 60px;
  }
  
  /* Featured section */
  .featured-story-card {
      min-height: 420px;
  }
  
  .featured-overlay h2 {
      font-size: 1.9rem;
  }
  
  .video-spotlight-card {
      min-height: 420px;
  }
  
  /* 3-column to 2-column grid */
  .modern-content-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 1.5rem;
  }
}

/* Medium Tablets & Small Laptops - 900px to 992px */
@media (max-width: 992px) {
  .container {
      width: 92%;
  }
  
  .container.page-content {
      width: 100% !important;
      box-sizing: border-box !important;
      max-width: 100% !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
  }
  
  /* Main title */
  .page-content > .section-title:first-child {
      font-size: 2.2rem;
      padding: 1.2rem 0;
  }
  
  /* Top section - ensure proper stacking on smaller tablets */
  .top-section {
      gap: 1.2rem;
  }
  
  /* Force 2-column grids to single column for better readability */
  .page-content .modern-content-grid,
  body .page-content .modern-content-grid,
  main.page-content .modern-content-grid,
  .container.page-content .modern-content-grid,
  .modern-content-grid {
      grid-template-columns: 1fr !important;
      display: grid !important;
      width: 100% !important;
      max-width: 100% !important;
      min-width: 100% !important;
      padding: 0 !important;
      margin: 2rem 0 !important;
      box-sizing: border-box !important;
  }
  
  /* Force grid children to full width */
  .page-content .modern-content-grid > *,
  .modern-content-grid > * {
      width: 100% !important;
      max-width: 100% !important;
      min-width: 100% !important;
      grid-column: 1 / -1 !important;
  }
  
  .featured-story-card {
      min-height: 380px;
  }
  
  .featured-overlay {
      padding: 2rem;
  }
  
  .featured-overlay h2 {
      font-size: 1.7rem;
  }
  
  .featured-badge {
      font-size: 0.7rem;
      padding: 0.45rem 1.1rem;
  }
  
  .video-spotlight-card {
      min-height: 380px;
      padding: 1.2rem;
  }
  
  /* Section titles */
  .section-title {
      font-size: 1.8rem;
  }
  
  /* Content sections - ULTRA FORCE tablet full width */
  .content-section,
  .page-content .content-section,
  .modern-content-grid .content-section,
  .page-content .modern-content-grid .content-section,
  div.content-section,
  section.content-section {
      padding: 1.8rem 0 !important;
      width: 100% !important;
      max-width: 100% !important;
      min-width: 100% !important;
      margin: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      box-sizing: border-box !important;
      flex: 0 0 100% !important;
  }
  
  /* Employee portraits - single column for better mobile readability */
  .portraits-grid {
      grid-template-columns: 1fr !important;
      gap: 1.5rem;
  }
  
  .portrait-card {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 1rem;
  }
  
  .portrait-image {
      height: 100px;
      width: 100px;
      flex-shrink: 0;
  }
  
  .portrait-info {
      flex: 1;
  }
  
  /* Article cards */
  .article-icon {
      font-size: 2.5rem;
      width: 60px;
      height: 60px;
  }
  
  /* All grids to single column on tablet */
  .main-grid {
      grid-template-columns: 1fr !important;
  }
  
  .main-grid .grid-column:last-child {
      grid-column: 1;
  }
  
  .footer-content {
      grid-template-columns: 1fr !important;
      gap: 2rem;
      text-align: center;
  }
}

/* Tablet Portrait & Mobile - Below 768px */
@media (max-width: 768px) {
  /* Force ALL containers to full width */
  .container,
  .container.page-content,
  body .container {
      width: 100% !important;
      max-width: 100% !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      box-sizing: border-box !important;
  }
  
  .container.page-content {
      padding-top: 5rem;
  }

  .logo h1 {
      font-size: 1.8rem;
  }

  .logo-img {
      width: 35px;
      height: 35px;
  }
  
  /* Main page title - mobile optimized */
  .page-content > .section-title:first-child {
      font-size: 1.8rem !important;
      padding: 1rem 0;
      letter-spacing: 0px;
  }
  
  .page-content > .section-title:first-child::before,
  .page-content > .section-title:first-child::after {
      width: 60px;
      height: 4px;
  }
  
  .page-content > .section-title:not(:first-child) {
      font-size: 1.5rem;
      margin: 2rem 0 1.5rem;
  }
  
  .page-content > .section-title:not(:first-child)::before {
      width: 3px;
      height: 30px;
  }
  
  /* Top section - FORCE vertical stacking with maximum specificity */
  .page-content .top-section,
  .container .page-content .top-section {
      display: flex !important;
      flex-direction: column !important;
      grid-template-columns: 1fr !important;
      gap: 1.5rem !important;
      width: 100% !important;
  }
  
  .page-content .top-section > *,
  .container .page-content .top-section > * {
      width: 100% !important;
      max-width: 100% !important;
      flex: 0 0 100% !important;
      grid-column: 1 !important;
  }
  
  .page-content .featured-story-card,
  .page-content .video-spotlight-card {
      width: 100% !important;
      max-width: 100% !important;
      flex: 0 0 100% !important;
      margin: 0 !important;
  }
  
  /* Featured card mobile */
  .featured-story-card {
      min-height: 320px;
  }
  
  .featured-overlay {
      padding: 1.5rem;
  }
  
  .featured-overlay h2 {
      font-size: 1.4rem;
      line-height: 1.4;
  }
  
  .featured-badge {
      font-size: 0.65rem;
      padding: 0.35rem 0.9rem;
      letter-spacing: 0.5px;
  }
  
  .featured-date {
      font-size: 0.85rem;
  }
  
  .featured-overlay::after {
      left: 1.5rem;
      right: 1.5rem;
  }
  
  /* Video spotlight mobile */
  .video-spotlight-card {
      min-height: auto;
      padding: 1.2rem;
  }
  
  .spotlight-pre-title {
      font-size: 0.85rem;
  }
  
  .spotlight-title {
      font-size: 0.9rem;
  }
  
  .video-caption {
      font-size: 0.85rem;
  }
  
  /* UNIVERSAL STACKING RULES - Force ALL layouts to single column */
  
  /* All grid layouts to single column */
  .modern-content-grid,
  .main-grid,
  .portraits-grid,
  .article-grid,
  .content-grid,
  .news-grid,
  .company-news-grid,
  .company-videos-grid,
  .story-stats,
  [class*="grid"],
  [class*="-grid"] {
      grid-template-columns: 1fr !important;
      display: grid !important;
      gap: 1.5rem;
      width: 100% !important;
  }
  
  /* Force all grid children to full width */
  .modern-content-grid > *,
  .main-grid > *,
  .portraits-grid > *,
  [class*="grid"] > *,
  .modern-content-grid > div,
  .modern-content-grid > section,
  .modern-content-grid > article {
      width: 100% !important;
      max-width: 100% !important;
      min-width: 100% !important;
      grid-column: 1 !important;
      flex: 0 0 100% !important;
  }
  
  /* Force ALL flex containers to stack vertically */
  .flex-row,
  .horizontal-layout,
  [class*="flex"],
  .row,
  .columns,
  [class*="row"] {
      flex-direction: column !important;
      display: flex !important;
  }
  
  /* Ensure all flex children take full width */
  .flex-row > *,
  .horizontal-layout > *,
  [class*="flex"] > * {
      width: 100% !important;
      max-width: 100% !important;
      flex: none !important;
  }
  
  /* Override any inline-block or inline layouts */
  .page-content section > div,
  .page-content article > div {
      display: block !important;
      width: 100% !important;
  }
  
  .footer {
      padding: 3rem 0 2rem;
  }

  .footer-content {
      grid-template-columns: 1fr !important;
      display: grid !important;
      gap: 2.5rem;
      text-align: center;
  }
  
  .footer-logo-header {
      justify-content: center;
  }
  
  .footer-logo-img {
      width: 55px;
      height: 55px;
  }
  
  .footer-logo h3 {
      font-size: 2rem;
  }
  
  .social-icons {
      justify-content: center;
  }
  
  .menu-toggle {
      display: block;
  }

  .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      padding: 1rem 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
      display: block;
  }

  .nav ul {
      flex-direction: column;
      gap: 1.5rem;
      padding: 1rem 0;
  }

  .nav ul li {
      text-align: center;
  }

  .nav ul li a {
      color: #1A1A1A;
  }

  .language-toggle {
      margin-left: 1rem;
  }

  /* Company News Section Responsive */
  .company-news-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .story-stats {
      grid-template-columns: 1fr;
      gap: 1rem;
  }

  .company-videos-grid {
      grid-template-columns: 1fr;
  }

  .video-card:nth-child(5) {
      grid-column: 1;
      max-width: 100%;
  }

  .video-thumbnail {
      height: 180px;
  }

  /* Modern Content Grid Responsive */
  .page-content .modern-content-grid,
  body .page-content .modern-content-grid,
  main.page-content .modern-content-grid,
  .container.page-content .modern-content-grid,
  .modern-content-grid {
      grid-template-columns: 1fr !important;
      gap: 2rem;
      width: 100% !important;
      max-width: 100% !important;
      min-width: 100% !important;
      display: grid !important;
      box-sizing: border-box !important;
      padding: 0 !important;
  }
  
  /* Force grid children to full width */
  .page-content .modern-content-grid > *,
  .modern-content-grid > * {
      width: 100% !important;
      max-width: 100% !important;
      min-width: 100% !important;
      grid-column: 1 / -1 !important;
  }

  /* Content sections mobile - ULTRA FORCE full width */
  .content-section,
  .page-content .content-section,
  .modern-content-grid .content-section,
  .page-content .modern-content-grid .content-section,
  div.content-section,
  section.content-section {
      padding: 1.2rem 0 !important;
      min-height: auto !important;
      width: 100% !important;
      max-width: 100% !important;
      min-width: 100% !important;
      margin: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      box-sizing: border-box !important;
      flex: 0 0 100% !important;
  }
  
  .section-header {
      margin-bottom: 1.2rem;
      width: 100%;
  }
  
  .section-subtitle {
      font-size: 0.9rem;
  }

  /* Employee portraits - single column */
  .portraits-grid,
  .articles-list {
      grid-template-columns: 1fr !important;
      display: grid !important;
      width: 100% !important;
      gap: 1.2rem;
  }

  .portrait-card {
      flex-direction: row;
      padding: 1rem;
  }

  .portrait-image {
      height: 80px;
      width: 80px;
      flex-shrink: 0;
  }
  
  .portrait-info {
      flex: 1;
      text-align: left;
  }
  
  .portrait-name {
      font-size: 1rem;
  }
  
  .portrait-role {
      font-size: 0.85rem;
  }
  
  .portrait-quote {
      font-size: 0.85rem;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }
  
  /* Better text handling on mobile */
  .portrait-card h4,
  .portrait-card p {
      word-wrap: break-word;
      overflow-wrap: break-word;
  }

  /* Article cards - vertical layout */
  .article-card {
      flex-direction: column;
      text-align: center;
      padding: 1.2rem;
  }

  .article-icon {
      align-self: center;
      font-size: 2rem;
      width: 50px;
      height: 50px;
      margin-bottom: 1rem;
  }
  
  .article-title {
      font-size: 1.1rem;
  }
  
  .article-excerpt {
      font-size: 0.9rem;
  }

  .insight-meta {
      flex-direction: column;
      gap: 0.5rem;
      font-size: 0.85rem;
  }
  
  /* Connection points - smaller on mobile */
  .connection-point {
      width: 12px;
      height: 12px;
      border-width: 2px;
  }
  
  .connection-line {
      height: 1.5px;
  }
  
  /* Video elements */
  .video-element {
      border-radius: 6px;
  }
}

/* Extra Small Screens - Below 480px */
@media (max-width: 480px) {
  /* Force ALL containers to full width on mobile */
  .container,
  .container.page-content,
  body .container {
      width: 100% !important;
      max-width: 100% !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      box-sizing: border-box !important;
  }

  .logo h1 {
      font-size: 1.3rem;
  }

  .logo-img {
      width: 28px;
      height: 28px;
  }
  
  /* Modern Content Grid - Force single column */
  .page-content .modern-content-grid,
  body .page-content .modern-content-grid,
  main.page-content .modern-content-grid,
  .container.page-content .modern-content-grid,
  .modern-content-grid {
      grid-template-columns: 1fr !important;
      display: grid !important;
      width: 100% !important;
      max-width: 100% !important;
      min-width: 100% !important;
      padding: 0 !important;
      box-sizing: border-box !important;
  }
  
  /* Force grid children to full width */
  .page-content .modern-content-grid > *,
  .modern-content-grid > * {
      width: 100% !important;
      max-width: 100% !important;
      min-width: 100% !important;
      grid-column: 1 / -1 !important;
  }
  
  /* CRITICAL: Force vertical stacking on very small screens */
  .page-content .top-section,
  .container .page-content .top-section,
  body .page-content .top-section {
      display: flex !important;
      flex-direction: column !important;
      grid-template-columns: 1fr !important;
  }
  
  .page-content .top-section > *,
  body .page-content .top-section > * {
      width: 100% !important;
      max-width: 100% !important;
      flex: 0 0 100% !important;
  }
  
  /* Main title - extra small */
  .page-content > .section-title:first-child {
      font-size: 1.5rem !important;
      padding: 0.8rem 0;
  }
  
  .page-content > .section-title:first-child::before,
  .page-content > .section-title:first-child::after {
      width: 60px;
      height: 4px;
  }
  
  .page-content > .section-title:not(:first-child) {
      font-size: 1.3rem;
      margin: 1.5rem 0 1rem;
  }
  
  /* Featured card - compact */
  .featured-story-card {
      min-height: 250px;
  }

  .featured-overlay {
      padding: 0.75rem;
  }

  .featured-overlay h2 {
      font-size: 1rem;
      line-height: 1.2;
      margin: 0.25rem 0;
  }
  
  .featured-badge {
      font-size: 0.6rem;
      padding: 0.3rem 0.8rem;
  }
  
  .featured-date {
      font-size: 0.75rem;
  }
  
  .featured-date::before {
      font-size: 0.85rem;
  }
  
  /* Video section compact */
  .video-spotlight-card {
      padding: 1rem;
  }
  
  .spotlight-title {
      font-size: 0.85rem;
  }
  
  .spotlight-pre-title {
      font-size: 0.8rem;
  }
  
  .video-caption {
      font-size: 0.8rem;
  }
  
  /* Content sections - ULTRA FORCE extra small full width */
  .content-section,
  .page-content .content-section,
  .modern-content-grid .content-section,
  .page-content .modern-content-grid .content-section,
  div.content-section,
  section.content-section {
      padding: 1rem 0 !important;
      width: 100% !important;
      max-width: 100% !important;
      min-width: 100% !important;
      margin: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      box-sizing: border-box !important;
      flex: 0 0 100% !important;
  }
  
  .section-title {
      font-size: 1.2rem;
  }
  
  .section-subtitle {
      font-size: 0.85rem;
  }
  
  /* Portrait cards - more compact */
  .portrait-card {
      padding: 0.8rem;
  }
  
  .portrait-image {
      height: 70px;
      width: 70px;
  }
  
  .portrait-name {
      font-size: 0.95rem;
  }
  
  .portrait-role {
      font-size: 0.8rem;
  }
  
  .portrait-quote {
      font-size: 0.8rem;
      -webkit-line-clamp: 2;
  }
  
  /* Article cards */
  .article-card {
      padding: 1rem;
  }
  
  .article-icon {
      font-size: 1.8rem;
      width: 45px;
      height: 45px;
  }
  
  .article-title {
      font-size: 1rem;
  }
  
  .article-excerpt {
      font-size: 0.85rem;
  }
  
  .article-meta {
      font-size: 0.75rem;
  }
  
  /* Connection points - hide on very small screens for performance */
  .connection-points {
      display: none;
  }
  
  /* Adjust footer for small screens */
  .footer {
      padding: 2rem 0 1.5rem;
  }
  
  .footer-logo h3 {
      font-size: 1.5rem;
  }
  
  .footer-section h4 {
      font-size: 1rem;
  }
  
  .footer-section ul li {
      font-size: 0.85rem;
  }
}