*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
.logo{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img{
    width: 28%;
    height: auto;
    border: 3px solid white;
    border-radius: 60px;
    white-space: nowrap;
}
.logo-text {
    white-space: nowrap;
}
.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    width: 100%;
    background: none;
    z-index: 10;
    cursor: pointer;
    transform: translateY(-100%);
    transition: transform 0.7s ease;
    animation: slideDown 0.7s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.nav-list{
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.logo a{
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-list li{
    list-style: none;
    padding: 33px 8px;
    margin-left: 0;
}
.nav-list li a{
    text-decoration: none;
    color: white;
}
.logo a:hover{
    color: gray;
}
.nav-list li a:hover{   
    color: gray;   
}
.bghome{
    background: rgba(0,0,0,0.6)url('../Images/background.jpg');
    background-blend-mode: darken;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: center; */
}
.firstSection{
    height: 100vh;
}
.box-main{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    max-width: 50%;
    margin: auto;
    height: 80%;
}
.FirstHalf{
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
}
.SecondHalf{
    width: 100%;
}
.SecondHalf img{
    width: 180%;
    height: auto;
    border: 4px solid white;
    border-radius: 150px;
    display: block;
    margin: auto;
}
.text-big{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}
.text-small{
    font-size: 20px;
}
.btn{
    color: white;
    padding: 10px 20px;
    margin: 20px 10px;
    border: 2px solid white;
    border-radius: 8px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.whatsapp-link .btn:hover {
    background-color: #25D366; 
    color: white;
    border-color: ghostwhite;
}
.bgteam {
    background: rgba(0,0,0,0.7) url('../Images/team bg.jpeg');
    background-blend-mode: darken;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.team-section {
    padding: 50px 10%;
    color: white;
    font-family: 'Times New Roman', Times, serif;
}
.team-header {
    text-align: center;
    margin-bottom: 40px;
}
.team-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
}
.header-line {
    height: 2px;
    background-color: white;
    width: 200px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.team-category {
    margin-bottom: 40px;
}
.team-category h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}
.category-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    width: 80%;
    margin: 45px auto;
}
.team-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 20px;
}
.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    text-align: center;
}
.round-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    margin-bottom: 15px;
}
.member-info {
    width: 100%;
}
.member-link{
    color: white;
    text-decoration: none;
}
.member-link:hover {
    color: gray;
}
.member-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}
.advisor-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 100px;
}
.team-member.advisor {
    text-align: center;
}
.round-photo.large-photo {
    width: 200px;
    height: 200px;
    border: 5px solid white;
}
.bgabout{
    background: rgba(0,0,0,0.6)url('../Images/aboutbg.jpeg');
    background-blend-mode: darken;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: center; */
}
.about-section {
    padding: 60px 10%;
    color: white;
    font-family: 'Times New Roman', Times, serif;
}
.about-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 25px;
}
.about-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
    flex-wrap: wrap;
}
.about-block.reverse {
    flex-direction: row-reverse;
}
.about-image {
    flex: 1 1 40%;
}
.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.about-text {
    flex: 1 1 55%;
}
.about-text h2 {
    font-size: 30px;
    margin-bottom: 15px;
}
.about-text p, .about-text ol {
    font-size: 18px;
    line-height: 1.8;
}
.about-text ol {
    padding-left: 20px;
}
.about-text li {
    margin-bottom: 10px;
}
.resources-white {
    background-color: white;
    color: black;
    padding: 60px 10%;
    font-family: 'Times New Roman', Times, serif;
}
.resources-white .about-text h2,
.resources-white .about-text p,
.resources-white .about-text li {
    color: black;
}
.testimonial-section {
    padding-top: 50px;
}
.testimonial-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.testimonial-block.reverse {
    flex-direction: row-reverse;
}
.testimonial-text {
    flex: 1 1 45%;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.testimonial-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}
.testimonial-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}
.testimonial-video {
    flex: 1 1 0%;
    border-radius: 12px;
    overflow: hidden;
}
.resources-section {
    padding: 60px 10%;
    color: white;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}
