
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #495057;
    background-color: #f4f7fc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* A container class to center content and limit its width on larger screens. */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section-animated {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #f3f6ff 0%, #e1e9ff 100%);
    border-bottom: 1px solid #dee2e6;
}

.hero-section-animated h1 {
    font-weight: 700;
    color: #030f27;
    animation: fadeInDown 1s ease-out;
}

.hero-section-animated .lead {
    color: #555;
    animation: fadeInUp 1s ease-out;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


//*******************************/
/********* Contact CSS *********/
/*******************************/
.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 45px;
    font-weight: 700;
    color: #030f27;
    margin-bottom: 20px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 18px;
    color: #666666;
}

.contact-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-container h3 {
    font-size: 24px;
    font-weight: 600;
    color: #030f27;
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    height: 45px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #fdbe33;
}

.contact-form textarea {
    height: auto;
    resize: vertical;
}

.contact-form .btn {
    background-color: #fdbe33;
    color: #030f27;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .btn:hover {
    background-color: #030f27;
    color: #fdbe33;
}

.phone-input-group {
    display: flex;
    align-items: center;
    width: 100%;
}

.phone-input-group select {
    flex: 0 0 120px;
    margin-right: 10px;
    height: 45px;
    padding: 0 10px;
}

.phone-input-group input {
    flex-grow: 1;
    width: auto;
}

.info-container .info-list {
    list-style: none;
    padding: 0;
}

.info-container .info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 16px;
}

.info-container .info-list i {
    font-size: 20px;
    color: #fdbe33;
    width: 30px;
    text-align: center;
    margin-right: 15px;
    padding-top: 3px;
}

.map-container {
    margin-top: 25px;
    border-radius: 8px;
    overflow: hidden;
}

/* ==========================================================================
   Contact Page: Info Panel and Map Styles
   ========================================================================== */

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #495057;
    display: flex;
    align-items: center;
}

.info-list li i {
    font-size: 1.2em;
    color: #fdbe33;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
    .contact-container {
        padding: 20px;
        margin-bottom: 20px;
    }
}