/* General Body & Typography */
/* body {
    margin: 0;
    font-family: 'Montserrat', sans-serif; 
    background-color: #0c0c0c; 
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden; 
} */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}

/* Reusing main page font for titles */
.animated-title,
.section-title {
    font-family: 'Cinzel Decorative', serif;
    background: linear-gradient(90deg, #ffffff, #fadd7e, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite; /* Reusing shine animation */
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Animations from main page */
@keyframes shine {
    to { background-position: 200% center; }
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 60vh; /* Shorter hero section for about page */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    background-attachment: fixed; /* Parallax effect */
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
     /* For any internal sparkles */
}

.hero-content {
    z-index: 10;
}

.about-hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1.5em;
    color: #bbb;
    margin-top: 0;
}


.floating-dots::before, .floating-dots::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 300%;
  top: -100%;
  left: -50%;
  background: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBg 15s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.floating-dots::after {
  animation-direction: reverse;
  opacity: 0.5;
}


@keyframes shine {
  to {
    background-position: 200% center;
  }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes moveBg {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10%, 10%); }
} 
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .floating-dots::before,
  .floating-dots::after {
    background: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 60px 60px;
  }
}

/* Section Common Styles */
.about-main-content section {
    position: relative;
    padding: 80px 40px;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 3em;
    }

    .about-hero p {
        font-size: 1.2em;
    }

}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2.5em;
    }

    .about-hero p {
        font-size: 1em;
    }

  
    
 
}




@media (max-width: 992px) {
 
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .about-main-content section {
    padding: 60px 20px;
  }

  
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

 
}





.sustainability-section {
    background-color: #000;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* 
.sustainability-heading {
  font-size: 2.8rem;
  font-weight: 300;
  color: #aaa;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
} */

.sustainability-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 2rem;
  width: 320px;
  max-width: 90vw;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  text-align: left;
  cursor: pointer;
  will-change: transform;
  z-index: 3;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.card h3 {
  /* font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ccc; */
  font-family: 'Cinzel Decorative', serif;
    background: linear-gradient(90deg, #ffffff, #fadd7e, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite; /* Reusing shine animation */
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.card h3 span {
  font-weight: 300;
  color: #666;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card li {
  margin: 0.8rem 0;
  line-height: 1.5;
  font-size: 1rem;
  color: #ddd;
}

.card li strong {
  color: #fff;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .sustainability-heading {
    font-size: 2rem;
  }

  .card {
    width: 100%;
    padding: 1.5rem;
  }
}

.fade-in-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease-out forwards;
}

/* Keyframes for fade and upward slide */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}