/*  
  OPTIMIZED STEEL INDUSTRIAL WEBSITE STYLESHEET
  Updated with CSS variables, improved performance, and better organization
  FIXED: Mobile edge spacing issues
*/

/* ============================================
   CSS VARIABLES - CENTRALIZED THEME CONTROL
   ============================================ */
:root {
  /* Color Palette */
  --primary-blue: #00b4d8;
  --secondary-blue: #0077b6;
  --accent-blue: #74c0fc;
  
  --steel-darkest: #1a1a1a;
  --steel-dark: #2d3436;
  --steel-mid: #636e72;
  --steel-light: #c0c0c0;
  
  --bg-light: #f8f9fa;
  --bg-lighter: #e9ecef;
  --bg-white: #ffffff;
  
  --text-dark: #2d3436;
  --text-gray: #495057;
  --text-light: #e8e8e8;
  --text-white: #ffffff;
  
  /* Spacing */
  --spacing-xs: clamp(20px, 3vw, 30px);
  --spacing-sm: clamp(30px, 5vw, 50px);
  --spacing-md: clamp(60px, 10vw, 100px);
  --spacing-lg: clamp(80px, 12vw, 120px);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 50px;
  
  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-blue: 0 8px 25px rgba(0, 119, 182, 0.4);
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-normal: 0.4s ease;
  --transition-slow: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Hexagonal Pattern Variables */
  --hex-size: 82px;
  --hex-c1: #b2b2b2;
  --hex-c2: #ffffff;
  --hex-c3: #d9d9d9;
}

/* ============================================
   BASE STYLES & RESET
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  --s: var(--hex-size);
  --c1: var(--hex-c1);
  --c2: var(--hex-c2);
  --c3: var(--hex-c3);
  --_g: var(--c3) 0 120deg, #0000 0;
  
  background:
    conic-gradient(from -60deg at 50% calc(100%/3), var(--_g)),
    conic-gradient(from 120deg at 50% calc(200%/3), var(--_g)),
    conic-gradient(from 60deg at calc(200%/3), var(--c3) 60deg, var(--c2) 0 120deg, #0000 0),
    conic-gradient(from 180deg at calc(100%/3), var(--c1) 60deg, var(--_g)),
    linear-gradient(90deg, var(--c1) calc(100%/6), var(--c2) 0 50%, var(--c1) 0 calc(500%/6), var(--c2) 0);
  background-size: calc(1.732 * var(--s)) var(--s);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-blue);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
}

*:focus-visible {
  outline: 3px solid var(--accent-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   HEADER / NAVBAR - STEEL INDUSTRIAL THEME
   ============================================ */
header {
  background: linear-gradient(140deg, var(--steel-dark) 3%, var(--steel-mid) 23%, var(--steel-darkest) 60%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 3%;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  min-height: 80px;
  z-index: 1000;
  transition: all var(--transition-fast);
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: 20px;
}

header:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(169, 169, 169, 0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: headerShimmer 8s ease-in-out infinite;
}

@keyframes headerShimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================
   LOGO
   ============================================ */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  font-size: clamp(0.85em, 2vw, 1em);
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.3px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 280px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.logo a:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: clamp(0.75em, 1.8vw, 0.9em);
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-img {
  height: clamp(45px, 8vw, 60px);
  width: auto;
  padding: 2px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: filter var(--transition-fast);
}

.logo-img:hover {
  filter: drop-shadow(0 6px 16px rgba(192, 192, 192, 0.6));
}

/* Partner Badge */
.partner-badge {
  display: none;
  align-items: flex-end;
  gap: 8px;
  margin-left: -100px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .partner-badge {
    display: flex;
  }
}

.partner-badge img {
  height: clamp(25px, 5vw, 30px);
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.partner-badge span {
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 500;
  color: var(--text-white);
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ============================================
   NAVIGATION LINKS
   ============================================ */
.nav-links {
  display: flex;
  gap: clamp(8px, 1.5vw, 18px);
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
  flex-shrink: 1;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-white);
  font-weight: 600;
  font-size: clamp(0.85em, 1.6vw, 1em);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 12px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
  transition: width var(--transition-fast);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0, 180, 216, 0.6);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent-blue);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: calc(100% - 24px);
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   MOBILE MENU BUTTON
   ============================================ */
.menu-btn {
  display: none;
  font-size: 1.8rem;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  position: relative;
  z-index: 1;
}

.menu-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ============================================
   UNIVERSAL HERO SECTION
   ============================================ */
.hero,
.vision-hero,
.facilities-hero,
.sustainability-hero,
.about-hero,
.csr-hero,
.contact-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
  min-height: 100vh;
  width: 100%;
  background: 
    linear-gradient(135deg, rgba(26, 26, 26, 0.92), rgba(45, 52, 54, 0.88)),
    url("back_home.JPG") center center / cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  animation: fadeInHero 1.2s ease-out;
  padding: clamp(60px, 10vh, 80px) 5%;
  box-sizing: border-box;
}

