a {
    text-decoration: none;
}

.logo {
    width: 100px;
    height: 50px;
}

.headingcolor {
    margin-bottom:10px;
    color: #ffa365;
}

/* navbar css */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-menu li:first-child a {
    font-weight: bold;
    font-size: 16px;
}

/* Custom styling for mega menu */
.mega-menu {
    position: static !important;
}

.mega-menu .dropdown-menu {
    width: 50%;
    padding: 15px;
    display: none;
    /* Hide dropdown menu by default */
    left: 40%;
    /* Adjust the left position to center horizontally */
}

.mega-menu:hover .dropdown-menu {
    display: block;
    /* Show dropdown menu when hovering over mega-menu */
}

.mega-menu .dropdown-menu a {
    display: block;
    color: #212529;
    text-decoration: none;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-menu a:hover {
    color: #1c6bc2;
}

.dropdown-menu li:first-child a {
    font-weight: bold;
    font-size: 16px;
}

.nav-link {
    font-weight: 500;
}

/* Media query for mobile devices */
@media only screen and (max-width: 600px) {

    /* Adjust dropdown menu for mobile */
    .dropdown-menu {
        width: 100%;
        left: 0;
        padding: 10px;
        display: block;
        position: relative;
    }

    Make the dropdown menu stack vertically .dropdown-menu.show {
        flex-direction: column;
    }

    /* Adjust mega menu on mobile */
    .mega-menu .dropdown-menu {
        width: 100%;
        padding: 10px;
        left: 0;

    }

    /* Adjust links for mobile */
    .mega-menu .dropdown-menu a,
    .dropdown-menu a {
        font-size: 14px;
        padding: 10px;
        text-align: left;
    }


}


/* navbar end */
/* hero section banner */
.overlay-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.overlay-container img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    /* Ensures the image covers the container properly */
    display: block;
    /* Ensure image is displayed by default */
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #ffa365;
    padding: 20px;
    max-width: 800px;
    /* Adjust this width as needed */
    text-align: left;
    /* Default alignment */
    background-color: rgba(255, 255, 255, 0.7);
    /* Optional background for better readability */
}

.overlay-text h1,
.overlay-text p {
    margin: 0;
}

.overlay-container h1 {
    font-weight: 800;
    font-size: 60px;
}

.herobtn {
    width: 190px;
    font-weight: 600;
    padding: 10px;
    border-radius: 40px;
    background-color: #ffa365;
    border: none;
}

@media (max-width: 768px) {
    .overlay-container img {
        height: 300px;
        /* Adjust the image height for smaller screens */
    }

    .overlay-text {
        max-width: 100%;
        /* Ensure the text takes up more space on smaller screens */
        padding: 10px;
        /* Reduce padding */
        background-color: rgba(255, 255, 255, 0.9);
        /* Increase background opacity for readability */
    }

    .overlay-text h1 {
        font-size: 40px;
        /* Decrease font size for better readability on mobile */
    }

    .herobtn {
        width: 200px;
        /* Reduce button width */
        padding: 8px;
        /* Adjust padding */
        font-size: 14px;
        /* Adjust font size */
    }
}

@media (max-width: 480px) {
    .overlay-container img {
        height: 180px;
        /* Further adjust image height for very small screens */
    }

    .overlay-text h1 {
        font-size: 30px;
        /* Further decrease font size */
    }

    .herobtn {
        width: 180px;
        /* Further reduce button width */
        padding: 6px;
        /* Adjust padding */
        font-size: 12px;
        /* Adjust font size */
    }
}


/* heading leadersboli */
.leaders-heilight {
    color: black;
}

.heigh-light-headre {
    background-color: #ff914d99;
    ;
    padding: 50px;


}

/* card editing */
.card-body {
    height: 170px;
}

.card-img-top {
    height: 260px;
}
/* end */

/* owl carsoule slider css */
.owl-carousel {
    background-color: #ff914d99;
    ;
    padding-top: 40px;
    padding-bottom: 40px;
}

.owl-carousel a {
    text-decoration: none;
}

.owl-carousel .item {
    background: #fff;
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 350px;
}

.owl-carousel .item img {
    height: 260px;
    border-radius: 10px;
}

.owl-carousel .item h4 {
    margin: 15px 0 10px;
    font-size: 15px;
    margin-bottom:10px;
    /* Increase font size */
}

.owl-carousel .item p {
    font-size: 16px;
    /* Increase font size */
    color: #555;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    /* Darker background for better visibility */
    border: none;
    color: yellow;
    /* Change arrow color */
    font-size: 30px;
    /* Increase font size */
    cursor: pointer;
    padding: 10px;
    /* Add padding */
    border-radius: 50%;
    /* Make buttons circular */
}

.owl-nav .owl-prev {
    left: 10px;
}

.owl-nav .owl-next {
    right: 10px;
}

.owl-nav button:hover {
    background-color: rgba(0, 0, 0, 0.9);
    /* Darker background on hover */
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

.owl-dot.active {
    background-color: #000;
}

/* end */

/* footer */
.footer {
    background-color: black;
    padding: 40px;
    color: white;
}

.logo-footer {
    width: 180px;
    height: 100px;
}

.footer a,
li {
    list-style: none;
    text-decoration: none;
    color: white;
}

.footer h5 {
    border-bottom: 3px solid #ff914d;
    padding-bottom: 5px;
}

.footer .fa-brands {
    padding: 5px;
    margin-bottom: 10px;
}

.btn-primarynewsletter {
    background-color: #ff914d;
    color: black;
    font-weight: 600;

}

.btn-primarynewsletter:hover {
    background-color: #ff914d;

}

/* footer end  */





/* banner */
.image-container {
    position: relative;
    display: inline-block;
}

.center-bottom-btn {
    position: absolute;
    bottom: 10px;
    /* Adjust the distance from the bottom edge */
    left: 50%;
    transform: translateX(-50%);
    /* Styling the button */
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
}

.center-bottom-btn:hover {
    background-color: #0056b3;
}

/* Base button styles */
.whatsapp-button, .call-button {
    position: fixed; /* Fixes the position relative to the viewport */
    bottom: 20px; /* Distance from the bottom of the page */
    width: 60px; /* Button width */
    height: 60px; /* Button height */
    border-radius: 50%; /* Makes the button circular */
    display: flex; /* Centers the icon */
    justify-content: center; /* Centers the icon horizontally */
    align-items: center; /* Centers the icon vertically */
    background-color: #25D366; /* WhatsApp green color */
    color: white; /* Icon color */
    font-size: 35px; /* Icon size */
    text-decoration: none; /* Remove underline from links */
    z-index: 1000; /* Keeps the buttons on top of other elements */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Adds shadow for better visibility */
    transition: transform 0.3s ease; /* Smooth animation on hover */
}

/* WhatsApp button specific styles */
.whatsapp-button {
    left: 20px; /* Positions the button on the left */
}

/* Call button specific styles */
.call-button {
    right: 20px; /* Positions the button on the right */
    background-color: #34b7f1; /* Different color for call button */
}

/* Hover effects */
.whatsapp-button:hover, .call-button:hover {
    transform: scale(1.1); /* Slightly enlarges the button on hover */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2); /* Increases shadow on hover */
}
