/* General Reset and Box Model */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Styles */
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Bahnschrift', sans-serif;
  background-color: #EEEEEE;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
}

h1, h2 {
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  color: #000;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff1a1a;
}

p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

#about_ul {
  padding-left: 2em;
}

li {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}


/* Header / Navbar */
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
  font-size: 14px;
  text-transform: uppercase;
}

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.3s ease;
  background-color: transparent;
  z-index: 1000;
}

#main-nav.scrolled {
    background: #040504e3;
}

#main-nav a { 
  color: white;
  text-decoration: none;
  font-weight: bold;
}

#main-nav .logo {
  height: 40px;
}

  
  /* Fullscreen Video */
  .fullscreen-video {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .fullscreen-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .see-more {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: #ffffff;
    cursor: pointer;
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(-10px);
    }
  }
  
  /* Section Styling */
  section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 80px 5%;
    gap: 40px;
  }
  
  .media {
    flex: 1 1 45%;
    text-align: center;
  }
  
  .media img,
  .media video {
    width: 100%;
    max-width: 1509%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .text-content {
    flex: 1 1 45%;
  }
  
  .text-content h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ff0000;
  }
  
  .text-content p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  
  /* Footer */
  .footer {
    background: black;
    color: #dbe7ff;
    padding: 80px 5% 30px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  .footer-brand img {
    max-width: 120px;
    margin-bottom: 20px;
  }
  
  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 8px 0;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-contact li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .footer-contact i {
    margin-right: 8px;
    color: #ffffff;
  }
  
  .footer-social .social-icons a {
    font-size: 1.3rem;
    margin-right: 14px;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-social .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
  }
  
  .footer-bottom {
    border-top: 1px solid #ffffff;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #ffffff;
    z-index: 50;
  }

  /***********************************************************************************Mobile Responsive*************************************************************************/
  @media(max-width: 1024px){

  }
  @media(max-width: 540px) and (orientation: portrait) {
    html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Bahnschrift', sans-serif;
  background-color: #EEEEEE;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 2.5px;
  object-fit: cover;
}

h1, h2 {
  font-weight: 600;
}

h1 {
  font-size: 1.3rem;
  color: #000;
}

h2 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #ff1a1a;
}

p {
  font-size: .6rem;
  color: #333;
  line-height: 1.6;
}

/* Header / Navbar */
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  font-size: 7px;
  text-transform: uppercase;
}

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.3s ease;
  background-color: transparent;
  z-index: 1000;
}

#main-nav.scrolled {
    background: #040504e3;
}

#main-nav a { 
  color: white;
  text-decoration: none;
  font-weight: bold;
}

#main-nav .logo {
  height: 20px;
}

  
  /* Fullscreen Video */
  .fullscreen-video {
    position: relative;
    height: 50vh;
    overflow: hidden;
  }
  
  .fullscreen-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .see-more {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(-10px);
    }
  }
  
  /* Section Styling */
  section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px 5%;
    gap: 20px;
  }
  
  .media {
    flex: 1 1 45%;
    text-align: center;
  }
  
  .media img,
  .media video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
  }
  
  .text-content {
    flex: 1 1 45%;
  }
  
  .text-content h1 {
    font-size: 1.1rem;
    margin-bottom: 7.5px;
    color: #ff0000;
  }
  
  .text-content p {
    font-size: .6rem;
    line-height: 1.8;
  }
  
  /* Footer */
  .footer {
    background: black;
    color: #dbe7ff;
    padding: 40px 5% 15px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: .6rem;
    color: #ffffff;
    margin-bottom: 7.5px;
  }
  
  .footer-brand img {
    max-width: 60px;
    margin-bottom: 10px;
  }
  
  .footer-brand p {
    font-size: .45rem;
    line-height: 1.5;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 4px 0;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-contact li {
    font-size: .45rem;
    margin-bottom: 5px;
  }
  
  .footer-contact i {
    margin-right: 4px;
    color: #ffffff;
  }
  
  .footer-social .social-icons a {
    font-size: .6rem;
    margin-right: 7px;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-social .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
  }
  
  .footer-bottom {
    border-top: .5px solid #ffffff;
    text-align: center;
    margin-top: 25px;
    padding-top: 10px;
    font-size: .42rem;

  }

  .footer-bottom p{
    color: #ffffff;
    z-index: 9999;
  }
.footer-links{
    display: none;
}
@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

  }