
:root{
--background-color:#f9f9f9;
--font-color:black;
--font-color-white:white;
--black-hover-color:rgba(0, 0, 0, 0.469);
--white-hover-color:#ffffff;
--bottums-color: #025959;
--sections-bakcground-color:white;

}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  font-family: 'Arial', sans-serif; /* Matching your style.css */
  color: var(--text-color-primary);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--font-color-white);
}
.hero-btn{
  touch-action: manipulation;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  width: 100%;
  top: 0;
  transition: all 0.2s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: #025959;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo-text  {
  color: white;
}

.navbar.scrolled,.dropdown-menu{
  color: #333;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  transition: color 0.2s ease;
  text-decoration: none;
}

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

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  z-index: 1;
  border-radius: 20px;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
}

.dropdown-menu a:hover {
  background-color: #f8f8f8;
}

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

.burger {
  display: none;
  cursor: pointer;
  touch-action: manipulation;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
  transition: all 0.3s ease;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: white;
  transition: right 0.3s ease;
  padding: 2rem;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

.sidebar.active {
  right: 0;
}

.sidebar-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
}

.sidebar ul {
  list-style: none;
  margin-top: 2rem;
}

.sidebar ul li {
  margin-bottom: 1rem;
}

.sidebar ul a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.sidebar ul a:hover {
  color: #02A9A9;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}

/* Responsive styles */
@media screen and (max-width: 700px) {
  .nav-links {
      display: none;
  }
  
  .burger {
      display: block;
      touch-action: manipulation;
  }
  
  .navbar.scrolled .burger div {
      background-color: white;
  }
}
@media (max-width: 500px) {
  .hero-content h1 {
      font-size: 20px;
      text-align: center;
  }
  
  .hero-content p {
      font-size: 16px;
      text-align: center;
  }
}

@media (max-width: 500px) {
  .hero-content h1 {
      font-size: 20px;
  }
  
  .hero-content p {
      font-size: 16px;
      margin-bottom: 20px;
  }
  
  .hero {
      height: 450px;
  }
}

@media (max-width: 400px) {
  .hero-content h1 {
      font-size: 15px;
      margin-bottom: 15px;
      text-align: center;
  }
  
  .hero-content p {
      font-size: 15px;
      margin-bottom: 20px;
      text-align: center;
  }
  
  .hero-btn {
      padding: 10px 20px;
      font-size: 14px;
      justify-content: center;
  }
  
  .hero {
      height: 400px;
  }
  
  .dot {
      height: 8px;
      width: 8px;
      justify-content: center;
  }
}

@media (max-width: 400px) {
  .hero-content h1 {
      font-size: 20px;
  }
  
  .hero {
      height: 350px;
  }
  @media (max-width: 600px) {
    .navbar {
      padding: 0.5rem 1rem;
    }
  
    .logo-icon img {
      width: 30px;
      height: 30px;
    }
  
    .logo-text {
      font-size: 1rem;
    }
  
    .burger div {
      width: 20px;
      height: 2px;
      margin: 4px;
    }
  
    .sidebar {
      width: 240px; /* Smaller sidebar on mobile */
      padding: 1.5rem;
    }
  
    .sidebar ul a {
      font-size: 1rem;
    }
  }
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-content {

    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.dropdown-content a {
    padding: 12px 16px;
    display: block;
    color: #333;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

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

/* Dropdown indicator */
.dropdown > a::after {
    content: "▼";
    font-size: 8px;
    margin-left: 5px;
    vertical-align: middle;
}

.join-btn {
    background-color:var(--bottums-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.join-btn:hover {
    background-color: var(--bottums-color);
}
/*---------------------------------------------------------------------*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 50px;
}

.slideshow-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.slide.active {
    opacity: 1;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
  
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    color: rgb(255, 255, 255);
    width: auto;
    padding: 0 20px;
    position:relative;
    z-index: 2;
}

.hero-content h1 {
  font-size: 35px;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}
.hero-content p {
  font-size: 1.5em;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  text-align: center;
}

.hero-btn {
    display:block;
    background-color: var(--bottums-color);
    color: white;
    padding: 12px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    touch-action: manipulation;
}

.hero-btn:hover {
    background-color: #208b7f;
}

.hero-btn-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #2a9d8f;
    border-radius: 20px;
    display: flex;
   margin: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    
}

.dot.active {
    background-color: white;
}



/* Responsive Styles */

/*----------------------------------------------------------------------------------------------------*/
.why-birding-egypt {
        background: var(--background-color);
        padding: 0px 20px;
      }
      
      .why-birding-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px;
      }
      
      .why-birding-header h2 {
        font-size: 32px;
        color:var(--bottums-color);
        margin-bottom: 10px;
      }
      
      .why-birding-header p {
        color: #555;
        font-size: 16px;
      }
      
      .why-birding-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto 40px;
      }
      
      .why-card {
        background: var(--sections-bakcground-color);
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        text-align: center;
      }
      
      .why-card:hover {
        transform: translateY(-5px);
      }
      
      .why-card h3 {
        font-size: 18px;
        color: var(--font-color);
        margin-bottom: 10px;
      }
      
      .why-card p {
        font-size: 14px;
        color: #555;
      }
      
      .why-birding-footer {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
      }
      
      .btn {
        padding: 10px 22px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        background-color: #208b7f;
      }
      
      .btn-primary {
        background-color: var(--bottums-color);
        color: white;
      }
      
      .btn-outline {
        border: 2px solid var(--bottums-color);
        color: #2a9d8f;
        background: transparent;
      }
      
      
/*----------------------------------------------------------------------------------------------------*/

        /* Recent Sightings Styles */
        /*.recent-sightings {
            padding: 60px 20px;
            background-color: var(--background-color);
            max-width: 100%;
            margin: 0 auto;
            overflow: hidden; 

          }
        
          .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
            flex-wrap: wrap;
            
            margin-left: auto;
            margin-right: auto;
          }
        
          .section-header h2 {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--text-color-primary);
            margin-right: auto;
          }
        
          .view-all {
            color: var(--text-color-secondary);
            text-decoration: none;
            font-weight: 500;
            margin-right: 20px;
            transition: color 0.2s ease;
          }
        
          .view-all:hover {
            color: var(--primary-accent-color);
          }
        
          .pagination-controls {
            display: flex;
            gap: 10px;
          }
        
          .pagination-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--border-color);
            background-color: var(--background-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--text-color-secondary);
            transition: all 0.2s ease;
          }
        
          .pagination-btn:hover {
            color: var(--primary-accent-color);
            border-color: var(--primary-accent-color);
          }
        
          .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
          }
        
          /* Carousel container *
        
          .sightings-carousel {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
          }
        
          .sighting-card {
            flex: 0 0 calc(25% - 15px); /* 4 cards per view with gap *
            background-color: var(--sections-bakcground-color);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
          }
        
          .sighting-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px var(--black-hover-color);
          }
        
          .card-image {
            height: 180px;
            overflow: hidden;
          }
        
          .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
          }
        
          .sighting-card:hover .card-image img {
            transform: scale(1.05);
          }
        
          .card-content {
            padding: 16px;
          }
        
          .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
          }
        
          .card-header h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-color-primary);
            margin: 0;
          }
        
          /*.favorite-btn {
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
          }
          
 .favorite-icon {
            color: #ccc; /* Default color 
            transition: color 0.3s ease;
          }
          .favorite-btn.active .favorite-icon {
            color: #e63946; /* Red when active 
          }*
       
          .sighting-details {
            display: flex;
            flex-direction: column;
            gap: 10px;
          }
        
          .detail-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-color-secondary);
            font-size: 0.9rem;
          }
        
          .detail-item svg {
            color: var(--bottums-color);
            flex-shrink: 0;
          }
        
          .detail-link {
            color: var(--primary-accent-color);
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: opacity 0.2s ease;
          }
        
          .detail-link:hover {
            opacity: 0.8;
          }
        
          .detail-link svg {
            color: var(--bottums-color);
          }
        
          /* Responsive adjustments *
          @media (max-width: 500px) {
            .sighting-card {
              flex: 0 0 calc(33.333% - 14px); /* 3 cards per view *
            }
          }
        
          @media (max-width: 500px) {
            .recent-sightings {
              padding: 40px 15px;
            }
            .sighting-card {
              flex: 0 0 calc(50% - 10px); /* 2 cards per view *
            }
          }
        
          @media (max-width: 500px) {
            .sighting-card {
              flex: 0 0 calc(100% - 0px); /* 1 card per view *
            }
        
            .section-header h2 {
              margin-bottom: 10px;
              width: 100%;
            }
        
            .section-header {
              justify-content: space-between;
            }
        
            .view-all {
              margin-right: auto;
            }
          }
          /*-------------------------------------------------------------------------------*/

      
      /*-----------------------------------------------------------------*/
      /* Bird Events Section Styles */
.bird-events {
    padding: 60px 0;
    background-color: var(--background-color);
  }
  
  
  
  .events-content {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--sections-bakcground-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .events-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
  }
  
  .events-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .events-details {
    flex: 0 0 60%;
    padding: 40px;
  }
  
  .events-details h2 {
    font-size: 24px;
    font-weight: 600;
    color: #025959;
    margin-bottom: 15px;
  }
  
  .events-details p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
  
  .events-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
  }
  
  .events-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  
  .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bottums-color); /* Green color - adjust to match your site color scheme */
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .events-features li span {
    font-size: 14px;
    color: #555;
  }
  
  .events-buttons {
    display: flex;
    gap: 12px;
  }
  
  .events-buttons .btn {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color:var(--bottums-color); /* Green color - adjust to match your site color scheme */
    color: white;
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--bottums-color); /* Green color - adjust to match your site color scheme */
    border: 1px solid var(--bottums-color);
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive adjustments */
  @media (max-width: 500px) {
    .events-content {
      flex-direction: column;
    }
    
    .events-image {
      flex: 0 0 300px;
    }
    
    .events-details {
      flex: 1;
    }
  }
  
  @media (max-width: 500px) {
    .events-details {
      padding: 25px;
    }
    
    .events-buttons {
      flex-direction: column;
    }
    
    .events-buttons .btn {
      text-align: center;
    }
  }
  /*----------------------------------------------------------------------------------------*/

/* Bird Catalog Section Styles */
.bird-catalog {
  padding: 60px 0;
  background-color:var(--background-color);
}



.catalog-header {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.catalog-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #025959;
  margin: 0;
  flex: 1;
}

.catalog-header p {
  font-size: 16px;
  color: #666;
  margin: 10px 0 0;
  flex-basis: 100%;
  max-width: 60%;
}

.catalog-navigation {
  display: flex;
  gap: 8px;
}

.nav-arrow {
  width: 36px;
  height: 36px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  background: var(--sections-bakcground-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #666;
}

.nav-arrow:hover {
  background: #f5f5f5;
  color: #333;
}

.bird-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.bird-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.bird-card:hover {
  transform: translateY(-5px);

}

.bird-image {
  height: 180px;
  overflow: hidden;
}

.bird-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bird-card:hover .bird-image img {
  transform: scale(1.05);
}

.bird-name {
  padding:8px;
  background-color: inherit;
  text-align: center;
}

.bird-name span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.catalog-footer {
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background-color: var(--bottums-color); /* Adjust to match your site's color scheme */
  color: white;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 500px) {
  .bird-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .catalog-header p {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .bird-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:500px) {
  .catalog-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .catalog-navigation {
    margin-top: 15px;
    align-self: flex-end;
  }
  
  .bird-image {
    height: 120px;
  }
  .bird-name span{
    font-size: 12px;
  }
  
 
}
/*----------------------------------------------------------------------------------------*/

/* Testimonials Section Styles */
.testimonials {
  padding: 80px 0;
  background-color: var(--font-color-white);
  text-align: center;
}

.testimonials h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  display: none;
}

.testimonial-card.active {
  display: block;
}

.testimonial-rating {
  margin-bottom: 15px;
}

.star {
  color: #FFD700; /* Gold color for stars */
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 12px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.testimonial-author {
  font-style: italic;
  color: #777;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 20px;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--bottums-color); /* Green color - match your site color scheme */
}

/* footer style */
 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Arial', sans-serif;
    }
    
  
    
    .footer {
        background-color: #222;
        color: #fff;
        padding: 2rem 1rem;
        width: 100%;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        color: #ccc;
        text-align: center;
    }
    
    .help-center {
        margin: 1.5rem 0;
        text-align: center;
    }
    
    .help-center h3 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        color: #fff;
    }
    
    .help-center ul {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .help-center ul li a {
        color: #aaa;
        text-decoration: none;
        font-size: 0.8rem;
        padding: 0.5rem;
        display: inline-block;
    }
    
    .social-icons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .social-icons a {
        display: inline-block;
        width: 36px;
        height: 36px;
        background-color: var(--bottums-color);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
    }
    
    .copyright {
        text-align: center;
        font-size: 0.75rem;
        color: #777;
        padding-top: 1rem;
        border-top: 1px solid #333;
    }
    
    .language-selector {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 1.5rem 0;
    }
    
    .language-selector select {
        background-color: #333;
        color: #fff;
        border: none;
        padding: 0.4rem 0.5rem;
        border-radius: 20px;
        font-size: 0.8rem;
    }
   
@media (max-width:500px) {
  .testimonial-card{
    max-width: 300;
    margin: 10px;
   
    
  }
}










/*WP BIRDS*/
/*WP BIRDS*/
/*WP BIRDS*/
/*WP BIRDS*/
/*WP BIRDS*/
/*WP BIRDS*/
/*WP BIRDS*/

/* Header Section */
.header {
  background: var(--bottums-color);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}




.header h1 {
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;

}

.header .subtitle {
  font-size: 1.5em;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.header .description {
  font-size: 1.1em;
  opacity: 0.8;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

/* Navigation */


/* Introduction Section */
.intro-section {
  background: var(--background-color);
  padding: 80px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.intro-content h2 {
  font-size: 3em;
  margin-bottom: 30px;
  color:var(--bottums-color);
  position: relative;
}

.intro-content h2::after {
  content: '';
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--bottums-color), #2c3e50);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.intro-content p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #666;
  line-height: 1.8;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.highlight-item {
  background: var(--background-color);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border-left: 5px solid var(--bottums-color);
}

.highlight-item h3 {
  color: var(--bottums-color);
  margin-bottom: 15px;
  font-size: 1.4em;
}

/* Statistics Section */
.stats-section {
  background:  var(--bottums-color);
  color: white;
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  background: rgba(255,255,255,0.1);
  padding: 40px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 3.5em;
  font-weight: bold;
  color: var(--background-color);
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.2em;
  opacity: 0.9;
}

/* Working Party Groups Section */
.wp-groups {
  padding: 100px 0;
  background: #f8f9fc;
}

.section-title {
  text-align: center;
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--bottums-color);
}
.section-title2 {
  text-align: center;
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--background-color);
}

.section-subtitle {
  text-align: center;
  font-size: 1.3em;
  color: var(--background-color);
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.wp-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.wp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--bottums-color), #2c3e50);
}

.wp-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.wp-card h3 {
  font-size: 2em;
  margin-bottom: 15px;
  color: var(--bottums-color);
}

.species-focus {
  font-weight: bold;
  color:var(--font-color);
  margin-bottom: 20px;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wp-card p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.1em;
}

.wp-card ul {
  list-style: none;
  padding-left: 0;
}

.wp-card li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
  border-bottom: 1px solid #eee;
}

.wp-card li:last-child {
  border-bottom: none;
}

.wp-card li::before {
  
  position: absolute;
  left: 0;
}

.wp-card .location {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  font-style: italic;
  color: #666;
}

/* Research Activities Section */
.research-section {
  background: white;
  padding: 100px 0;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.research-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

.research-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.research-item h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: var(--bottums-color);
}

.research-item p {
  color: #666;
  line-height: 1.7;
}

.research-icon {
  font-size: 3em;
  margin-bottom: 20px;
  display: block;
}

/* Benefits Section */
.benefits-section {
  background: var(--bottums-color);
  color: white;
  padding: 100px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
}

.benefit-icon {
  font-size: 4em;
  margin-bottom: 20px;
  display: block;
}

.benefit-item h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.benefit-item p {
  opacity: 0.9;
  line-height: 1.7;
}

/* Locations Section */
.locations-section {
  background: #f8f9fc;
  padding: 100px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.location-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.location-header {
  background: var(--bottums-color);
  color: white;
  padding: 25px;
  text-align: center;
}

.location-header h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.location-body {
  padding: 30px;
}

.location-body ul {
  list-style: none;
  padding: 0;
}

.location-body li {
  padding: 5px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.location-body li::before {
  
  position: absolute;
  left: 0;
}

/* Join Section */
.join-section {
  background: white;
  padding: 100px 0;
  text-align: center;
}

.join-content {
  max-width: 800px;
  margin: 0 auto;
}

.join-section h2 {
  font-size: 3em;
  margin-bottom: 30px;
  color: var(--bottums-color);
}

.join-section p {
  font-size: 1.3em;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  background: var(--bottums-color);
  color: white;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;

}

.cta-button:hover {
  transform: translateY(-3px);
 
}

.cta-button.secondary {
  background: var(--bottums-color);
 
}



/* Footer */
.footer1 {
  background: var(--bottums-color);
  color: white;
 padding-top: 20px;
  text-align: center;
  
}

.footer-content {
  max-width: 800px;
  margin: 20px auto;

}

.footer h3 {
  font-size: 2em;
  margin-bottom: 20px;
}

.footer p {
  opacity: 0.8;
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-item {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 10px;
}

.contact-item h4 {
  margin-bottom: 10px;
  color: var(--background-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
      font-size: 2.5em;
  }
  
  .header .subtitle {
      font-size: 1.2em;
  }
  
  .wp-grid {
      grid-template-columns: 1fr;
  }
  
  .section-title {
      font-size: 2.2em;
  }
  
  .nav ul {
      flex-direction: column;
      gap: 10px;
  }
  
  .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}