.intro-para {
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
}
.about-video {
    flex: 1 1 40%;
}
.about-video video,
.video-placeholder {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.video-placeholder {
    height: auto;
    object-fit: cover;
}
.full-width {
    width: 100%;
    text-align: center;
}
.about-text a {
    color: #fff;
    text-decoration: underline;
}
.about-text a:hover {
    color: lightgray;
}
.bgresources {
    background: rgba(0,0,0,0.5) url('../Images/bgresources.jpg');
    background-blend-mode: darken;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: center; */
}
.about-video iframe {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    aspect-ratio: 16 / 9;
}
.site-footer {
    background-color: #1a1a1a;
    color: #f1f1f1;
    padding: 30px 4%;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}
.footer-content a {
    color: gold;
    text-decoration: none;
}
.footer-content a:hover {
    color: gray;
}
.footer-line {
    margin: 30px auto;
    width: 60%;
    border: 0;
    height: 1px;
    background: #444;
}
.footer-copy {
    font-size: 14px;
    color: #999;
}
.insta-icon {
    color: #e4405f;
    margin-right: 8px;
}
.email-icon {
    color: #0072c6;
    margin-right: 8px;
}
.insta-icon, .email-icon {
    font-size: 18px;
    vertical-align: middle;
}
.burger{
    display: none;
    position:absolute;
    cursor: pointer;
    right: 5%;
    top: 15px;
}
.line{
    width: 33px;
    height: 4px;
    background-color: white;
    margin: 3px 3px;
}
.whatsapp-icon {
    color: #25D366;
    font-size: 18px;
    margin-right: 8px;
    vertical-align: middle;
}
.bgcontact {
  background: rgba(0,0,0,0.6) url('../Images/guides.jpg');
  background-blend-mode: darken;
  background-size: cover;
  background-repeat: no-repeat;
  /* background-position: center; */
}
.contact-section {
  max-width: 700px;
  margin: 60px auto 40px auto;
  background: rgba(0,0,0,0.65);
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  text-align: center;
  color: #fff;
  font-family: 'Times New Roman', Times, serif;
}
.contact-section h1, .contact-section .about-title {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #fff;
}
.contact-section .header-line {
  background: #fff;
  margin-bottom: 30px;
}
.contact-section p {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 18px;
}
.contact-section a {
  color: #25D366;
  text-decoration: underline;
  word-break: break-all;
}
.contact-section a[href*='instagram'] {
  color: #e4405f;
}
.contact-section a[href^='mailto'] {
  color: #0072c6;
}
.contact-section a:hover {
  color: #ffd700;
}
.bgtestimonials {
  background: rgba(0,0,0,0.6) url('../Images/testimonials.jpg');
  background-blend-mode: darken;
  background-size: cover;
  background-repeat: no-repeat;
  /* background-position: center; */
}
.contact-intro {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 18px;
}
.contact-list {
  list-style: disc;
  text-align: left;
  max-width: 500px;
  margin: 0 auto 24px auto;
  color: #fff;
  font-size: 1.08rem;
  padding-left: 1.5em;
}
.contact-list li {
  margin-bottom: 8px;
}
.contact-outro {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 18px;
}
.event-card {
  border: 2px solid #e0e0e0;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.8);
  background: #fff;
  margin: 40px 0;
  padding: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.event-card .about-block {
  margin: 0;
  padding: 0;
}

.event-card .about-text {
  padding: 20px 0;
}

.event-card .about-text h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.8rem;
  line-height: 1.3;
}

.event-card .about-text h3 {
  margin: 25px 0 15px 0;
  color: #555;
  font-size: 1.3rem;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}

.event-card .about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #444;
}

.event-card .about-text p:last-child {
  margin-bottom: 0;
}

.event-card .about-image img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.event-desc {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: #333;
  font-style: italic;
}

@media only screen and (max-width: 1140px) {
    .navbar {
        flex-direction: column;
        height: 290px;
        transition: all 0.7s ease-out;
    }
    .navbar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: -1;
    }
    .nav-list {
        flex-direction: column;
        width: 100%;
        padding: 0px 0;
    }
    .nav-list li {
        padding: 12px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .nav-list li:last-child {
        border-bottom: none;
    }
    .nav-list li a {
        font-size: 15px;
        font-weight: 500;
    }
    .burger {
        display: block;
        z-index: 1001;
    }
    .navbar.h-nav-resp {
        height: 60px;
    }
    .v-class-resp {
        opacity: 0;
    }
    .box-main {
        flex-direction: column-reverse;
        max-width: 100%;
        padding: 0 20px;
    }
    .text-small {
        text-align: center;
        font-size: 18px;
    }
    .text-big {
        text-align: center;
        font-size: 28px;
    }
    .buttons {
        text-align: center;
    }
    .SecondHalf img {
        width: 40%;
        height: auto;
    }
    .site-footer, .footer-content, .footer-copy {
        font-size: 12px;
    }
    .about-block, .about-block.reverse {
        flex-direction: column;
        text-align: center;
    }
    .about-image img {
        max-width: 100%;
    }
    .about-text {
        margin-top: 20px;
    }
    .testimonial-block, .testimonial-block.reverse {
        flex-direction: column;
    }
    .testimonial-text, .testimonial-video {
        width: 100%;
        height: 50%;
    }
    .advisor-container {
        flex-direction: column;
        align-items: center;
    }
    .event-card {
        margin: 20px 0;
        padding: 20px;
        border-radius: 12px;
    }
    .event-card .about-text {
        padding: 15px 0;
    }
    .event-card .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .event-card .about-text h3 {
        font-size: 1.2rem;
        margin: 20px 0 12px 0;
    }
    .event-card .about-text p {
        margin-bottom: 12px;
        font-size: 0.95rem;
    }
    .contact-section {
        padding: 20px 8px;
        font-size: 1rem;
    }
    .contact-section h1, .contact-section .about-title {
        font-size: 1.3rem;
    }
}
