* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Navbar CSS Section */
.navbar {
    background: #008B8B;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
    z-index: 999;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 200px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

#navbarLogo {
    margin-right: 70px;
    margin-top: 2.5rem;
    border: 5px solid #fff;
}

.navbar-menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar-item {
    height: 80px;
    font-size: .5rem;
    font-weight: 400;
}

.navbar-links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding-left: 4rem;
    height: 100%;
    font-size: 1.5rem;;
    font-family: 'Poppins', sans-serif;
}

.navbar-links:hover {
    color: #000;
    transition: all 0.3s ease;
}

#contact {
    font-size: 30px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
    border-radius: 4px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
}

@media screen and (max-width: 1000px) {
    .navbar-container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar-menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 67vh;
        z-index: -1;
    }

    .navbar-menu.active {
        background: #008B8B;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 67vh;
        font-size: 1.6rem;
    }

    #navbarLogo {
        margin-left: 50px;
        margin-top: -1.5rem;
    }

    .navbar-toggle .bar {
        width: 50px;
        height: 4px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar-item {
        width: 100%;
    }

    .navbar-links {
        text-align: center;
        padding: 1.5rem;
        width: 100%;
        display: table;
        color: #fff;
        font-size: 1.4rem;
    }

    .navbar-links:hover {
        color: #000;
        transition: all 0.3s ease;
    }

    #contact {
        font-size: 1.6rem;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar-toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media screen and (max-width: 600px) {
    #navbarLogo {
        margin-left: 15px;
        margin-top: -1.5rem;
    }

    .dropdown-content a {
        font-size: 18px;
    }
}






.slideshow {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background-color: #000;
}

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

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}








/* Service Areas and Attorneys Section CSS */
.coaches-main {
    background-color: #008B8B;
    padding: 40px 20px;
    text-align: center;
}

.coaches-main h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 30px;
    max-width: 1000px;
    margin: auto;
    font-family: 'Poppins', sans-serif;
}

.coaches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.coach {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.coach img {
  width: 300px; 
  height: 350px; 
  object-fit: cover; 
  transition: transform 0.3s ease;
  margin-top: 20px;
  border: 3px solid #fff;
}

.coach p {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.coach:hover img {
    transform: scale(1.05);
}







/* Location CSS Section */
.location-section {
    text-align: center;
    padding: 40px;
    background-color: #FFFAFA;
}

.map-container {
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
}








/* Footer CSS Section */
.site-footer {
    background-color: #008B8B;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-links li {
    display: inline;
    margin-right: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}

.fb-logo {
    width: 30px; 
    height: auto;
    margin-top: 10px; 
}

.social-media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-media-icons a {
    margin: 0 10px; 
}

.design-credit {
    font-size: 12px; 
    color: #aaa; 
    margin-top: 10px; 
}

.design-credit a {
    color: #aaa;
    text-decoration: none;
}

.design-credit a:hover {
    text-decoration: underline;
}









#experience {
  padding: 50px;
  background-color: #f9f9f9;
}

.experience__container {
  max-width: 1200px;
  margin: 0 auto;
}

.experience__container h1 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: #000;
}

.experience__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.experience__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.experience__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
}

.experience__bottom-images {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.experience__bottom-images .experience__image {
  flex: 1 1 calc(50% - 10px);
  max-width: calc(50% - 10px);
}

@media screen and (max-width: 800px) {
  .experience__bottom-images {
    flex-direction: column;
  }

  .experience__bottom-images .experience__image {
    flex: 1 1 100%;
    max-width: 100%;
  }
}







/* General Section Styling */
#coaches-page {
  padding: 40px 20px;
  background-color: #f8f9fa;
}

.coaches__container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* Heading Styles */
.coaches__container h1, .coaches__container h2, .coaches__container h3 {
  color: #000;
}

.coaches__container h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.coaches__container h2 {
  font-size: 2rem;
  margin: 15px 0;
}

.coaches__container h3 {
  font-size: 1.5rem;
  margin: 10px 0;
}

/* Coaches Profiles */
.coaches__profiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.coachP {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 500px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: auto;
}

.coach__image, .testimonial__image {
  width: 300px; 
  height: 300px; 
  object-fit: cover; 
  border-radius: 8px; 
  margin-bottom: 15px;
}


.coachP p {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 10px;
}

/* Testimonials Section */
.testimonials {
  margin-top: 40px;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.testimonials__featured {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 500px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial h3 {
  color: #000;
  margin-bottom: 10px;
}

.testimonial p {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

/* Other Testimonials */
.testimonials__others {
  text-align: center;
  margin-top: 20px;
}

.testimonials__others h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #000;
}

.testimonials__others ul {
  list-style: none; 
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: #333;
  display: flex; 
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.testimonials__others li {
  margin: 5px 10px; 
  text-align: center;
}


/* Responsive Design */
@media (max-width: 768px) {
  .coaches__profiles, .testimonials__featured {
    flex-direction: column;
    align-items: center;
    margin: 0 auto; /* Ensure the content is centered */
  }

  .coachP, .testimonial {
    width: 90%; /* Make coach profiles take up more space */
    max-width: 500px; /* Ensure the profile boxes don't stretch too wide */
    margin: 10px auto; /* Center the profile container and add spacing between items */
  }
}















/* Contact Form CSS */
.contact-form-section {
    padding: 50px 0;
    background-color: #FFFAFA;
    text-align: center;
}

.contact-form-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #008B8B;
}

#contactForm {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #008B8B;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #008B8B;
    outline: none;
}

button {
    background-color: #008B8B;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #000;
}

.contact-form-section h3 {
  margin-top: 20px;
  color: #008B8B;
}

.contact-form-section h3 a {
  color: #008B8B;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.contact-form-section h3 a:hover {
  text-decoration: underline;
}