@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}


.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeIn 0.6s forwards;
}


html, body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(255, 255, 255, 0.7);
    padding: 10px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 98px;
}

.header .logo img {
    height: 40px;
}

.menu-btn {
    font-size: 57px;
    cursor: pointer;
    color: #3a3a3a;
    background-color: transparent;
    border: none;
    z-index: 1001;
}

.menu-btn:hover {
    color: #EA9520;
}


/* Sidebar Styles */
.sidebar {
    height: 100%;
    width: 591px;
    position: fixed;
    top: 0;
    right: -591px;
    background-color: #fff;
    overflow-x: hidden;
    transition: transform 0.5s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sidebar a {
    padding: 12px 32px;
    text-decoration: none;
    font-size: 40px;
    color: #3a3a3a;
    display: flex; 
    justify-content: center;
    align-items: center; 
    transition: 0.3s;
}

.sidebar a:hover {
    color: #EA9520;
}

.sidebar .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    color: #3a3a3a;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1002;
}


.sidebar.open {
    transform: translateX(-591px);
}


.banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-image: url('images/banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}


.banner-text {
    font-family: 'Poppins', sans-serif;
    font-size: 5.6rem;
    font-weight: 200;
    line-height: 5rem;
    color: white;
    text-align: center;
}

.about-section {
    padding: 80px 20px;
    text-align: left;
    background-color: #ffffff;
}

.dynamic-text {
    color: #000000;
    font-family: "Poppins", Sans-serif;
    font-size: 58px;
    font-weight: 100;
    margin-bottom: 30px;
}

.about-section p {
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
}

.read-btn {
    font-size: 1.2rem;
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: 2px solid black;
    cursor: pointer;
    margin-top: 10px;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
}

.read-btn:hover {
    background-color: white;
    color: black;
}

.services-section {
    background-image: url('images/services-image.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;

}

#menuBtn {
    outline: none;
}

.services-section .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    text-align: center;
}

.services-section .service-heading {
    display: inline-block;
    position: relative;
    font-size: 26px;
    color: #202124;
    font-family: "Poppins", Sans-serif;
    font-weight: 400;
}

.service-heading::after {
    content: '.';
    color: #EA9520;
    font-size: 42px;
    margin-left: 4px;
    vertical-align: 0%;
    display: inline-block;
}

.service-description {
    color: #626262;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.service-more-btn a {
    font-size: 16px;
    color: #202124;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: last baseline;
}

.post-title a {
    align-items: first baseline;
}

.service-more-btn a:hover {
    color: #EA9520;
}

.service-more-btn a::before {
    content: '';
    display: inline-block;
    width: 34px;
    height: 2px;
    background-color: #202124;
    margin-right: 9px;
}



.service-more-btn a:hover::before {
    background-color: #EA9520;
}

.services-section .row {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.services-section .col-md-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.services-section .service-heading,
.services-section .service-description {
    text-align: center;
    margin: 0 0 10px;
}

.meet-our-team-section {
    background-color: white;
    padding: 180px 0px 60px 0px;
}

.section-title {
    color: #383C47;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    margin: 0px;
    margin-left: 9px;
    padding: 0;

}

.meet-str {
    color: #1A1A1A;
    font-weight: 600;
    font-size: 9vw;
    margin: 0;
    padding: 0;
    z-index: 5;
    position: relative;
}
.our-team-str {
    line-height: 0.4;
}

.people-image {
    width: 36vw;
    z-index: 2;
    left: 0px; 
    top:-100px;
    position: absolute;
}
.people-image-mobile {
    width: 100%;
    z-index: 2;
    margin-left: -15%;
    
}


@media (max-width: 576px) {
    .banner-text {
        font-size: 60px;
    }

    .people-image {
        display: none;
    }
    .people-image-mobile {
        display: inline;
    }
    
}

@media (min-width: 577px) {
    .people-image {
        display: inline;
    }
    .people-image-mobile {
        display: none;
    }
} 

.our-team-p{
    width: 380px;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

.news-section {
    background-color: white;
}


.news-image {
    width: 100%;
}

.date {
    content: '-';
    color: #7A7E80;
    font-family: "Poppins", Sans-serif;
    font-weight: 500;
    padding-left: 24px;
    padding-top: 9px;
}


.post-content-main {
    color: #000000;
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.read-more-post, .read-more-post:hover{
    font-family: "Poppins", Sans-serif;
    font-weight: 500;
    color: #EA9520;
    box-shadow: none;
    text-decoration: none;
    padding-bottom: 22px;
}

.read-more-post:hover {
    cursor: pointer;
}

.footer-section {
    background-color: #1A1A1A;
    color: #ffffff;
    padding-top: 33px;
    padding-bottom: 33px;
}
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;  
    
}
.footer-menu-item {
    width: auto;
    padding-left: 22px;
    left: auto;
    right: auto;
    position: relative;
    height: 100%;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
    border-left-width: 1px;
    border-style: solid;
    margin-right: 30px;
    right: -8px;
}

.footer-menu-item:first-child {
    border-left-width: 0px;
}


.footer-menu-item  a {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
}

.footer-note {
    float: right;
}

.footer-note-a {
    color: #fff;
}

.footer-note-a:hover {
    color: #fff;
    text-decoration: none;
}

.copyright-section{
    background-color: #000;
    color: #fff;
    padding: 12px;
    padding-left: 33px;
    
}

.copyright-section > p {
    color: #FFFFFF;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1px;

}