/* ===================================================================
   NAVIGATION STYLES
   =================================================================== */
.custom-navbar {
    background-color: #059240; /* Green */
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #ffc107 !important;
}

.dropdown-menu {
    border-radius: 10px;
    margin-top: 15px;
}

.dropdown-item {
    padding: 10px 20px;
}

.dropdown-item:hover {
    background-color: #ffc107;
    color: #000;
}

/* ===================================================================
   PAGE CONTENT MANAGEMENT (Single Page App)
   =================================================================== */
.page-content {
    min-height: 60vh;
}

/* ===================================================================
   HERO CAROUSEL
   =================================================================== */
.hero-image {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-image h1 {
        font-size: 2.5rem;
    }
    .hero-image p {
        font-size: 1.1rem;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(97, 92, 92, 0.74);
    border-radius: 50%;
    background-size: 50%;
}

/* ===================================================================
   ABOUT SECTION
   =================================================================== */
.about-img-container {
    position: relative;
    padding: 10px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    text-align: center;
    min-width: 120px;
}

@media (max-width: 768px) {
    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        display: inline-block;
    }
}

/* ===================================================================
   SERVICE CARDS
   =================================================================== */
.service-card {
    background-color: #ffffff;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    background-color: #28a745 !important;
    transform: translateY(-10px);
}

.service-card:hover h4,
.service-card:hover p,
.service-card:hover i {
    color: #ffffff !important;
}

/* ===================================================================
   POLICY PAGES STYLING
   =================================================================== */
.policy-content {
    line-height: 1.8;
}

.policy-content h4 {
    margin-top: 20px;
}

/* ===================================================================
   UTILITY CLASSES
   =================================================================== */
.text-navy { 
    color: #002147; 
}

.bg-navy { 
    background-color: #002147; 
}

/* ===================================================================
   FOOTER STYLES
   =================================================================== */
:root {
    --gold: #d4af37;
    --green-dark: #059240;
}

footer {
    background: linear-gradient(135deg, #059240 0%, var(--green-dark) 100%);
    color: rgba(255,255,255,.82);
    padding: 60px 40px 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 30px;
}

.about-section {
    padding-right: 50px;
}

.footer-logo {
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.footer-col p {
    font-size: .88rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    padding: 6px 0;
    font-size: .85rem;
    display: flex;
    align-items: flex-start;
}

.footer-col ul li i {
    margin-right: 12px;
    color: var(--gold);
    margin-top: 4px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(218, 196, 4, 0.7);
    transition: .22s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.footer-bottom {
    max-width: 1100px;
    margin: 36px auto 0;
    border-top: 1px solid rgba(211, 181, 8, 0.12);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    opacity: .8;
    color: rgba(233, 211, 11, 0.938);
}

.footer-link {
    color: rgba(233, 211, 11, 0.938);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ffc107;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-section {
        padding-right: 0;
    }
    .footer-col h4 {
        display: inline-block;
    }
    .footer-col ul li {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}

/* ===================================================================
   SMOOTH SCROLLING
   =================================================================== */
html {
    scroll-behavior: smooth;
}

/* ===================================================================
   FOUNDER MESSAGE SECTION
   =================================================================== */
.image-border-box {
    position: relative;
    border: 1px solid #dee2e6;
}

.square-frame, .square-frame img {
    border-radius: 0 !important;
}

.message-content {
    line-height: 1.8;
}

/* ===================================================================
   WHY CHOOSE US / KPI CARDS
   =================================================================== */
.kpi-card {
    transition: all 0.4s ease;
    border-radius: 12px;
    background-color: #ffffff;
}

.kpi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.kpi-icon-wrap {
    transition: transform 0.3s ease;
}

.kpi-card:hover .kpi-icon-wrap {
    transform: scale(1.1);
}

.kpi-footer-accent {
    transition: width 0.3s ease;
}

.kpi-card:hover .kpi-footer-accent {
    width: 100%;
}

/* ===================================================================
   TESTIMONIALS - FLOATING CARDS
   =================================================================== */
.text-navy { color: #001f3f; }
.bg-navy { background-color: #001f3f; }
.italic { font-style: italic; }

@keyframes floatEffect {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating-card {
    animation: floatEffect 4s ease-in-out infinite;
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 1;
}

.floating-card:hover, .active-highlight {
    animation-play-state: paused;
    background-color: #28a745 !important;
    transform: scale(1.05) translateY(-10px) !important;
    box-shadow: 0 1rem 3rem rgba(25, 135, 84, 0.4) !important;
}

.testimonial-img-wrapper {
    display: flex;
    justify-content: center;
    width: 100%; 
}

.testimonial-img {
    border-radius: 50%;
    border: 4px solid #815c5c;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.floating-card:hover .testimonial-img {
    transform: translateY(-10px);
    border-color: #059240;
}


.floating-card:hover h6,
.floating-card:hover p,
.floating-card:hover i {
    color: #ffffff !important;
}

.active-highlight p, 
.active-highlight h6, 
.active-highlight small,
.active-highlight .bi-quote {
    color: white !important;
    opacity: 1 !important;
}

.author-circle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ===================================================================
   OUR ASSOCIATES SLIDER
   =================================================================== */
.associates-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.associates-track {
    display: flex;
    width: calc(250px * 10);
    animation: scrollRun 15s linear infinite;
}

.associate-logo {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.associate-logo img {
    max-width: 150px;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
    }

.associate-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scrollRun {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}

.associates-track:hover {
    animation-play-state: paused;
}

.grayscale-filter {
    filter: grayscale(100%);
}

/* ===================================================================
   CONTACT SECTION
   =================================================================== */
.contact-info {
    padding: 20px;
}

.contact-item {
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: #f8f9fa;
}

.contact-icon {
    width: 50px;
    flex-shrink: 0;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #059240;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059240;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #059240;
    color: white;
    transform: translateY(-3px);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-content {
    animation: fadeIn 0.5s ease-in-out;
}

.nav-logo {
   
    height: 70px; 
    width: auto; 
    align-self: center;
    margin-top: auto;
    margin-bottom: auto;
    max-height: 100%;
    object-fit: contain;
}
.service-title {
    font-size: 1.25rem;       /* Makes it slightly larger */
    color: #333;              /* Dark grey for readability */
    margin-bottom: 10px;      /* Space between title and description */
    letter-spacing: 0.5px;    /* Makes it look more professional */
}
