@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Raleway:ital,wght@0,700;1,700&display=swap");
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
}
a {
  text-decoration: none;
  color: #999;
}
a:hover {
  color: #c62928;
  text-decoration: underline;
}
.hr {
  height: 0.5px;
  background-color: #eee;
  margin: 0.5rem 0;
}
/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  /* backdrop-filter: blur(10px); */
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: background 0.3s;
}

.logo {
  position: absolute;
  left: 2rem;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 900;
  transition: color 0.3s;
  font-family: "Raleway", sans-serif;
}
.nav-links .dropdown > a {
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #ccc;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 2rem;
  background: #f5f5f5;
  margin-top: 0;
}

.breadcrumbs ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: ">";
  margin-left: 0.5rem;
  color: #666;
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #333;
}

.breadcrumbs .current {
  color: #333;
  font-weight: 500;
}

/* Page Header */
.page-header {
  font-family: Raleway;
  font-weight: 700;
  height: 300px;
  position: relative;
  overflow: hidden;
  /* margin-top: 60px; */
}

.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Page Content */
.page-content {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.page-content h2,
.page-content h3,
.page-content h4,
.footer-section h4,
.footer-contact h4 {
  font-family: "Raleway", sans-serif;
}

.page-content p {
  margin-bottom: 1.5rem;
  color: #666;
}

/* Dropdown Menu */
.dropdown {
  position: static;
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  width: 100vw;
  background: white;
  padding: 1rem 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-content li {
  display: inline-block;
}

.dropdown-content a {
  display: inline-block;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

/* Slider */
.slider-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
  /* margin-top: 60px; */
}

.slider {
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomEffect 15s linear infinite;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content h2 {
  font-family: Raleway;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
}

.prev {
  left: 2rem;
}

.next {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: white;
}

/* Hero Section */
.hero {
  padding: 4rem 2rem;
  text-align: center;
  background: #f9f9f9;
}

.hero img {
  margin-bottom: 2rem;
}

.hero p {
  max-width: 80vw;
  font-size: 1.3rem;
  margin: 0 auto;
  color: #666;
}

/* Featured Section */
.featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 4rem 2rem;
}

.featured-item {
  text-align: center;
}

.featured-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.featured-item h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Gallery Styles */
.gallery {
  padding: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem;
  text-align: center;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1100;
  padding: 2rem;
  cursor: pointer;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
}

.modal-nav button {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.modal-nav button:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Brochures Grid */
.brochures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
  border: 1px solid #ddd;
}

.brochure-item {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.brochure-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.brochure-item h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: white;
  color: #333;
  text-decoration: none;
  border: 2px solid #333;
  font-weight: 500;
  transition: all 0.3s;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: none;
  cursor: pointer;
}
.btn {
  font-size: 1.3rem;
  text-transform: capitalize;
  background: transparent;
}

.cta-button:hover {
  background-color: #c62928 !important;
  color: white;
}

/* Footer */
footer {
  background: #333;
  color: white;
  padding: 2rem;
}
footer .flogo {
  padding-bottom: 1rem;
  max-width: 1200px;
  margin: auto;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.address {
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  /* justify-content: flex-end; */
}

.social-icon {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #ccc;
}

/* Video Library Styles */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
  padding: 1rem;
  border: 1px solid #ddd;
}

.video-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.video-content {
  padding: 1.5rem;
}

.video-content h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.video-content p {
  color: #666;
  margin-bottom: 1rem;
}

/* Contact Form Styles */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Environmental Policy Styles */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section h3 {
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    font-size: 12px;
  }
  .slide-content h2 {
    font-size: 1.8rem;
  }
  .slider-arrow,
  .modal-nav button {
    height: 30px;
    width: 30px;
    font-size: 1rem;
  }
  .hero img {
    height: 26px;
  }
  .hero p,
  .btn {
    font-size: 1rem;
  }
  .featured {
    grid-template-columns: 1fr;
  }
  .flogo img {
    height: 50px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
  }
  .main-nav .logo {
    left: auto;
    position: relative;
  }
  .main-nav .logo img {
    height: 40px;
    width: 140px;
  }
  .page-header {
    height: 220px;
  }
  .nav-links .dropdown > a {
    font-size: 13.1px;
  }
  .page-header-content {
    top: 80%;
    width: 100%;
  }
  .page-header-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .page-content {
    padding: 1rem;
  }
  .about-section ul {
    list-style-type: none;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
  }
}
