.navbar {
    background-color: #2e2a4e;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 100;

    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
   }
    .navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
    }
    .navbar li {
    display: inline-block;
    }
    .navbar li a {
    display: block;
    color: white;
    text-align: center;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    padding: 15px 50px;
    text-decoration: none;
    }
    .navbar li a:hover {
    text-decoration: underline;
    }
    .navbar li a.active {
    text-decoration: underline;
    }
    .navbar li a:hover,
    .navbar li a.active {
    position: relative;
    text-decoration: none;

    font-weight: bolder;

    }
    .navbar li a:hover::after,
    .navbar li a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 10px;
    transform: translateX(-50%);
    animation: navbaranimation-hover 1s forwards;
    }

    
.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    }
    .dropdown-content {
    display: none;
    position: absolute;
    background-color: #2e2a4e;
    min-width: 160px;
    height: 0px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    animation: navbaranimation-dropdown 1s forwards;
    border-radius: 0px 0px 10px 10px;
    }
    .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    animation: navbaranimation-dropdowntext 3s forwards;
    }
    .dropdown-content a:hover {
    background-color: #ffffff; /* Change the background color on hover */
    color: black; /* Change the text color on hover */
    }
    .dropdown:hover .dropdown-content {
    display: block;
    }
    @keyframes navbaranimation-hover {
    0% {
    width: 0%;
    }
    100% {
    width: 50%;
    }
    }
    @keyframes navbaranimation-dropdown {
    0% {
    height: 0px;
    }
    100% {
    height: 120px;
    }
    }
    @keyframes navbaranimation-dropdowntext {
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
    }
                .background-image {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            height: 75vh;
            background-image: url("images/home-banner.png");
            background-position: top center;
            background-repeat: no-repeat;
            background-size: cover;
            z-index: -1;
            margin-top: 0px;
            margin-bottom: 100px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5); /* Drop shadow properties */
            }

            
            .contact-container {
                position: fixed;
                top: 0;
                left: 0;
                display: flex;
                flex-direction: row;
                align-items: flex-start;
                justify-content: center;
                padding: 16px;
                padding-bottom: 20px;
                padding-right: 20px;
                padding-left: 0px;
                border-radius: 0 10px 10px 0;
                z-index: 999;
                background-color: transparent;
              }
              
              .contact-item {
                display: flex;
                align-items: center;
                margin-bottom: 1px;
                margin-left: 30px;
                color: #fff;
              }
              
              .contact-item i {
                margin-right: 5px;
                font-size: 24px;
              }
              
              .contact-text {
                font-size: 20px;
                color: #fff;
                font-family: 'Poppins', sans-serif;
              }
              
              
              
              .services-navbar {
                background-color: #2e2a4e;
                position: sticky;
                width: 100%;
                top: 0;
                z-index: 100;
               }
                .services-navbar ul {
                list-style-type: none;
                margin: 0;
                padding: 0;
                overflow: hidden;
                text-align: center;
                }
                .services-navbar li {
                display: inline-block;
                }
                .services-navbar li a {
                display: block;
                color: white;
                text-align: center;
                font-size: 20px;
                font-family: 'Poppins', sans-serif;
                padding: 15px 50px;
                text-decoration: none;
                }
                .services-navbar li a:hover {
                text-decoration: underline;
                }
                .services-navbar li a.active {
                text-decoration: underline;
                }
                .services-navbar li a:hover,
                .services-navbar li a.active {
                position: relative;
                text-decoration: none;
            
                font-weight: bolder;
            
                }
                .services-navbar li a:hover::after,
                .services-navbar li a.active::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                height: 3px;
                background-color: #ffffff;
                border-radius: 10px;
                transform: translateX(-50%);
                animation: navbaranimation-hover 1s forwards;
                }
            