:root {
  --primary: #0B4A93;
  --secondary: #5AB6F2;
  --accent: #D89A2B;
  --bg-color: #FAFBF8;
  --dark-section: #082A4F;
  --text-dark: #1E293B;
  --text-light: #64748B;
  --card-bg: #FFFFFF;
  
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 60px rgba(11, 74, 147, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-dark: rgba(8, 42, 79, 0.6);
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.9;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* Premium Typography */
.premium-h1 {
  font-size: 64px;
}
.premium-h2 {
  font-size: 22px;
}
.premium-p {
  font-size: 18px;
  max-width: 750px;
}

/* Alternating Backgrounds */
.bg-white {
  background: #FFFFFF;
}
.bg-light-green {
  background: linear-gradient(135deg, #F8FBF8, rgba(15, 157, 88, 0.05));
}
.bg-dark-green {
  background: var(--dark-section);
  color: #FFFFFF;
}
.bg-dark-green p, .bg-dark-green h2, .bg-dark-green h3 {
  color: #FFFFFF;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Glass Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: var(--transition);
}
.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  padding: 15px 5%;
}
.logo img {
  height: 40px;
}
.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav a {
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav a:hover::after {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 300%; height: 300%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
}
.btn-primary:hover::before {
  transform: translate(-50%, -50%) scale(1);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 157, 88, 0.4);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: white;
  transform: translateY(-3px);
}

/* Hero Section */
.about-banner {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 10% 60px;
  overflow: hidden;
}
.about-banner-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.about-banner-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(7, 26, 18, 0.82) 0%, rgba(15, 157, 88, 0.5) 100%);
  z-index: 2;
}
.about-banner-content {
  position: relative;
  z-index: 10;
  color: #ffffff !important;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.about-banner-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff !important;
}
.about-banner h1, .about-banner-title {
  font-size: clamp(32px, 5vw, 64px);
  margin-bottom: 24px;
  color: #ffffff !important;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  position: relative;
  z-index: 10;
  display: block;
}
.about-banner p, .about-banner-desc {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 400;
  color: #ffffff !important;
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0,0,0,0.4);
}
.about-banner-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.about-banner-btns .btn-primary {
  background: var(--color-green, #10B981);
  color: #ffffff !important;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease;
}
.about-banner-btns .btn-primary:hover {
  transform: translateY(-3px);
  background: #0e9f6e;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.6);
}
.about-banner-btns .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.about-banner-btns .btn-secondary:hover {
  background: #ffffff;
  color: #0f172a !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}
.about-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  opacity: 0.7;
  animation: aboutBounce 2s infinite;
}
@keyframes aboutBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-15px) translateX(-50%); }
  60% { transform: translateY(-7px) translateX(-50%); }
}

/* Sections Common */
.section {
  padding: 30px 5%;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: 42px;
  margin-bottom: 20px;
}
.section-header p {
  color: var(--text-light);
  font-size: 18px;
}

/* Timeline Section */
.timeline-section {
  background: var(--bg-color);
}
.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(15, 157, 88, 0.1);
  transform: translateX(-50%);
  border-radius: 4px;
}
.timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  border-radius: 4px;
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-content {
  width: 45%;
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.step-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.timeline-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.timeline-content p {
  color: var(--text-light);
}
.timeline-icon {
  width: 60px;
  height: 60px;
  background: white;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  z-index: 2;
  box-shadow: 0 0 20px rgba(15,157,88,0.2);
}
.timeline-content ul {
  margin-top: 15px;
  padding-left: 20px;
}
.timeline-content ul li {
  color: var(--text-light);
  margin-bottom: 5px;
  list-style-type: disc;
}

/* Quality Section */
.quality-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.quality-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.quality-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}
.quality-img:hover img {
  transform: scale(1.05);
}
.counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.counter-box {
  background: white;
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.02);
}
.counter-num {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 5px;
}
.counter-text {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

/* Safety Section */
.safety-section {
  background: var(--dark-section);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.safety-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.05;
  background-image: linear-gradient(var(--primary) 1px, transparent 1px), linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size: 40px 40px;
}
.safety-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.safety-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}
.safety-content p {
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 50px;
}
.safety-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.s-icon {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  width: 120px; height: 120px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--primary);
  transition: var(--transition);
}
.s-icon:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(15,157,88,0.2);
}
.s-icon span {
  color: white;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
}

