/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    color: #000;
    padding-top: 80px; /* space for fixed navbar */
}

/* NAVBAR */
.custom-nav {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
}

.logo {
    height: 55px;
}

.nav-link {
    color: #083A8C !important;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4D8DFF !important;
}

.navbar .btn-outline-primary {
    border-color: #083A8C;
    color: #083A8C;
}

.navbar .btn-outline-primary:hover {
    background-color: #083A8C;
    color: #fff;
}

/* HERO */
.hero {
    min-height: 100vh;
    /* background: linear-gradient(to right, #0B4DBA, #083A8C); */
    padding: 80px 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero .btn {
    color: #000000;
    font-weight: bold;
}

/* ABOUT */
.about {
    background-color: #fff;
    color: #000;
    padding: 80px 20px;
}

.about h2 {
    color: #0B4DBA;
    margin-bottom: 20px;
}

/* CONTACT */
.contact {
    background-color: #0B4DBA;
    padding: 80px 20px;
    text-align: center;
}

.contact h2 {
    color: #fff;
}

.contact p {
    color: #E0E0E0;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
}

.contact-form textarea {
    height: 140px;
    resize: none;
}

.contact-form button {
    background-color: #fff;
    color: #0B4DBA;
    border: none;
    padding: 14px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #4D8DFF;
    color: #fff;
}
.contact-info p {
    margin-bottom: 12px;
}

.contact-info a {
    color: #0d6efd;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-responsive {
    overflow: hidden;
    border-radius: 8px;
}


/* FOOTER */
.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

        .hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: calc(100vh - 76px);
        }
        
        .contact-form .form-control {
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
        }
        
        .contact-form .form-control:focus {
            border-color: #0d6efd;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }
        
        .contact-form .btn-primary {
            background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
            border: none;
            transition: all 0.3s ease;
        }
        
        .contact-form .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
        }
        
        .map-responsive {
            overflow: hidden;
            padding-bottom: 56.25%;
            position: relative;
            height: 0;
        }
        
        .map-responsive iframe {
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            position: absolute;
        }
        
        .contact-details a:hover {
            color: #0d6efd !important;
        }
        
        .card {
            transition: transform 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .contact-info .rounded-circle {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-info .logo {
            max-width: 80px;
            height: auto;
        }
        
        /* RESPONSIVE STYLES */
        @media (max-width: 768px) {
            .hero {
                text-align: center;
                padding-top: 2rem !important;
                padding-bottom: 2rem !important;
            }
            
            .hero h2 {
                font-size: 2rem !important;
                margin-bottom: 1rem !important;
            }
            
            .hero .lead {
                font-size: 1rem !important;
                padding: 0 1rem !important;
            }
            
            .row.g-5 {
                gap: 2rem !important;
            }
            
            .card {
                margin-bottom: 1.5rem;
            }
            
            .card-body {
                padding: 1.5rem !important;
            }
            
            .contact-form .btn-primary {
                width: 100%;
                padding: 1rem !important;
            }
            
            .contact-info .d-flex {
                align-items: flex-start;
            }
            
            .contact-info .rounded-circle {
                width: 48px;
                height: 48px;
                padding: 0.75rem !important;
            }
            
            .contact-info .rounded-circle img {
                width: 20px !important;
                height: 20px !important;
            }
            
            .contact-info .logo {
                max-width: 60px;
                margin-bottom: 1rem;
            }
            
            .company-header {
                flex-direction: column;
                text-align: center;
            }
            
            .company-header .col-3 {
                width: 100% !important;
                margin-bottom: 1rem;
            }
            
            .company-header h3 {
                font-size: 1.5rem;
            }
            
            .form-control-lg {
                padding: 0.75rem 1rem !important;
                font-size: 1rem !important;
            }
            
            textarea.form-control-lg {
                min-height: 150px !important;
            }
            
            .map-responsive {
                padding-bottom: 75%;
            }
            
            .mt-5, .pt-4 {
                margin-top: 2rem !important;
                padding-top: 1rem !important;
            }
        }
        
        @media (max-width: 576px) {
            .hero h2 {
                font-size: 1.75rem !important;
            }
            
            .card-title {
                font-size: 1.25rem;
            }
            
            .contact-details h6 {
                font-size: 0.9rem;
            }
            
            .contact-details p {
                font-size: 0.875rem;
            }
            
            .contact-info .rounded-circle {
                width: 40px;
                height: 40px;
                padding: 0.5rem !important;
            }
            
            .contact-info .rounded-circle img {
                width: 18px !important;
                height: 18px !important;
            }
            
            .btn-lg {
                padding: 0.75rem 1.5rem !important;
                font-size: 1rem !important;
            }
        }
        
        @media (max-width: 992px) {
            .col-lg-7, .col-lg-5 {
                width: 100% !important;
            }
        }