/* ============================================
   SUSTAINABILITY PAGE STYLES
   ============================================ */

/* ===== HERO SECTION ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
   
    box-sizing: border-box;
}
.sustainability-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  overflow: hidden;
  clip-path: ellipse(100% 100% at 50% 0%); /* Circular/elliptical shape at top */
}

.hero-static {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  color: white;
}

.hero-text {
  max-width: 800px;
  margin-top: 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color:black
}

.breadcrumb a {
  color:black;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #00a8ff;
}

.breadcrumb .current {
  color: #00a8ff;
  font-weight: 600;
}

.breadcrumb i {
  font-size: 0.8rem;
  margin: 0 5px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  color: black;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 40px;
  color: black;
  max-width: 700px;
}

.hero-stats-sustainability {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  padding: 20px;
 background: white;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 150px;
  transition: transform 0.3s, background 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
  color: #00a8ff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
color: black;
font-weight: 400;
}

/* ===== QUICK NAVIGATION ===== */
.sustainability-nav {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 80px;
  z-index: 100;
}

.sustainability-quick-nav {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  color: #495057;
  border-radius: 8px;
  transition: all 0.3s;
  min-width: 120px;
}

.nav-link i {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #1a3b5d;
}

.nav-link span {
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  background: #1a3b5d;
  color: white;
}

.nav-link:hover i,
.nav-link.active i {
  color: white;
}

/* ===== MAIN CONTENT SECTIONS ===== */
.sustainability-content {
  padding-top: 0;
}

#sdgs {
  padding-bottom: 40px;
}

#roadmap {
  padding-top: 40px;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 90px;
  margin-top: 50px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00a8ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3b5d;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== SUSTAINABILITY INTRO ===== */
.sustainability-intro {
  background: #fff;
}

.sustainability-intro .intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.visual-card {
  text-align: center;
  padding: 25px 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e9ecef;
}

.visual-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 168, 255, 0.15);
  border-color: #00a8ff;
}

.visual-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00a8ff, #0097e6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.visual-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #1a3b5d;
}

.visual-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #1a3b5d;
  margin-bottom: 20px;
  font-weight: 500;
}

.btn-primary-sustainability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00a8ff, #0097e6);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.btn-primary-sustainability:hover {
  background: linear-gradient(135deg, #0097e6, #0082cc);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 255, 0.3);
}

.intro-image {
  position: relative;
}

.image-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-hover-zoom img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.img-hover-zoom:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 59, 93, 0.8));
  color: white;
  padding: 20px;
  font-weight: 600;
}

.image-overlay i {
  margin-right: 8px;
}

/* ===== SDGS SECTION ===== */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: white;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 59, 93, 0.9) 0%, rgba(10, 35, 64, 0.8) 100%);
}

.sdgs-section .container {
  position: relative;
  z-index: 2;
}

.sdgs-section .section-p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  line-height: 1.6;
}

.sdgs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
 
}

.sdg-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s;
}

.sdg-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.sdg-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00a8ff;
  margin-bottom: 15px;
}

.sdg-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.sdg-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

.sdg-progress {
  margin-top: 20px;
}

.progress-bar {
  height: 8px;
  background: #00a8ff;
  border-radius: 4px;
  margin-bottom: 8px;
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: white;
}

.sdg-progress span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== ROADMAP SECTION ===== */
.roadmap-section {
  background: #fff;
}
/* Reduce spacing between specific sections */


.roadmap-section {
  padding-top: 40px !important; /* Reduce top padding */
}/* Control parallax section height better */
.parallax-section {
  min-height: auto !important;

  background-attachment: scroll !important; /* Better mobile performance */
}
/* Ensure no extra margins in SDGs grid */
.sdgs-grid {
  margin-bottom: 0;
}

.sdgs-section .container {
  padding-bottom: 0;
}

.roadmap-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.roadmap-timeline {
  position: relative;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e9ecef;
  border-radius: 2px;
}

.timeline-milestone {
  position: relative;
  padding-left: 140px;
  margin-bottom: 40px;
}

.timeline-milestone:last-child {
  margin-bottom: 0;
}

.milestone-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  background: #1a3b5d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
}

.timeline-milestone.active .milestone-year {
  background: linear-gradient(135deg, #00a8ff, #0097e6);
}

.milestone-content {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #1a3b5d;
}

.timeline-milestone.active .milestone-content {
  border-left-color: #00a8ff;
}

.milestone-content h4 {
  font-size: 1.25rem;
  color: #1a3b5d;
  margin-bottom: 10px;
}

.milestone-content p {
  color: #666;
  line-height: 1.6;
}

.btn-outline-sustainability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #1a3b5d;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid #1a3b5d;
  cursor: pointer;
  margin-top: 20px;
}

