/* Custom variables */
:root {
    --asora-primary: #2A8B9D;
    --asora-secondary: #FF8C42;
    --asora-dark: #1A1A1A;
}

/* General styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--asora-dark);
}

h1, h2, h3, h4, h5, h6,
.navbar-nav,
.btn,
.lead {
    font-family: 'Montserrat', sans-serif;
}

/* Navigation */
.navbar {
    transition: background-color 0.3s ease;
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar .nav-link {
    color: var(--asora-dark) !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.navbar .nav-link:hover {
    color: var(--asora-primary) !important;
}

/* Hero section */
.hero {
    background: white;
    padding: 120px 0 80px;
    min-height: auto;
}

.hero h1 {
    color: var(--asora-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero p.lead {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Services section */
.services-heading {
    color: var(--asora-secondary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.service-card {
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
    color: white;
}

.service-card.teal {
    background-color: var(--asora-primary);
}

.service-card.orange {
    background-color: var(--asora-secondary);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* Button styles */
.btn {
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-orange {
    background-color: var(--asora-secondary);
    color: white;
    border: none;
}

.btn-orange:hover {
    background-color: #e67e22;
    color: white;
    transform: translateY(-1px);
}

.btn-blue {
    background-color: var(--asora-primary);
    color: white;
    border: none;
}

.btn-blue:hover {
    background-color: #247d8d;
    color: white;
    transform: translateY(-1px);
}

/* About section */
.about-section {
    background-color: var(--asora-primary);
    color: white;
    padding: 80px 0;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Footer */
footer {
    background-color: var(--asora-primary);
    color: white;
    padding: 60px 0;
}

footer p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero img {
        margin-top: 2rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }

    .services-heading {
        font-size: 1.75rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

/* Client Portfolio Section */
.client-portfolio {
    background-color: var(--light-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.client-logo {
    padding: 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-logo img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
} 