
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: "Poppins", serif;
}

/* Top Bar */
.top-bar {
    background-color: #d91e1e;
    color: white;
    padding: 0.5rem 1rem;
    text-align: right;
    font-size: 0.9rem;
}

.top-bar span {
    margin-right: 1rem;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid #ccc;
    box-shadow: 1px 1px #ccc;
}
.navbar-brand img {
    max-height: 100px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin-right: 1rem;
}

.navbar-nav .nav-link:hover {
    color: #d91e1e;
}

.navbar .btn-danger {
    background-color: #d91e1e;
    font-weight: 500;
    color: white;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 150px 40px;
    box-shadow: 2px 2px #ccc;
    background-color: #F5F8FD;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    padding: 20px 60px;
    font-size: 15px;
    color: #666;
    margin-bottom: 1.5rem;
}

.hero .btn-danger {
    background-color: #d91e1e;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
}

/* Process Section */
.process-section {
    padding: 100px;
}

.process-title {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #222;
}

.process-section .text-danger {
    color: #d91e1e;
    font-size: 20px;
}

.process-description {
    color: #666;
    margin-bottom: 30px;
}

.process-card {
    background-color: #F5F8FD;
    width: 90%;
    height: 100%;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.process-icon {
    background-color: #d91e1e;
    color: #ffffff;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}

.process-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    margin-top: 10px;
}

.process-card p {
    font-size: 0.875rem;
    color: #666;
}

/* Footer */
.footer {
    background-color: #1c1c1c;
    color: #ffffff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-logo {
    width: 80%;
    height: auto;
    margin-bottom: 10px;
}

.footer-section h4 {
    border-bottom: 2px solid red;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section ul,
.footer-bottom p {
    margin: 8px 0;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border-top: 1px solid #333;
}

/* .social-icons {
    display: flex;
    gap: 10px;
} */

.social-icons a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #c0c0c0;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }

    .footer {
        font-size: 0.85rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        min-width: 100%;
        margin: 10px 0;
    }

    .top-bar {
        text-align: center;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 1.25rem;
    }

    .hero p {
        font-size: 0.875rem;
        padding: 10px 20px;
    }

    .footer-container {
        padding: 10px;
    }

    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .navbar-brand img {
        max-height: 60px;
    }

    .process-section {
        padding: 50px 20px;
    }

    .process-card {
        width: 100%;
        padding: 10px;
    }
}

.form-container {
    margin-top: 50px;
    background-color: #F5F8FD;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

.form-container h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
    margin-bottom: 10px;
}


.form-group input[type="radio"] {
    margin: 5px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}
