/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    -webkit-user-drag: none; /* Disable image dragging in WebKit browsers (Chrome, Safari) */
}

html, body {
    height: 100%;
    margin: 0;
    font-family: Verdana, sans-serif;
    display: flex;
    flex-direction: column;
}

main {
    flex:1;
    overflow-x: hidden;
}

/* Header styling */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1003;
    transition: transform 0.3s ease;
    height: 4rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.logo img{
    width: 4.5rem;
    height: auto;
    border: none;
    background: white;
}

/* Swiper container styles */
.side-border {
    background-color: white;
    height: 100%;
    width: 1.5rem;
    z-index: 991;
    position: absolute;
    left: 0;
    top: 0;
}

.swiper-container {
    width: 100%;
    margin-bottom: 30px;
    position: relative; /* This ensures the pagination can be positioned relative to the swiper container */
    z-index: 990;
    background-color: white;
    margin-left: 1.5rem;
}

/* Slide styles */
.swiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: right;
    font-size: 18px;
    background-color: white;
    cursor: pointer;
}

/* Image inside swiper slide */
.swiper-container .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Pagination styles */
.swiper-container .swiper-pagination {
    position: absolute;   /* Position it relative to the swiper container */
    bottom: -20px;        /* Move the pagination below the swiper container (you can adjust the distance) */
    left: 100px;
    transform: translateX(-50%);  /* Center the pagination horizontally */
    z-index: 10;
}

/* Pagination bullet styling */
.swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    background-color: #696969;
    border-radius: 10%;
    transition: background-color 0.3s ease;
}

/* Active bullet */
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #333;
}

  
.menu-btn {
    background: #333;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.menu-btn img {
    width: 4rem; /* Adjust the width of the image */
    height: auto;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    padding: 18px;
  }

header.hidden {
    transform: translateY(-100%);
}

.menu-slide {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #333;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transition: left 0.3s ease;
    opacity: 0.95;
}

.menu-slide.open {
    left: 0;
}

.menu-slide ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.menu-slide ul li {
    margin: 1rem 0;
}

.menu-slide ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.image-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100vw; /* Full width of the viewport */
    height: 79vh; /* Set the height to 80% of the viewport height */
    overflow: hidden;
    box-sizing: border-box; /* Prevents the border from affecting the container size */
    margin-top: 4rem; /* Ensure there's no margin around the container */
    padding: 0;
    z-index: 998;
  }
  
.background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    filter: blur(10px);
    transform: scale(1.1);
  }
  
.top-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw; /* Set the width to 100% of the viewport */
    height: 100vw; /* Set the height to match the width (square shape) */
    object-fit: cover;
    transform: translate(-50%, -50%); /* Center the top image */
    z-index: 2; /* Ensure the top image is above the blurred background */
  }  

/* Loading screen style */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* White background */
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1005;
    font-family: Arial, sans-serif;
    opacity: 1; /* Initial opacity */
    transition: opacity 1s ease-out; /* Smooth fade-out transition */
}

/* Logo style */
#logo {
    max-width: 200px; /* Adjust logo size */
    height: auto;
}

/* Social Media Bar Styling */
.social-media-bar {
    position: fixed;
    bottom: 0px; /* Space from the bottom */
    right: 0px;  /* Space from the right */
    display: flex;
    flex-direction: column;  /* Stack icons vertically */
    align-items: center;  /* Center align the icons horizontally */
    z-index: 1000;  /* Ensure it's on top of other content */
}

/* Social Media Icon Styling */
.social-icon {
    display: flex;  /* Use flexbox for the icon container */
    justify-content: center; /* Center content horizontally */
    align-items: center;  /* Center content vertically */
    width: 45px;  /* Size of each icon */
    height: 45px;
    background-color: white;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 10px;
}

.social-icon:hover img {
    transform: scale(1.1);  /* Slight zoom effect on hover */
}

.social-icon img {
    width: 100%;  /* Fill the entire container */
    height: 100%; /* Fill the entire container */
    object-fit: cover;  /* Ensure the image covers the area without distortion */
}

/* Footer styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1.5rem;
    height: 15rem;
    width: 100%;
    margin-top: auto; /* Ensures footer stays at the bottom of the page */
    z-index: 999;
}

.footerlogo img{
    filter: invert(100%);
    margin-top: 5px;
    width: 10rem;
    height: auto;
    border: none;
    background: none;
}


.footer-cr {
    margin-top: 20px;
    font-size: 0.6rem;
}

#main-content h1, #main-content p {
    margin: 5vw;
}

#main-content h1 {
    font-weight: 500;
}

/* News Section */
#news {
    position: relative;
    padding: 1.5rem;
    padding-bottom: 3rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: white;
    z-index: 999;
    
  }
  
  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
  }
  
h2 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: normal;
  }


#video h2 {
    position: relative;
    padding: 1.5rem;
    padding-top: 2rem;
    z-index: 995;
    color: white;
}
  
.view-more {
    font-size: 0.9rem;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    cursor: pointer;
  }
  
  .news-rows {
    display: flex;
    flex-direction: column;
  }
  
  .news-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;
    text-decoration: none;
    color: #333;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd; /* Add line below each row */
  }

  .news-row:first-child {
    border-top: 1px solid #ddd; /* Add line below each row */
  }
  
  .news-date {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    font-weight: lighter;
  }
  
  .news-title {
    font-size: 1rem;
    padding: 0.5rem 0;
    font-weight: bold;
  }
  
  
.video-container {
    position: relative;
    margin-bottom: 10px;
    z-index: 995;
}



#video .swiper-container {
    width: 90%;
    padding-right: 1.5rem;
    margin-bottom: 0;
}

  
  /* Background image styling */
  .background-img {
    position: fixed;
    bottom: 0; /* Adjust vertical position */
    left: 0; /* Adjust horizontal position */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Adjusts image scaling */
    filter: blur(5px);
    transform: scale(1.1);
    z-index: 1;
  }

.padding-white {
    position: relative;
    padding-top: 30px;
    padding-bottom: 20px;
    background-color: white;
    z-index: 2
}

.padding2-white {
    position: relative;
    padding-top: 200px;
    background-color: white;
    bottom: 90px;
    left: 0;
    z-index: 2;
    margin-bottom: -90px;
}

.vswiper-container {
    width: 90%;
    margin-bottom: 30px;
    position: relative; /* This ensures the pagination can be positioned relative to the swiper container */
    z-index: 990;
    margin: auto;
    padding: 1.5rem;
}

/* Slide styles */
.vswiper-container .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: right;
    font-size: 18px;
    cursor: pointer;
}

/* Image inside swiper slide */
.vswiper-container .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Pagination styles */
.vswiper-container .swiper-pagination {
    position: absolute;   /* Position it relative to the swiper container */
    bottom: -30px;        /* Move the pagination below the swiper container (you can adjust the distance) */
    left: 50%;
    transform: translateX(-50%);  /* Center the pagination horizontally */
    z-index: 990;
}

/* Pagination bullet styling */
.vswiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    background-color: #696969;
    border-radius: 10%;
    transition: background-color 0.3s ease;
}

.caption {
    position: absolute;
    bottom: -35px;
    left: 4.5rem;
    transform: translateX(-50%);
    color: #333;
    padding: 10px 15px;
    font-size: 0.9rem;
  }

