* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: auto;
}
body {
    font-family: Arial, sans-serif;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fbfbfb83;
    color: #0c0c0c;
    padding: 0.5rem 1rem;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);      
    z-index: 88;
}

.nav-links {
    display: flex;
    margin-right: 2%;
    gap: 1rem;
    z-index: 88;

}
.nav-links a {
    color: #212121;
    text-decoration: none;
    font-weight: bold;
    z-index: 88;

}
.menu-button {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 88;

}
#photo{
    width: 60%;
    height: auto;
    z-index: 88;

}
@media (max-width: 480px) {
    .nav-links {
    position: fixed;
    top: 0;
    left: -200px;
    height: 100%;
    width: 200px;
    flex-direction: column;
    background-color: #fbfbfb;
    padding-top: 3rem;
    transition: left 0.3s ease;
    z-index: 88;

    }
    .nav-links a {
    padding: 1rem;
    border-bottom: 1px solid #555;
    }
    .menu-button {
    display: block;
    }
    .nav-open {
    left: 0;
    }
}


#ph1 {
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 89vh;
    object-fit: cover;
    object-position: 70% 30%; /* default, shows center */
    z-index: -1;
}

.main_page h1{
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    top: 30%;
    left: 18%;
    font-size: 3.5rem;
    text-align: center;
    position: absolute;

}
#name1{
    position: absolute;
    color: white;
    top: 80%;
    left: 15%;
    text-align: center;
    align-items: center;
    border-radius: 30px;
}


#moretestimonials {
    background-color: rgb(0, 5, 109);
    position: relative;
    margin: 2% auto 0 auto; /* top margin 2%, horizontal auto */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    display: block;
    width: max-content; /* or specify a width */
}
footer {
    width: 100%;
    background-color: rgb(0, 0, 71);
    height: 100px;
    margin-top: 40px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
}

footer h1 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
    flex: 1;
}

footer .footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

footer a#donate {
    color: #00f0ff;
    text-decoration: none;
    margin-bottom: 5px;
    font-size: 0.8rem;
}

footer sub {
    font-size: 0.6rem;
    color: #ccc;
}

.highlight-section {
    background: linear-gradient(135deg, #2d00e0, #00720a);
    padding: 60px 40px;
    max-width: 50%;
    min-width: 350px;
    height: 80%;
    transform: skewY(-2deg);
    position: relative;
    margin-top: 4%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    margin-left: 4%;
    color: white;
}

.text-content {
    transform: skewY(2deg); /* Undo the skew for readable text */
    position: relative;
    z-index: 1;
}

.text-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5em;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.fancy-word {
    color: #ffe66d;
    font-weight: bold;
    text-shadow: 0 0 5px #000;
}
#area3 {
  height: 100vh;
  background-color: #000;
  margin-top: -5%;
  display: flex;
  flex-wrap: wrap; /* Allows child elements to wrap to the next line */
  flex-direction: row;
  align-items: center;
  justify-content: center;    /* Center horizontally */

}

/* Hide .divider on screens 480px wide or less */
@media (max-width: 480px) {
  .divider {
    display: none !important;
  }
  .highlight-section{
    overflow: scroll !important;
  }
}

.divider {
    width: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    height: 70%;
    margin: 0 30px;
    margin-top: 5%;
}

#signing{
    width: 40%;
    min-width: 300px;
    height: 80%;
    margin-top: 3%;
    object-fit: cover;

}