/* Sustainability */
.sustain-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.sustain-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: none !important;
}
.sustain-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(7, 26, 18, 0.9), rgba(15, 157, 88, 0.3));
  z-index: -1;
}
.sustain-content {
  max-width: 900px;
  z-index: 1;
}
.sustain-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}
.sustain-content p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
}
.sustain-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-pill {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);
  padding: 15px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
}
.stat-pill i {
  color: var(--accent);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  margin-bottom: 15px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-hover);
}
.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark);
}
.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}
.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  color: var(--text-light);
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 200px;
}

/* Final CTA */
.cta-section {
  position: relative;
  padding: 120px 5%;
  text-align: center;
  color: white;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(7, 26, 18, 0.85);
  backdrop-filter: blur(10px);
  z-index: -1;
}
.cta-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}
.cta-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}
.cta-content p {
  font-size: 20px;
  opacity: 0.8;
  margin-bottom: 40px;
}

/* Contact Card */
.contact-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 60px;
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: -80px auto 100px;
  position: relative;
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.5);
}
.contact-glass h2 {
  color: var(--text-dark);
  font-size: 36px;
  margin-bottom: 15px;
}
.contact-glass p {
  color: var(--text-light);
  margin-bottom: 30px;
}
.contact-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-call { background: var(--primary); color: white; }
.btn-wa { background: #25D366; color: white; }
.btn-quote { background: var(--dark-section); color: white; }
.btn-office { background: #f1f5f9; color: var(--text-dark); }
.btn-contact:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Footer */
.back-to-top {
  background: var(--primary);
  width: 45px; height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.back-to-top:hover {
  background: white;
  color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
  .quality-section {
    grid-template-columns: 1fr;
  }
  .timeline-line, .timeline-progress { left: 30px; transform: none; }
  .timeline-item, .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 80px;
  }
  .timeline-icon { left: 30px; }
  .timeline-content { width: 100%; }
}
@media (max-width: 768px) {
  .about-banner h1 { font-size: 40px; }
  .nav { display: none; }
  .header { padding: 15px 5%; }
  .contact-glass { margin: 0 5%; padding: 40px 20px; }
}

/* --- PREMIUM SECTIONS Redesign --- */

/* Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(15, 157, 88, 0.1);
    color: var(--primary);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(15, 157, 88, 0.2);
}

/* Why Choose Section */
.premium-why-choose {
    position: relative;
    background: #F8FBF8;
    overflow: hidden;
    padding: 100px 5%;
}

.bg-mesh {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 15% 50%, rgba(15, 157, 88, 0.05), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(255, 193, 7, 0.05), transparent 25%);
    z-index: 0;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background-image: radial-gradient(rgba(15, 157, 88, 0.2) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    z-index: 0;
}

.premium-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.premium-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.premium-header p {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
}

/* Why Choose Grid */
.premium-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
}

.premium-card {
    background: var(--card-bg);
    border: 1px solid rgba(15, 157, 88, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    opacity: 0;
    transform: translateY(40px);
    width: calc(25% - 25px);
    margin: 12.5px;
}

.premium-card.wide {
    width: calc(33.333% - 25px);
}

.premium-card.reveal {
    animation: fadeUp 0.8s forwards ease-out;
}

.premium-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(15, 157, 88, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
    position: relative;
}

.premium-icon-wrap i {
    color: var(--primary);
    width: 32px;
    height: 32px;
    transition: var(--transition);
}

.premium-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.premium-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.premium-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-hover);
    background: #ffffff;
}

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

.premium-card:hover .premium-icon-wrap {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(15, 157, 88, 0.4);
}

.premium-card:hover .premium-icon-wrap i {
    color: white;
    transform: rotate(10deg);
}

/* Industries We Serve */
.premium-industries {
    position: relative;
    padding: 120px 5%;
    background: url('../../images/about-cta-bg.webp') center/cover fixed;
    color: white;
}

.industries-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(7, 26, 18, 0.9), rgba(15, 157, 88, 0.8));
    z-index: 1;
}

.industries-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.5s;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.glass-card.reveal {
    animation: fadeUpScale 0.8s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.glass-card .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.5s;
}

.glass-card:hover .icon-box {
    background: var(--accent);
    transform: scale(1.1);
}

