* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
      background-color: #F0F8FF;
      /* color: #f0f0f0; */
  }
  :root {
    --bg-color: #F0F8FF;
    --text-color: #000;
    --navbar-bg: black;
    --navbar-text-color: #fff;
    --link-hover-color: #1ba1dd;
  }
  
  body {
    background-color: var(--bg-color);
    /* color: var(--text-color); */
    transition: all 4s ease;
  }
  
  .navbar {
    background: var(--navbar-bg);
    color: var(--navbar-text-color);
  }
  
  .nav-links a {
    color: var(--navbar-text-color);
  }
  
  .nav-links a:hover {
    color: var(--link-hover-color);
  }
  
  /* Dark mode styles */
  .dark-mode {
    --bg-color: #121212;
    --text-color: #f0f0f0;
    --navbar-bg: #333;
    --navbar-text-color: #f0f0f0;
    --link-hover-color: #bb86fc;
  }
  
  
  
  .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 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: #1ba1dd;
  }
  
  .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-radius: 5px;
    border: 1px solid #1873B5;
    left: 0;
    background-color: #F0F8FF;
    padding: 10px;
    display: none;
  }
  
  .dropdown-menu li {
    margin-bottom: 10px;
    width: 80px;
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
  }
  
  .dropdown-menu li a {
    text-decoration: none;
    color: #141414;
    font-weight: 600;
  }
  
  .dropdown-menu li a:hover {
    text-decoration: none;
   color: #1ba1dd;
  }
  
  .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: 2.3rem;
    }
  }
.nav {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2px;
    margin-top: 10vh;
    margin-left: 5vh;
    font-weight: 600;
}
.nav .hh{
    color: #1ba1dd;
   
}

.nav a {
    text-decoration: none;
    color: #1ebeb6;
    margin-right: 15px;
}

.nav a:hover {
    color: black;
}

.container {
    width: 80%; /* Set a width for the containers */
    height: 800px;
    max-width: 1200px;
    margin: 20px auto; /* Center the containers */
    position: relative; /* Position relative for absolute children */
    overflow: hidden; /* Hide overflow */
    border-radius: 8px; /* Optional: Rounded corners */
    
}

.image1 {
    width: 45%;
    left: 10%; /* Set image width to fill the container */
    height: 600px; /* Set image height */
    top: 1%;
    object-fit: cover; /* Cover the box while maintaining aspect ratio */
    position: relative; /* Position relative for description overlap */
    z-index: 1; /* Ensure image is below the description */
}

.description1 {
    position: absolute; /* Position absolutely within the container */
    top: 30%; /* Overlap by 10% from the top */
    left: 70%; /* Center horizontally */
    transform: translate(-50%, -10%); /* Adjust to center and move up by 10% */
    width: 40%; /* Set description width */
    height: 65%;
    background-color: white; /* Semi-transparent background */
    padding: 20px; /* Padding for the description */
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Shadow effect */
    z-index: 2; /* Ensure description is above the image */
    border-bottom: 3px solid #1ba1dd;
}
h2{
    color: #1ba1dd;
}
.container i{
    color: #1ebeb6;
}
.image2 {
    width: 45%; /* Set image width to fill the container */
    height: 600px; /* Set image height */
    object-fit: cover; /* Cover the box while maintaining aspect ratio */
    position: relative; /* Position relative for description overlap */
    z-index: 1; /* Ensure image is below the description */
    left: 46.5%;
}

.description2 {
    position: absolute; /* Position absolutely within the container */
    left: 29%; /* Set image width to fill the container */
    height: 65%; /* Set image height */
    top: 25%;
    transform: translate(-50%, -10%); /* Adjust to center and move up by 10% */
    width: 40%; /* Set description width */
    background-color: white; /* Semi-transparent background */
    padding: 20px; /* Padding for the description */
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Shadow effect */
    z-index: 2; /* Ensure description is above the image */
    border-bottom: 3px solid #1ba1dd;
}

.image3 {
    width: 45%;
    left: 10%; /* Set image width to fill the container */
    height: 600px; /* Set image height */
    top: 1%;
    object-fit: cover; /* Cover the box while maintaining aspect ratio */
    position: relative; /* Position relative for description overlap */
    z-index: 1; /* Ensure image is below the description */
}

.description3 {
    position: absolute; /* Position absolutely within the container */
    top: 30%; /* Overlap by 10% from the top */
    left: 70%; /* Center horizontally */
    transform: translate(-50%, -10%); /* Adjust to center and move up by 10% */
    width: 40%; /* Set description width */
    height: 65%;
    background-color: white; /* Semi-transparent background */
    padding: 20px; /* Padding for the description */
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Shadow effect */
    z-index: 2; /* Ensure description is above the image */
    border-bottom: 3px solid #1ba1dd;
}


.image4 {
    width: 45%; /* Set image width to fill the container */
    height: 600px; /* Set image height */
    object-fit: cover; /* Cover the box while maintaining aspect ratio */
    position: relative; /* Position relative for description overlap */
    z-index: 1; /* Ensure image is below the description */
    left: 46.5%;
}

.description4 {
    position: absolute; /* Position absolutely within the container */
    left: 29%; /* Set image width to fill the container */
    height: 65%; /* Set image height */
    top: 25%;
    transform: translate(-50%, -10%); /* Adjust to center and move up by 10% */
    width: 40%; /* Set description width */
    background-color: white; /* Semi-transparent background */
    padding: 20px; /* Padding for the description */
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Shadow effect */
    z-index: 2; /* Ensure description is above the image */
    border-bottom: 3px solid #1ba1dd;
}
.image5 {
    width: 45%;
    left: 10%; /* Set image width to fill the container */
    height: 600px; /* Set image height */
    top: 1%;
    object-fit: cover; /* Cover the box while maintaining aspect ratio */
    position: relative; /* Position relative for description overlap */
    z-index: 1; /* Ensure image is below the description */
}

