:root {
    --primary-color: #2c3e50;
    --secondary-color: #0c7623e3;
    --accent-color: #3498db;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-info-box {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-box:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.form-control-msg {
    border-radius: 4px;
    padding: 12px 15px;
    border: 1px solid #e1e5eb;
    margin-bottom: 20px;
}


.form-control-msg:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffc107 ;
    border-color: #ffc107 ;
    transform: translateY(-2px);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: var(--primary-color);
    color: white;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .contact-info-box {
        margin-bottom: 20px;
    }
}

.font-input-validation {
    font-family: 'Montserrat Light';
    font-size: 16px;
}

.format-font-description-value-cnt{
    font-family: 'Montserrat Light';
    font-size: 18px;
    color: #1c1f23 !important;
}

.format-font-description-value-red{
    font-family: 'Montserrat Light';
    font-size: 16px;
    color: #1c1f23 !important;
}