 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        margin: 0;
        padding: 0;
        height: 100%; /* Ensure the body and html fill the full viewport height */
    }
    

    /* Navbar styles */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 30px;
        background-color: hsl(211deg 38.61% 10.08%);
        z-index: 1; /* Ensures navbar stays above dropdown */
        position: relative; /* Keep this for proper positioning of dropdown */
    }

    .navbar-brand img {
        max-width: 190px;
        max-height: 120px;
        margin-left: 50px;
    }

    .navbar-nav {
        display: flex;
        align-items: center;
    }

    .nav-link {
        color: white;
        font-size: 20px;
        text-decoration: none;
        margin-left: 20px;
        margin-right: 120px;
        transition: opacity 0.3s ease-in-out;
        position: relative;
    }

    /* Dropdown container */
    .dropdown {
        position: relative;
        display: inline-block;
    }

    /* Dropdown content (hidden by default) */
    .dropdown-menu {
        display: none;
        position: absolute;
        left: 0;
        top: 100%; /* Position it directly under the parent */
        width: 100%; /* Dropdown width same as navbar */
        background-color: white;
        padding: 0;
        z-index: 2; /* Dropdown should be above navbar */
        box-shadow: 5px 10px 18px #888888;
        border-radius: 10px;
    }

    /* Dropdown links */
    .dropdown-item {
        color: #64e8e5;
        padding: 15px 20px;
        width: 90%; /* Set to 90% of the dropdown width */
        text-decoration: none;
        font-weight: bold;
        display: block;
        font-size: 16px;
        transition: background-color 0.3s ease-in-out;
        background-color: rgba(0, 0, 0, 0); /* Transparent background initially */
        text-align: center; /* Center-align the text */
        margin: 0 auto; /* Center the item horizontally */
    }

    .dropdown-item:hover {
        background-color: rgba(100, 232, 229, 0.3); /* Light background on hover */
    }

    /* Show dropdown content when hovering over the parent link (Developers, Organizations) */
    .dropdown:hover .dropdown-menu {
        display: block; /* Dropdown stays visible on hover */
    }

    /* Ensure the dropdown content stays visible when hovering inside the dropdown */
    .dropdown-menu:hover {
        display: block;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler-icon {
        background-color: #fff;
    }
 
    p.smallTag{
        text-align: center;
        font-size: 16px;
        opacity: .7;
        font-weight: bold;
        margin: 0;
        text-align: center;
        width: inherit;
        margin-top: 37px;
    }
  #trial-form{
    display: flex;
    flex-direction: row;
    justify-content: center;
  }  
  .leftSideImage {
    width: 17%;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 1;
}
.rightSideImage {
    width: 17%;
    position: absolute;
    top: 100px;
    right: 0;
    z-index: 1;
}
img.mainTopCurve{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
}
img.mainPlatformImage{
    width: 100%;
    margin-top: 85px;
}
i{
    padding-left: 5px;
}