/* Reset default styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    margin: 0;
    /* Remove default margin */
}
* {
    box-sizing: border-box; /* Ensures padding and borders are included in the element's total width and height */
    margin: 0;
    padding: 0;
}

img {
    border-radius: 15px;
}

h1,
h2,
h3 {
    color: #00468B;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 25px;
}

p {
    color: #2E2E2E;
    font-size: 18px;
}

.white-text {
    color: white;
}

/* Header CSS */
.header {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

.header>* {
    position: relative;
    z-index: 1;
}

.banner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
    text-align: center;
}
.banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}


.background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(0, 70, 139, 0.5), rgba(0, 70, 139, 0.2)),
        url(./media/free_stock_gif/collagemp4.gif);
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    z-index: -1;
}

.logo {
    width: 70%;
}


.btn-container {
    width: 50%;
}

.btn-light {
    border: transparent;
    margin: 2%;
    border-radius: 15px;
    background-color: #d3d3d3b7;
    width: 70%;
    font-size: 20px;
    color: #00468B;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    padding: 2%;
}

.btn-light:hover {
    background-color: #00468B;
    color: #D3D3D3;
}

.btn-dark {
    border: 2px solid #00468B;
    border-radius: 15px;
    background-color: transparent;
    width: auto;
    font-size: 20px;
    font-weight: bold;
    color: #00468B;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    padding: 2% 5% 2% 5%;
    margin: 1%;
}

.btn-dark:hover {
    background-color: #00468B;
    color: #A1C6E7;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.content {
    width: 85%;
    height: 100%;
}

.module {
    margin: 2%;
    padding: 2%;
}

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

.team_description img {
    width: 25vh;
}

.member_summary {
    margin: 2%;
    padding: 1%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 5%;
    cursor: pointer;

    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); 
}

.member_summary a {
    text-decoration: none; /* Removes underline from the link */
    color: #000; /* Sets link color */
}

.member_summary:hover {
    transform: scale(1.05); 
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); 
}

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

.client_summary img {
    width: 25vh;
    height: 35vh;
    margin: 1%;
}

.client_summary {
    margin: 4%;
    width: 100%;
}

.mentor_description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.mentor_summary img {
    width: 85%;
    height: 35vh;
    margin: 1%;
}

.mentor_summary {
    margin: 4%;
    width: 100%;
}

#block {
    background-image: linear-gradient(to top, rgba(211, 211, 211, 1), rgba(211, 211, 211, 0.9), rgba(211, 211, 211, 0.1));
    border-radius: 5vw;
    height: 100%;
    display: flex;
    justify-content: left;
    text-align: left;
}

.about-project {
    padding: 2%;
    /* Add padding for better spacing */
    width: 100%;
    height: 50%;
}

.project-summary p {
    color: #00468B;
    line-height: 2;
}

.project-demo {
    padding: 2%;
}

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

.vid-text {
    margin: 2%;
}

.video-demo img {
    border-radius: 10vh;
    width: 100%;
    height: 100%;
}

#shadow {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.5);
}


#fade-slide {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeSlideUp 5s forwards;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.milestones {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically if needed */
    margin: 20px 0; /* Add some margin if needed */
}

.milestones h2{
    margin-bottom: 2%;
}

/* Slideshow container */
.slideshow-container {
    max-width: 800px;
    position: relative;
    margin: 2%;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #00468B;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 25px;
    width: 25px;
    margin: 2%;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