.awards-hero {
  min-height: 90vh;
  padding: clamp(80px, 12vh, 120px) 5%;
}

.hero::before,
.vision-hero::before,
.facilities-hero::before,
.sustainability-hero::before,
.about-hero::before,
.csr-hero::before,
.contact-hero::before,
.awards-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(192, 192, 192, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(169, 169, 169, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
  animation: particleFloat 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero::after,
.vision-hero::after,
.facilities-hero::after,
.sustainability-hero::after,
.about-hero::after,
.csr-hero::after,
.contact-hero::after,
.awards-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 192, 192, 0.08), transparent 70%);
  top: -150px;
  right: -150px;
  animation: floatCircle 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes floatCircle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 50px) scale(1.2); }
}

.hero h1,
.vision-hero h1,
.facilities-hero h1,
.sustainability-hero h1,
.about-hero h1,
.csr-hero h1,
.contact-hero h1,
.awards-hero h1 {
  font-size: clamp(2em, 5.5vw, 3.8em);
  margin-bottom: 20px;
  color: var(--text-white);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fadeInUp 1s forwards 0.4s;
  max-width: 100%;
  word-wrap: break-word;
  position: relative;
  z-index: 2;
  font-weight: 900;
  letter-spacing: 1px;
}

.awards-hero h1 {
  font-size: clamp(2.5em, 5.5vw, 4em);
}

.hero p,
.vision-hero p,      
.facilities-hero p,
.sustainability-hero p,
.about-hero p,
.csr-hero p,
.contact-hero p,
.awards-hero p {
  font-size: clamp(1em, 2.8vw, 1.3em);
  color: #f5f5f5;
  max-width: 90%;
  margin: 0 auto 35px;
  font-weight: 500;
  opacity: 0;
  animation: fadeInUp 1.2s forwards 0.6s;
  line-height: 1.8;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.awards-hero p {
  max-width: 800px;
  font-size: clamp(1.1em, 2.8vw, 1.4em);
}

/* ============================================
   BUTTONS - UNIFIED STYLES
   ============================================ */
.hero button,
.vision-hero button,
.facilities-hero button,
.sustainability-hero button,
.about-hero button,
.csr-hero button,
.contact-hero button,
.back-btn {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--text-white);
  border: none;
  padding: clamp(14px, 2.5vw, 16px) clamp(32px, 6vw, 42px);
  font-size: clamp(1em, 2.2vw, 1.1em);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-blue);
  opacity: 0;
  animation: fadeInUp 1.4s forwards 0.8s;
  position: relative;
  z-index: 2;
  font-weight: 700;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.back-btn {
  opacity: 1;
  animation: none;
  padding: 14px 30px;
  margin-top: 15px;
}

.hero button::before,
.back-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.hero button:hover::before,
.back-btn:hover::before {
  left: 100%;
}

.hero button:hover,
.back-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 119, 182, 0.6);
}

/* ============================================
   CONTENT SECTIONS - TWO COLUMN LAYOUT
   ============================================ */
.content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 60px);
  padding: var(--spacing-lg) 5%;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  text-align: left;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(60deg, transparent, transparent 35px, 
      rgba(99, 110, 114, 0.04) 35px, rgba(99, 110, 114, 0.04) 36px);
  pointer-events: none;
  opacity: 0.6;
}

