
/* ======================================================
   INFO BAR
====================================================== */
.info-bar {
    background: #157292 !important;
    color: #fff !important;
}

.info-bar i {
    color: #6ea918 !important;
}

#select-office {
    background: #157292 !important;
    color: #fff !important;
    border: 1px solid #6ea918 !important;
}


/* ======================================================
   NAVIGATION (Menubar)
====================================================== */
.navigation {
    background: #ffffff !important;
    position: relative;
    overflow: visible !important;
    z-index: 10;
}


/* ======================================================
   ANIMATED BORDER
====================================================== */
.navigation::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #6ea918, #157292, #6ea918);
    background-size: 200% 100%;
    animation: moveLine 8s linear infinite;
    z-index: 5;
}

/* Line slow animation */
@keyframes moveLine {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}


/* ======================================================
   3 MOVING DOTS
====================================================== */
.navigation::before {
    content: "● ● ●";                 /* 3 dots */
    font-size: 20px;
    position: absolute;
    bottom: -25px;
    left: 0;
    color: #6ea918;
    letter-spacing: 10px;             /* gap between dots */
    z-index: 9999;
    animation: moveDots 6s ease-in-out infinite;
}

/* Dots movement animation */
@keyframes moveDots {
    0% { left: 0%; color: #6ea918; }
    50% { left: 92%; color: #157292; }
    100% { left: 0%; color: #6ea918; }
}


/* ======================================================
   MENU LINKS
====================================================== */
.navbar-nav .nav-link {
    color: #157292 !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: #6ea918 !important;
}


/* ======================================================
   DROPDOWN MENU
====================================================== */
.dropdown-menu.small-menu {
    background: #ffffff !important;
    border: 1px solid #6ea918 !important;
}

.dropdown-menu.small-menu a {
    color: #157292 !important;
    padding: 10px 15px;
    display: block;
}

.dropdown-menu.small-menu a:hover {
    background: #6ea918 !important;
    color: #fff !important;
}


/* ======================================================
   MOBILE TOGGLER
====================================================== */
.navbar-toggler span {
    background: #6ea918 !important;
}


/* ======================================================
   SOCIAL ICONS
====================================================== */
.header-social-icon i {
    color: #6ea918 !important;
}

.header-social-icon i:hover {
    color: #157292 !important;
}


/* ======================================================
   FOOTER MAIN AREA
====================================================== */
.footer {
    background: #157292 !important;   /* Blue Theme */
    color: #ffffff !important;
    padding-top: 50px;
}

/* Footer Text */
.footer p,
.footer a,
.footer li,
.footer span {
    color: #ffffff !important;
}

/* Section Headings */
.footer .widget_title {
    font-size: 20px;
    font-weight: 600;
    color: #6ea918 !important;   /* Green */
    margin-bottom: 20px;
}

/* Useful Links */
.footer a:hover {
    color: #6ea918 !important;
    text-decoration: none;
}

/* Recent Posts Date */
.footer .post-date {
    color: #d4e8ff !important;
}


/* ======================================================
   SUBSCRIBE BOX
====================================================== */
.footer .form-control {
    background: #ffffff !important;
    border: 2px solid #6ea918 !important;
    color: #157292 !important;
}

.footer button.btn {
    background: #6ea918 !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 18px;
}

.footer button.btn:hover {
    background: #157292 !important;
    color: #fff !important;
}


/* ======================================================
   COPYRIGHT ROW
====================================================== */
.copyright_row {
    background: #0f5673 !important; 
    padding: 15px 0;
    border-top: 3px solid #6ea918 !important;
}

/* COPYRIGHT TEXT */
.copyright_row .copyright {
    color: #ffffff !important;
    font-size: 14px;
    margin-top: 10px;
}

.copyright_row .copyright a {
    color: #6ea918 !important;
}

.copyright_row .copyright a:hover {
    color: #ffffff !important;
}


/* ======================================================
   SOCIAL ICONS (FB, Twitter etc.)
====================================================== */

.socials ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 10px;
}

.socials ul li a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #157292;       /* blue */
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    border: 2px solid #6ea918; /* green border */
    transition: 0.3s ease;
}

/* Hover effect */
.socials ul li a i:hover {
    background: #6ea918;   /* green */
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-3px);
}

