/* Global Styles */
:root {
    --primary-color: #198754; /* Bootstrap Success */
    --secondary-color: #20c997;
    --dark-green: #0f5132;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Tajawal', sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar-brand img {
    border: 2px solid var(--primary-color);
}

.nav-link {
    color: #333;
    font-weight: 500;
    margin-left: 15px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    height: 100vh;
    background: url('images/hero-bg.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay to make text pop */
}

#hero h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Section Titles */
.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Cards */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.icon-box {
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
}

/* Contact Section */
.form-control:focus {
    box-shadow: none;
    border: 1px solid var(--primary-color);
}

.social-icons a:hover {
    color: var(--secondary-color) !important;
    transition: color 0.3s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
}
