:root {
    --primary: #f4b30f;
    --secondary: #f20f20;
}

body {
    padding: 0;
    margin: 0;
    position: relative;
}

@media screen and (max-width: 850px) {

    .serv_header,
    .test_header,
    .cont_header,
    .part_header {
        font-size: 40px !important;
    }

    .banner_header {
        font-size: 50px !important;
    }

    .pro_con {
        padding-top: 0px !important;
    }

    .pro_header {
        font-size: 40px !important;
    }

    .pro_img_con {
        position: static !important;
        width: 100% !important;
        height: 300px !important;
    }
}


.top_btn {
    width: 50px;
    height: 50px;
    display: none;
    position: fixed;
    right: 20px;
    bottom: 50px;
    color: white;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    border-radius: 100%;
    background-color: var(--secondary);
    cursor: pointer;
    z-index: 5;
}

/* Menu Bar Container */
.menu_con {
    width: 0;
    height: 100vh;
    position: fixed;
    z-index: 10000;
    background-color: rgba(50, 4, 71, 0.541);
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.menu_cont {
    width: 250px;
    height: 100vh;
    padding: 10px;
    background-color: white;
}

.menu_icon {
    width: 30px;
    height: 30px;
    color: #1c093f;
    text-align: center;
    line-height: 30px;
    font-size: 18px;
    border: 1px solid #dbdbdb;
    border-radius: 100%;
    background-color: #dbdbdb;
}

.menu_link {
    color: #1c093f;
    font-size: 17px;
    font-weight: 500;
    font-family: poppins;
    border-bottom: 1px solid #f8f8f88a;
    border-radius: 0px;
    padding: 12px;
    margin-bottom: 0px;
}

.menu_drop_con {
    border-radius: 5px;
    background-color: #f8f8f8;
}

.menu_drop_head {
    color: gray;
    font-size: 13px;
    font-weight: 600;
    font-family: poppins;
    padding: 8px 12px;
    margin-bottom: 0px;
}

.menu_drop_link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    font-family: poppins;
    border-radius: 0px;
    padding: 10px 25px;
    margin-bottom: 0px;
}

.menu_btn {
    position: relative;
    color: black;
    font-size: 14px;
    font-weight: 500;
    font-family: poppins;
    border: none;
    border-radius: 0px;
    padding: 10px 30px;
    background-color: var(--primary);
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}

.menu_btn2 {
    position: relative;
    color: white;
    font-size: 14px;
    font-weight: 500;
    font-family: poppins;
    border: none;
    border-radius: 0px;
    padding: 10px 30px;
    background-color: var(--secondary);
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}



/* Header Navber Style */
.header_con {
    width: 100%;
    min-height: 80px;
    /* padding: 15px 0px; */
    background-color: white;
}

.header_logo {
    width: auto;
    height: 50px;
}

.header_icon {
    color: black;
    font-size: 30px;
}

.header_link {
    color: black;
    font-size: 15px;
    font-weight: 600;
    font-family: poppins;
    padding: 10px 20px;
    margin-bottom: 0px;
    transition: all 0.3s ease-in-out;
}

.header_drop_con {
    transition: all 0.3s ease-in-out;
}

.header_drop {
    display: none;
    left: 0;
    width: 300px;
    height: auto;
    padding: 10px 10px;
    background-color: white;
}

.header_drop_link {
    color: black;
    font-size: 14px;
    font-weight: 400;
    font-family: poppins;
    padding: 10px 20px;
    margin-bottom: 0px;
    transition: all 0.3s ease-in-out;
}

.header_btn {
    color: black;
    font-size: 15px;
    font-weight: 700;
    font-family: poppins;
    border: none;
    border-radius: 0px;
    padding: 15px 30px;
    background-color: var(--primary);
    border-radius: 30px;
}

.header_btn.sec {
    color: white;
    background-color: var(--secondary);
}



/* Banner Container */
.banner_con {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: bottom left;
    background-color: black;
}

.banner {
    min-height: 100vh;
}

.banner_cont {
    height: auto;
    margin-top: 100px;
    background: rgba(25, 24, 24, 0.5);
    z-index: 1;
    /* backdrop-filter: blur(7px); */
    /* -webkit-backdrop-filter: blur(7px); */
    overflow: hidden;
    border-radius: 30px;
    border: white 2px dashed;
    color: #333;
    text-shadow: 
        1px 1px 0 #765c0c,   /* Light shadow at the bottom right */   
        -1px -1px 0 #000; /* Dark shadow at the top left */

}