.glass-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.glass-card p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); filter: blur(5px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes fadeUpScale {
    0% { opacity: 0; transform: translateY(40px) scale(0.95); filter: blur(5px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* Divider */
.svg-divider {
    position: relative;
    height: 100px;
    width: 100%;
    background: var(--bg-color);
    overflow: hidden;
}

.svg-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.sunlight-anim {
    position: absolute;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,193,7,0.4), transparent);
    animation: sunlightSweep 5s infinite linear;
    z-index: 2;
}

@keyframes sunlightSweep {
    0% { left: -200px; }
    100% { left: 100%; }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .premium-card { width: calc(50% - 25px); }
    .premium-card.wide { width: calc(50% - 25px); }
    .glass-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .premium-card { width: 100%; margin: 10px 0; }
    .premium-card.wide { width: 100%; margin: 10px 0; }
    .glass-grid { grid-template-columns: 1fr; }
    .premium-why-choose, .premium-industries { padding: 60px 5%; }
}

/* About the Company Section */
.about-company-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-company-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-company-grid {
        grid-template-columns: 1fr;
    }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(15, 157, 88, 0.2);
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* Floating Image Card */
.floating-image-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    animation: floatAnim 6s ease-in-out infinite;
    width: 100%;
}

.floating-image-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

.shine-effect {
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shineAnim 5s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes floatAnim {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes shineAnim {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Trust Indicators */
.trust-indicators-section {
    padding: 60px 5%;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

.trust-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 157, 88, 0.1);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.4s;
}

.trust-card i {
    color: var(--primary);
    width: 36px;
    height: 36px;
    margin-bottom: 15px;
    transition: all 0.4s;
}

.trust-card h4 {
    font-size: 16px;
    color: var(--text-dark);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(15, 157, 88, 0.1);
    border-color: rgba(15, 157, 88, 0.3);
}

.trust-card:hover i {
    filter: drop-shadow(0 0 8px rgba(15, 157, 88, 0.6));
    transform: scale(1.1);
}

/* Managing Director Section */
.md-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.md-decorations {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
}

.grid-lines {
    position: absolute;
    width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.md-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: center;
}

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

.md-portrait {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    border: 4px solid var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.md-bullets p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.md-signature {
    margin-top: 30px;
    position: relative;
    display: inline-block;
}

.green-underline {
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    background: var(--primary);
    width: 0;
    transition: width 1s ease-out;
}

.signature-slide.active .green-underline {
    width: 100%;
}

.glass-card-dark {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    position: relative;
}

.quote-icon {
    margin-bottom: 30px;
}

/* Animations */
.fade-up-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.fade-up-anim.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}
.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}
.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

.word-reveal span {
    opacity: 0;
    display: inline-block;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}
.word-reveal.active span {
    opacity: 1;
    transform: translateY(0);
}

.svg-draw path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 1.5s ease-in-out;
}
.svg-draw.active path {
    stroke-dashoffset: 0;
}

/* ------------------------------------------ */
/* Responsive Media Queries for Premium Sections */
/* ------------------------------------------ */

@media (max-width: 1200px) {
  /* Reduce grid gaps and adjust typography */
  .about-company-grid,
  .md-grid {
    gap: 40px;
  }
  .premium-h1 {
    font-size: 48px;
  }
  .premium-h2 {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  /* About Company Section */
  .about-company-section {
    padding: 80px 5%;
  }
  .about-company-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .floating-image-card {
    max-width: 90%;
    margin: 0 auto;
  }

  /* Very small devices */
  .premium-h1 { font-size: 28px; }
  .premium-h2 { font-size: 16px; }
  .premium-p { font-size: 14px; }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* End of responsive queries */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* Mobile fixes for sustain section */
@media (max-width: 768px) {
  .sustain-section {
    height: auto;
    min-height: 80vh;
    padding: 80px 20px;
  }
  .sustain-content h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  .sustain-content p {
    font-size: 16px;
  }
  .sustain-stats {
    gap: 20px;
  }
}

/* ==========================================================================
   Awards & Recognitions Showcase (Seamlessly Blended with Site Theme)
   ========================================================================== */
.awards-section {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(180deg, #F8FBF8 0%, rgba(11, 74, 147, 0.03) 50%, #FAFBF8 100%);
  border-top: 1px solid rgba(11, 74, 147, 0.08);
  border-bottom: 1px solid rgba(11, 74, 147, 0.08);
  overflow: hidden;
}

.awards-ambient-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  max-width: 100%;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(216, 154, 43, 0.08) 0%, rgba(11, 74, 147, 0.04) 50%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.awards-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 2;
}

.awards-section .section-header {
  margin-bottom: 45px;
}

.awards-section .section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.awards-section .section-header p {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--text-light);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
}

/* Category Section Label with Lines */
.awards-showcase-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 28px;
}

.awards-showcase-label .label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 74, 147, 0.15), transparent);
}

