
/* ------- general ----- */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.vh-75{
    height: 75vh;
}

.vh-50{
    height: 50vh;
}

.vh-25{
    height: 25vh;
}

.w-30{
    width:30%
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

.text-justify{
    text-align:justify !important;
}

/* ------- general /// */

/* ----- Header ----- */

.nav{
    background-color: #FBC558;
    height: 13%;
}

.navbar a{
    color: white;
}

.logo img{
    width: 50%;
}

.header{
    background-image: url(./images/home2.webp);
    background-size: 100% 100%;
    background-position: center center;
    height: 100vh;
}

.blur{
    background-color: rgb(0, 0, 0,0.3);
    height: 100%;
    width: 100%;
}
.header h1{
    color: #FBC558;
    font-size: 150px;
    margin-bottom: 25px;
}

.header p{
    text-align: justify;
}

/* // Header */

/* our vision */

.back_rectangle{
    background-color: #FBC558;
    position: absolute;
    width: 70%;
    height: 50vh;
    margin: auto 0px;
    top: -25vh;
}

.forward_rectangle{
    background-color: #fff;
    width: 90%;
    position: absolute;
    height: 70vh;
    top: -10vh;
}

.forward_rectangle h2{
    font-size: 100px;

}

.section_2 p{
    text-align: justify;
}

/* // our vision */

/* services */

.services{
    background-image: url(./images/our\ services.webp);
    background-size: 100% 100%;
}

/* // services */

/* Expertise */

.card{
    background-color: #FBC558;
}

/* // Expertise */

/* Contact */

.contact{
    background-color: #1B1B1B;
    position: relative;
    height: 150vh;
}

.contact::after{
    background-color: #FBC558;
    content: "";
    position: absolute;
    height: 35vh;
    width: 100%;
    top: 0;
    left: 0;
}

.contactBox{
    position: absolute;
    top: 10vh;
    z-index: 1;
}

.contactForm{
    position: absolute;
    top: 70vh;
}

.form label , input[type="text"] , input[type="email"] , textarea{
    display: block;
    margin-bottom: 5px;
    padding: 5px;
    width: 75%;
}

.copyright{
    position: absolute;
    bottom: 30px;
    left: 30%;
}

.contact a:hover{
    color: #FBC558;
}

/* // contact */
.social-icons a {
    color: white; /* default color */
    transition: color 0.3s ease;
}

.social-icons a.facebook:hover {
    color: #1877f2 !important;
}
.social-icons a.twitter:hover {
    color: #1da1f2 !important;
}
.social-icons a.instagram:hover {
    color: #e4405f !important;
}
.social-icons a.linkedin:hover {
    color: #0077b5 !important;
}

#backToTop {
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Perfect circle */
    font-size: 18px;
    display: none; /* Hidden initially */
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
    background-color: #FBC558; /* darker warning on hover */
    transform: translateY(-3px);
}

.custom-vh-lg-50 {
    height: auto; /* Default: no height restriction */
}

.contact-card a {
    color: #ffffff; /* default color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #FBC558; /* hover color */
}


.value-item {
    background-color: #1f1f1f;
    border-left: 5px solid #FBC558;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
    height: 100%;
}

.value-item:hover {
    transform: translateY(-4px);
}