:root {
    --primary-color: #3182CE;
    --primary-hover: #2B6CB0;
    --dark-bg: #000014;
    --light-bg: #e9ecef;
    --text-dark: #2D3748;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Navigation Styles */
.navbar-custom {
    background-color: var(--dark-bg);
    padding: 10px 0;
}

.navbar-custom .navbar-brand img {
    max-height: 60px;
    width: auto;
}

.navbar-custom .navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../imgs/backgroundheader.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 90px 0;
    min-height: 400px;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 10px 30px;
    border-radius: 4px;
    margin: 0 10px 10px 10px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-secondary-custom {
    background-color: transparent;
    border: 3px solid var(--primary-color);
    color: white;
    padding: 7px 27px;
    border-radius: 4px;
    margin: 0 10px 10px 10px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: white;
    color: black;
    border-color: white;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

.content-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.services-list {
    padding-left: 1.5rem;
}

.services-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-caption {
    margin-top: -55px;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    color:  #e9ecef;
}

/* Footer */
.footer-custom {
    background-color: #e9ecef;
    color: var(--text-dark);
    padding: 40px 0;
    text-align: center;
    font-size: 1rem;
}

.footer-custom .footer-content {
    line-height: 1.8;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