.content:nth-child(even) {
  flex-direction: row-reverse;
  background: linear-gradient(135deg, #dee2e6 0%, #ced4da 100%);
}

.content:nth-child(even)::before {
  position: absolute;
  inset: 0;
  --c: 7px;
  background-color: #000;
  background-image: 
    radial-gradient(circle at 50% 50%, #0000 1.5px, #000 0 var(--c), #0000 var(--c)),
    radial-gradient(circle at 50% 50%, #0000 1.5px, #000 0 var(--c), #0000 var(--c)),
    radial-gradient(circle at 50% 50%, rgb(0, 0, 0), #f000 60%),
    radial-gradient(circle at 50% 50%, rgb(65, 65, 65), #ff00 60%),
    radial-gradient(circle at 50% 50%, rgb(192, 192, 192), #0f00 60%),
    radial-gradient(ellipse at 50% 50%, rgb(255, 255, 255), #00f0 60%);
  background-size:
    12px 20.7846097px,
    12px 20.7846097px,
    200% 200%,
    200% 200%,
    200% 200%,
    200% 20.7846097px;
  --p: 0px 0px, 6px 10.39230485px;
  background-position:
    var(--p),
    0% 0%,
    0% 0%,
    0% 0px;
  animation:
    weeContent 20s linear infinite,
    filtContent 6s linear infinite;
  opacity: 0.7;
}

@keyframes filtContent {
  0% { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(360deg); }
}

@keyframes weeContent {
  0% {
    background-position:
      var(--p),
      800% 400%,
      1000% -400%,
      -1200% -600%,
      400% 41.5692194px;
  }
  to {
    background-position:
      var(--p),
      0% 0%,
      0% 0%,
      0% 0%,
      0% 0%;
  }
}

.content img {
  width: 100%;
  max-width: 750px;
  min-width: 350px;
  flex: 1 1 450px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.content img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.content .text {
  flex: 1 1 450px;
  min-width: 350px;
  max-width: 750px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(35px, 6vw, 50px);
  border-radius: var(--radius-xl);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(192, 192, 192, 0.3);
  transition: all var(--transition-normal);
  box-sizing: border-box;
}

.content .text:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.content h2 {
  color: var(--text-dark);
  font-size: clamp(1.8em, 4.5vw, 2.5em);
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
  padding-bottom: 15px;
}

.content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 119, 182, 0.4);
}

.content p {
  color: var(--text-gray);
  font-size: clamp(1em, 2.2vw, 1.15em);
  line-height: 1.8;
  text-align: left;
}

/* ============================================
   IMAGE SLIDER
   ============================================ */
.slider {
  width: 100%;
  max-width: 800px;
  flex: 1 1 600px;
  height: clamp(400px, 65vw, 550px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.slider:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.slider::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.5), rgba(99, 110, 114, 0.5));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 1;
}

.slider:hover::before {
  opacity: 1;
}

.slides {
  display: flex;
  width: 1000%;
  height: 100%;
  animation: slide 50s infinite linear;
  will-change: transform;
}

.slides img {
  width: 10%;
  min-width: 10%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
}

@keyframes slide {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-90%); }
}

.slider:hover .slides {
  animation-play-state: paused;
} 

/* ============================================
   AWARDS PAGE - ASYMMETRIC LAYOUT
   ============================================ */
.awards-gallery-section {
  padding: clamp(60px, 10vw, 100px) 5% clamp(160px, 18vw, 200px);
  background: #3262aa;
  background: -moz-linear-gradient(-45deg, #3262aa 0%, #ffffff 100%);
  background: -webkit-linear-gradient(-45deg, #3262aa 0%, #3262aa 100%);
  background: linear-gradient(135deg, #3262aa 0%, #3262aa 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adef', endColorstr='#0076e5', GradientType=1);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.awards-gallery-section::before {
  content: "";
  position: absolute;
  top: 200px;
  left: -150px;
  background: #fff;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.4;
  -webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
  animation-delay: 0s;
  pointer-events: none;
  z-index: 0;
}

.awards-gallery-section::after {
  content: "";
  position: absolute;
  top: 50px;
  left: -300px;
  background: #fff;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  opacity: 0.3;
  -webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
  animation-delay: 0.3s;
  pointer-events: none;
  z-index: 0;
}

#circle-large {
  -webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
  animation-delay: 0.6s;
  position: absolute;
  top: -100px;
  left: -450px;
  background: #fff;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

#circle-xlarge {
  -webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
  animation-delay: 0.9s;
  position: absolute;
  top: -250px;
  left: -600px;
  background: #fff;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

#circle-xxlarge {
  -webkit-animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation: circle-small-scale 3s ease-in-out infinite alternate;
  animation-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
  animation-delay: 1.2s;
  position: absolute;
  top: -400px;
  left: -750px;
  background: #fff;
  width: 1500px;
  height: 1500px;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.section-title,
.award-row {
  position: relative;
  z-index: 1;
}

@-webkit-keyframes circle-small-scale {
  0% { -webkit-transform: scale(1.0); }
  100% { -webkit-transform: scale(1.1); }
}

@keyframes circle-small-scale {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.1); }
}

.section-title {
  text-align: center;
  font-size: clamp(2em, 4.5vw, 3em);
  color: var(--text-white);
  margin-bottom: 60px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  margin: 20px auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Award Row Container */
.award-row {
  display: flex;
  gap: 0;
  margin-bottom: clamp(140px, 18vw, 180px);
  align-items: stretch;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  min-height: 620px;
  height: 620px;
}

/* SECTION 2 - Animated Wave Background */
.award-section-wave {
  padding: clamp(60px, 10vw, 100px) 5% clamp(160px, 18vw, 200px);
  width: 100%;
  box-sizing: border-box;
  background-color: #2d4779;
  position: relative;
  overflow: visible;
}

.award-row-wave {
  overflow: visible;
  background: transparent;
}

.award-section-wave svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.award-section-wave .award-left-image,
.award-section-wave .award-right-container {
  position: relative;
  z-index: 1;
}

/* SECTION 3 - Animated Diagonal Gradient Background */
.award-section-gradient {
  padding: clamp(60px, 10vw, 100px) 5% clamp(160px, 18vw, 200px);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
}

.award-row-gradient {
  overflow: visible;
  background: transparent;
}

.award-section-gradient::before,
.award-section-gradient::after {
  content: "";
  animation: slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, rgb(182, 182, 182) 50%, rgb(34, 75, 136) 50%);
  bottom: 0;
  left: -50%;
  opacity: 0.5;
  position: absolute;
  right: -50%;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

.award-section-gradient::after {
  animation-direction: alternate-reverse;
  animation-duration: 4s;
}

.award-section-gradient .bg3-layer {
  animation: slide 5s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, rgb(182, 182, 182) 50%, rgb(34, 75, 136) 50%);
  bottom: 0;
  left: -50%;
  opacity: 0.5;
  position: absolute;
  right: -50%;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

.award-section-gradient .award-left-image,
.award-section-gradient .award-right-container {
  position: relative;
  z-index: 1;
}

/* Left Image - Smaller */
.award-left-image {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  align-self: last baseline;
  max-height: 85%;
  border-radius: 12px;
}

.award-left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.award-left-image:hover img {
  transform: scale(1.05);
}

/* Right Container - Larger with overlay */
.award-right-container {
  flex: 0 0 60%;
  position: relative;
  overflow: visible;
}

.award-right-image {
  width: 100%;
  height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.award-right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-normal);
}

.award-right-container:hover .award-right-image img {
  transform: scale(1.05);
}

/* Content Box Overlay */
.award-content-box {
  position: absolute;
  top: 80%;
  left: 25px;
  right: 25px;
  transform: translateY(0);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px 30px;
  border-radius: var(--radius-md);
  color: white;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-normal);
  z-index: 10;
  min-height: 200px;
}

.award-right-container:hover .award-content-box {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.award-content-box h3 {
  font-size: clamp(1.3em, 2.5vw, 1.8em);
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-white);
  line-height: 1.2;
}

.award-content-box p {
  font-size: clamp(0.9em, 1.8vw, 1em);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 12px;
}

.award-meta-info {
  display: flex;
  gap: 30px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

.meta-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.award-category {
  display: inline-block;
  background: var(--primary-blue);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ============================================
   VISION / CSR / SERVICE SECTIONS
   ============================================ */
.vision-section,
.csr-section,
.service-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: var(--spacing-sm);
  padding: var(--spacing-md) 5%;
  background: linear-gradient(135deg, var(--steel-mid) 0%, var(--steel-dark) 50%, var(--steel-darkest) 100%);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.vision-section::before,
.csr-section::before,
.service-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(192, 192, 192, 0.03) 2px, transparent 2px),
    linear-gradient(90deg, rgba(192, 192, 192, 0.03) 2px, transparent 2px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(169, 169, 169, 0.04) 20px, rgba(169, 169, 169, 0.04) 40px);
  background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px, 100% 100%;
  background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px, 0 0;
  animation: backgroundShift 15s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.8;
}

@keyframes backgroundShift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* ============================================
   INTERACTIVE CARDS
   ============================================ */
.vision-card,
.csr-card,
.service-card {
  background: var(--bg-white);
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: clamp(300px, 55vw, 400px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border: 1px solid rgba(192, 192, 192, 0.2);
}

.vision-card::before,
.csr-card::before,
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue), var(--steel-mid));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 2;
}

.vision-card:hover,
.csr-card:hover,
.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  justify-content: center;
}

