/* Top header styles */
.top-header {
    background-color: #ffffff;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2D6A4F;
    /* Remove text-transform: lowercase; to maintain proper capitalization */
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Base icon circle styling */
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D6A4F;
    overflow: hidden;
    flex-shrink: 0;
    position: relative; /* For precise positioning */
}

/* Individual icon adjustments */
.icon-circle .fa-phone {
    font-size: 20px; /* Phone icon size */
    transform: translate(7px,-4px); /* X: 7px, Y: 10px */
}

.icon-circle .fa-clock {
    font-size: 20px; /* Clock icon size */
    transform: translate(7px,-4px); /* X: 7px, Y: 10px */
}

.icon-circle .fa-location-dot {
    font-size: 20px; /* Location icon size */
    transform: translate(7px,-4px); /* X: 7px, Y: 10px */
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #2D6A4F;
    text-transform: uppercase;
}

.contact-text .value {
    font-size: 0.8rem;
    color: #555;
}

/* Main navigation */
.main-nav {
    background-color: #66948a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 5px 0;
    gap: 30px;
    align-items: center; /* Center items vertically */
    height: 100%; /* Take full height of parent */
}

.nav-links li {
    display: flex;
    align-items: center; /* Center text vertically */
}

/* Center the row content vertically */
.main-nav .row {
    align-items: center;
    min-height: 40px; /* Minimum height for the row */
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    opacity: 0.8;
}

/* Adjust the login button */
.login-btn {
    background-color: white;
    color: #2D6A4F;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s;
    vertical-align: middle; /* Align vertically */
}

.login-btn:hover {
    background-color: #f0f0f0;
    color: #2D6A4F;
}

/* Add a transition for smooth scrolling effect */
body {
    scroll-behavior: smooth;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .contact-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .icon-circle {
        width: 30px;
        height: 30px;
    }
    
    .icon-circle .fa-phone {
        font-size: 13px;
    }
    
    .icon-circle .fa-clock {
        font-size: 14px;
    }
    
    .icon-circle .fa-location-dot {
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .top-header {
        text-align: center;
    }
    
    .logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .login-btn {
        display: block;
        text-align: center;
        margin: 0 auto;
        max-width: 150px;
    }
}




