/* Custom CSS */
:root {
    --primary-color: #0056b3;
    --light-blue: #e9f7ff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.navbar {
    background-color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), url('../img/1.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.bg-light-blue {
    background-color: var(--light-blue);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}

/* Services Section Styles */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(0, 86, 179, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.service-card ul {
    list-style-type: none;
}

.service-card ul li:before {
    content: "→";
    color: var(--primary-color);
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .service-card {
        margin-bottom: 1.5rem;
    }
}
/* Contact Form Styles */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-label {
    color: #0056b3;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.contact-form .invalid-feedback {
    font-weight: 500;
}

.contact-form .form-check-input:checked {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Accessibility improvements */
.contact-form label:not(.form-check-label) {
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form input[type="checkbox"],
.contact-form input[type="radio"] {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.2em;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .contact-form {
        padding: 1.5rem;
    }
}