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

/*NAVBAR*/
.navbar-b {
    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;   
}

/*Responsive navbar*/
@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;
    }

}

.about-us-section {
    padding: 50px 5%;
    background-color: #7086D1;
    color: white;
    align-items: center;
    justify-content: center;
}

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

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

.about-us-content h1 {
    font-size: 46px;
    text-transform: uppercase;
}

/* Securing Assets Section */
.securing-assets {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    background: linear-gradient(to right, #f5f5f5, #e8e8e8);
    color: black;
}

.securing-assets-content {
    flex: 1;
    max-width: 50%;
}

.securing-assets-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.securing-assets-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.securing-assets-image {
    flex: 1;
    text-align: right;
}

.securing-assets-image img {
    max-width: 90%;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .securing-assets {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
    }

    .securing-assets-content,
    .securing-assets-image {
        max-width: 100%;
    }

    .securing-assets-content h2 {
        font-size: 2rem;
    }

    .securing-assets-image {
        margin-top: 20px;
    }

    .securing-assets-image img {
        max-width: 100%;
    }
}

/*Mission and Vision*/
.mission {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 10%;
    background: white;
}


.mission-image {
    display: flex;
    flex: 1;
    max-width: 50%;
    border-radius: 26px;

}

.mission-image img {
    object-fit: cover;
    width: calc(100% + 170px);
    margin-left: 20px;
    min-width: 780px;
    min-height: 400px;
    width: 100%;
    border-radius: 26px;
    box-shadow: -8px 8px 20px rgba(0, 0, 0, 0.603);
}

.mission-text {
    flex: 0 0 45%;
    flex: 1;
    height: calc(100% + 150px);
    min-height: 580px;
    width: 100%;
    margin: -20px;
    background: #57679B;
    border-radius: 26px 107px 26px 26px ;
    padding: 30px;
    
}

.mission-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.mission-text p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Training responsive */
@media (max-width: 1020px) {
 .mission {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
 }   
 .mission-image, .mission-text {
    max-width: 100%;
 }
 .mission-image img{
    object-fit: cover;
    min-width: 100px;
 }
 .mission-text {
    padding: 1rem;
 }

}

.firm-grip {
    background-color: white;
}
.firm-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.firm-logo img {
    object-fit: cover;
    width: 60%;
}

/*Responsive logo*/
@media (max-width:1020px) {
    .firm-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .firm-logo img {
        object-fit: cover;
    }
    
}

/*Footer for home*/

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

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

.footer-top h2 {
    font-size: 24px;
    margin-bottom: 10px;
    
}

.footer-top p {
    font-size: 16px;
    margin-bottom: 20px;
}

.back-to-top {
    position: relative;
    margin-left: 12px;
    margin-top: 10px;
    color: white;
    font-weight: bold;
}

/* Gradient Button */
.btn-G {
    display: inline-block;
    margin-left: 100px;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    background: linear-gradient(to right, #4A90E2, #5A2CD6);
    transition: 0.5s ease;
}

.btn-G:hover {
    opacity: 0.8;
}

/* 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;
        justify-content: center;
        width: 100%;
    }

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

