:root {
    --primary: #2a5a78;
    --secondary: #e67e22;
    --dark: #333;
    --light: #f9f9f9;
    --gray: #777;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #1f455c;
    border-color: #1f455c;
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #d35400;
    border-color: #d35400;
}

.text-secondary {
    color: var(--secondary) !important;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.navbar-brand .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
}

.navbar-brand .logo-subtext {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: -5px;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/header.jpeg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
}

.service-card, .project-card {
    transition: transform 0.3s;
    overflow: hidden;
}

.service-card:hover, .project-card:hover {
    transform: translateY(-10px);
}

.service-card img, .project-card img {
    transition: transform 0.5s;
}

.service-card:hover img, .project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.feature-icon {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-info i {
    color: var(--secondary);
}

footer {
    background-color: var(--primary);
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-subtext {
    color: #ccc;
}

.footer-links h4, .footer-contact h4 {
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--secondary);
}