.description5 {
    position: absolute; /* Position absolutely within the container */
    top: 30%; /* Overlap by 10% from the top */
    left: 70%; /* Center horizontally */
    transform: translate(-50%, -10%); /* Adjust to center and move up by 10% */
    width: 40%; /* Set description width */
    height: 65%;
    background-color: white; /* Semi-transparent background */
    padding: 20px; /* Padding for the description */
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Shadow effect */
    z-index: 2; /* Ensure description is above the image */
    border-bottom: 3px solid #1ba1dd;
}

.image6 {
    width: 45%; /* Set image width to fill the container */
    height: 600px; /* Set image height */
    object-fit: cover; /* Cover the box while maintaining aspect ratio */
    position: relative; /* Position relative for description overlap */
    z-index: 1; /* Ensure image is below the description */
    left: 46.5%;
}

.description6 {
    position: absolute; /* Position absolutely within the container */
    left: 29%; /* Set image width to fill the container */
    height: 65%; /* Set image height */
    top: 25%;
    transform: translate(-50%, -10%); /* Adjust to center and move up by 10% */
    width: 40%; /* Set description width */
    background-color: white; /* Semi-transparent background */
    padding: 20px; /* Padding for the description */
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Shadow effect */
    z-index: 2; /* Ensure description is above the image */
    border-bottom: 3px solid #1ba1dd;
}
.image7 {
    width: 45%;
    left: 10%; /* Set image width to fill the container */
    height: 600px; /* Set image height */
    top: 1%;
    object-fit: cover; /* Cover the box while maintaining aspect ratio */
    position: relative; /* Position relative for description overlap */
    z-index: 1; /* Ensure image is below the description */
}

.description7 {
    position: absolute; /* Position absolutely within the container */
    top: 30%; /* Overlap by 10% from the top */
    left: 70%; /* Center horizontally */
    transform: translate(-50%, -10%); /* Adjust to center and move up by 10% */
    width: 40%; /* Set description width */
    height: 65%;
    background-color: white; /* Semi-transparent background */
    padding: 20px; /* Padding for the description */
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Shadow effect */
    z-index: 2; /* Ensure description is above the image */
    border-bottom: 3px solid #1ba1dd;
}

.image8 {
    width: 45%; /* Set image width to fill the container */
    height: 600px; /* Set image height */
    object-fit: cover; /* Cover the box while maintaining aspect ratio */
    position: relative; /* Position relative for description overlap */
    z-index: 1; /* Ensure image is below the description */
    left: 46.5%;
}

.description8 {
    position: absolute; /* Position absolutely within the container */
    left: 29%; /* Set image width to fill the container */
    height: 65%; /* Set image height */
    top: 25%;
    transform: translate(-50%, -10%); /* Adjust to center and move up by 10% */
    width: 40%; /* Set description width */
    background-color: white; /* Semi-transparent background */
    padding: 20px; /* Padding for the description */
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Shadow effect */
    z-index: 2; /* Ensure description is above the image */
    border-bottom: 3px solid #1ba1dd;
}
.image9 {
    width: 45%;
    left: 10%; /* Set image width to fill the container */
    height: 600px; /* Set image height */
    top: 1%;
    object-fit: cover; /* Cover the box while maintaining aspect ratio */
    position: relative; /* Position relative for description overlap */
    z-index: 1; /* Ensure image is below the description */
}

.description9 {
    position: absolute; /* Position absolutely within the container */
    top: 30%; /* Overlap by 10% from the top */
    left: 70%; /* Center horizontally */
    transform: translate(-50%, -10%); /* Adjust to center and move up by 10% */
    width: 40%; /* Set description width */
    height: 65%;
    background-color: white; /* Semi-transparent background */
    padding: 20px; /* Padding for the description */
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: Shadow effect */
    z-index: 2; /* Ensure description is above the image */
    border-bottom: 3px solid #1ba1dd;
}

.description1:hover{
    /* transform: translateY(1px); */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* background-color: #f0e68c; */
}
.description2:hover{
    /* transform: translateY(1px); */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* background-color: #f0e68c; */
}.description3:hover{
    /* transform: translateY(1px); */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* background-color: #f0e68c; */
}.description4:hover{
    /* transform: translateY(1px); */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* background-color: #f0e68c; */
}.description5:hover{
    /* transform: translateY(1px); */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* background-color: #f0e68c; */
}.description6:hover{
    /* transform: translateY(1px); */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* background-color: #f0e68c; */
}.description7:hover{
    /* transform: translateY(1px); */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* background-color: #f0e68c; */
}.description8:hover{
    /* transform: translateY(1px); */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* background-color: #f0e68c; */
}.description9:hover{
    /* transform: translateY(1px); */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* background-color: #f0e68c; */
}
@media (max-width: 768px) {
    .container {
        width: 90%;
        height: auto; /* Adjust height for smaller screens */
    }

    .image1, .image2, .image3, .image4, .image5, .image6, .image7, .image8, .image9 {
        width: 100%; /* Full width for images */
        height: auto; /* Auto height for images */
        left: 0; /* Reset left position */
        padding: 25px;
    }

    .description1, .description2, .description3, .description4, .description5, .description6, .description7, .description8, .description9 {
        width: 90%; /* Adjust description width */
        left: 50%; /* Center description */
        height: 49%;
        top: 35%;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        height: 1000px; /* Adjust height for smaller screens */
    }

    
}
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 10vh;
  }
  
  .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;
  }
 