.btn-outline-sustainability:hover {
  background: #1a3b5d;
  color: white;
  transform: translateY(-2px);
}

/* ===== IMPACT SECTION ===== */
.impact-section {
  background: #fff;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.impact-stat {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s;
}

.impact-stat:hover {
  transform: translateY(-5px);
  background: #e9ecef;
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00a8ff, #0097e6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.impact-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00a8ff;
  margin-bottom: 5px;
}

.impact-stat .stat-label {
  font-size: 1rem;
  color: #666;
}

.impact-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.impact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.impact-card:nth-child(even) .impact-content {
  order: 2;
}

.impact-card:nth-child(even) .impact-image {
  order: 1;
}

.impact-image {
  height: 100%;
  min-height: 400px;
}

.impact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-content {
  padding: 40px;
}

.impact-content h3 {
  font-size: 1.75rem;
  color: #1a3b5d;
  margin-bottom: 20px;
}

.impact-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.impact-content ul {
  list-style: none;
  padding: 0;
}

.impact-content li {
  margin-bottom: 10px;
  color: #666;
}

.impact-content li i {
  color: #00a8ff;
  margin-right: 10px;
}

/* ===============================
   GREEN INITIATIVES – CUSTOM STYLE
   =============================== */

.green-initiatives {
  position: relative;
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

/* Dark overlay */
.green-initiatives .parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 32, 55, 0.92),
    rgba(18, 58, 92, 0.88)
  );
  z-index: 1;
}

.green-initiatives .container {
  position: relative;
  z-index: 2;
}

/* Header */
.green-initiatives .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.green-initiatives .section-subtitle {
  color: #00a8ff;
  letter-spacing: 2px;
  font-weight: 600;
}

.green-initiatives .section-title {
  color: #ffffff;
  font-size: 2.6rem;
}

/* Grid */
.green-initiatives .initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Cards */
.green-initiatives .initiative-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 42px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.green-initiatives .initiative-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

/* Icon */
.green-initiatives .initiative-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a8ff, #0097e6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
}

/* Text */
.green-initiatives .initiative-card h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.green-initiatives .initiative-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 26px;
}

/* Progress */
.green-initiatives .initiative-progress {
  margin-top: 20px;
}

.green-initiatives .initiative-progress .progress-bar {
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(90deg, #00a8ff, #00e0ff);
  margin-bottom: 8px;
}

.green-initiatives .initiative-progress span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 1024px) {
  .green-initiatives .initiatives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .green-initiatives .initiatives-grid {
    grid-template-columns: 1fr;
  }

  .green-initiatives {
    padding: 70px 0;
  }
}
/* ===============================
   SDGs SECTION – CUSTOM STYLE
   =============================== */

.impact-sdgs {
  position: relative;
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

/* Overlay */
.impact-sdgs .parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 38, 66, 0.94),
    rgba(18, 58, 92, 0.88)
  );
  z-index: 1;
}

.impact-sdgs .container {
  position: relative;
  z-index: 2;
}

/* Header */
.impact-sdgs .section-header {
  text-align: center;
  margin-bottom: 70px;
}

.impact-sdgs .section-subtitle {
  color: #00a8ff;
  font-weight: 600;
  letter-spacing: 2px;
}

.impact-sdgs .section-title {
  color: #ffffff;
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.impact-sdgs .section-p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

/* Grid */
.impact-sdgs .sdgs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Cards */
.impact-sdgs .sdg-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 36px 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.impact-sdgs .sdg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
}

/* SDG number */
.impact-sdgs .sdg-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00a8ff;
  margin-bottom: 12px;
}

/* Card text */
.impact-sdgs .sdg-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.impact-sdgs .sdg-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
}

/* Progress */
.impact-sdgs .sdg-progress {
  margin-top: 18px;
}

.impact-sdgs .sdg-progress .progress-bar {
  height: 7px;
  border-radius: 6px;
  background: linear-gradient(90deg, #00a8ff, #00e0ff);
  margin-bottom: 6px;
}

.impact-sdgs .sdg-progress span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 1024px) {
  .impact-sdgs .sdgs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .impact-sdgs {
    padding: 70px 0;
  }

  .impact-sdgs .sdgs-grid {
    grid-template-columns: 1fr;
  }

  .impact-sdgs .section-title {
    font-size: 2.1rem;
  }
}