.banner_head {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 700;
    font-family: poppins;
    margin-bottom: 0px;
}

.banner_header {
    color: rgb(255, 255, 255);
    text-transform: capitalize;
    font-size: 55px;
    font-weight: 700;
    font-family: poppins;

}

.banner_text {
    color: black;
    font-size: 20px;
    font-weight: 400;
    font-family: poppins;
}

.banner_btn {
    color: black;
    font-size: 15px;
    font-weight: 700;
    font-family: poppins;
    border: none;
    border-radius: 0px;
    padding: 15px 30px;
    background-color: var(--primary);
    border-radius: 30px;
}



/* Services Style */
.serv_con {
    width: 100%;
    height: auto;
    padding: 50px 0px 70px;
    background-color: white;
}

.serv_header {
    color: black;
    text-align: center;
    font-size: 50px;
    font-weight: 900;
    font-family: poppins;
    background: -webkit-linear-gradient(var(--primary), #333);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.serv_text {
    color: rgb(98, 96, 96);
    text-align: center;
    font-size:xx-large;
    font-weight:200;
    font-family: poppins;
}

.serv_cont_con {
    background-image: url('../images/afrimap.png');
    background-position:left;
    background-size:contain;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.serv_cont {
    min-height: 250px;
    border-radius: 0px;
    padding: 30px;
    background-color: #181616a8;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 30px;
    /* margin: 20px; */
}
.f6mod{
    font-weight: bold; 
    font-style: italic; 
    color: azure;
    font-size: larger;
}

.serv_cont.sec {
    background-color: #f4b310b0;
}

.serv_head {
    color: whitesmoke;
    font-size: 25px;
    font-weight: 700;
    font-family: poppins;
    margin-bottom: 20px;
}

.serv_cont_text {
    color: whitesmoke;
    font-size: 18px;
    font-weight: 300;
    font-family: poppins;
}

.serv_cont.sec>.serv_head {
    color: black;
}

.serv_cont.sec>.serv_cont_text {
    color: black;
    font-weight: 400;
}


/* Product Style */
.pro_con {
    position: relative;
    width: 100%;
    height: auto;
    padding: 70px 0px 70px;
    background-color: whitesmoke;
    overflow: hidden;
}

.pro_con.sec {
    background-color: white;
}


.pro_header {
    color: black;
    font-size: 70px;
    font-weight: 900;
    font-family: poppins;
    background: -webkit-linear-gradient(var(--primary), #333);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pro_text {
    color: gray;
    font-size: 16px;
    font-weight: 400;
    font-family: poppins;
}

.pro_head_con {
    border-radius: 0px;
    padding: 5px 20px;
    background-color: white;
}

.pro_con.sec .pro_head_con {
    background-color: whitesmoke;
}

.pro_flag {
    height: 70px;
}

.pro_head {
    color: black;
    font-size: 20px;
    font-weight: 600;
    font-family: poppins;
    margin-bottom: 5px;
}

.pro_badge {
    color: white;
    font-size: 12px;
    font-weight: 400;
    font-family: poppins;
    border-radius: 5px;
    margin-bottom: 5px;
    padding: 3px 5px;
    background-color: var(--secondary);
}

.pro_img_con {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

.pro_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro_img_con.sec {
    left: 0;
}

.pro_btn {
    color: black;
    font-size: 15px;
    font-weight: 700;
    font-family: poppins;
    border: none;
    border-radius: 0px;
    padding: 15px 30px;
    background-color: var(--primary);
    border-radius: 30px;
}

/* Testimony Style */
.test_con {
    width: 100%;
    height: auto;
    padding: 50px 0px;
    background-color: white;
}

.test_header {
    color: black;
    text-align: center;
    font-size: 50px;
    font-weight: 900;
    font-family: poppins;
    background: -webkit-linear-gradient(var(--primary), #333);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.test_cont {
    width: 100%;
    height: 100%;
}

.test_img {
    width: 250px;
    height: 250px;
    border: 5px solid #dbdbdb;
    border-radius: 100%;
    object-fit: cover;
}

.test_head {
    color: black;
    font-size: 16px;
    font-weight: 600;
    font-family: poppins;
    margin-bottom: 0px;
}

.test_text {
    color: gray;
    font-size: 15px;
    font-weight: 400;
    font-family: poppins;
}

/* Partners Style */
.part_con {
    width: 100%;
    height: auto;
    padding: 50px 0px;
    background-color: whitesmoke;
}

.part_header {
    color: black;
    text-align: center;
    font-size: 50px;
    font-weight: 900;
    font-family: poppins;
    background: -webkit-linear-gradient(var(--primary), #333);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.part_img {
    width: auto;
    height: 50px;
}

.cont_con {
    width: 100%;
    height: auto;
    padding: 50px 0px;
    background-color: white;
}

.cont_header {
    color: black;
    font-size: 50px;
    font-weight: 900;
    font-family: poppins;
    background: -webkit-linear-gradient(var(--primary), #333);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cont_label {
    color: black;
    font-size: 15px;
    font-weight: 600;
    font-family: poppins;
    margin-bottom: 10px;
}

.cont_box {
    width: 100%;
    height: auto;
    font-size: 15px;
    font-weight: 400;
    font-family: poppins;
    border: 1px solid var(--secondary);
    border-radius: 0px;
    padding: 10px 20px;
    background-color: whitesmoke;
    outline: none;
}

.cont_btn {
    color: white;
    font-size: 15px;
    font-weight: 500;
    font-family: poppins;
    border: none;
    border-radius: 0px;
    padding: 15px 30px;
    background-color: var(--secondary);
}

.cont_cont_con {
    min-height: 300px;
    padding: 20px;
    background-color: whitesmoke;
}

.cont_cont_icon {
    color: white;
    font-size: 40px;
    padding: 20px;
    border-radius: 100%;
    background: linear-gradient(to bottom, var(--primary), #333);
}

.cont_cont_head {
    color: black;
    font-size: 20px;
    font-weight: 500;
    font-family: poppins;
    margin-bottom: 5px;
}

.cont_cont_text {
    color: black;
    font-size: 15px;
    font-weight: 400;
    font-family: poppins;
    margin-bottom: 0px;
}



/*blog */
.blog_con {
    width: 100%;
    height: auto;
    padding: 50px 0px;
    background-color: white;
}

.blog {
    height: auto;
}

.blog_header {
    text-transform: capitalize;
    font-size: 30px;
    font-weight: 500;
    font-family: Josefin Sans;
}

.blog_cont_con {
    width: 100%;
    height: auto;
    overflow: auto;
    padding: 30px 0px;
}

.blog_cont {
    height: auto;
    background-color: white;
}

.blog_img {
    width: 100%;
    height: 150px;
}

.blog_text_con {
    padding: 10px 0px;
}

.blog_head {
    color: #444444;
    font-size: 15px;
    font-weight: 600;
    font-family: poppins;
}

.blog_text {
    color: gray;
    font-size: 13px;
    font-weight: 400;
    font-family: poppins;
}


/* Footer Style */
.footer_con {
    width: 100%;
    height: auto;
    padding: 50px 0px 0px;
    background-color: #252525;
}

.foot_header {
    color: white;
    font-size: 20px;
    font-weight: 500;
    font-family: poppins;
    margin-bottom: 20px;
}

.foot_link {
    color: gray;
    font-size: 15px;
    font-weight: 300;
    font-family: poppins;
    margin-bottom: 10px;
}

.foot_icon {
    color: whitesmoke;
    font-size: 15px;
    font-weight: 500;
    font-family: poppins;
    margin-bottom: 10px;
}

.footer_bottom_con {
    width: 100%;
    height: auto;
    padding: 20px 0px 20px;
    background-color: black;
}

.foot_head {
    color: white;
    font-size: 15px;
    font-weight: 400;
    font-family: poppins;
    margin-bottom: 0px;
}

.footer_bottom_con .foot_link {
    color: white;
    font-weight: 400;
}









/* Hover Effects */
.header_drop_con:hover .header_drop {
    display: block;
}

.header_drop_link:hover {
    color: white;
    background-color: var(--secondary);
}

.header_link:hover {
    color: var(--secondary);
}

button:hover {
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

.foot_link:hover {
    color: white;
    transition: all 0.3s ease-in-out;
}