:root {
    --primary-color: #0c5186;
    --secondary-color: #b28a54;
    --font-family: 'Cairo', sans-serif;
}


.text-primary{color: #0c5186!important;}
body {
    font-family: var(--font-family);
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.top-bar {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.875rem;
}

.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.btn-primary-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

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

.btn-outline-custom {
    color: white;
    border-color: white;
}

.btn-outline-custom:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Hero */
.hero-section {
    position: relative;
    height: 700px;
    background-image: url('https://images.unsplash.com/photo-1656088304789-02d1ad6c9149?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHxtb2Rlcm4lMjBidWlsZGluZyUyMGZhY2FkZSUyMGFyY2hpdGVjdHVyZXxlbnwxfHx8fDE3Njc0MzAzMTZ8MA&ixlib=rb-4.1.0&q=80&w=1080');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(8, 95, 160, 0.8), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Section Titles */
.section-subtitle {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Services */
.service-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(8, 95, 160, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s, color 0.3s;
}

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

/* About */
.experience-badge {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Contact */
.contact-icon-wrapper {
    background-color: rgba(178, 138, 84, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--secondary-color);
}

.social-icon {
    background-color: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: white;
}
