
/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    overflow-x: hidden;
}

/* HEADER */
.header {
    background: #1f5b3d;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0px;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
}

.header-left h1 {
    font-size: 25px;
    font-weight: 900;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    font-weight: 600;
    padding-right: 20px;
}
/* ================= HERO ================= */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    display: block;
}

/* Content stays INSIDE hero */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    color: #ffffff;
}

/* LOGO */
.hero-content img {
    max-width: 380px;
    height: auto;

}

/* TEXT BLOCK */
.hero-text {
    max-width: 700px;
    text-align: right;
}

.hero-content h2 {
    font-size: 58px;
    font-weight: 800;
    padding-bottom: 10px;
}

.tagline {
    font-size: 22px;
    margin-top: 10px;
    font-style: italic;
}

/* CTA BUTTONS — FIXED */
.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.hero-buttons .btn {
    padding: 12px 18px;
    font-weight: bold;
    border-radius: 4px;
    white-space: nowrap;
}

/* =================================================
   🔧 HOME FOOTER STRIP FIX (ONLY THIS SECTION)
================================================= */

.footer-strip {
    background: #1f5b3d;
    color: #ffffff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-strip span {
    font-size: 24px;
    font-weight: 600;
}

.footer-strip .learn-more {
    position: absolute;
    right: 1px;
    background: #ffffff;
    color: #1f5b3d;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-strip {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
/* =================================================
   CHALLENGES SECTION
================================================= */

.challenges {
    position: relative;
    padding: 100px 20px;
}

.challenges-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.challenges-card {
    max-width: 1300px;
    margin: auto;
    background: #f7f6f2;
    padding: 40px 50px;
    border-radius: 18px;
}

.challenges-card h2 {
    font-size: 60px;
    font-weight: 800;;
    color: #1f5b3d;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 4px solid #1f5b3d;
}

.intro {
    font-size: 25px;
    margin: 20px 0 25px;
    color: #2d3e50;
    line-height: 1.6;
}

.challenge-list {
    list-style: disc;
    padding-left: 25px;
}

.challenge-list li {
    font-size: 25px;
    margin-bottom: 14px;
    color: #2d3e50;
    line-height: 1.6;
}

.challenge-list span {
    color: #5aa63c;
    font-weight: bold;
}

.challenge-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.challenge-footer  a{
    position: relative;
    right: 60px;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
}
.challenge-footer p {
    font-size: 25px;
    color: #9c5a3c;
    font-weight: bold;
}

/* =================================================
   ABOUT + WHY SECTION
================================================= */

.about-why {
    position: relative;
    padding: 20px 0;
    background: #5b6462;
}

.about-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    background: #f4f4f2;
    padding: 40px;
    border-radius: 18px;
    width: 75%;
}

.about-card h2 {
    color: #1f5b3d;
    font-size: 60px;
    margin-bottom: 18px;
}

.about-card p {
    color: #8a4b2f;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1;
    padding-left:40px ;
}

.why-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    
}

.why-text ul {
    margin: 15px 0 20px 20px;
}

.why-text li {
    color: #8a4b2f;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    padding-bottom: 20px;
}

.why-icon img {
    position: absolute;
    top: 24%;
    left:50%;
    width: 35%;

}

.about-why a{
    font-size: 20px;
}

/* =================================================
   SERVICES SECTION
================================================= */

.services {
    position: relative;
    padding: 80px 20px;
}

.services-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.services-title {
    padding-top: 10px;
    text-align: center;
    font-size: 68px;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 50px;
}

