* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #333;
    font-size: 16px;
    overflow-x: hidden;
}

header {
    color: #fff;
    padding: 15px 20px;
    background-color: #0b0b0b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
}

nav {
    transition: all 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav li {
    margin: 0 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 5px 0;
    transition: all 0.3s ease;
}

nav a:hover {
    border-bottom: 2px solid yellow;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 100;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
    top: 0px;
}

.hamburger-menu span:nth-child(2), .hamburger-menu span:nth-child(3) {
    top: 9px;
}

.hamburger-menu span:nth-child(4) {
    top: 18px;
}

.hamburger-menu.open span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
}

.hamburger-menu.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger-menu.open span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
}

#about {
    background: linear-gradient(rgba(33, 28, 28, 0.627), rgba(38, 38, 66, 0.403)), url(PayrollNY-1.jpg);
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#about h1 {
    color: rgb(255, 255, 255);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#about h2 {
    color: white;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
}

#about button {
    width: auto;
    min-width: 150px;
    height: 44px;
    padding: 0 20px;
    border-radius: 13px;
    border: 1px solid black;
    background-color: rgb(221, 218, 36);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#about button:hover {
    background-color: rgb(205, 184, 50);
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#the-face-of-business {
    padding: 60px 20px;
}

.team-members {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member, .team-member2 {
    flex: 1;
    min-height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.team-member {
    background: url(brand-story.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-member2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: left;
}

.team-member2 h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #004b87;
}

.team-member2 p {
    font-size: 1rem;
    line-height: 1.6;
}

#why-choose-us {
    background: url(group-problem-solving-process.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
}

#why-choose-us h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #004b87;
}

.reason-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.reason-card:hover {
    transform: scale(1.03);
}

.reason-card img {
    height: 70px;
    width: 70px;
    margin-bottom: 15px;
}

.reason-card h3 {
    font-size: 1.3rem;
    margin: 15px 0;
    color: #004b87;
}

.reason-card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

#who-we-serve {
    padding: 60px 20px;
    background-color: white;
    text-align: center;
}

#who-we-serve .container {
    max-width: 1000px;
    margin: 0 auto;
}

#who-we-serve h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #004b87;
}

#who-we-serve p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

#who-we-serve button {
    padding: 10px 25px;
    background-color: #117fda;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#who-we-serve button:hover {
    background-color: #0b5ca3;
    transform: scale(1.05);
}

#services {
    background-color: #ccdbe9;
    padding: 60px 20px;
    text-align: center;
}

#services h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #004b87;
}

.service-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: #f1f1f1;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 20px;
}

.service-card:hover {
    transform: scale(1.03);
}

.service-card img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.service-card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.customers {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 20px;
    background-color: #ccdbe9;
}

.customers-card {
    width: 180px;
    height: 180px;
    background-color: #f1f1f1;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.customers-card:hover {
    transform: scale(1.05);
}

.customers h1 {
    font-size: 2.5rem;
    color: #004b87;
    margin-bottom: 5px;
}

.customers p {
    font-size: 1rem;
    color: #333;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 30px 20px;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffcc00;
}

.footer-content{
    display: flex;
    justify-content: space-around;
}


@media (max-width: 768px) {
    header {
        padding: 15px;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0b0b0b;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        z-index: 99;
    }
    
    nav.show {
        max-height: 300px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    
    nav ul {
        flex-direction: column;
        padding: 10px 0;
    }
    
    nav li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
    
    nav a {
        display: inline-block;
        padding: 8px 0;
        width: 100%;
    }
    
    #about {
        padding: 40px 15px;
    }
    
    #about h1 {
        font-size: 2rem;
    }
    
    #about h2 {
        font-size: 1.1rem;
    }
    
    .team-member2 h1 {
        font-size: 1.8rem;
    }
    
    #why-choose-us h2, #services h2, #who-we-serve h2 {
        font-size: 1.8rem;
    }
    
    .customers-card {
        width: 150px;
        height: 150px;
    }
}



      @media screen and (max-width: 992px) {
        .main-section {
          flex-direction: column;
          gap: 30px;
          padding: 30px 15px;
        }
        
        .social-icons {
          justify-content: flex-start;
        }
            .team-members {
                flex-direction: column;
            }
            
            .team-member, .team-member2 {
                width: 100%;
                max-width: 600px;
                margin: 0 auto;
            }
       
      }
      
      @media screen and (max-width: 768px) {
        .footer-content {
          flex-direction: column;
          gap: 40px;
        }
        
        .footer-content > div {
          width: 100%;
          
        }
        
        .footer-links, .footer-contact {
          margin-top: 20px;
        }
      }
  
