:root {
    --primary-color: #0044cc;
    --secondary-color: #d32f2f;
    --dark-color: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-color: #555;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    --hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --radius: 8px;
    /* Slightly squarer for cleaner look */
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.8;
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Section Spacing */
section {
    padding: 80px 0;
    /* More vertical breathing room */
}

.bg-light {
    background-color: var(--light-bg) !important;
}

/* Buttons - Minimalist */
.btn {
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 68, 204, 0.2);
}

.btn-primary:hover {
    background-color: #0033a0;
    border-color: #0033a0;
    box-shadow: 0 6px 15px rgba(0, 68, 204, 0.3);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Navbar - Clean White */
.navbar {
    padding: 15px 0;
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    color: #000000 !important;
    /* Explicitly black as requested */
    margin-left: 20px;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .btn.nav-link {
    color: #fff !important;
    /* Ensure button text is white */
}

/* Carousel */
.carousel-item {
    height: 90vh;
    /* Slightly reduced height */
    background: #000;
}

.carousel-item img {
    opacity: 0.6;
    object-position: center;
}

.carousel-caption {
    bottom: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    /* Removed gradient for cleaner look */
}

.carousel-caption h1,
.carousel-caption p {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Add drop shadow for better readability */
}

/* Cards - Minimalist */
.card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border instead of heavy shadow */
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: transparent;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

/* Portfolio Hover */
.portfolio-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
}

.portfolio-overlay {
    background: rgba(0, 0, 0, 0.7);
    /* Darker, neutral overlay */
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-overlay h5 {
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-overlay h5 {
    transform: translateY(0);
}

/* Contact Form - Clean */
.form-control {
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 68, 204, 0.1);
}

/* Footer - Clean White */
footer {
    background-color: #fff;
    color: var(--text-color);
    font-size: 0.9rem;
    padding-top: 60px;
    border-top: 1px solid #eaeaea;
}

footer h5 {
    color: var(--dark-color);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

footer li {
    margin-bottom: 12px;
}

footer a {
    color: var(--text-color);
}

footer a:hover {
    color: var(--primary-color);
}

footer .border-secondary {
    border-color: #eee !important;
}