*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    padding: 0;
    margin: 0;
    font-family: var(--poppins);
}
/* font */
@font-face {
    font-family: "Lora", serif;
    src: url(../font/Lora-Medium.ttf);
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Lora", serif;
    src: url(../font/Lora-SemiBold.ttf);
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url(../font/Poppins-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url(../font/Poppins-Medium.ttf);
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url(../font/Poppins-SemiBold.ttf);
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Poppins", sans-serif;
    src: url(../font/Poppins-Italic.ttf);
    font-weight: 400;
    font-style: italic;
}
/* root css */
:root{
    --primary-blue:#005494;
    --header-black:#020202;
    --text-grey:#505050;
    --bg-lightblue:#DAE4ED;
    --secondary-black:#302E2E;
    --bg-black:#191919;
    --button-cream:#f54715;
    --white:#ffffff;
    --poppins:"Poppins", sans-serif;
    --lora:"Lora", serif;
}

/* common css */
.primary-button{
    font-size: 18px;
    text-decoration: none;
    color: var(--white);
    padding: 7px 20px;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--primary-blue);
    background-color: var(--primary-blue);
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
}
.primary-button:hover{
    transform: translateY(-3px) ;
    transition: all 0.3s ease-in-out;
    color: var(--primary-blue);
    background-color: var(--white);
}
.secondary-button{
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    padding: 7px 20px;
    transition: all 0.3s ease-in-out;
    border: 1px solid var(--button-cream);
    background-color: var(--button-cream);
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
}
.secondary-button:hover{
    transform: translateY(-3px) ;
    transition: all 0.3s ease-in-out;
    color: var(--button-cream);
    background-color: var(--white);
}
.main-header{
    font-size: 36px;
    font-family: var(--lora);
    font-weight: 600;
    color: var(--header-black);
    margin: 0;
}
.content-para{
    font-size: 16px;
    font-weight: 400;
    font-family: var(--poppins);
    margin: 0;
}
.text-grey{
    color: var(--text-grey);
}
.text-white{
    color: var(--white);
}
.p-50{
    padding: 50px 0;
}
.bg-black{
    background-color: var(--bg-black);
}
.bg-white{
    background-color: var(--white);
}
/* topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.topbar .navbar-nav {
    gap: 50px;
}
.topbar .navbar-expand-lg .navbar-collapse {
    justify-content: end;
}
.topbar .navbar-brand{
    height: 60px;
}
.topbar .navbar-brand img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.topbar .navbar-expand-lg .navbar-collapse .nav-link {
    position: relative;
    padding: 8px 0px;
}
.topbar .nav-link{
    font-size: 16px;
    color: var(--text-grey);
    font-weight: 500;
    font-family: var(--poppins);
}
.topbar .nav-link::after{
    position: absolute;
    content: "";
    bottom: 3px;
    left: 0;
    width: 0%;
    height: 3px;
    border-radius: 10px;
    background-color: var(--primary-blue);
    transition: all 0.5s ease-out;
}
.topbar .nav-link.active,
.topbar .nav-link:hover{
    color: var(--primary-blue);
}
.topbar .nav-item:hover  .dropdown-menu{
    display: block;
    top: 100%;
    left: 0;
    margin-top: 2px;
    transition: all 0.5s ease-in-out;
}
.topbar .nav-item:hover .nav-link::after{
    width: 100%;
}
.topbar .nav-link.active::after{
    width: 100%;
}
.topbar .nav-link:hover::after{
    width: 100%;
    transition: all 0.3s ease-out;
}
.topbar .navbar-toggler {
    outline: none;
    border: none;
}
.topbar .dropdown-toggle::after{
    margin: 0;
    border: 0;
}
.topbar .dropdown-item{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-grey);
    padding: 7px 16px ;
}
.topbar .dropdown-item:hover{
    color: var(--white);
    background-color: var(--primary-blue);
}
/* .topbar .navbar-nav .dropdown-menu{
    padding: 0;
} */
/* banner */
.banner{
    background-image: url(../images/home-banner.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    min-height: 600px;
    position: relative;
}
.banner.about-us{
    background-image: url(../images/about-banner.webp);
    min-height: 300px;
}
.banner.contact-us{
    background-image: url(../images/conatct-us.webp);
    min-height: 300px;
}
.banner .container {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner.about-us .container,
.banner.contact-us .container{
    height: 300px;
}
.banner::after{
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}
.banner-content{
    position: relative;
    z-index: 10;
    max-width: 1098px;
    margin: 0 auto;
}
.banner-content h1{
    font-size: 50px;
    margin: 0;
    font-family: var(--lora);
    font-weight: 600;
    color: var(--white);
    line-height: 64px;
    padding-bottom: 30px;
}

/* about */
.about,
.contact{
    padding-top: 50px;
}
.about-image{
    padding-right: 50px;
}
.about-image,
.about-image img{
    border-radius: 10px;
}
.about-image{
    height: 300px;
}
.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content p {
    padding-bottom: 15px;
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.5;
    margin: 0;
}
.about-content p span {
    font-weight: 700;
}
.cta-content {
    padding: 50px;
    background-color: #005494;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap:wrap;
    gap: 20px;
}
.cta-content p {
    font-size: 20px;
    color: #fff;
    width: 60%;
    margin: 0;
}
/* Contact Form */

.contact-form {
    background: #ecf0f1;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #1a252f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #bdc3c7;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}
.contact-left h6 {
    font-size: 36px;
    font-family: var(--lora);
    font-weight: 600;
    color: var(--header-black);
    margin: 0;
    padding-bottom: 20px;
}
/* .map-content{
    height: 500px;
    width: 100%;
} */
.map-content img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* footer */
.footer{
    background-color: #f9fafb;
}
.footer-logo{
    height: 80px;
    width: fit-content;
}
.footer-logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.footer h6{
    font-size: 18px;
    font-weight: 600;
    color: #020202;
    margin: 0;
    padding-bottom: 10px;
}
.con-flex .con-icon i{
    color: var(--primary-blue);
    padding-top: 6px;
}
.con-flex .con-para p,.con-flex .con-para a,.footer ul li a{
    font-size: 16px;
    color: var(--secondary-black);
    padding-bottom: 15px;
    display: inline-block;
    text-decoration: none;
    margin: 0;
    line-height: 1.7;
    cursor: pointer;
}
.con-flex .con-para a:hover,.footer ul li a:hover{
    transition: all 0.3s ease-in-out;
    color: var(--primary-blue);
}
.footer ul{
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.contact-left .con-flex .con-para p, .contact-left .con-flex .con-para a{
    font-size: 24px;
    color: var(--text-grey);
    padding-bottom: 20px;
}
.contact-left .con-icon i{
    font-size: 24px;
    padding-top: 10px;
}
/* copyright */
.copyright{
    background-color: #e6e6e6;
}
.copyright-content a{
    text-decoration: none;
}
.copyright-content a:hover{
    opacity: 0.6;
}
.copyright-content p,
.copyright-content p a{
    font-size: 14px;
    margin: 0;
}
.about-content p:last-child {
    padding-bottom: 0;
}
.map-content p {
    margin: 0;
}
/* Responsive */


@media(max-width:992px){
    .core-card {
        gap: 20px;
    }
    .investing{
        padding: 50px 0;
        text-align: center;
    }
    .topbar .navbar-expand-lg .navbar-collapse .nav-link {
        position: relative;
        padding: 8px 0px;
        width: fit-content;
    }
    .topbar .primary-button{
        width: fit-content;
        margin-bottom: 30px;
    }
    .topbar .navbar-nav {
        gap: 15px;
    }
	.about-image {
    padding-right: 0px;
}
}
@media(max-width:768px){
        .footer .row{
        text-align: center;
    }
    .footer .con-flex{
        justify-content: center;
    }
}
@media(max-width:575px){
    .banner-content h1 {
        font-size: 36px;
        line-height: 45px;
    }
    .cta-content {
        flex-direction: column;
    }
    .cta-content  p{
        width: 100%;
        text-align: center;
    }
}