* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: Times New Roman, sans-serif;
}

/* Video Background */
.header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.header video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Navigation Bar */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  z-index: 10;
  background: transparent;
}

/* Left Navigation with Logo */
.navbar .nav-left {
  display: flex;

  align-items: center;
}

.navbar .logo img {
  width: 100px;
  height: auto;
  margin-right: 20px;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin: 0 15px;
}

.navbar ul li a {
  text-decoration: none;
  color: black;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}



/* Right Button */
.navbar .btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.navbar .btn:hover {
  background-color: black;
}

/* Hamburger Icon for Mobile */
.hamburger {
  display: none;
  color: white;
  flex-direction: column;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: black;
  margin: 3px 0;
}

/* Mobile View */
@media (max-width: 768px) {
  .navbar {
    padding: 5px 15px;
    color: white !important;
    flex-direction: row;
    justify-content: space-between;
  }

  .navbar .nav-left {
    display: flex;

    align-items: center;


    justify-content: flex-start;
  }

  .navbar .logo img {
    width: 80px;
  }

.hamburger {
    display: flex;
    margin-left: 10px;
    color: white !important;
    font-size: 28px;
    cursor: pointer;
}


.navbar ul {
  display: none;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.7); /* Transparent black */
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  padding: 5px;
  border-radius: 0 0 12px 12px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Soft shadow */
  z-index: 10;
  transition: all 0.3s ease; /* Smooth opening effect */
}

.navbar:hover ul {
  display: flex; /* Show the menu on hover */
  opacity: 1; /* Make the menu fully visible */
}

.navbar ul li {
  list-style: none;
  margin: 12px 0;
}

.navbar ul li a {
  text-decoration: none;
  color: black;
  font-size: 12px;
  padding: 4px 15px;
  border-radius: 8px; /* Rounded edges on links */
  transition: all 0.3s ease-in-out;
}

.navbar ul li a:hover {
  background-color: rgba(255, 255, 255, 0.3); /* Slight white hover effect */
  color: #f0f0f0;
  transform: scale(1.01); /* Subtle zoom effect */
}


/* Circle with dots for the arrow */
.circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid white;
  margin-bottom: 10px;
  position: relative;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  margin: 0 3px;
  animation: dotBounce 1s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: 0s;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;

}

/* Bounce effect for dots */
@keyframes dotBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Arrow Bounce effect */
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@media (min-width: 1024px) {
  .dropdown {
    margin-right: 20px; /* Add some space on the right side */
  }
  .dropdown-menu {
    padding: 15px; /* Adjust the padding */
  }
}
 /* Responsive Design */
 @media (max-width: 768px) {
  .split-content {
    flex-direction: column;
    text-align: center;
  }

  .left-content, .right-content {
    padding: 10px;
  }

  /* Card adjustments for mobile */
  .split-content .left-content h5 {
    font-size: 35px;
  }

  .split-content .left-content h2 {
    font-size: 22px;
  }

  .right-content p {
    font-size: 18px;
    margin-top: 40px;
  }

  /* Cards stack one below the other on mobile */
  .cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cards-container .card {
    width: 100%;
    max-width: 280px;
    margin-bottom: 20px;
  }
}

/* For larger screens */
@media (min-width: 769px) {
  .cards-container {
    display: flex;
    justify-content: space-between;
  }
  .cards-container .card {
    width: 30%;
  }
}
  /* Hover Effects */
  .hey-section:hover .hey-overlay,
  .hey-left:hover + .hey-overlay {
      left: 10%; /* Moves over Image 1 */
      width: 100%; /* Expands to 80% */
  }

  .hey-section:hover .hey-left,
  .hey-left:hover {
      width: 30%; /* Shrinks Image 1 */
  }

  /* Bring Left Card to Front */
  .hey-left:hover {
      z-index: 2; /* Left card comes above right card */
  }

  /* Hide Content on Hover */
  .hey-container:hover .hey-content {
      opacity: 1; /* Makes content always visible */
      transition: none;
  }

  /* Responsive Design */
  @media screen and (max-width: 768px) {
      .hey-section {
          height: 350px; /* Adjusted height for better visibility */
      }

      .hey-content h3 {
          font-size: 22px; /* Larger text for readability */
      }

      .hey-content {
          padding: 15px; /* Adjusted padding for smaller screens */
      }
  }

  @media screen and (max-width: 480px) {
      .hey-section {
          height: 250px; /* Further reduced height for smaller screens */
      }

      .hey-content {
          padding: 10px; /* Reduced padding */
      }

      .hey-content h3 {
          font-size: 18px; /* Smaller text but still readable */
      }
  }
  @keyframes rotate-dots {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Animation for scaling and bouncing the circle */
@keyframes scale-bounce {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Hover effect for the circle */
.container > div:hover {
    animation: scale-bounce 0.6s ease-out;
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    section {
        padding: 60px 20px;
    }
    .container {
        flex-direction: column;
        align-items: center;
    }
    .container > div {
        width: 100%;
        margin-bottom: 20px;
    }
    .container .circle {
        width: 250px;
        height: 250px;
        font-size: 40px;
    }
}