.awards-showcase-label .label-text {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(11, 74, 147, 0.1);
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.awards-showcase-label .label-text i {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

/* Grids */
.awards-primary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.awards-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Award Card (Integrates with site design system) */
.award-card {
  background: var(--card-bg, #FFFFFF);
  border-radius: var(--radius-lg, 28px);
  border: 1px solid rgba(11, 74, 147, 0.1);
  box-shadow: var(--shadow-soft, 0 10px 40px rgba(0, 0, 0, 0.05));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
  user-select: none;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(11, 74, 147, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(11, 74, 147, 0.28);
}

/* Authentic Matting & Frame */
.award-matting {
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF4F9 100%);
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(11, 74, 147, 0.08);
}

.award-frame {
  position: relative;
  background: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.09), inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.award-frame img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.award-card:hover .award-frame img {
  transform: scale(1.03);
}

/* Hover Cue Pill */
.award-hover-cue {
  position: absolute;
  inset: 0;
  background: rgba(8, 42, 79, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.award-card:hover .award-hover-cue {
  opacity: 1;
}

.cue-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: var(--dark-section, #082A4F);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(6px);
  transition: transform 0.3s ease;
}

.award-card:hover .cue-pill {
  transform: translateY(0);
}

.cue-pill i {
  width: 15px;
  height: 15px;
  color: var(--primary, #0B4A93);
}

/* Card Info Body */
.award-card-info {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

/* Subtle Metallic Foiled Stamp / Tier Seal */
.award-tier-seal {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}

.award-tier-seal i {
  width: 14px;
  height: 14px;
}

.seal-diamond {
  background: rgba(11, 74, 147, 0.08);
  color: var(--primary, #0B4A93);
  border: 1px solid rgba(11, 74, 147, 0.22);
}

.seal-platinum {
  background: rgba(71, 85, 105, 0.09);
  color: #334155;
  border: 1px solid rgba(71, 85, 105, 0.22);
}

.seal-gold {
  background: rgba(216, 154, 43, 0.12);
  color: #B45309;
  border: 1px solid rgba(216, 154, 43, 0.32);
}

.seal-partner {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.seal-govt {
  background: rgba(2, 132, 199, 0.09);
  color: #0284C7;
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.award-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark, #1E293B);
  line-height: 1.35;
  margin-bottom: 6px;
}

.award-card-subtitle {
  font-size: 0.88rem;
  color: var(--text-light, #64748B);
  line-height: 1.5;
  margin-bottom: 8px;
}

.award-card-desc {
  font-size: 0.82rem;
  color: var(--text-light, #64748B);
  line-height: 1.55;
  margin-bottom: 14px;
}

/* Card Metadata Row */
.award-card-meta {
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light, #64748B);
}

.award-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.award-card-meta span i {
  width: 14px;
  height: 14px;
  color: var(--primary, #0B4A93);
}

/* Credential Cards (Secondary Grid) Subtle Tweaks */
.credential-card .award-frame {
  min-height: 250px;
}

/* Lightbox Modal (Site Theme Matching) */
.awards-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 42, 79, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 24px;
  box-sizing: border-box;
}

.awards-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.awards-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
}

.awards-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

.awards-lightbox-close i {
  width: 22px;
  height: 22px;
}

.awards-lightbox-content {
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.awards-lightbox-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.awards-lightbox-content img {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  display: block;
}

.awards-lightbox-details {
  margin-top: 18px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.awards-lightbox-caption {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  max-width: 720px;
  opacity: 0.95;
}

.awards-lightbox-dismiss-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.awards-lightbox-dismiss-btn:hover {
  background: #FFFFFF;
  color: var(--dark-section, #082A4F);
}

/* Responsive Mobile Rules */
@media (max-width: 1100px) {
  .awards-primary-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .awards-section {
    padding: 70px 0 75px;
  }
  .awards-wrapper {
    padding: 0 16px;
  }
  .awards-section .section-header {
    margin-bottom: 32px;
  }
  .awards-showcase-label {
    margin: 32px 0 20px;
  }
  .awards-primary-grid,
  .awards-secondary-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .award-matting {
    padding: 16px 16px 12px;
  }
  .award-frame {
    min-height: 210px;
  }
  .award-frame img {
    height: 210px;
  }
  .award-card-info {
    padding: 18px 20px 20px;
  }
  .award-card-title {
    font-size: 1.08rem;
  }
  .awards-lightbox {
    padding: 14px;
  }
  .awards-lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }
  .awards-lightbox-content img {
    max-height: 60vh;
  }
  .awards-lightbox-caption {
    font-size: 0.88rem;
  }
}

