/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Times New Roman", serif;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
 background: rgba(0, 0, 0, 0.3); /* black transparent */

  z-index: 1000;
  transition: all 0.3s ease; 
}

.logo img {
  height: 50px;
  margin-left: 40px; /* extra space from left */
  transition: all 0.3s ease; 
}

/* Shrinked Header */
header.shrink {
  padding: 8px 60px; /* smaller height */
  background: rgba(0, 0, 0, 0.85); /* darker when scrolled */
}

header.shrink .logo img {
  height: 35px; /* shrink logo */
}

nav {
  display: flex;
  align-items: center;
}

/* Navigation Menu */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: white
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: gray;
  list-style: none;
  display: none;
  min-width: 180px;
  padding: 10px 0;
  border-radius: 6px;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: white;
  font-size: 14px;
  display: block;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Search Icon */
.search-icon {
  width: 18px;
  vertical-align: middle;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    background: rgba(111, 78, 55, 0.95);
    width: 200px;
    display: none;
    padding: 20px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    margin-left: 20px;
  }
}


/* Hero Section */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh; /* fixed height */
  overflow: hidden;
  font-family: Georgia, serif;
  background: rgba(0, 0, 0, 0.4); /* semi-transparent black */
}

.carousel-container {
  position: relative;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  /* left: 100%; */
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  padding: 250px;
  transition: all 0.8s ease;
  background-size: cover;
  background-position: center;
  opacity: 0;           
  transition: opacity 0.8s ease;
}

.carousel-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 26, 7, 0.6);

  z-index: 1;
}
.carousel-slide.active {
  left: 0;
  opacity: 1;           
  z-index: 1;
}

.hero-content {
  max-width: 600px;
  z-index: 2; /* above overlay */
  animation: slideUp 1s ease forwards;
  opacity: 0;
  transform: translateY(50px);
}

.carousel-slide.active .hero-content {
  animation: slideUp 1s ease forwards;
}

/* Slide Up Animation */
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 70px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
}

.view-more {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  background: transparent; /* remove background */
  color: white;             /* text white */
  border: 2px solid white;
  
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
  user-select: none;
  opacity: 0;
  z-index: 10;
}

/* .prev:hover, .next:hover {
  opacity: 1;
} */
 .carousel-container:hover .prev,
.carousel-container:hover .next {
  opacity: 1;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
  .carousel-slide {
    padding: 80px;
  }
  .hero-content h1 {
    font-size: 42px;
  }
  .hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .carousel-slide {
    padding: 60px;
    text-align: center;
    justify-content: center;
  }
  .hero-content {
    max-width: 90%;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .carousel-slide {
    padding: 40px 20px;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 14px;
  }
}

/* Services Section */
.services {
  padding: 80px 100px;
  text-align: center;
  background: #fff; /* white background */
  font-family: Georgia, serif;
  text-decoration: none;
}

.services h2 {
    
  font-size: 40px;
  color: #6f4e37; /* coffee brown */
  margin-bottom: 50px;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease;
}


.service-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.service-item p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.service-item strong {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #6f4e37;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr; /* stack in 1 column */
  }

  .services h2 {
    font-size: 32px;
  }

  .service-item h3 {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .services {
    padding: 60px 20px;
  }

  .services h2 {
    font-size: 26px;
  }

  .service-item p {
    font-size: 14px;
  }
}

.about-section {
  text-align: center;
  padding: 60px 20px;
  font-family: Georgia, serif;
}

.about-section h2 {
  font-size: 48px;
  color: #6f4e37; /* coffee brown */
  margin-bottom: 20px;
}

.about-section p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.about-section .read-more {
  display: inline-block;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  
  
}

.about-section .read-more:hover {
  color: #6f4e37; /* coffee brown hover */
  border-color: #6f4e37;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section h2 {
    font-size: 36px;
  }
  .about-section p {
    font-size: 16px;
  }
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 80px 60px;
  text-align: center;
  font-family: Georgia, serif;
}

.three-column h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #6f4e37; /* coffee brown */
}

.three-column p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.three-column .read-more {
  display: inline-block;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  
  transition: color 0.3s, border-color 0.3s;
}

.three-column .read-more:hover {
  color: #6f4e37;
  border-color: #6f4e37;
}

/* Responsive */
@media (max-width: 1024px) {
  .three-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .three-column {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}

.internship-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 80px 60px;
  align-items: center;
  font-family: Georgia, serif;
}

.internship-left {
  text-align: center;
}

.internship-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #6f4e37; /* coffee brown */
}

.internship-left .read-more {
  display: inline-block;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  
  transition: color 0.3s, border-color 0.3s;
}

.internship-left .read-more:hover {
  color: #6f4e37;
  border-color: #6f4e37;
}

.internship-right p {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 900px) {
  .internship-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px;
  }

  .internship-right p {
    font-size: 16px;
    margin-top: 20px;
  }
}

/* Events Section */
.events {
  padding: 60px 20px;
  font-family: Georgia, serif;
}

.events-header {
  max-width: 1100px;
  margin: 0 auto 20px;
}

.events-header h2 {
  font-size: 36px;
  color: #6f4e37; /* coffee brown */
  margin: 0 0 5px 0;
  text-align: left;
}

