* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.dropdown-menu .dropdown-item:hover {
    margin-left: 0px;
}

.dropdown-menu .dropdown-item {
    background-color: #fff;
    padding: 10px 20px;
}

    .dropdown-menu .dropdown-item:hover {
        background-color: #fb6b6b;
        padding: 10px 20px;
        color: white;
        margin-left: 100px;
    }

.navbar-toggler {
    float: right;
    margin-left: 80%;
    background-color: #fff;
}

#marquee {
    background-color: #EEFBEA;
}

    #marquee a {
        color: #FF8343;
    }

nav .nav-link.show {
    color: white;
}

#navbarNavDropdown {
    color: white;
}

nav .nav-link {
    margin-left: 0px;
    text-align: left;
}

.navbar {
    background-color: #687FE5;
    padding: 0;
}

.portallogin {
    text-align: center;
}


.active {
    background-color: rgba(0,0,0,0.4);
    display: block;
    height: 100%;
    width: 100px;
    text-align: center;
    color: white;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin-left: 10px;
    width: 180px;
    text-align: center;
}



    .nav-link:not(.active):hover {
        background-color: white;
        font-size: 16px;
        color: black;
    }
    /* Show dropdown menu on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Optional: removes dropdown "jump" */
}

/* Optional: Fix hover background */
.dropdown-menu {
    transition: all 0.3s ease-in-out;
}
/*---------------------------------------------------------------
#Carousel Code Here
----------------------------------------------------------------*/
@media (max-width: 768px) {
    .carousel-slide img {
        height: auto;
        max-height: 250px; /* Set a maximum height to prevent the image from becoming too large */
        width: 100%;
    }

    nav .nav-link {
        margin-left: 40px;
        text-align: left;
        margin-left: 0px;
        padding: 10px 20px;
        width: 100%;
    }

    .social-links {
        display: none;
    }

        .social-links a {
            font-size: 25px;
            display: inline-block;
            background: rgb(32, 177, 32);
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            border-radius: 50%;
            text-align: center;
            width: 40px;
            transition: 0.3s;
            margin-right: 20px;
        }
}

#carousel_code {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
}

    .carousel-slide img {
        width: 100%;
        height: 500px;
        border-radius: 10px;
    }

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

    .prev:hover, .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }
/*---------------------------------------------------------------
#Carousel Code end here
----------------------------------------------------------------*/

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        color: rgb(22, 156, 46);
    }

        .section-title h2::before {
            content: "";
            position: absolute;
            display: block;
            width: 120px;
            height: 1px;
            background: #ddd;
            bottom: 1px;
            left: calc(50% - 60px);
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 40px;
            height: 3px;
            background: #FF8343;
            bottom: 0;
            left: calc(50% - 20px);
        }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
  # About Us
  --------------------------------------------------------------*/
.about {
    background-image: url('/assets/img/bg4.jpg');
    background-size: cover;
}
.profile-card {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    color: white;
    max-width: 700px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Circular shape */
    object-fit: cover;
    margin-right: 20px;
}

.profile-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: bold;
}

.profile-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding-left: 28px;
        position: relative;
    }

        .about .content ul li + li {
            margin-top: 10px;
        }

    .about .content ul i {
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 20px;
        color: tomato;
        line-height: 1;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #47b2e4;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #47b2e4;
}

    .about .content .btn-learn-more:hover {
        background: #47b2e4;
        color: #fff;
        text-decoration: none;
    }

/*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
.services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    background: #f3f5fa;
    width: 300px;
    height: 350px;
}

.services .card-text {
    margin-top: 50px;
}

.services .icon-box .icon {
    margin-bottom: 20px;
}

    .services .icon-box .icon i {
        color: #47b2e4;
        font-size: 36px;
        transition: 0.3s;
    }

.services .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
}

    .services .icon-box h4 a {
        color: #37517e;
        transition: ease-in-out 0.3s;
    }

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    transform: translateY(-10px);
}

    .services .icon-box:hover h4 a {
        color: #47b2e4;
    }

/*--------------------------------------------------------------
  # Team
  --------------------------------------------------------------*/
#team {
    background-color: #EEFBEA;
}

.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: 0.5s;
    height: 100%;
}

    .team .member .pic {
        overflow: hidden;
        border-radius: 50%;
    }

        .team .member .pic img {
            transition: ease-in-out 0.3s;
            width: 100px;
        }

    .team .member:hover {
        transform: translateY(-10px);
    }

    .team .member .member-info {
        padding-left: 20px;
    }

    .team .member h4 {
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 20px;
        color: #37517e;
    }

    .team .member span {
        display: block;
        font-size: 15px;
        padding-bottom: 10px;
        position: relative;
        font-weight: 500;
    }

        .team .member span::after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 1px;
            background: #cbd6e9;
            bottom: 0;
            left: 0;
        }

    .team .member p {
        margin: 10px 0 0 0;
        font-size: 14px;
    }

    .team .member .social {
        margin-top: 12px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .team .member .social a {
            transition: ease-in-out 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            width: 32px;
            height: 32px;
            background: #eff2f8;
        }

            .team .member .social a i {
                color: #37517e;
                font-size: 16px;
                margin: 0 2px;
            }

            .team .member .social a:hover {
                background: #47b2e4;
            }

                .team .member .social a:hover i {
                    color: #fff;
                }

            .team .member .social a + a {
                margin-left: 8px;
            }

.icon-box img {
    width: 150px;
    border-radius: 50%;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

    .contact .info i {
        font-size: 20px;
        color: rgb(22, 156, 46);
        float: left;
        width: 44px;
        height: 44px;
        background: #e7f5fb;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        padding: 0 0 0 60px;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #37517e;
    }

    .contact .info p {
        padding: 0 0 10px 60px;
        margin-bottom: 20px;
        font-size: 14px;
        color: #6182ba;
    }

    .contact .info .email p {
        padding-top: 5px;
    }

    .contact .info .social-links {
        padding-left: 60px;
    }

        .contact .info .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #333;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
            margin-right: 10px;
        }

            .contact .info .social-links a:hover {
                background: #FF8343;
                color: #fff;
            }

    .contact .info .email:hover i,
    .contact .info .address:hover i,
    .contact .info .phone:hover i {
        background: #FF8343;
        color: #fff;
    }

.social-links {
    padding-left: 30px;
    margin-left: 260px;
}

    .social-links a {
        font-size: 25px;
        display: inline-block;
        background: rgb(14, 15, 14);
        color: #fff;
        line-height: 1;
        padding: 8px 0;
        border-radius: 50%;
        text-align: center;
        width: 40px;
        transition: 0.3s;
        margin-right: 20px;
    }

        .social-links a:hover {
            background: #FF8343;
            color: #fff;
        }
