* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background-color: #000;
    color: white;
}

/*NAVBAR*/
.navbar-c {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo img {
    width: 90px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    border-radius: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 50px;
}

.nav-links a.active,
.nav-links a:hover {
    background: blue;
}

.contact-info {
    font-size: 14px;
}

.contact-info svg {
    width: 20px;
    fill: #011B72;
    margin-right:  1px;
    margin-bottom: -3px;
}

.menu-toggle {
    font-size: 24px;
    border-radius: 20px;
    display: none;
    cursor: pointer;   
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 50px;
        right: 0;
        width: 50%;
        text-align: center;
        padding: 20px;
        border-radius: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

}

/*CONTACT SECTION*/
.contact-section {
    padding: 50px 5%;
    background-color: #7086D1;
    color: white;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.contact-content {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
}

.contact-content h1 {
    font-size: 36px;
    text-transform: uppercase;
}

.contact-content p {
    font-size: 18px;
    margin-top: 10px;
}

/*CONTACT FORM SECTION*/
.contact-form-section {
    padding: 120px 20px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 5%;
    background: #111;  /* Dark background */
    color: #fff;
    min-height: 100vh;
}

.contact-form-section form {
    width: 100%;
    max-width: 600px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group-c {
    display: flex;
    gap: 15px;
}

.form-control::placeholder {
    color: #666;
    opacity: 0.8;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus::placeholder {
    opacity: 0.5;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-content {
    margin-bottom: 40px;
}

.contact-form-content h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.contact-form-content p {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.6;
}

.contact-form {
    padding: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #666;
}

.form-control:focus {
    outline: none;
    background: #fff;
}

textarea.form-control {
    min-height: 150px;
    border-radius: 20px;
    resize: vertical;
    margin-bottom: 30px;
}

.submit-btn {
    width: 100%;
    background: #011B72;  /* Dark blue color */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #1a3287;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 100px 15px 40px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form-content h2 {
        font-size: 2.5rem;
    }
}

/*Footer for home*/

/* General Footer Styles */
footer {
    background: #011B72;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 40px 20px;
    text-align: center;
}

.back-to-top {
    position: relative;
    right: -30%;
    top: 50%;
    transform: translateY(-10%);
    margin-top: 0;
    display: inline-block;
    margin-top: 10px;
    color: white;
    font-weight: bold;
}

.back-to-top i {
    margin-right: 5px;
}

/* Footer Content Layout */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    padding: 40px 0;
}

.footer-logo img {
    width: 280px;
    margin-bottom: 15px;
    border-radius: 26px;
}

.connect {
    display: inline;
}

.connect h4 {
    display: inline;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.social-icons a {
    color: white;
    font-size: 18px;
    margin: 0 10px;
    text-decoration: none;
}

.footer-info, .footer-solutions {
    max-width: 300px;
}

.footer-info h3, .footer-solutions h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

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

.footer-solutions li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom a {
    color: #4A90E2;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}


/* Responsive Design for the footer*/
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info, .footer-solutions {
        max-width: 100%;
        margin-top: 20px;
    }

    .social-icons {
        margin-top: 10px;
    }

    .back-to-top {
        display: flex;
        margin-left: 50px;
    }

    .btn-G {
        margin-left: 60px;
    }
}