.vision-card:hover::before,
.csr-card:hover::before,
.service-card:hover::before {
  opacity: 1;
}

.vision-card::after,
.csr-card::after,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 52, 54, 0.88), rgba(26, 26, 26, 0.9));
  transition: opacity var(--transition-slow);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

.vision-card:hover::after,
.csr-card:hover::after,
.service-card:hover::after {
  opacity: 1;
}

.vision-card h2,
.vision-card p,
.csr-card h2,
.csr-card p,
.service-card h2,
.service-card p {
  position: relative;
  transform: translateY(150%);
  opacity: 0;
  transition: all var(--transition-slow);
  z-index: 2;
  text-align: center;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.vision-card h2,
.csr-card h2,
.service-card h2 {
  font-size: clamp(1.5em, 3.5vw, 2em);
  font-weight: 800;
  margin-bottom: 15px;
}

.vision-card p,
.csr-card p,
.service-card p {
  font-size: clamp(0.95em, 2vw, 1.05em);
  line-height: 1.7;
}

.vision-card:hover h2,
.vision-card:hover p,
.csr-card:hover h2,
.csr-card:hover p,
.service-card:hover h2,
.service-card:hover p {
  transform: translateY(0);
  opacity: 1;
}

.vision-card:nth-child(1) {
  background: 
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("v1.JPG") center center / cover no-repeat;
}

.vision-card:nth-child(2) {
  background: 
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("v2.JPG") center center / cover no-repeat;
}

.vision-card:nth-child(3) {
  background: 
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("v3.jpg") center center / cover no-repeat;
}

.service-section a:nth-child(1) .service-card {
  background: 
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("slitting2.JPG") center center / cover no-repeat;
}

.service-section a:nth-child(2) .service-card {
  background: 
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("ctl1.JPG") center center / cover no-repeat;
}

.service-section a:nth-child(3) .service-card {
  background: 
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("shearing1.JPG") center center / cover no-repeat;
}

.csr-section a:nth-child(1) .csr-card {
  background: 
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("csr_img1.png") center center / contain no-repeat;
  background-color: var(--bg-white);
}

.csr-section a:nth-child(2) .csr-card {
  background: 
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("csr2logo.png") center center / contain no-repeat;
  background-color: var(--bg-white);
}

.csr-section a:nth-child(3) .csr-card {
  background: 
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("nt.jpg") center center / cover no-repeat;
}

/* ============================================
   CSR HERO WITH SLIDESHOW
   ============================================ */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.1);
}

