* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
:root {
  /* Colors */
  --white-color: #fff;
  --dark-color: #252525;
  --primary-color: #3b141c;
  --secondary-color: #f3961c;
  --light-gray-color: #f2f2f2;
  --medium-gray-color: #ccc;

  /* Font weight */
  --font-weight-n: 400;
  --font-weight-m: 500;
  --font-weight-s: 600;
  --font-weight-b: 700;

  /* Font Size */
  --font-size-s: 1rem;
  --font-size-m: 1.13rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2.16rem;
  --font-size-xxl: 2.25rem;

  /* Border Radius */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  /* Site max width */
  --site-max-width: 1300px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--white-color);
}

/* Setting for the whole website */
a {
  text-decoration: none;
}

ul {
  list-style: none;
}
.section-container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}

.section-title {
  text-align: center;
  padding: 30px 0 70px;
  font-size: var(--font-size-xl);
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  width: 80px;
  background: var(--secondary-color);
  height: 5px;
  display: block;
  margin: 7px auto 0;
  border-radius: var(--border-radius-s);
}

/* Styling for the header section */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  background: #1816167d;
}
.nav {
  max-width: var(--site-max-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  margin: 0 auto;
}
.nav .nav-logo {
  color: var(--white-color);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-s);
}
.nav .nav-menu {
  display: flex;
  gap: 10px;
}

.nav .nav-menu .nav-item .nav-link {
  display: block;
  padding: 10px 20px;
  color: var(--white-color);
  font-weight: var(--font-weight-n);
  font-size: var(--font-size-m);
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}
.nav .nav-menu .nav-item .nav-link:hover {
  background: #ff5757;
  color: white;
}
#open-menu-button, #close-menu-button {
  font-size: var(--font-size-l);
  color: var(--white-color);
  cursor: pointer;
  display: none;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--primary-color);
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  padding-top: 85.12px;
  min-height: calc(100vh - 85.12px);
}
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}
.homepage {
  height: 100%;
  width: 100%;
  position: relative;
  background-position: center 65%;
  background-size: cover;
}
.homepage {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.mySlides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.5s ease-in-out;
}
#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}
.mySlides img {
  width: 100%;
  height: 100%;
}
/* Map Section */
.prone-map {
  padding: 60px 20px 0px;
}
.section-container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}

/* About Us Section */
.about-us {
  padding: 0px 20px 120px;
  background: var(--light-gray-color);
}
.about-container {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  justify-content: space-between;
}
.about-container .announce-img {
  width: 588px;
  height: 420px;
  margin-top: -35px;
  position: absolute;
  opacity: 0;        
  transition: opacity 1s ease-in-out; 
}
.announce-img:first-child {
  display: block; 
}
.announce-img.active {
  opacity: 1; 
}
.about-container .about-text-wrapper {
  max-width: 50%;
}
.about-container .about-text-wrapper .section-title {
  padding: 32px 0;
}
.about-container .about-text-wrapper .about-description {
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-m);
  letter-spacing: 0.96px;
  line-height: 30.08px;
  text-align: justify;
}
/* Footer Section */
.footer {
  background: #1b1b1b;
  color: var(--white-color);
  padding: 30px 20px;
}

.footer-section {
  display: flex;
  justify-content: space-between;
  font-style: var(--font-size-m);
}

/*MODAL*/
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
.modal-content {
  background-color: #fff;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 40px;
  border: 1px solid #888;
  width: 80%; /* Full width */
  max-width: 600px; /* Max width for larger screens */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in-out;
  margin-top: 125px;
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/*Campaign Modal*/
.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: auto;
}
.gallery-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.gallery-slide {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  grid-template-rows: repeat(2, 1fr); /* 2 rows */
  gap: 10px; /* Add space between images */
  width: 100%;
  flex-shrink: 0;
}
.campaign-img {
  width: 100%; /* Adjust image to fill grid cell */
  height: 100%; /* Adjust image to fill grid cell */
  object-fit: cover; /* Maintain aspect ratio */
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s;
}
.campaign-img:hover {
  transform: scale(1.1);
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  border: none;
  z-index: 10;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
/* Navigation Arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  z-index: 10;
}
.gallery-nav.prev {
  left: 10px;
}
.gallery-nav.next {
  right: 10px;
}
/* Fullscreen Modal */
.fullscreen-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}
.fullscreen-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
.close-fullscreen {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

@media (max-width:1070px){
  .nav {
    padding: 0px;
  }
  .nav .nav-menu {
    gap: 1px;
  }
}
@media (max-width:1007px){
  .nav-link {
    font-size: 15px !important;
  }
}
@media (max-width:925px){
  .nav-link {
    font-size: 14px !important;
  }
}
@media (max-width:880px){
  
}