* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.navHeadContainer {
    background: 
    linear-gradient(rgba(31, 81, 58, 0.7), rgba(31, 81, 58, 0.7)),
    url('../images/solution-3.jpeg');
    background-color: #1F513AE5;
    height: 400px;
    /* padding-left: 40px; */
    /* padding-right: 40px; */
    padding-top: 40px;
    display: flex;
    /* justify-content: center; */
    flex-direction: column;
    align-items: center;
    /* background: url(../images/aboutuspage-1.jpeg); */
}

.navbarCon {
    height: 20%;
    width: 95%;
    background-color: white;
    border-radius: 40px;
}

.imagesNavConList {
    display: flex;
    align-items: center;
    /* gap: 1em; */
    height: 100%;
    justify-content: center;
}

.imageList {
    height: 100%;
    width: 66%;
    display: flex;
    gap: 15%;
}

.imagesNavConList .imageList img {
    height: 90%;
}

.navMainList ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4%;
    height: 100%;
}

.navMainList ul li {
    font-family: sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: rgba(34, 40, 42, 0.7);
    text-decoration: none;
}

.navMainList ul li a{
    text-decoration: none;
}

.navContactButton button {
    padding: 13px 25px 13px 25px;
    border-radius: 69px;
    border: 1px solid rgba(56, 100, 79, 1);
    font-weight: 600;
    font-size: 14px;
    color: white;
    background-color: rgba(56, 100, 79, 1);
}

.aboutHeroContent {
    width: 90%;
    max-width: 1200px;
    margin-top: 50px;
    height: 100%; 
}

/* TITLE */
.aboutHeroContent h3 {
    font-size: 60px;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

/* PARAGRAPH */
.aboutHeroContent p {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    line-height: 1.6;
}

/* SECTION BACKGROUND */
.solutionSection {
    background-color: #f3f5f4;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

/* CONTAINER */
.solutionContainer {
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT TEXT */
.solutionText {
    width: 50%;
}

.solutionText h2 {
    font-size: 28px;
    color: #2d5c46;
    margin-bottom: 15px;
}

.solutionText p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BUTTON */
.solutionBtn {
    padding: 12px 22px;
    border-radius: 30px;
    border: none;
    background-color: #2d5c46;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* IMAGE */
.solutionImage {
    width: 50%;
}

.solutionImage img {
    width: 100%;
    border-radius: 20px;
}

/* OUTER SECTION */
.solutionSectionAlt {
    background-color: #f3f5f4;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

/* INNER CARD */
.solutionContainerAlt {
    width: 90%;
    max-width: 1200px;
    background-color: #d9d4cb; /* beige card */
    border-radius: 30px;
    padding: 50px;
    
    display: flex;
    align-items: center;
    gap: 50px;
}

/* IMAGE CARD */
.solutionImageCard {
    width: 45%;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.solutionImageCard img {
    width: 100%;
    border-radius: 12px;
}

/* TEXT */
.solutionTextAlt {
    width: 55%;
}

.solutionTextAlt h2 {
    font-size: 26px;
    color: #2d5c46;
    margin-bottom: 15px;
}

.solutionTextAlt p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* REUSE SAME BASE SECTION */
.solutionSection {
    background-color: #f3f5f4;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.solutionContainer {
    width: 90%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* TEXT */
.solutionText {
    width: 50%;
}

.solutionText h2 {
    font-size: 24px;
    color: #2d5c46;
    margin-bottom: 15px;
}

.solutionText p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BUTTON (same as before) */
.solutionBtn {
    padding: 12px 22px;
    border-radius: 30px;
    border: none;
    background-color: #2d5c46;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* IMAGE */
.solutionImage {
    width: 50%;
}

.solutionImage img {
    width: 100%;
    border-radius: 20px;
}

/* FOOTER */
.footerSection {
    width: 100%;
    background-color: #1f513a;
    color: white;
    padding: 80px 20px 30px 20px;
}

/* CONTAINER */
.footerContainer {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT */
.footerLeft {
    max-width: 220px;
}

.footerLeft img {
    width: 60px;
    margin-bottom: 15px;
}

.footerLeft p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* LINKS */
.footerLinks h4,
.footerContact h4 {
    margin-bottom: 15px;
    font-size: 14px;
}

.footerLinks ul {
    list-style: none;
}

.footerLinks ul li {
    font-size: 13px;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
}

/* CONTACT */
.footerContact p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

/* SOCIAL ICONS */
.socialIcons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.socialIcons span {
    width: 32px;
    height: 32px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
}

/* BOTTOM */
.footerBottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}