

/*Header and footer start*/


:root {
    /* --primary-blue: #004b8d; */
    --primary-blue: #2BB9D1;
    /* --primary-blue: #2BBBD4; */
    --light-blue: #e6f0fa;
    --text-color: #fff;
    --focus-outline: #ffcc00;
}

body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif, 'Segoe UI', Tahoma, Verdana, Arial;
    line-height: 1.6;
    color: #363636;
}

.small-text{
  font-size: 0.9rem;
  color:#003b6f
}

.small-text a{
  font-size: 0.9rem;
  color:#3d70bb
}


header {
    background-color: var(--primary-blue);
    color: var(--text-color);
    padding: 0.5rem;
}

ul.dash-list {
  list-style: none; /* Remove default bullets */
  padding-left: 1em; /* Optional: add space before dashes */
}

ul.dash-list li::before {
  content: "- ";        /* Dash with space */
  color: inherit;       /* Optional: match text color */
  font-weight: bold;    /* Optional: make the dash more visible */
}

ul.dash-list li {
  margin-bottom: 1.2rem;
}




.about-project-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }


.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* spreads logo and nav apart */
    max-width: 1200px;
  }



.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 4rem; /* 👈 Pushes it away from browser edge */
  }
  
  .logo-img {
    height: 80px;
    width: auto;
  }
  
  

nav ul {
    list-style: none;
    display: flex;
    padding-right: 0rem;
    padding-left: 3rem;
}

nav li {
    margin-left: 1.5rem;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    /* font-weight: 600; */
    font-size: 1.3rem; /* 👈 Increase this value as needed */
}

nav a:focus,
nav a:hover {
    color: #003b6f;
}

footer {
    background-color: #E3E3E3;
    color: #363636;
    padding: 2rem 3rem;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-links,
.footer-info {
    flex: 1 1 300px;
    margin-top: 1rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: #004b8d;
    
}

.footer-links a:focus {
    outline: 3px solid var(--focus-outline);
}

@media (max-width: 768px) {
    nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    }

    .nav-container {
    flex-direction: column;
    align-items: flex-start;
    }

    .headline {
    font-size: 1.5rem;
    bottom: 10%;
    }
}

/*Header and footer end*/

/*slideshow start*/

.slideshow-hero {
    height: 70vh;
    overflow: hidden;
    position: relative;
  }
  
  .slideshow {
    height: 100%;
    position: relative;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    opacity: 0;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .headline {
    position: absolute;
    bottom: 20%;
    left: 5%;
    color: white;
    font-size: 2rem;
    font-weight: 500;
    max-width: 90%;
    text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.8);
    z-index: 2;
    line-height: 1.4;
  }

  .headline p {
    margin: 0.3em 0;
  }
  
  .headline strong {
    font-size: 2.5rem;
    font-weight: bold;
  }

  .headline small {
    font-size: 1.5rem;
   
  }

  @media (max-width: 768px) {
    .slide {
      /* height: auto; */
      padding: 2rem 1rem;
    }
  
    .headline {
      font-size: 1rem;
      /* padding: 1rem; */
    }
  }

  @media (max-width: 400px) {

    .slide {
      /* height: auto; */
      padding: 0.5rem 0.5rem;
    }

    .headline {
      font-size: 0.8rem; /* or whatever size looks best */
    }
  
    .headline small {
      font-size: 0.7rem;
    }
  }
  
  /*slideshow end*/
  

