 
 /* contact-style.css */
/* Styles specific to the Contact Us page, complementing style.css */

/* Ensure variables from your main style.css are available or redeclared if needed */
:root {
    --background-color: white;
    --font-color: black;
    --font-color-white: white;
    --black-hover-color: rgba(0, 0, 0, 0.469);
    --white-hover-color: #ffffff;
    --bottums-color: #025959; /* Main theme color */
    --sections-bakcground-color: #f9f9f9;
    --primary-accent-color: #02A9A9; /* Lighter teal for hovers */
    --border-color-light: #e0e0e0;
    --text-color-secondary: #555;
    --text-color-primary: #333;
    --success-color: #28a745;
    --error-color: #dc3545;
}

* {
    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(--background-color);
  }
  .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: 4px;
  }
  
  .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: 500px) {
    .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: 500px) {
    .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: 4px;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s;
  }
  
  .join-btn:hover {
      background-color: var(--bottums-color);
  }

  /*hero section*/
  

.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 {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 50px;
}
.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: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* General container for consistent padding */
.target-birds-a{
    color: var(--bottums-color);
    text-decoration: none;
   text-align: center;
   padding-right: 50px;
   font-size: 18px;
}
.target-birds-h2{
    color: var(--bottums-color);
    text-decoration: none;
   text-align: center;
   padding-right: 50px;
  
}



 
 /* Bird Events Section Styles */
 .bird-events {
    padding: 10px 0;
    background-color: var(--background-color);
    margin-bottom: 50px;
   
  }
  
  .container {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .events-content {
    display: flex;
    overflow: hidden;
    background-color: var(--background-color);
   
  }
  .events-image{
    margin-top: 40px;
  }
  .events-image img{
    border-radius: 10px;
  }
  
 
 
  
  .events-details {
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 40px;
  }
  
  .events-details h2 {
    font-size: 24px;
    font-weight: 600;
    color: #025959;
    
  }
  
  .events-details p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 8px;
  }
  
  .events-features {
    list-style: none;
    padding: 0;
  }

  /* 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;
    }
  }
  

  .header {
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.header h1 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.card {
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    overflow: hidden;
    width: 700px;
}

.card-image {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 16px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.detail-text {
    flex: 1;
    line-height: 1.4;
}

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

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

@media (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        margin: 10px;
        padding: 15px;
    }
}
/*----------------------------------------------------------
/*----------------------------------------------------------
/*----------------------------------------------------------
/*----------------------------------------------------------
/*----------------------------------------------------------
/*----------------------------------------------------------
/*----------------------------------------------------------*/
* {
    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: 4px;
    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: 4px;
    font-size: 0.8rem;
}
.privacy-statement {
    background-color: var(--sections-bakcground-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color-light);
}

.privacy-statement h3 {
    font-size: 1.3rem;
    color: var(--text-color-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-statement p {
    color: var(--text-color-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Final Call to Action */
.final-cta {
    text-align: center;
    padding: 20px 0;
}

.final-cta p {
    font-size: 1.5rem;
    color: var(--bottums-color);
    font-weight: 600;
}
.icon-style{
    color: var(--bottums-color);
}




@media (max-width: 1200px) {
    .container {
      max-width: 95%;
    }
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 992px) {
    .nav-links {
      display: none;
    }
    .burger {
      display: block;
    }
    .sidebar {
      width: 250px;
    }
    .events-content {
      flex-direction: column;
      align-items: center;
    }
  }
  
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 1.8rem;
    }
    .hero-content p {
      font-size: 1rem;
    }
    .grid {
      grid-template-columns: 1fr;
    }
    .card {
      width: 100%;
    }
    .events-image img {
      width: 90%;
    }
  }
  
  @media (max-width: 576px) {
    .hero {
      height: 300px;
    }
    .hero-content h1 {
      font-size: 1.5rem;
    }
    .hero-content p {
      font-size: 0.9rem;
    }
    .hero-btn {
      font-size: 0.9rem;
      padding: 8px 16px;
    }
    .footer .help-center ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .events-details {
      padding: 1rem;
    }
  }
  
  @media (max-width: 400px) {
    .logo-text {
      font-size: 1rem;
    }
    .burger div {
      width: 20px;
      height: 2px;
    }
    .sidebar {
      width: 200px;
      padding: 1rem;
    }
    .footer .social-icons a {
      width: 30px;
      height: 30px;
    }
  }
  