/*
Theme Name: Kama Consultants V6.3
Theme URI: http://www.kamaconsultants.com
Author: Kama Consultants
Description: Updated Image Links from User Table.
Version: 6.3
License: GNU General Public License v2 or later
Text Domain: kama-theme
*/

:root {
    --primary-color: #0e2a47; 
    --secondary-color: #ff6600; 
    --text-dark: #1a1a1a;
    --light-bg: #f4f7f6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- NAVBAR --- */
.navbar {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 0.5rem 0;
    background-color: #ffffff !important;
    position: relative;
    z-index: 9999;
}

.custom-logo {
    max-height: 60px;
    width: auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 800;
    color: var(--primary-color) !important;
    text-transform: uppercase;
}

/* --- MENU STYLING --- */
.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px; 
}

.navbar-nav li {
    list-style: none;
}

.navbar-nav li a {
    font-weight: 600;
    color: var(--primary-color) !important;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    transition: color 0.3s;
}

.navbar-nav li a:hover,
.navbar-nav li.current-menu-item a {
    color: var(--secondary-color) !important;
}

@media (max-width: 991px) {
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding-top: 1rem;
    }
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(rgba(14, 42, 71, 0.9), rgba(14, 42, 71, 0.7)), url('https://images.unsplash.com/photo-1581093458891-7f31385654d5?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 140px 0 100px;
}

/* --- SERVICES CARD (Fixed Icons) --- */
.service-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-top: 4px solid var(--secondary-color);
}

.icon-circle {
    width: 90px;
    height: 90px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 36px; /* Icon size */
    transition: all 0.3s ease;
}

.service-card:hover .icon-circle {
    background-color: var(--secondary-color);
    color: white;
}

/* --- UTILITIES --- */
.mission-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0;
}

.text-primary-custom { color: var(--primary-color); }
.text-secondary-custom { color: var(--secondary-color); }
.bg-primary-custom { background-color: var(--primary-color); }
.bg-secondary-custom { background-color: var(--secondary-color); }

.btn-primary-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    padding: 10px 30px;
    font-weight: bold;
}

.btn-primary-custom:hover {
    background-color: #e65c00;
    border-color: #e65c00;
    color: white;
}

.goog-te-gadget-simple {
    background-color: white !important;
    border: 1px solid #dee2e6 !important;
    padding: 4px 8px !important;
    border-radius: 4px;
}

footer {
    background-color: #0b2239 !important;
    margin-top: auto;
}

/* Footer Link Fix */
footer ul li {
    list-style: none;
    margin-bottom: 0.5rem;
}
footer ul li a {
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none;
    transition: color 0.3s;
}
footer ul li a:hover {
    color: #ffffff !important;
}

/* Admin Bar Fix */
body.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .navbar { top: 46px; } }
