* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
    background-color: #F0F8FF;
    /* color: #f0f0f0; */
}

:root {
  --background-light: #F0F8FF;
  --text-light: #141414;
  --background-dark: #121212;
  --text-dark: #f7f7f7;

  /* Dynamic theme colors */
  --background-color: var(--background-light);
  --text-color: var(--text-light);
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar, .footer {
  background-color: var(--background-color);
  color: var(--text-color);
}

.navbar a, .footer a {
  color: var(--text-color);
}

.navbar a:hover, .footer a:hover {
  color: #1ba1dd;
}

/* Dark mode theme */
body.dark-mode {
  --background-color: var(--background-dark);
  --text-color: var(--text-dark);
}

.theme-toggle-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 10px 20px;
  background-color: var(--background-dark);
  color: var(--text-light);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode .theme-toggle-btn {
  background-color: var(--background-light);
  color: var(--text-dark);
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: black;
  color: #FFFFFF;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 5.5vh;
  background-size: 400% 400%; /* Makes the gradient larger for animation */
  animation: moveGradient 6s infinite alternate; /* Adjust timing and direction */
}
@keyframes moveGradient {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 0%;
  }
  75% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.logo-bio {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 500;
}

.logo img {
  height: 4.5vh;
}

.logo a {
  color: #f7f7f7;
  text-decoration: none;
}

.logo a:hover {
  color: aqua;
}

.nav-links {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-grow: 1;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links a {
  text-decoration: none;
  color: #f7f7f7;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: rgb(51, 182, 182);
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #FFFFFF;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  text-decoration: none;
  color: #000;
}

.dropdown-toggle:hover {
  text-decoration: none;
  color: #000;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  border: 1px solid #1873B5;
  left: 0;
  background-color: #F0F8FF;
  padding: 10px;
  display: none;
}

.dropdown-menu li {
  margin-bottom: 10px;
  width: 90px;
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #141414;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  text-decoration: none;
  /* background-color: #9fa9ad; */
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
      display: none; /* Hide links by default */
      flex-direction: column;
      position: absolute;

      top: 60px; /* Adjust based on navbar height */
      left: 0;
      width: 100%;
      background: linear-gradient(to right, #0a0a0a, #0c81b8);
      padding: 10px 0;
  }
  .navbar {
    height: 59px;
  }

  .nav-links.active {
      display: flex; /* Show links when active */
  }

  .hamburger {
      display: block; /* Show hamburger icon */
  }

  .logo img {
      margin-left: 80px;
      height: 3rem;
  }
}
.nav {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2px;
    margin-top: 20vh;
    margin-left: 5vh;
    font-weight: 600;
}
.nav .hh{
    color: #1ebeb6;
   
}

.nav a {
    text-decoration: none;
    color: #1ebeb6;
    margin-right: 15px;
}

.nav a:hover {
    color: black;
}
.mapp{
    width: 100%;
    padding: 10px 50px 100px;
    margin-top: 50px;
    border: transparent;
}

.container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.left-side {
  width: 40%;
  padding: 20px;
  background-color: transparent;
  border-radius: 5px;
}

.left-side i {
  color: red;
  margin-right: 10px;
}

.left-side p {
  margin-left: 30px;
}

h4 {
  font-size: 1.5em;
  margin-bottom: 10px;
  margin-top: 20px;
}

h5 {
  font-size: 1.5em;
  margin-bottom: 10px;
  margin-top: 20px;
}

.right-side {
  width: 55%;
  padding: 20px;
  background-color: transparent;
  border-radius: 5px;
}

h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

label {
  display: block;
  margin: 10px 0 5px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 10px 15px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 10px;
  button {
    width: 100%; /* Ensures the button takes the full width of its parent */
}
}

button:hover {
  background-color: #0056b3;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .left-side, .right-side {
      width: 100%; /* Stack the sides on smaller screens */
      margin-bottom: 800px; /* Add some space between stacked elements */
  }
  .container{
    height: 100%;
    margin-bottom: 100px;
  }

}

@media (max-width: 480px) {
  h4, h5, h2 {
      font-size: 1.2em; /* Reduce font size for smaller screens */
  }

  button {
      width: 100%; /* Make buttons full width on small screens */
  margin-bottom: 30vh;
    }
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 5vh;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 1vh;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .col-md-4 {
    width: 33.33%;
    padding: 0 15px;
  }
  
  .footer-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .social-icons {
    list-style: none;
    padding: 0;
    display: flex;
  }
  
  .social-icons li {
    margin-right: 10px;
  }
  
  .social-icons a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #1ba1dd;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  .footer-logo {
    max-width: 100px; /* Adjust size as needed */
    margin-bottom: 20px; /* Add spacing below the logo */
    display: block; /* Ensure proper alignment */
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #1ba1dd;
  }
  
  .copyright {
    text-align: center;
    margin-top: 30px;
  }
  .container {
    display: flex;
    justify-content: space-between;
    overflow: hidden; /* Prevent overflow during animation */
    height: 40vh; /* Optional: Set height for full view */
}

.left-side, .right-side {
    width: 45%; /* Adjust width as needed */
    opacity: 0; /* Start hidden */
    transform: translateX(-100%); /* Start from the left */
    transition: opacity 0.5s ease, transform 0.5s ease; /* Transition for smooth effect */
}

.right-side {
    transform: translateX(100%); /* Start from the right */
}

.container.show .left-side {
    opacity: 1; /* Fade in */
    transform: translateX(0); /* Slide in from the left */
}

.container.show .right-side {
    opacity: 1; /* Fade in */
    transform: translateX(0); /* Slide in from the right */
}