/* ===== CTA SECTION ===== */
.sustainability-cta {
  background: linear-gradient(135deg, #1a3b5d 0%, #0a3250 100%);
  color: white;
  text-align: center;
}

.cta-content-sustainability {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content-sustainability h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta-content-sustainability p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary-sustainability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid white;
  cursor: pointer;
}

.btn-secondary-sustainability:hover {
  background: white;
  color: #1a3b5d;
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease forwards;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-scale {
  animation: scaleIn 0.8s ease forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and small desktops */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-stats-sustainability {
    gap: 20px;
  }
  
  .stat-box {
    min-width: 130px;
    padding: 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .sustainability-intro .intro-content,
  .roadmap-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .intro-visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-card {
    grid-template-columns: 1fr;
  }
  
  .impact-card:nth-child(even) .impact-content,
  .impact-card:nth-child(even) .impact-image {
    order: unset;
  }
  
  .impact-image {
    min-height: 300px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .sustainability-quick-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-link {
    flex-shrink: 0;
    min-width: 100px;
    padding: 10px 15px;
  }
  
  .roadmap-timeline::before {
    left: 50px;
  }
  
  .timeline-milestone {
    padding-left: 80px;
  }
  
  .milestone-year {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
  
  .cta-content-sustainability h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary-sustainability,
  .btn-outline-sustainability,
  .btn-secondary-sustainability {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats-sustainability {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-box {
    width: 100%;
    max-width: 250px;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .intro-visual-grid {
    grid-template-columns: 1fr;
  }
  
  .visual-card {
    padding: 20px 15px;
  }
  
  .sdgs-grid,
  .initiatives-grid {
    grid-template-columns: 1fr;
  }
  
  .impact-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .impact-stat {
    padding: 20px 15px;
  }
  
  .impact-content {
    padding: 30px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Small mobile phones */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .breadcrumb {
    font-size: 0.8rem;
  }
  
  .nav-link {
    min-width: 80px;
    padding: 8px 10px;
    font-size: 0.8rem;
  }
  
  .nav-link i {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .container {
    padding: 0 15px;
  }
}

/* Large desktops */
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .parallax-section {
    background-attachment: scroll;
  }
}

/* Print styles */
@media print {
  .sustainability-nav,
  .menu-btn,
  .back-to-top,
  .cta-buttons,
  .social-links,
  .footer-bottom .footer-links {
    display: none !important;
  }
  
  .hero-static {
    background: white !important;
    color: black !important;
    min-height: auto;
  }
  
  .hero-overlay {
    display: none;
  }
  
  .hero-title,
  .hero-subtitle,
  .section-title,
  .section-subtitle,
  .visual-card h3,
  .sdg-card h3,
  .milestone-content h4,
  .impact-content h3,
  .initiative-card h3 {
    color: black !important;
  }
  
  .stat-box,
  .sdg-card,
  .initiative-card {
    background: white !important;
    border: 1px solid #ddd !important;
    color: black !important;
  }
  
  .sdg-card p,
  .initiative-card p {
    color: #333 !important;
  }
  
  a {
    color: black !important;
    text-decoration: underline;
  }
  
  .footer {
    border-top: 1px solid #ddd;
  }
}

/* FIX FOR MISSING CONTENT - Add missing styles */
.roadmap-text {
  color: #666;
  line-height: 1.6;
}

.roadmap-text p {
  margin-bottom: 20px;
}

.impact-section .section-header,
.sdgs-section .section-header,
.initiatives-section .section-header,
.roadmap-section .section-header,
.sustainability-intro .section-header {
  color: white;
}

.sdgs-section .section-header .section-subtitle,
.sdgs-section .section-header .section-title,
.sdgs-section .section-header .section-p,
.initiatives-section .section-header .section-subtitle,
.initiatives-section .section-header .section-title,
.initiatives-section .section-header .section-p {
  color: white;
}

.sdgs-section .section-title,
.initiatives-section .section-title {
  color: white !important;
}

.sdgs-section .section-subtitle,
.initiatives-section .section-subtitle {
  color: #00a8ff !important;
}

/* Ensure parallax sections content is visible */
.parallax-section .section-header .section-title {
  color: white !important;
}

.parallax-section .section-header .section-subtitle {
  color: #00a8ff !important;
}

.parallax-section .section-header .section-description,
.parallax-section .section-header .section-p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Fix for dark backgrounds */
.impact-section,
.roadmap-section,
.sustainability-intro {
  background-color: #fff;
}

.impact-section .section-title,
.impact-section .section-subtitle,
.impact-section .section-description,
.roadmap-section .section-title,
.roadmap-section .section-subtitle,
.roadmap-section .section-description,
.sustainability-intro .section-title,
.sustainability-intro .section-subtitle,
.sustainability-intro .section-description {
  color: #1a3b5d;
}

.impact-section .section-subtitle,
.roadmap-section .section-subtitle,
.sustainability-intro .section-subtitle {
  color: #00a8ff;
}