/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


/* Navbar transparent (desktop view) */
.navbar {
  background: rgb(0, 0, 0) !important;
  padding: 12px 0;
  position: absolute;
  width: 100%;
  z-index: 1000;
  position: fixed;
}

/* Navbar links */
.nav-link {
  position: relative;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff !important;
  margin-right: 18px;
  transition: all 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #a020f0; /* purple underline */
  transition: width 0.3s ease;
}

.nav-link:hover {
  font-weight: 700;
  font-size: 1.08rem;
}

.nav-link:hover::after {
  width: 100%;
}


/* Custom button */
.btn-custom {
    background: linear-gradient(135deg, #434343, #000000);
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
  }
  
  .btn-custom:hover {
    background: linear-gradient(135deg, #6a11cb, #000000);
    transform: scale(1.05);
    color: white;
  }


  /* Keep images neat */
img.img-fluid {
    max-height: 420px; /* change as needed */
    width: 100%;
    object-fit: cover;
  }
  
  /* Spacing + small visual tweaks */
  .container h2 {
    font-weight: 600;
    margin-bottom: .5rem;
  }
  
  /* On small screens make text center-aligned if you like */
  @media (max-width: 767.98px) {
    .container h2, .container p {
      text-align: center;
    }
  }
  
  .black-text {
    color: #000; /* black */
  }
  
  .purple-text {
    color: #6f42c1; /* purple */
    font-weight: 600;
  }
  
  .purple-text {
    color: #6f42c1; /* Purple */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .black-text {
    color: #000; /* Black */
    font-weight: 700;
  }
  
  .custom-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .custom-card:hover {
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.5); /* Purple shadow */
    transform: translateY(-5px);
  }
  
  .card-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #6f42c1; /* Purple heading in card */
  }
  
  .card-text {
    color: #333;
    font-size: 0.95rem;
  }
  
/* Sustainability Section */
.sustainability-section h2,
.sustainability-section h3,
.sustainability-section h6 {
  font-weight: bold;
}

.sustainability-section .purple-text {
  color: #6f42c1; /* Bootstrap purple shade */
}

.sustainability-section ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.sustainability-section ul li::marker {
  color: #6f42c1; /* Purple bullets */
}

/* sustainability.css */

/* Images smooth animation */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: inline-block;
  will-change: transform;
}

/* Fast animation */
.img-animate {
  animation: floatLR 1.5s ease-in-out infinite; /* tez speed */
  transform-origin: center;
  transition: transform 0.2s;
}

.img-animate-slow {
  animation: floatLRSlow 2.5s ease-in-out infinite; /* thoda slow but fast */
  transform-origin: center;
  transition: transform 0.2s;
}

/* Hover par pause */
.img-animate:hover,
.img-animate-slow:hover {
  animation-play-state: paused;
  cursor: pointer;
}

/* Keyframes faster motion */
@keyframes floatLR {
  0%   { transform: translateX(0) rotate(0deg); }
  25%  { transform: translateX(-10px) rotate(-1deg); }
  50%  { transform: translateX(0) rotate(0deg); }
  75%  { transform: translateX(10px) rotate(1deg); }
  100% { transform: translateX(0) rotate(0deg); }
}

@keyframes floatLRSlow {
  0%   { transform: translateX(0) rotate(0deg); }
  20%  { transform: translateX(-15px) rotate(-1.2deg); }
  40%  { transform: translateX(0) rotate(0deg); }
  60%  { transform: translateX(15px) rotate(1.2deg); }
  80%  { transform: translateX(0) rotate(0deg); }
  100% { transform: translateX(0) rotate(0deg); }
}

/* Accessibility: agar user reduced motion prefer kare to disable */
@media (prefers-reduced-motion: reduce) {
  .img-animate,
  .img-animate-slow {
    animation: none;
  }
}

 /* Footer Styles */
 .footer {
  background: linear-gradient(135deg, #2c003e, #000000);
  color: #ffffff;
  padding: 50px 0 20px;
}
.footer h5 {
  color: #b366ff;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}
/* Hover underline animation */
.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease-in-out;
}
.footer a:hover::after {
  width: 100%;
}
.footer a:hover {
  color: #ffffff;
}
.footer .contact-info p {
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #bbb;
}