.services-grid {
  max-width: 1350px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.services-grid > * {
  flex: 0 0 calc(25% - 20px);
}


.service-card {
    background: #f7f6f2;
    padding: 15px;
    border-radius: 10px;
    
    
}

.service-card img {
    max-width: 100px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #1f5b3d;
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    font-size:18px;
    color: #444;
    margin-bottom: 0px;
    line-height: 1.5;
}

.service-card .btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* =================================================
   AMC SECTION (UNCHANGED)
================================================= */

.amc-section {
    background: #163f2f;
    padding: 50px 20px;
    margin-top: 0;

}

.amc-section h2 {
    color: #f6f1e7;
    font-size: 55px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
}

.amc-section h2::after {
    content: "";
    margin: auto;
    display: block;
    width: 80%;
    height: 4px;
    background: #f6f1e7;
    margin-top: 8px;
    margin-bottom: 5px;
}

.amc-intro {
    color: #e8e3d8;
    font-size: 28px;
    max-width: 1200px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.amc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.amc-card {
    background: #f6f1e7;
    padding: 35px;
    border-radius: 16px;
}

.amc-card h3 {
    color: #9c5a3c;
    font-size: 36px;
    margin-bottom: 15px;
}

.amc-card ul {
    list-style: disc;
    padding-left: 30px;
}

.amc-card li {
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
    line-height: 1.5;
}

/* =================================================
   ✅ NEW: AMC CTA STRIP (ONLY ADDITION)
================================================= */

.amc-cta {
    margin-top: 20px;
    background: #f6f1e7;
    padding: 22px 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
}

.amc-cta p {
    color: #163f2f;
    font-size: 20px;
    font-weight: 600;
}

.amc-cta-btn {
    background: #b07a44;
    color: #ffffff;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

/* RESPONSIVE AMC CTA */
@media (max-width: 768px) {
    .amc-cta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-bg {
        display: none;
    }

    .about-card {
        width: 100%;
    }

    .about-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .challenge-footer {
        flex-direction: column;
        text-align: center;
    }

    .why-card {
        flex-direction: column;
        text-align: center;
    }

    .why-icon img {
        max-width: 130px;
    }
}

/* =================================================
   ✅ FAQ SECTION – IMAGE ACCURATE (ONLY ADDITION)
================================================= */

.faq-section {
    padding: 60px 20px;
    background: #ffffff;
}

.faq-title {
    text-align: center;
    font-size: 45px;
    font-weight: 900;
    color: #1f5b3d;
    margin-bottom: 50px;
}

.faq-box {
    max-width: 1000px;
    margin: 0 auto 25px;
    border: 2px solid #1f5b3d;
    padding: 18px 22px;
}

.faq-q {
    color: #1f5b3d;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 6px;
}

.faq-a {
    padding-left: 20px;
    color: #8a4b2f;
    line-height: 1.6;
    font-weight: 600;
    font-size: 15px;
}
/* =================================================
   CONTACT SECTION – REPAIRED & SIMPLIFIED
================================================= */

.contact-section {
    display: flex;
    width: 100%;
    min-height: 600px;
}

/* LEFT SIDE */
.contact-left {
    width: 45%;
    background: url("../images/bg5.png") center / cover no-repeat;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* LOGO */
.contact-logo {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-logo img {
    max-width: 260px;
    margin-bottom: 30px;
}

/* QUOTE */
.contact-quote {
    color: white;
    font-size: 24px;
    font-style: italic;
    text-align: center;
    max-width: 520px;
}

/* RIGHT SIDE */
.contact-right {
    width: 60%;
    background: #1f5b3d;
    color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* TITLE */
.contact-block h3 {
    font-size: 42px;
    margin-bottom: 30px;
}

/* TEXT */
.contact-block p {
    font-size: 18px;
    margin-bottom: 8px;
}

/* GRID */
.contact-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* FOLLOW US */
.social-links {
    list-style: none;
    font-size: 18px;
    font-weight: 600;
}

.social-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.social-links img {
    width: 20px;
}

/* QUICK LINKS */
.quick-links {
    list-style: none;
    font-size: 16px;
    font-weight: 600;
}

.quick-links li {
    margin-bottom: 8px;
}

.quick-links a {
    text-decoration: none;
    color: #ffffff;
}

/* COPYRIGHT */
.footer-copy {
    font-size: 14px;
    opacity: 0.85;
    text-align: right;
    margin-top: 20px;
}

/* =================================================
   📱 FINAL MOBILE FIX – DESKTOP SAFE
================================================= */
@media (max-width: 768px) {

    /* GLOBAL SAFETY */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    * {
        max-width: 100%;
    }

    section {
        overflow-x: hidden;
    }

    /* ================= HEADER ================= */
    .brand {
        position: static;
    }

    .brand img {
        max-width: 220px;
        margin: 0 auto;
        display: block;
    }

    .logo {
        display: none;
    }

    .header {
        flex-direction: column;
        padding: 10px;
    }

    .header-left {
        flex-direction: column;
        gap: 6px;
    }

    .header-left h1 {
        font-size: 15px;
        line-height: 1.3;
    }

    .nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }

    .nav a {
        font-size: 14px;
        padding-right: 10px;
    }

   /* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

    .hero-bg {
        height: 55vh;
    }

    .hero-content {
        margin-top: 50px;
        padding: 25px 20px;
        flex-direction: column;
        justify-content: center;
        gap: 0px;
    }

    .hero-content img {
        max-width: 150px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-content h2 {
        font-size: 25px;
        line-height: 1.2;

    }

    .tagline {
        font-size: 15px;
    }

    .hero-buttons {
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        font-size: 10px;
        width: 100%;
        max-width: 250px;
        margin-bottom: 60px;
    }
}

    /* ================= HOME CTA STRIP ================= */
    .footer-strip {
        flex-direction: column;
        gap: 10px;
    }

    .footer-strip .learn-more {
        padding: 10px 10px;
        margin-right: 10px;
        font-size: 10px;
    }

    .footer-strip span {
        font-size: 15px;
        text-align: left;
        margin-right: 80px;
    }

    /* ================= CHALLENGES ================= */

    .challenges{
        margin-top: -40px;
    }
    .challenges-card h2 {
        font-size: 20px;
    }

    .intro,
    .challenge-list li {
        font-size: 16px;
    }

    .challenge-footer a {
        position: static;
        font-size: 14px;
    }

    .challenge-footer p {
        font-size: 14px;
    }

    /* ================= ABOUT + WHY ================= */
    .about-bg {
        display: none;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-card {
        width: 100%;
        padding: 25px;
    }

    .about-card h2 {
        font-size: 28px;
    }
    .why-text h2{
        text-align: left;
        padding-left: 8px;
    }

    .about-card p {
        font-size: 16px;
        padding-left: 0;
        line-height: 1.5;
    }

    .why-card {
        flex-direction: column;
    }

    .why-icon img {
        display: none;
        position: static;
        width: 120px;
        margin: 10px auto 0;
    }
    .why-card li{
        font-size: 14px;
        text-align: left;
    }

    /* ================= SERVICES ================= */
    .services {
        padding: 60px 15px;
        
    }

    .services-title {
        font-size: 30px;
    }

    .services-grid {
        flex-direction: column;
    }

    .services-grid > * {
        flex: 1 1 100%;
    }

    .service-card img {
        max-width: 70px;
    }

    .service-card p {
        font-size: 15px;
    }

    /* ================= AMC ================= */
    .amc-section h2 {
        font-size: 25px;
    }

    .amc-intro {
        font-size: 14px;
    }

    .amc-grid {
        grid-template-columns: 1fr;
    }

    .amc-card h3 {
        font-size: 18px;
    }

    .amc-card li {
        font-size: 14px;
    }

    .amc-cta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* ================= FAQ ================= */
    .faq-title {
        font-size: 28px;
    }

    .faq-q {
        font-size: 16px;
    }

    .faq-a {
        font-size: 14px;
        padding-left: 0;
    }

    /* ================= CONTACT ================= */
    .contact-section {
        flex-direction: column;
    }
    .contact-left,
    .contact-right {
        width: 100%;
    }
    .contact-logo {
        position: static;
        margin: 30px auto;
        text-align: center;
    }
    .contact-logo img {
        max-width: 250px;
    }

    .contact-quote {
        font-size: 20px;
        padding-left: 0;
        text-align: center;
    }

    .contact-block h3 {
        font-size: 25px;
        text-align: left;
    }
  .contact-block p {
        font-size: 15px;
        text-align: left;
        padding-right: 0;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    .contact-footer {
        text-align: center;
        font-size: 13px;
    }
@media (max-width: 480px) {
    .brand img {
        max-width: 180px;
    }
}
}
/* ================= GLOBAL BUTTON FIX ================= */
.btn {
    display: inline-block;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

/* PRIMARY GREEN BUTTON */
.btn.green {
    background-color: #1f5b3d;
    color: #ffffff;
    border: 2px solid #1f5b3d;
}

.btn.green:hover {
    background-color: #17452e;
    border-color: #17452e;
}

/* OUTLINE BUTTON (GET IN TOUCH) */
.btn.outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn.outline:hover {
    background: #ffffff;
    color: #1f5b3d;
}
/* =================================================
   ✨ GLOBAL ANIMATIONS & TRANSITIONS (SAFE)
================================================= */

/* Smooth transitions everywhere */
* {
    transition: background-color 0.3s ease,
                color 0.3s ease,
                transform 0.3s ease,
                box-shadow 0.3s ease;
}

/* =================================================
   🔘 BUTTON ANIMATIONS (HERO + GLOBAL)
================================================= */

.btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

/* =================================================
   🧱 CARD HOVER ANIMATION (ALL CARDS)
================================================= */

.service-card,
.challenges-card,
.about-card,
.amc-card,
.faq-box {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover,
.challenges-card:hover,
.about-card:hover,
.amc-card:hover,
.faq-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* =================================================
   🌄 FADE-UP LOAD ANIMATION
================================================= */

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

.hero-content,
.challenges-card,
.about-card,
.services-title,
.services-grid,
.amc-section,
.faq-section,
.contact-section {
    animation: fadeUp 0.9s ease forwards;
}

/* =================================================
   🖼 IMAGE & ICON POLISH
================================================= */

img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

/* =================================================
   🔗 SOCIAL ICON MICRO-INTERACTION
================================================= */

.social-links img {
    transition: transform 0.25s ease;
}

.social-links img:hover {
    transform: scale(1.2) rotate(5deg);
}