/*accessibility-week-intro start*/

  .accessibility-week-intro {
    background-color: #f4faff;
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .intro-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .accessibility-week-intro h2 {
    font-size: 1.4rem;
    color: #3d70bb;
    margin-bottom: 1rem;
  }
  
  .accessibility-week-intro p {
    font-size: 0.9rem;
    color: #56585c;
    margin-bottom: 2rem;
  }
  
  .scroll-button {
    display: inline-block;
    background-color: #4E8EEB;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .scroll-button:hover,
  .scroll-button:focus {
    background-color: #003b6f;
    outline: none;
  }

  /*accessibility-week-intro end*/

  /*About section start*/
  .about-project-section {
    background-color: #ffffff;
    padding: 2rem 1rem;
    color: #363636;
  }
  
  .about-project-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .about-project-section h2 {
    font-size: 1.8rem;
    color: #3d70bb;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .about-project-section h3 {
    font-size: 1.4rem;
    color: #2BB9D1;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .about-project-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }
  /*About section end*/


  /*Project goals section start*/

  .project-goals-section {
    background-color: #f4faff;
    padding: 2rem 1rem 4rem 1rem;
  }
  
  .project-goals-section .container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  
  .project-goals-section h2 {
    font-size: 1.8rem;
    color: #3d70bb;
    margin-bottom: 2rem;
  }
  
  .goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .goal-box {
    background-color: #ffffff;
    border: 1px solid #dce8f5;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .goal-box:hover {
    transform: translateY(-5px);
  }
  
  .goal-icon {
    height: 60px;
    margin-bottom: 0.5rem;
  }
  
  .goal-box h3 {
    /* text-align: left; */
    color: #2BB9D1;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .goal-box p {
    text-align: left;
    font-size: 0.9rem;
    color: #363636;
    line-height: 1.6;
  }

  /*Project goals section end*/

  /**/
  .banner-section {
    padding: 2rem 1rem 1rem 1rem;
  }
  

  /*Event section start*/

  .events-section {
    background-color: #ffffff;
    padding: 2rem 1rem 2rem 1rem;
  }
  
  .events-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .events-section h2 {
    color: #3d70bb;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .events-section .lead-paragraph {
    font-size: 1rem;
    /* font-weight: 500; */
    color: #363636;
    margin-bottom: 1rem;
    text-align: left;
  }
  
  .events-section p {
    
    line-height: 1.7;
   
  }
  /*Event section end*/

  /*Event accordion begin*/
  .accordion-section {
    padding: 1rem 1rem 2rem 1rem;
    background-color: #f9f9f9;
  }

  .accordion-section .container{
    max-width: 1050px;
    margin: 0 auto;
  }
  
  .accordion-section h3 {
    padding-left: 2rem;
    text-align: left;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #2BB9D1;
  }
  
  .accordion-item {
    border-top: 1px solid #ccc;
    padding: 1rem 1rem
  }

  .accordion-item.active {
    background-color: #eef7ff; /* light blue or any highlight color */
  }
  
  .accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
    padding: 1rem 1rem 2rem 1rem; /*Space for arrow*/
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #363636;
    position: relative;
    
  }

 
  
  .accordion-header .arrow {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 0.9rem;
    pointer-events: none;
  }
  
 

  .accordion-header:hover .event-title {
    color: #2BB9D1; /* or whatever color you want on hover */
    text-decoration:underline;
  }

  .accordion-header .event-title {
    color:#6090a3;
    font-size: 1.1rem;
  }

  
  .accordion-content {
    padding: 1rem 2rem 2rem 1em;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #363636;
  }
  
  .accordion-content ul {
    padding-left: 1.2rem;
  }
  
  .register-btn{
    display: inline-block;
    background-color: #4E8EEB;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }

.register-btn:hover,
.register-btn:focus {
    background-color: #003b6f;
    outline: none;
  }

   /*Event accordion end*/

   /*Who should attend section start*/

   /* Section layout */
#who-should-attend {
    background-color: #fff;
    padding: 3rem 1rem;
  }
  
  /* Container layout */
  #who-should-attend .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* Section Heading */
  #who-should-attend h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #3d70bb;
    text-align: center;
  }
  
  /* Subheadings */
  #who-should-attend h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
  }
  
  /* List styles */
  #who-should-attend ul {
    padding-left: 1.25rem;
    list-style-type: disc;
    color: #374151;
    line-height: 1.6;
  }
  
  /* Responsive grid */
  #who-should-attend .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  @media (min-width: 640px) {
    #who-should-attend .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    #who-should-attend .grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /*Who should attend section end*/

  /*Partner Supporter section start*/

  #partners-supporters {
    background-color: #f4faff;
    padding: 40px 20px;
  }
  
  #partners-supporters .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  #partners-supporters h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #3d70bb;
  }
  
  #partners-supporters p {
    font-size: 1rem;
    color: #363636;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .partner-group {
    margin-top: 3rem;
  }
  
  .partner-group h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2BB9D1;
    border-left: 4px solid #2290A3;
    padding-left: 10px;
  }
  
  .partner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .partner img {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
  }
  
  .partner h4 {
    margin: 0;
    font-size: 1rem;
    color: #363636;
  }
  
  .partner p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #363636;
  }
  
  @media (max-width: 600px) {
    .partner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .partner img {
      margin-bottom: 10px;
    }
  }

    /*Partner Supporter section end*/


    /*Contact us section start*/

    #contact-share {
  background-color: #fff;
  padding: 20px 20px 60px 20px;
}

#contact-share .container {
  max-width: 1000px;
  margin: 0 auto;
}

#contact-share h2 {
  font-size: 2rem;
  color: #3d70bb;
  margin-top: 2rem;
  text-align: center;
}

#contact-share h3 {
  font-size: 1.4rem;
  color: #2BB9D1;
  margin-top: 2rem;
}



#contact-share p {
  font-size: 1rem;
  color: #363636;
  line-height: 1.6;
  margin-bottom: 1rem;
}

#contact-share ul {
  padding-left: 20px;
  margin-bottom: 1.5rem;
  color: #363636;
}

#contact-share li {
  margin-bottom: 0.5rem;
}

#contact-share a.download-btn {
  display: inline-block;
  background-color: #4E8EEB;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

#contact-share a.email-link {

  margin-bottom: 1rem;
  text-decoration: none;
  color: #004b8d;
}



#contact-share a.download-btn:hover {
  background-color: #003b6f;
  outline: none;
}

.divider {
  height: 1px;
  background-color: #ccc;
  margin: 40px 0;
}




/*Contact us section end*/

