﻿@charset "UTF-8";
/*@import "https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600";*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f1f5f9;
}

header {
    position: relative;
    background-image: url('../images/banner3.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #9ae1f5;
    text-align: center;
    padding: 10px 10px 10px;
    font-family: 'Poppins', sans-serif; /* Apply Poppins to the entire header */
}

    /* Overlay to darken the image for readability */
    header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 0;
    }

    /* Ensure header content is above overlay */
    header h1, header h2, header p {
        position: relative;
        z-index: 1;
        margin: 0 auto;
        color: #9ae1f5;
        max-width: 900px;
    }

    /* Header H1 styling */
    header h1 {
        font-weight: 700;
        font-size: 2.0rem;
        line-height: 1.2;
    }
    /* Header H2 styling */
    header h2 {
        font-weight: 700;
        font-size: 1.75rem;
        line-height: 1.2;
    }
    /* Header paragraph styling */
    header p {
        font-weight: 400;
        color: #e2e8f0;
        font-size: 1.2rem;
        margin-top: 20px;
    }

/* Responsive adjustments */
@media (max-width: 1024px) {
    header h1 {
        font-size: 2.5rem;
    }

    header p {
        font-size: 1.1rem;
    }

    header {
        padding: 100px 20px 60px;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    header {
        padding: 80px 15px 50px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.6rem;
    }

    header p {
        font-size: 0.95rem;
    }

    header {
        padding: 60px 10px 40px;
    }
}


section {
    padding: 40px 20px;
    border-color: grey;
    border-radius: 10px;
    max-width: 1000px;
    background-color: #f1f5f9;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

    section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #0f172a;
    }

    section p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    background-color: #f1f5f9;
    gap: 20px;
    font-family: 'Poppins', sans-serif;
}

.feature-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif;
}

    .feature-item h3 {
        font-size: 1.25rem;
        margin-bottom: 15px;
        color: #445e83;
    }

.cta {
    text-align: center;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

    .cta a {
        display: inline-block;
        background-color: #f1f5f9;
        color: #fff;
        padding: 15px 30px;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
        margin: 10px;
    }

        .cta a.secondary {
            background-color: #e2e8f0;
            color: #1a202c;
        }

form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    color: #445e83;
    margin-bottom: 5px;
}

input, textarea, select {
    padding: 12px;
    border: 1px solid #445e83;
    border-radius: 8px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.button {
    background: #2c538a;
    color: #fff;
    font-weight: 600;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

    .button:hover {
        background: #0f766e;
    }

.message {
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}

footer {
    text-align: center;
    padding: 30px 20px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr 1fr;
    }
}

.labelCommon {
    border-style: none;
    border-color: inherit;
    color: navy;
    font-size: 12pt;
    /*font-family: "Arial Rounded MT"; */
    font-weight: normal;
    font-variant: small-caps;
    height: 24px;
}

.labelCommonRight {
    border-style: none;
    border-color: inherit;
    color: navy;
    width: 250px !important;
    margin-right: 10px;
    text-align: right;
    font-size: 12pt;
    /*font-family: "Arial Rounded MT"; */
    font-weight: normal;
    font-variant: small-caps;
    height: 24px;
}

.labelCommonLeft {
    border-style: none;
    border-color: inherit;
    color: navy;
    text-align: left;
    font-size: 14pt;
    /*font-family: "Arial Rounded MT"; */
    font-weight: normal;
    font-variant: small-caps;
    height: 24px;
}
