:root {
    --ajn-red: #ed0000;
    --ajn-black: #000;
    --ajn-white: #fff;
    --ajn-light: #f8f9fa;
    --ajn-gray: #6c757d;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--ajn-black);
}

/* Navigation */
.navbar {
    background-color: var(--ajn-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    background-color: var(--ajn-red);
    color: var(--ajn-white);
    padding: 6rem 1rem;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Section Styling */
.section-title {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--ajn-black);
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--ajn-red);
}

/* Buttons */
.btn-ajn {
    background-color: var(--ajn-black);
    color: var(--ajn-white);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-ajn:hover {
    background-color: #333;
    color: var(--ajn-white);
    transform: translateY(-2px);
}

/* Service Cards */
.service-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
    padding: 2rem 1rem;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Portfolio Filter */
.portfolio-item {
    display: block;
    transition: all 0.3s;
}

.portfolio-item.hide {
    display: none;
}

/* Footer */
.footer {
    background-color: var(--ajn-black);
    color: var(--ajn-white);
    padding: 4rem 0 2rem;
}

.footer h5 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer a {
    color: var(--ajn-white);
    text-decoration: none;
    transition: all 0.3s;
}

.footer a:hover {
    color: var(--ajn-red);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
}

.social-icons a:hover {
    background-color: var(--ajn-red);
    color: var(--ajn-white);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}