.events-header h4 {
  font-size: 16px;
  margin: 0 0 18px 0;
  color: #555;
  text-align: left;
}

/* Slider Container */
.event-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  height: 400px; /* fixed height so layout won't jump */
  border-radius: 10px;
}

/* Track */
.event-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

/* Each slide */
.event-item {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}

.event-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrows */
.event-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 26px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0; /* hidden by default */
  transition: opacity 0.25s ease, transform 0.15s;
  z-index: 5;
}

.event-slider:hover .event-arrow {
  opacity: 1; /* show on hover of the slider */
}

.event-arrow:active { transform: translateY(-50%) scale(0.95); }

.event-arrow.left { left: 12px; }
.event-arrow.right { right: 12px; }

/* Dots */
.event-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}

.event-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s;
}

.event-dots button.event-dot-active {
  background: white;
  transform: scale(1.05);
}

/* Responsive heights */
@media (max-width: 992px) {
  .event-slider { height: 320px; }
  .event-item { height: 320px; }
}

@media (max-width: 600px) {
  .events { padding: 30px 12px; }
  .events-header h2 { font-size: 24px; }
  .event-slider { height: 220px; }
  .event-item { height: 220px; }
  .event-arrow { font-size: 20px; padding: 8px 10px; }
}

/* Threats Section */
.threats-section {
  padding: 40px 20px;
  background: #ffffff;
  font-family: Georgia, serif;
}

.threats-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.threats-title {
  font-size: 40px;
  color: #6f4e37; /* coffee brown */
  margin-bottom: 18px;
  font-weight: 600;
}

.threats-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
  padding: 40 20px;
}

/* Read more (bold, centered) */
.threats-section .read-more {
  display: inline-block;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  
  padding-bottom: 4px;
  transition: color 0.25s, border-color 0.25s;
}

.threats-section .read-more:hover {
  color: #6f4e37;
  border-color: #6f4e37;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .threats-title { font-size: 32px; }
  .threats-desc { font-size: 16px; }
  .threats-section { padding: 50px 16px; }
}

@media (max-width: 480px) {
  .threats-title { font-size: 26px; }
  .threats-desc { font-size: 15px; line-height: 1.6; }
  .threats-section { padding: 40px 12px; }
}


/* Footer Section */
.footer-section {
  /* background: #6f4e37;  */
  background: #2a1a07;
  color: white;
  font-family: Georgia, serif;
  padding: 60px 20px 20px ;
  
}

/* Top Row (4 Columns) */
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 50px;
}

.footer-col {
  font-size: 15px;
  line-height: 3;
}

.footer-heading {
  color: #d2b48c; /* lighter brown highlight */
  margin-bottom: 12px;
  font-size: 18px;
}

.footer-socials img {
  /* width: 28px; */
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.3s;
  width: 50px;
  height: 50px;
  /* background: white;       */
  border-radius: 50%; 
}
.footer-socials img:hover {
  transform: scale(1.2);
}

/* Bottom Row */
.footer-bottom {
  text-align: center;
}

.footer-subscribe-title {
  color: #d2b48c;
  font-size: 40px;
  margin-bottom: 15px;
}

.footer-subscribe-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.footer-subscribe-btn:hover {
  background: white;
  color: #6f4e37;
}

.footer-bottom hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.5);
  margin: 20px 0;
}

.footer-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 1000px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-subscribe-title {
    font-size: 20px;
  }
  .footer-subscribe-btn {
    font-size: 14px;
    padding: 6px 16px;
  }
}

/* Footer Credit */
.footer-credit {
  background: #000;   /* black background */
  color: #fff;        /* white text */
  padding: 12px 20px;
  font-size: 14px;
  font-family: Georgia, serif;
}

.footer-credit p {
  margin: 0;
  text-align: left;   /* left aligned */
}

.footer-credit a {
  color: #d2b48c;     /* coffee brown link */
  text-decoration: none;
  font-weight: bold;
}

.footer-credit a:hover {
  text-decoration: underline;
}

    /* Floating Button Container */
    .fab-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }

    /* Main FAB */
    .fab {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: none;
      background: white;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      position: relative;
      transition: transform 0.3s ease;
    }

    .fab img {
      width: 28px;
      height: 28px;
    }

    /* Tooltip */
    .tooltip {
      position: absolute;
      right: 70px;
      background: black;
      color: white;
      font-size: 13px;
      padding: 5px 10px;
      border-radius: 5px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      white-space: nowrap;
    }

    .fab:hover .tooltip,
    .fab-child:hover .tooltip {
      opacity: 1;
    }

    /* Child FABs */
    .fab-child {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      background: white;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      position: absolute;
      right: 5px;
      bottom: 5px;
      transform: translateY(0);
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
    }

    .fab-child img {
      width: 24px;
      height: 24px;
    }

    /* When Active */
    .fab-container.active .fab-child {
      opacity: 1;
      pointer-events: auto;
    }

    .fab-container.active .email { transform: translateY(-70px); }
    .fab-container.active .whatsapp { transform: translateY(-130px); }
    .fab-container.active .phone { transform: translateY(-190px); }