.hero-slideshow img.active {
  opacity: 1;
  animation: slideZoom 10s ease-out forwards;
}

@keyframes slideZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.88), rgba(45, 52, 54, 0.85));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ============================================
   CSR DETAIL SECTION
   ============================================ */
.csr-detail-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 8vw, 60px);
  padding: var(--spacing-md) 5%;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.csr-detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(99, 110, 114, 0.05) 1px, rgba(99, 110, 114, 0.05) 2px),
    repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(0, 119, 182, 0.02) 100px, rgba(0, 119, 182, 0.02) 200px);
  pointer-events: none;
  opacity: 0.8;
}

.csr-detail-left {
  flex: 1 1 350px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.csr-detail-left img {
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.csr-detail-left img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.csr-detail-right {
  flex: 1 1 350px;
  position: relative;
  z-index: 1;
}

.csr-detail-right h2 {
  font-size: clamp(1.8em, 4.5vw, 2.3rem);
  margin-bottom: 25px;
  color: var(--text-dark);
  font-weight: 800;
  position: relative;
  padding-bottom: 15px;
}

.csr-detail-right h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 2px;
}

.csr-detail-right h2 span {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.csr-detail-right p {
  color: var(--text-gray);
  font-size: clamp(1em, 2.2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: var(--spacing-md) 5%;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  --s: 267px;
  --c1: #2a2a2a;
  --c2: #3a3a3a;
  --c3: #323232;
  background:
    repeating-conic-gradient(from 30deg, #0000 0 120deg, var(--c3) 0 50%) 
    calc(var(--s)/2) calc(var(--s)*tan(30deg)/2),
    repeating-conic-gradient(from 30deg, var(--c1) 0 60deg, var(--c2) 0 120deg, var(--c3) 0 50%);
  background-size: var(--s) calc(var(--s)*tan(30deg));
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 0;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(40px, 8vw, 60px);
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

.contact-left {
  flex: 1 1 560px;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(30px, 3vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(192, 192, 192, 0.2);
  box-shadow: var(--shadow-md);
}

.contact-left h2,
.contact-right h2 {
  font-size: clamp(1.8em, 4.5vw, 2.5em);
  font-weight: 800;
  margin-bottom: 30px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  color: var(--text-white);
}

.contact-left h2 span,
.contact-right h2 span {
  color: var(--accent-blue);
}

.contact-left h3 {
  margin-top: 10px;
  font-size: clamp(1.2em, 2.8vw, 1.5em);
  color: var(--text-light);
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
  font-size: clamp(0.95em, 2vw, 1.05em);
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(10px);
}

.contact-item i {
  font-size: clamp(20px, 4vw, 24px);
  color: var(--accent-blue);
  flex-shrink: 0;
  background: rgba(0, 180, 216, 0.2);
  padding: 12px;
  border-radius: 10px;
}

.map-link .map-image {
  width: 100%;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.map-link:hover .map-image {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(135deg, var(--steel-darkest) 0%, var(--steel-dark) 50%, var(--steel-mid) 100%);
  color: var(--text-white);
  padding: clamp(50px, 10vw, 70px) 5% 20px;
  font-family: "Poppins", "Segoe UI", sans-serif;
  text-align: center;
  font-weight: 600;
  font-size: clamp(0.85em, 1.8vw, 0.95em);
  border-top: 5px solid var(--primary-blue);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08) 2px, transparent 2px);
  background-size: 15px 15px, 30px 30px;
  background-position: 0 0, 7.5px 7.5px;
  pointer-events: none;
  opacity: 0.5;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: var(--spacing-sm);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: clamp(1.1em, 2.5vw, 1.3em);
  border-bottom: 3px solid var(--primary-blue);
  display: inline-block;
  padding-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: all var(--transition-fast);
  font-size: clamp(0.9em, 1.8vw, 1em);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--accent-blue);
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(116, 192, 252, 0.5);
}

.social-icons a img {
  width: clamp(28px, 6vw, 35px);
  height: clamp(28px, 6vw, 35px);
  margin: 8px 5px;
  border-radius: 50%;
  filter: brightness(0.9) invert(1);
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
}

.social-icons a img:hover {
  transform: scale(1.2) rotate(10deg);
  background: rgba(0, 180, 216, 0.3);
  box-shadow: 0 5px 15px rgba(0, 180, 216, 0.5);
}

.certificates img {
  width: clamp(70px, 14vw, 90px);
  margin: 8px;
  display: inline-block;
  transition: transform var(--transition-fast);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.certificates img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: clamp(40px, 8vw, 60px);
  font-size: clamp(0.85em, 1.7vw, 0.95em);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  color: #d0d0d0;
  position: relative;
  z-index: 1;
}

.footer-col p {
  font-size: clamp(0.9em, 1.8vw, 1em);
  line-height: 1.7;
  color: var(--text-light);
}

.footer-col span {
  display: block;
  margin-top: 8px;
  color: var(--accent-blue);
  font-weight: 600;
}

/* ============================================
   DROPDOWN NAVIGATION
   ============================================ */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown > a {
  cursor: pointer;
}

.dropdown-toggle {
  display: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, var(--steel-dark), var(--steel-darkest));
  padding: 12px 0;
  border-radius: var(--radius-md);
  display: none;
  flex-direction: column;
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  border: 1px solid rgba(192, 192, 192, 0.15);
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: flex;
}

.dropdown-menu a {
  padding: 12px 20px;
  color: var(--text-white);
  text-decoration: none;
  white-space: nowrap;
  font-size: clamp(0.95em, 1.9vw, 1.05em);
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
  margin: 2px 8px;
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(99, 110, 114, 0.2));
  color: var(--accent-blue);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.2);
}

.dropdown-menu a::after {
  display: none !important;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.service-h1 {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  font-size: clamp(1.8em, 4.5vw, 2.5em);
  padding: 30px 5%;
  font-weight: 800;
}

.service-p {
  color: var(--text-gray);
  text-align: center;
  font-size: clamp(1em, 2.2vw, 1.15em);
  padding: 0 5% 30px;
  line-height: 1.8;
}

.csr-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet Landscape */
@media (max-width: 1200px) {
  header {
    padding: 12px 2.5%;
    min-height: 75px;
  }

  .logo {
    max-width: 240px;
  }

  .nav-links {
    gap: clamp(6px, 1.2vw, 12px);
  }

  .nav-links a {
    font-size: clamp(0.8em, 1.5vw, 0.95em);
    padding: 6px 8px;
  }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
  .logo {
    max-width: 220px;
  }

  .logo-text {
    font-size: clamp(0.7em, 1.6vw, 0.85em);
  }

  .nav-links a {
    font-size: 0.9em;
    padding: 6px 7px;
  }

  .award-left-image {
    flex: 0 0 35%;
  }
  
  .award-right-container {
    flex: 0 0 65%;
  }
}

/* ============================================
   MOBILE (max-width: 900px)
   ALL AWARD FIXES ARE SCOPED HERE - DESKTOP UNAFFECTED
   ============================================ */
@media (max-width: 900px) {
  header {
    padding: 10px 3%;
    min-height: 70px;
  }

  .logo {
    max-width: 200px;
  }

  .logo-img {
    height: 50px;
  }

  .logo-text {
    font-size: 0.75em;
  }

  .partner-badge {
    display: none !important;
  }

  .content {
    flex-wrap: wrap;
    padding: 60px 5%;
    gap: 30px;
  }

  .content:nth-child(even) {
    flex-direction: column;
  }

  .content img {
    min-width: 0;
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .content .text {
    min-width: 0;
    flex: 1 1 100%;
    max-width: 100%;
    padding: clamp(25px, 5vw, 35px);
    margin: 0 auto;
  }

  .vision-section,
  .csr-section,
  .service-section {
    grid-template-columns: 1fr;
    padding: 60px 5%;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-right {
    order: 1;
  }

  .contact-left {
    order: 2;
  }

  .contact-section {
    padding: 60px 5%;
  }

  /* Mobile Navigation */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    position: fixed;
    top: 70px;
    right: 0;
    background: linear-gradient(135deg, var(--steel-dark), var(--steel-darkest));
    width: 100%;
    max-width: 320px;
    height: calc(100vh - 70px);
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    padding: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .nav-links.show {
    display: flex;
    animation: slideInRight 0.3s ease-out;
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .nav-links a {
    padding: 20px 28px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    font-weight: 500;
    font-size: 1.05em;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    background: rgba(0, 180, 216, 0.15);
    padding-left: 35px;
  }

  .nav-links a.active {
    background: rgba(0, 180, 216, 0.2);
    border-left: 4px solid var(--accent-blue);
  }

  .menu-btn {
    display: block;
  }

  /* Mobile Dropdown */
  .dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
  }
  
  .dropdown > a {
    padding: 20px 60px 20px 28px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
    width: 100%;
    display: block;
    position: relative;
  }
  
  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0;
    transition: transform var(--transition-fast);
    color: white;
    user-select: none;
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 10;
    pointer-events: all;
  }
  
  .dropdown.active .dropdown-toggle {
    transform: translateY(-50%) rotate(90deg);
  }
  
  .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    background: rgba(20, 20, 20, 0.95);
    padding: 0;
    width: 100%;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.4);
    border-radius: 0;
    border: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
    display: flex;
    flex-direction: column;
  }
  
  .dropdown.active .dropdown-menu {
    max-height: 500px;
  }
  
  .dropdown-menu a {
    padding: 18px 28px 18px 50px;
    color: var(--text-light);
    font-size: 1em;
    border-bottom: 1px solid rgba(192, 192, 192, 0.05);
    margin: 0;
    border-radius: 0;
    background: transparent;
  }
  
  .dropdown-menu a:last-child {
    border-bottom: none;
  }
  
  .dropdown-menu a:hover {
    background: rgba(0, 180, 216, 0.2);
    color: var(--accent-blue);
    padding-left: 55px;
    transform: none;
    box-shadow: none;
  }
  
  .dropdown:hover .dropdown-menu {
    display: flex;
    max-height: 0;
  }
  
  .dropdown.active:hover .dropdown-menu {
    max-height: 500px;
  }

  /* ============================================
     AWARDS MOBILE FIXES — DESKTOP UNAFFECTED
     ============================================ */

  /* Section containers: clip overflow to stop bleed */
  .awards-gallery-section,
  .award-section-wave,
  .award-section-gradient {
    overflow: hidden;
    padding: 60px 5% 160px;
  }

  /* Row: stack vertically, clip the parallelogram bleed */
  .award-row {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    overflow: hidden;         /* KEY FIX: clips the blue shape bleed */
    min-height: auto;
    height: auto;
    margin-bottom: 120px;
  }

  /* Left image: full width, constrained height */
  .award-left-image {
    flex: 1 1 100%;           /* KEY FIX: was 0 0 35%, now fills column */
    width: 100%;
    max-width: 100%;
    min-height: 250px;
    max-height: 350px;
    overflow: hidden;
    border-radius: 16px;
    align-self: auto;         /* overrides desktop's last baseline */
    margin-bottom: 20px;
  }

  /* Right container: full width */
  .award-right-container {
    flex: 1 1 100%;           /* KEY FIX: was 0 0 65%, now fills column */
    width: 100%;
    max-width: 100%;
    min-height: 400px;
    margin-bottom: 120px;
    overflow: visible;
  }

  .award-right-image {
    height: 400px;
  }

  .award-content-box {
    top: 50%;
    left: 15px;
    right: 15px;
    padding: 20px;
    transform: translateY(0);
  }

  .award-meta-info {
    flex-direction: column;
    gap: 15px;
  }
}

/* Mobile Portrait */
@media (max-width: 600px) {
  .award-row {
    margin-bottom: 100px;
  }
  
  .award-right-container {
    margin-bottom: 100px;
  }
  
  .award-right-image {
    height: 350px;
  }
  
  .award-content-box {
    padding: 18px;
    top: 50%;
    transform: translateY(0);
  }

  .nav-links {
    max-width: 300px;
  }

  .content {
    padding: 50px 5%;
  }

  .hero,
  .vision-hero,
  .facilities-hero,
  .sustainability-hero,
  .about-hero,
  .csr-hero,
  .contact-hero {
    padding: clamp(50px, 8vh, 70px) 5%;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  header {
    padding: 8px 3%;
  }

  .logo {
    font-size: 1.1em;
    gap: 6px;
  }

  .logo-img {
    height: 45px;
  }

  .nav-links {
    width: 100%;
    max-width: 100%;
  }

  .hero button {
    padding: 12px 26px;
    font-size: 0.95em;
  }

  .hero h1 {
    font-size: 1.6em;
  }

  .hero p {
    font-size: 0.9em;
  }

  .content {
    padding: 40px 4%;
  }

  .content .text {
    padding: 20px 15px;
  }
}

/* Extra Small Devices */
@media (max-width: 320px) {
  header {
    padding: 8px 2%;
    min-height: 60px;
  }

  .logo {
    font-size: 1em;
  }

  .logo-img {
    height: 40px;
  }

  .hero {
    padding: 40px 4%;
  }

  .hero h1 {
    font-size: 1.4em;
  }

  .hero p {
    font-size: 0.85em;
  }

  .content {
    padding: 35px 4%;
  }
}

/* ============================================
   CRITICAL MOBILE EDGE FIX
   ============================================ */
@media (max-width: 900px) {
  body {
    overflow-x: hidden;
    width: 100%;
  }

  .content,
  .vision-section,
  .csr-section,
  .service-section,
  .contact-section,
  .awards-gallery-section,
  .csr-detail-section {
    width: 100%;
    max-width: 100vw;
    padding-left: 5%;
    padding-right: 5%;
    box-sizing: border-box;
  }

  .content > *,
  .vision-section > *,
  .csr-section > *,
  .service-section > *,
  .contact-section > *,
  .csr-detail-section > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .content .text {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .content img,
  .csr-detail-left img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .slider {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
@media (max-width: 768px) {
  .content:nth-child(even)::before {
    animation: none;
  }
  
  .vision-section::before,
  .csr-section::before,
  .service-section::before {
    animation: none;
  }
}

/* Print styles */
@media print {
  header,
  .menu-btn,
  .site-footer {
    display: none;
  }
  
  .hero,
  .vision-hero,
  .facilities-hero,
  .sustainability-hero,
  .about-hero,
  .csr-hero,
  .contact-hero {
    background-attachment: scroll;
    page-break-inside: avoid;
  }
}


 @keyframes rotate {
					 0% {
                    transform: rotate(0deg);
                }
                100% {
                    transform: rotate(360deg);
                }
            }
            .out-top {
                animation: rotate 20s linear infinite;
                transform-origin: 13px 25px;
            }
            .in-top {
                animation: rotate 10s linear infinite;
                transform-origin: 13px 25px;
            }
            .out-bottom {
                animation: rotate 25s linear infinite;
                transform-origin: 84px 93px;
            }
            .in-bottom {
                animation: rotate 15s linear infinite;
                transform-origin: 84px 93px;
            }