﻿/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    padding-top: 70px; /* Adjust if navbar height changes */
}

/* Primary Blue Color */
.text-primary-blue {
    color: #0179c3 !important;
}

/* Site Logo */
.site_logo {
    width: 60%;
    max-width: 180px;
}

/* Footer Description */
.footer-description {
    font-size: 14px;
    color: #6c757d;
    margin-top: 15px;
    line-height: 1.6;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Social Icons */
.footer-icons a {
    font-size: 24px;
    color: #0179c3;
    transition: color 0.3s ease;
}

    .footer-icons a:hover {
        color: #0d6efd;
    }

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #0179c3;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .social-icon:hover {
        background-color: #0d6efd;
        transform: scale(1.1);
    }

/* Footer Styling */
#main-footer {
    background-color: #333;
    color: white;
    padding: 0px 0;
}

    #main-footer h4, #main-footer h5 {
        color: #0179c3;
    }

    #main-footer ul li {
        font-size: 15px;
        line-height: 1.7;
    }

    #main-footer a {
        color: #0179c3;
        text-decoration: none;
    }

        #main-footer a:hover {
            text-decoration: underline;
        }

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

    .whatsapp-float:hover {
        background-color: #1ebe57;
    }

/* Responsive Adjustments */
@media (max-width: 767px) {
    #main-footer .row {
        flex-direction: column;
        align-items: center;
    }

    #main-footer .col-md-4 {
        margin-bottom: 30px;
    }
}

headerbody {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.custom-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

    .custom-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

.logo img {
    height: 50px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

    .nav-links ul li a {
        text-decoration: none;
        color: #333333;
        font-size: 16px;
        transition: color 0.3s ease;
    }

        .nav-links ul li a:hover {
            color: #007BFF;
        }

.btn-login {
    padding: 8px 16px;
    background-color: #0179c3;
    color: #ffffff !important;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .btn-login:hover {
        background-color: #0056b3;
    }

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #333333;
        border-radius: 2px;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

        .nav-links ul {
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
        }

            .nav-links ul li {
                margin: 10px 0;
            }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
    }
}

