*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --primary-color: #2e2480;
    --primary-light: #F2F2FDFF;
    --secondary-color: #005bb5;
    --primary-light-1: #CED0F8FF;
    --primary-light-2: #878CEDFF;
    --primary-variant-1: #3a2e8c;
    --primary-variant-2: #2e3880;
    --primary-variant-3: #402480;
    --primary-variant-4: #242e80;
    --primary-variant-5: #2e2470;
    --primary-variant-6: #4a2e80;
    --text-color: #333;
    --background-color: #f0f0f0;
    --border-color: #e0e0e0;
    --title-font: 'Archivo Black', sans-serif;
    --text-font: 'Inter', sans-serif;
}
.navbar-center li a{
    color: var(--primary-color);
}
.hamburger span{
    background-color: var(--primary-color);
}
.navbar.scrolled {
  background: var(--primary-light);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.9);
  transition: background 0.3s, box-shadow 0.3s;
}
.eecc-hero-section{
    position: relative;
    top: 100px;
    height: 50vh;
    width: 100%;
    background-image: url('assets/eecc-contracting.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.eecc-hero-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(99, 94, 232, 0.412), rgba(0, 0, 0, 0.7));
}
.eecc-hero-content{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8rem;
    padding: 3rem;
}
.eecc-hero-content h1{
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-light);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-family: var(--title-font);
     z-index: 2;
}
.eecc-logo{
    max-width: 15rem;
    max-height: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.9);
    z-index: 2;
}
.eecc-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.icon{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    color: var(--primary-light-1);
    font-size: 2rem;
}
  
.eecc-about-section{
    position: relative;
    top: 100px;
    background-color: var(--primary-light);
}
.eecc-about-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
}
.eecc-about-title{
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
    font-family: var(--title-font);
}
.eecc-about-description{
    font-size: 1.2rem;
    color: var(--text-color);
    font-family: var(--text-font);
    line-height: 1.5;
}
.eecc-about-items{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    padding: 0 3rem;
}
.eecc-about-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}
.eecc-about-item i{
    font-size: 1.5rem;
    color: var(--primary-variant-1);
}
.eecc-about-item p{
    font-size: 1.2rem;
    color: var(--text-color);
}
.eecc-about-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 0;
    transform: scaleY(0.1);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 1;
}
.eecc-about-subtitle{
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    font-family: var(--title-font);
}
.eecc-about-item:hover::before {
    opacity: 1;
    transform: scaleY(1);
}
.button{
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.2rem;
}
.footer-section{
    position: relative;
    top: 100px;
}
/* for tablet */
@media (max-width: 1024px) {
    .eecc-hero-content{
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 2rem;
    }
    .eecc-logo{
        max-width: 10rem;
        max-height: 10rem;
    }
}
/* for mobile */
@media (max-width: 768px) {   
    .eecc-logo{
        max-width: 10rem;
        max-height: 10rem;
    }
    .eecc-hero-content h1{
        font-size: 1.8rem;
    }
    .eecc-about-items{
        padding: 0 1rem;
    }
    .eecc-about-item{
        
    }
    .eecc-about-item i{
        font-size: 1.2rem;
    }
    .eecc-about-item p{
        font-size: 1rem;
    }
    .eecc-about-item::before {
        left: -0.7rem;
    }
    .eecc-about-description{
        font-size: 1rem;
    }
    .footer-section{
        position: relative;
        top: 100px;
    }   
    .button{
        font-size: 1rem;
    }
} 
  
/* contact us section */
.contact-us-section{
    position: relative;
    top: 100px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
}
.contact-us-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

}
.contact-us-left{
    width: 50%;
    padding: 2.5rem 3rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(30, 28, 67, 0.4);
}
.contact-us-left h2{
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--title-font);
    text-align: center;
}
.contact-us-left p{
    font-size: .9rem;
    color: var(--text-color);
    font-family: var(--text-font);
    line-height: 1.5;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
}
.contact-us-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}
.contact-us-form input{
    width: 100%;
    height: 40px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: #ebe9f4;
    color: var(--text-color);
    font-family: var(--text-font);
    font-size: .9rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}
.contact-us-form textarea{
    width: 100%;
    height: 100px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: #ebe9f4;
    color: var(--text-color);
    font-family: var(--text-font);
    font-size: .9rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}
.send-btn{
    display: block;
    margin: 0 auto;
       width: 50%;
       padding: 0.5rem 1rem;
       font-size: 1rem;
       font-weight: 600;
       font-family: var(--text-font);
       cursor: pointer;
       transition: all 0.3s ease;
}
.contact-us-right{
    width: 50%;
    padding: 2rem;
}
.contact-us-right-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* tablet */
@media (max-width: 1024px) {
    .contact-us-section{
       
    }
    .contact-us-content{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 0
    }
    .contact-us-right{
        display: none;
    }
    .contact-us-left{
        width: 80%;
    }
    .contact-us-left h2{
        font-size: 1.5rem;
    }
    .contact-us-left p{
        font-size: .8rem;
    }
}   
/* mobile */
@media (max-width: 480px) {
    .contact-us-section{
        top: 80px;
     }
}