/* 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) form ****/

.contact-section{

    background-color:#E4E1DE;

    padding:80px 0;

}

.contact-container{

    width:90%;
    max-width:900px;

    margin:0 auto;

}

.contact-container h1{

    text-align:center;

    font-family:"Serenity Heavy";

    font-size:60px;

    color:#010b2a;

    margin-bottom:50px;

}

/* Form */

.contact-section{

    background-color:#E4E1DE;

    padding:80px 0 50px;

     border-top: 6px solid #010b2a;

}

.contact-container{

    width:90%;
    max-width:900px;

    margin:0 auto;

}

.contact-container h1{

    text-align:center;

    font-family:"Serenity Heavy";

    font-size:60px;

    color:#010b2a;

    margin-bottom:50px;

}


/* ---------- Form ---------- */

.contact-form{

    display:flex;

    flex-direction:column;

    gap:25px;

}


/* ---------- Each Row ---------- */

.form-row{

    display:flex;

    gap:80px;

}


/* ---------- Form Group ---------- */

.form-group{

    flex:1;

    display:flex;

    flex-direction:column;

}


/* ---------- Labels ---------- */

.form-group label{

    margin-bottom:15px;

    color:#010b2a;

    font-family:"serenity light";

    font-size:22px;

}


/* ---------- Inputs ---------- */

.form-row input{

    width:100%;

    height:50px;

    padding:0 20px;

    border:1px solid #010b2a;

    border-radius:7px;

    background:#E4E1DE;

    font-family:"serenity light";

    font-size:22px;

    color:#010b2a;

    outline:none;

}


/* ---------- Placeholder ---------- */

.form-row input::placeholder{

    color:#010b2a;

    font-family:"serenity light";

    font-size:22px;

    opacity:1;

}


/* ---------- Select ---------- */

.form-row select{

    width:100%;

    height:50px;

    padding:0 20px;

    border:1px solid #010b2a;

    border-radius:7px;

    background:#E4E1DE;

    font-family:"serenity light";

    font-size:22px;

    color:#010b2a;

    outline:none;

    cursor:pointer;

}


/* ---------- Textarea ---------- */

.form-row textarea{

    width:100%;

    height:100px;

    padding:18px 20px;

    border:1px solid #010b2a;

    border-radius:7px;

    resize:none;

    background:#E4E1DE;

    font-family:"serenity light";

    font-size:22px;

    color:#010b2a;

    outline:none;

}


.form-row textarea::placeholder{

    color:#010b2a;

    font-family:"serenity light";

    font-size:22px;

    opacity:1;

}


/* ---------- Focus ---------- */

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{

    border-color:#010b2a;

}


/* ---------- Full Width ---------- */

.full-width{

    width:100%;

}


/* ---------- Submit ---------- */

.submit-btn{

    width:180px;

    height:55px;

    margin:-8px auto 0;

    border:none;

    border-radius:10px;

    background:#010b2a;

    color:#E4E1DE;

    font-family:"serenity light";

    font-size:22px;

    cursor:pointer;

    transition:.3s;

}

.submit-btn:hover{

    transform:scale(1.03);

}


#formMessage{

    margin-top:10px;

    text-align:center;

    font-family:"Serenity Light";

    font-size:28px;

    min-height:20px;

}


/* ---------- Mobile ---------- */

@media (max-width:768px){

    .contact-section{

        padding:50px 0;

    }

    .contact-container h1{

        font-size:35px;

        margin-bottom:35px;

    }

    .form-row{

        flex-direction:column;

        gap:15px;

    }

    .form-group label{

        font-size:18px;

    }

    .form-row input{

        height:45px;

        font-size:17px;

    }

    .form-row input::placeholder{


    font-size:17px;

  

}

    .form-row select{

        height:45px;

        font-size:17px;

    }

    .form-row textarea{

        height:120px;

        font-size:17px;

    }

    .form-row textarea::placeholder{

    font-size:17px;

    

}

    .submit-btn{

        width:150px;

        height:48px;

        font-size:15px;

    }

    #formMessage{

    font-size:20px;   

}

}



/**** 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;

    }

}