/* Reset and basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }  
  
  body {
    font-family: Arial, sans-serif;
    background: #f0f0f0;
  }
  
  /* Navbar styling */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #185094, #09b6a4);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.3s ease;
  }
  
  /* Initially hidden state: move the navbar above the viewport */
  .navbar.hidden {
    transform: translateY(-100%);
  }
  
  /* Visible state: navbar slides into view */
  .navbar.visible {
    transform: translateY(0);
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
    font-weight: bold;
  }
  
  .navbar li {
    margin: 0 20px;
  }
  
  .navbar a {
    display: block;
    padding: 20px 10px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .navbar a:hover,
  .navbar a.active {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
  }
  
  /* Hero Section styling */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 70px; /* Adjust to prevent overlap with navbar when it appears */
    text-align: center;
  }
  
  .hero h1 {
    color: #333;
    font-size: 4em;
    margin-bottom: 20px;
    margin-top: -100px;
  }

  .hero h3 {
    color: #333;
    font-size: 2em;
    margin-bottom: 40px;
  }
  
  /* Background Image Section */
  .bg-image-section {
    height: 100vh; /* Adjust the height as needed */
    background-image: url('images/bg1.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

.bg-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 70px; /* Adjust to prevent overlap with navbar when it appears */
    text-align: center;
    background: rgba(0, 0, 0, 0.6); /* Add a dark overlay */
    background-blend-mode: darken; /* Blend the overlay with the background image */
}

  .bg-image h1 {
    color: #ffffff;
    font-size: 8em;
    margin-bottom: 20px;
  }
  
  .bg-image h2 {
    color: #ffffff;
    font-size: 2.5em;
    margin-bottom: 40px;
  }
  
  .bg-image button {
    position: relative;
    background-color: transparent;
    color: #e8e8e8;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    width: 150px;
    height: 60px;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(51, 51, 51, 0.2);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  }

  .bg-image button::before {
    content: "Play";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(135deg,#185094, #09b6a4);
    transform: translate(0%,90%);
    z-index: 99;
    position: relative;
    transform-origin: bottom;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .bg-image button::after {
    content: "Click here";
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform-origin: top;
    transform: translate(0%,-100%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .bg-image button:hover::before {
    transform: translate(0%,0%);
  }
  
  .bg-image button:hover::after {
    transform: translate(0%,-200%);
  }
  
  .bg-image button:focus {
    outline: none;
  }
  
  .bg-image button:active {
    scale: 0.95;
  }
  
   /* Background Image Section */
   .bg-image-section2 {
    height: 100vh; /* Adjust the height as needed */
    background-image: url('images/bg2.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* Background Image Section */
  .bg-image-section3 {
    height: 100vh; /* Adjust the height as needed */
    background-image: url('images/bgimage3.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

.bg-image2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 70px; /* Adjust to prevent overlap with navbar when it appears */
    text-align: center;
    background: rgba(0, 0, 0, 0.6); /* Add a dark overlay */
    background-blend-mode: darken; /* Blend the overlay with the background image */
}

  .bg-image2 h1 {
    color: #ffffff;
    font-size: 8em;
    margin-bottom: 20px;
  }
  
  .bg-image2 h2 {
    color: #ffffff;
    font-size: 2.5em;
    margin-bottom: 40px;
  }
  
  .bg-image2 button {
    position: relative;
    background-color: transparent;
    color: #e8e8e8;
    font-size: 17px;
    font-weight: 600;
    border-radius: 10px;
    width: 150px;
    height: 60px;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(51, 51, 51, 0.2);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  }

  .bg-image2 button::before {
    content: "Play";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(135deg,#185094, #09b6a4 );
    transform: translate(0%,90%);
    z-index: 99;
    position: relative;
    transform-origin: bottom;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .bg-image2 button::after {
    content: "Click here";
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform-origin: top;
    transform: translate(0%,-100%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .bg-image2 button:hover::before {
    transform: translate(0%,0%);
  }
  
  .bg-image2 button:hover::after {
    transform: translate(0%,-200%);
  }
  
  .bg-image2 button:focus {
    outline: none;
  }
  
  .bg-image2 button:active {
    scale: 0.95;
  }