
/* serenity fonts */
@font-face {
    font-family: "serenity light";
    src: url("../Fonts/Primary_Font/fonnts.com-Serenity_Light.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "serenity bold";
    src: url("../Fonts/Primary_Font/fonnts.com-Serenity_Bold.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: "serenity heavy";
    src: url("../Fonts/Primary_Font/fonnts.com-Serenity_Heavy.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}


/* polin fonts */
@font-face {
    font-family: "polin bold";
    src: url("../Fonts/Secondary_Font/Fontspring-DEMO-polin-semibold.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "polin light";
    src: url("../Fonts/Secondary_Font/Fontspring-DEMO-polin-light.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: "polin regular";
    src: url("../Fonts/Secondary_Font/Fontspring-DEMO-polin-regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}




*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; ;
}



/**** 1) header ****/

header {
    width: 100%;
    background-color: #E4E1DE;
    height: 120px;
}


.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;

    height: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo img {
    height: 65px;
    width: auto;
    display: block;
    margin-left: 20px;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    margin-right: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-family: "serenity light";
    font-weight: 500;
}

.nav-links a:hover {
    color: #777;
}


.menu-btn {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 32px;
    color: black;
}




@media (max-width: 768px) {

    .navbar {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: #F2F0EF;
    }

    .navbar.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links li {
        border-top: 1px solid #ddd;
    }

    .nav-links a {
        display: block;
        padding: 18px;
    }

        .menu-btn {
        display: block;
    }

}


.dropdown {
    position: relative;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 180px;

    background-color: #010b2a;

    list-style: none;

    display: none;

    box-shadow: 0 8px 20px rgba(0,0,0,.12);

     z-index: 1000;

    overflow: hidden;
}

.dropdown-menu li a {
    display: block;

    padding: 12px 18px;

    color: white;

    text-decoration: none;

    font-size: 15px;
}

.dropdown-menu li a:hover {
    background-color: #f2f2f2;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.arrow {
    font-size: 15px;
    margin-left: 4px;
}



/**** 2) Banner ****/


.hero {
    
    width: 100%;
    height: 520px; /* You control the banner height */

    background-image: url("../Images/Pages Banners/Material-33.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) { 
    .hero {
        height: 250px;
    }
}



/**** 3) about ****/

.about-us {

    background-color: #E4E1DE;

    padding: 80px 0;

}

.about_us {

    width: 90%;
    max-width: 1500px;

    margin: 0 auto 100px 70px;

    
}

.about {

    max-width: 1400px;

    margin-top: -30px;

}

.about p {

    font-family: "polin light";

    font-size: 17px;

    color: #010b2a;

    line-height: 1.6;

    margin-bottom: 20px;

}


@media (max-width:768px){

    .about-us{

        padding:50px 0;

    }

    .about_us{

        width:92%;

        margin: 0 auto 70px auto;

    }

    .about{

        margin-top:0;

    }

    .about p{

        font-size:12px;

        line-height:1.7;

    }

}



/**** 4) founders ****/

.features {
    background-color: #E4E1DE;
     padding: 70px 0; 
     margin-top: -180px;
     
}


.feature-card {
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
    
}

.features-title{

    text-align: center;

    margin-bottom: 60px;

}

.features-title h1{

    font-family: "serenity heavy";

    font-size: 60px;

    color: #010b2a;

}

.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-top: -120px; */
}


.feature-card img {
    width: 190px;
    height: 160px;
    display: block;
    margin: 0 auto 25px;

    border-radius: 10px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    font-family: "serenity light";
    margin-bottom: 30px;
    color: #010b2a;
}

.feature-card p {
    font-size: 14px;
    font-family: "polin regular";
    line-height: 1.7;
    color: #010b2a;
    
}

@media (max-width: 768px) {

    .features {
        padding: 45px 0;
    }

    .features-grid {
        flex-direction: column;
        gap: 50px;
    }

    .feature-card {
        width: 100%;
    }

    .feature-card img {
        width: 120px;
        height: 100px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 12px;
    }

    .features-title h1{

    font-family: "serenity heavy";

    font-size: 38px;

    color: #010b2a;

    }

    .features {

        margin-top: -120px;
        
    }

}


/**** 5) ready ****/

.our-clients{
    background-color: #E4E1DE;
    padding: 70px 0;

}


.ready {

    margin-top: -75px;

    text-align: center;

    max-width: 600px;

    margin-left: auto;
    margin-right: auto;

}


.ready p {

    font-size: 40px;

    line-height: 1.8;

    color: #010b2a;

    font-family: "serenity light";

}


.contact-btn {

    display: inline-block;

    margin-top: 15px;

    padding: 15px 40px;

    background-color: #010b2a;

    color: #E4E1DE;

    text-decoration: none;

    font-family: "serenity light";

    font-size: 23px;

    font-weight: 600;

    border-radius: 12px;

    transition: all 0.3s ease;

}


.contact-btn:hover {

    background-color: #243760;

    transform: translateY(-2px);

}




@media (max-width:768px){

    
    .ready {

    margin-top: -80px;

    padding: 0 20px;

    max-width: 400px;
}


.ready p {

    font-size: 22px;

    line-height: 1.7;

}

.contact-btn {

    padding: 12px 30px;

    font-size: 16px;

}

}




/**** 7) footer ****/

.footer-section {

    background-color: #010b2a;

}


footer {

    width: 100%;

    padding: 50px 0 35px 0;

}

.footer-container {

    width: 90%;
    max-width: 1400px;

    margin: 0 auto;
    

    display: flex;
    flex-direction: column;

}

.footer-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

}

.footer-logo img {

    width: 80px;
    height: auto;

    display: block;

    margin-top: 40px;

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 80px;

}

.footer-copyright p {

    color: #E4E1DE;

    font-family: "serenity light";

    font-size: 14px;

    letter-spacing: 0.5px;

}

.footer-social {

    display: flex;

    align-items: center;

    gap: 15px;

}

.footer-social span {

    color: #E4E1DE;

    font-family: "serenity light";

    font-size: 18px;

}

.social-icons {

    display: flex;

    gap: 7px;

}

.social-icons img {

    width: 32px;

    height: 32px;

    display: block;

    transition: transform .3s ease;

}

.social-icons img:hover {

    transform: scale(1.1);

}


.footer-links{

    display: flex;
    flex-direction: column;

    gap: 16px;

    margin-top: 40px;      /* Move links up/down */

    margin-right: 80px;      /* Move links left/right */
}


.footer-links a {

    text-decoration: none;

    color: #E4E1DE;

    font-family: "serenity light";

    font-size: 18px;

    font-weight: 500;

    transition: color 0.3s ease;

}

.footer-links a:hover {

    color: #bdbdbd;

}



@media (max-width:768px){

    footer{
        padding:35px 0;
    }

    .footer-top{

        flex-direction: row;

        justify-content: space-between;

        align-items: flex-start;

    }

    .footer-logo img{

        width:30px;
        margin-top: 15px;
    }

    .footer-links{

        margin-top:0;

        margin-right: 25px;  

        gap:10px;

    }

    .footer-links a{

        font-size:10px;

    }

    .footer-bottom{

        margin-top:30px;

        display:flex;

        justify-content:space-between;

        align-items:center;

    }

    .footer-copyright p{

        font-size:6px;

    }

    .footer-social span{

        font-size:8px;

    }

    .social-icons img{

        width:18px;
        height:18px;

    }

}