:root {
    --green: #438951;
    --light-green: #3a9c6f;
    --bg: #f8fcf8;
    --text: #1c1c1c;
}
html {
    scroll-behavior: smooth;
  }
  

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 80px;
    background-color: #f8fcf8;
}

.fade-zoom {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-zoom.show {
    opacity: 1;
    transform: scale(1);
}


.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

/* When visible */
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Delay helpers */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.5s;
}

.delay-4 {
    transition-delay: 0.9s;
}




.fade-up-seq {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-up-seq.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-seq:nth-child(1) {
    transition-delay: 0.2s;
}

.fade-up-seq:nth-child(2) {
    transition-delay: 0.4s;
}

.fade-up-seq:nth-child(3) {
    transition-delay: 0.6s;
}

.fade-up-seq:nth-child(4) {
    transition-delay: 0.8s;
}




/* ==== Fade Up Animation for Target Cards ==== */
.fade-up-target {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up-target.show {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered sequence for smooth cascading */
.fade-up-target:nth-child(1) {
    transition-delay: 0.1s;
}

.fade-up-target:nth-child(2) {
    transition-delay: 0.2s;
}

.fade-up-target:nth-child(3) {
    transition-delay: 0.4s;
}

.fade-up-target:nth-child(4) {
    transition-delay: 0.6s;
}




.logo {
    height: 65px;
}

.btn-top {
    background-color: var(--green);
    color: #fff;
    border: none;
    padding: 12px 5px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    margin-right: 3px;
    font-family: "Nobile", sans-serif;
    ;
}

.btn-top:hover {
    background-color: #24543f;
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #334D3A;
    cursor: pointer;
}

.close-icon {
    display: none;
}

.btn-outline {
    position: relative;
    padding: 10px 20px;
    background: transparent;
    cursor: pointer;
}

.btn-outline.tooltip::after {
    content: "support@transity.co";
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%) translateY(5px); 
    color: #6d6d6d;
    padding: 6px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 100;

    opacity: 0;
    pointer-events: none;
    transition: 
        opacity 0.3s ease-in-out,
        transform 0.3s ease-in-out;
}

/* Hover animation */
.btn-outline.tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0); 
}

  
.mobile-menu {
    display: none;
    background-color: #f8fcf8;
    padding: 10px 15px;
}

.btn-mobile {
    width: 100%;
    background-color: #3C6E47;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 992px) {
    header {
        padding: 12px 20px;
    }

    .btn-top {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu.show {
        display: block;
    }

    .menu-toggle.active .menu-icon {
        display: none;
    }

    .menu-toggle.active .close-icon {
        display: inline;
    }

    .hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 10px 30px;
        ;
    }
}


.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 28px;
    font-weight: 700;
    color: var(--green);
    width: 100%;
    height: 100%;
    max-width: 215px;
}

.logo span {
    color: var(--light-green);
}


@media (min-width: 992px) {
    .hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 18px 15px 0px 80px;
    }


}


.hero-text {
    flex: 1;
    max-width: 580px;
}

.hero-text h1 {
    font-family: "Fraunces", serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #3B4540;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-text p {
    font-size: 21.4px;
    color: #405449;
    margin-bottom: 30px;
    font-family: "Nobile", sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}



.btn-primary {
    background-color: #438951;
    color: #fff;
    border: none;
    padding: 12px 14px;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 19px;
    cursor: pointer;
    transition: background 0.3s;
}


.btn-primary:hover {
    background-color: #335B3D;
}

.btn-primary-2 {
    background-color: #438951;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 19px;
    cursor: pointer;
    transition: background 0.3s;
}


.btn-primary-2:hover {
    background-color: #335B3D;
}

.btn-outline {
    background: transparent;
    color: #3C6E47;
    border: 1.5px solid #3C6E47;
    padding: 12px 17px;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 19px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-outline:hover {
    color: #E8F1EA;
    background-color: #3C6E47;
}

.btn-primary:hover {
    background-color: #438951;
}


.btn-outline:hover {
    background-color: var(--green);
    color: #fff;
}


.hero-img {
    flex: 1;
    display: flex;
    justify-content: end;
    max-width: 440px;
}

.hero-img img {
    width: 100%;
    max-width: 445px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {



    body {
        padding: 5px;
    }

    .btn-top {
        margin-right: 0;
    }

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

    .hero-text {
        max-width: 100%;
        margin-left: 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;

    }

    .hero-buttons {
        justify-content: center;
    }
}


/* Why Section */
.why-section {
    padding: 80px 80px;
    background-color: var(--bg);

}

.why-section h2 {
    font-family: "Fraunces", serif;
    font-size: 46px;
    font-weight: 700;
    color: #3B4540;
    margin-bottom: 50px;
    text-align: left;
    line-height: 1.3;
}

.why-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 100%;
}

.why-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    margin-top: 20px;
}

.why-text {
    flex: 1;
    max-width: 630px;
    color: #3B4540;
    font-size: 19px;
    line-height: 1.7;
    font-family: "Nobile", sans-serif;
    margin-bottom: 20px;


}

.why-text p {
    margin-bottom: 18px;
}



/* Responsive */
@media (max-width: 900px) {
    .why-section {
        padding: 60px 30px;
    }

    .why-section h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
        text-align: center;
    }

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

    .why-text {
        max-width: 100%;
    }

    .why-image img {
        max-width: 320px;
        margin-top: 0px;
    }
}

@media (max-width: 1110px) {
    .why-stats {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        text-align: center;
        gap: 40px;
        margin-top: 25px;
        flex-wrap: wrap;
    }
}


@media (min-width: 1110px) {
    .why-stats {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        text-align: center;
        gap: 40px;
        margin-top: 25px;
        flex-wrap: wrap;
    }
}

/* Stats Row inside Why Section */


.stat-box {
    flex: 1;
    min-width: 290px;
    max-width: 320px;
}

.stat-box h3 {
    font-family: "Fraunces", serif;
    font-size: 62px;
    color: #405449;
    margin-bottom: 2px;
    font-weight: 700;
}

.stat-box h4 {
    font-family: "Fraunces", serif;
    font-size: 25px;
    color: #405449;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-box p {
    font-family: "Nobile", sans-serif;
    ;
    color: #405449;
    font-size: 17px;
}

@media (max-width: 900px) {
    .why-stats {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .stat-box h3 {
        font-size: 40px;
    }

    .stat-box h4 {
        font-size: 20px;
    }


}


.workflow-section {
    position: relative;
    background: url('assets/website.png') no-repeat center center;
    background-size: contain;
    /* show full image without cropping */
    background-color: #f8fcf8;
    /* optional fallback */
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    padding: 80px 80px;
    /* adjust based on your layout */
    text-align: center;
    color: #233322;
    overflow: visible;
    /* ensure no hidden parts */
}


.workflow-section .overlay {
    position: absolute;
    inset: 0;
    /* background-color: rgba(240, 248, 240, 0.85); */
    z-index: 1;
}

.workflow-section .content-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
}

.workflow-section h2 {
    font-family: "Fraunces", serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: left;
    color: #3B4540;
}

.workflow-section .intro {
    max-width: 100%;
    font-size: 1.1rem;
    color: #3B4540;
    text-align: left;
    font-family: "Nobile", sans-serif;

}


.workflow-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.workflow-card {
    text-align: left;
    width: 315px;
}

.icon-box {
    position: relative;
    width: 115%;
    right: 15px;
    height: 70px;
    background-color: #E8F3E8;
    clip-path: polygon(0% 0%,
            5% 0%,
            90% 0%,
            95% 50%,
            90% 100%,
            5% 100%,
            0% 100%,
            5% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.icon-box:hover {
    background-color: #d0e7d0;
    transform: scale(1.05);
}

.icon {
width: 40px;
    position: relative;
    z-index: 2;
}


.workflow-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3B4540;

}

.workflow-card p {
    font-family: "Nobile", sans-serif;

    font-size: 1.2rem;
    color: #444;
    line-height: 1.5;
}

.footer-text {
    font-family: "Nobile", sans-serif;
    text-align: left;
    font-size: 17.9px;
    color: #3B4540;
    font-weight: 400;

}

@media (max-width: 1024px) {
    .workflow-section {
        padding: 50px 60px;
    }

    .workflow-section h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .workflow-section .intro,
    .footer-text {
        text-align: center;
        font-size: 1.05rem;
        font-family: "Nobile", sans-serif;
        ;
    }

    .workflow-cards {
        gap: 25px;
    }

    .workflow-card {
        width: 260px;
    }

    .icon-box {
        width: 100%;
        right: 0;
    }

}



@media (max-width: 768px) {
    .workflow-section {
        padding: 40px 25px;
    }

    .workflow-section h2 {
        font-size: 1.8rem;
        line-height: 1.4;
        text-align: center;
    }

    .workflow-section .intro {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }

    .workflow-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 40px 0;
    }

    .workflow-card {
        width: 100%;
        max-width: 330px;
        text-align: center;
    }

    .icon-box {
        width: 90%;
        right: 0;
        margin: 0 auto 15px auto;
    }

    .workflow-card h3 {
        font-size: 1.3rem;
    }

    .workflow-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .footer-text {
        text-align: center;
        font-size: 1rem;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .workflow-section {
        padding: 30px 20px;
    }

    .workflow-section h2 {
        font-size: 1.6rem;
    }

    .workflow-card {
        max-width: 100%;
    }

    .icon-box {
        height: 60px;
    }

    .workflow-card p {
        font-size: 0.95rem;
    }
}


.core-features-section {
    background-color: #f8fff8;
    padding: 60px 78px;
    text-align: center;
    color: #1e3324;
}

.core-features-section .content-container {
    margin: 0 auto;
}

.core-features-section h2 {
    font-size: 2.7rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 32px;
    font-family: 'Fraunces', serif;
    text-align: left;
    color: #3B4540;
    letter-spacing: 0.5px;
}

/* === Feature Cards Grid === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.feature-card {
    text-align: left;
    padding: 20px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #fff;
    min-height: 200px;
}

/* Card Colors */
.feature-card:nth-child(1),
.feature-card:nth-child(3) {
    background-color: #438951;
}

.feature-card:nth-child(2),
.feature-card:nth-child(4) {
    background-color: #4A644E;
}

.feature-card:hover {
    transform: translateY(-5px);
    opacity: 0.95;
}

.feature-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-card ul {
    list-style-type: disc;
    padding-left: 18px;
    margin: 0;
}

.feature-card li {
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 200;
    font-family: "Nobile", sans-serif;
    ;
}


@media (max-width: 992px) {
    .core-features-section {
        padding: 80px 15px;
    }

    .core-features-section h2 {
        font-size: 2rem;
        padding: 0 40px;
    }

    .features-grid {
        width: 90%;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .core-features-section {
        padding: 60px 15px;
    }

    .core-features-section h2 {
        font-size: 1.7rem;
        padding: 0 10px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 18px;
    }

    .feature-card {
        min-height: auto;
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card li {
        font-size: 0.9rem;
    }
}

.collaboration-section {
    background-color: #D1E7D2;
    width: 100%;
    padding: 80px 80px 80px 80px;
    color: #405449;
}

.collab-heading h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 35px;
    text-align: left;
    width: 100%;
}

.collab-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.collab-text {
    flex: 1 1 50%;
    font-size: 1.4rem;
    line-height: 1.6;
    font-family: "Nobile", sans-serif;
    letter-spacing: 0.8px;
}

.collab-image {
    flex: 1 1 45%;
}

.collab-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

.ourbrand {
    margin-bottom: 10px;
}

.collaboration-features {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 80px;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 15px;
    align-items: start;
}

.feature-item .icon {
    width: 50px;
    line-height: 1;
    margin-top: 3px;
}

.feature-item h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    margin: 0;
    display: inline-block;
}

.feature-item p {
    font-family: "Nobile", sans-serif;
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 0;
}


@media (max-width: 992px) {
    .collaboration-section {
        padding: 50px 30px;
    }

    .collab-row {
        flex-direction: column;
        gap: 20px;
    }

    .collab-heading h2 {
        font-size: 2rem;
    }

    .collaboration-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collab-text {
        text-align: center;
        font-family: "Nobile", sans-serif;
        ;
    }
}



.target-customer-section {
    background-color: #438951;
    padding: 130px 30px;
    display: flex;
    justify-content: center;
}

.target-container {
    background-color: #ffffff;
    border-radius: 23px;
    padding: 40px 60px;
    box-shadow: 8px 8px 0px #4A644E;
    max-width: 100%;
    width: 100%;
    text-align: left;
}

.target-container h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #304b3a;
    letter-spacing: 0.5px;
}

.target-container p {
    color: #304b3a;
    font-size: 1.1rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    font-family: "Nobile", sans-serif;
    ;

}

.target-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
}

.target-card {
    background-color: #fafffa;
    border: 2px solid #d6e5d4;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.target-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.target-icon {
    background-color: #E8F3E8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-size: 1.6rem;
    color: #1f3a2e;
    margin-bottom: 15px;
}
.target-icon-smart{
    background-color: #E8F3E8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9%;
    height: 45px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: #1f3a2e;
    
}


.target-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #304b3a;
    margin-bottom: 10px;
    padding: 0px 15px;

}

.target-card p {
    font-size: 1.1rem;
    color: #304b3a;
    line-height: 1.5;
    padding: 0px 15px;
    letter-spacing: 0.1px;
}

#target-p {
    font-size: 1.2rem;
    color: #304b3a;
    line-height: 1.5;
    padding: 0px 15px;
    letter-spacing: 0.1px;
}


@media (max-width: 992px) {
    .target-customer-section {
        padding: 60px 25px;
    }

    .target-container {
        padding: 40px 25px;
    }

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

    .target-container h2 {
        font-size: 1.8rem;
    }
}


.success-section {
    background-color: #FAFFFA;
    padding: 80px 50px;
    color: #2f3b33;
    font-family: 'Inter', sans-serif;
}

.success-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 17px;
}

.success-section h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #3B4540;
    margin-bottom: 40px;
    text-align: left;
    line-height: 1.3;
    letter-spacing: 1px;
}

.success-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.success-card {
    background-color: #E8F3E8;
    border-radius: 12px;
    padding: 20px 22px;
    width: 334px;
    text-align: left;
    transition: transform 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
}

.success-icon {
    background-color: #4A644E;
    color: #fff;
    font-size: 1.6rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.success-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.7rem;
    color: #405449;
    margin-bottom: 10px;
    line-height: 1.3;
}

.success-card p {
    font-size: 1.1rem;
    color: #405449;
    font-family: "Nobile", sans-serif;
    line-height: 1.6;

}

blockquote {
    font-size: 1.1rem;
    color: #2c3a2e;
    border-left: 2px solid #438951;
    padding-left: 15px;
    letter-spacing: 0.3px;
    margin-top: 10px;
    font-family: "Nobile", sans-serif;

}

/* Fade-in from bottom animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
}

.success-card:nth-child(1) {
    animation-delay: 0.3s;
}

.success-card:nth-child(2) {
    animation-delay: 0.6s;
}

.success-card:nth-child(3) {
    animation-delay: 0.9s;
}


@media (max-width: 1024px) {
    .success-section {
        padding: 60px 60px;
    }

    .success-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .success-section {
        padding: 40px 25px;
    }

    .success-cards {
        flex-direction: column;
        align-items: center;
    }

    .success-card {
        width: 100%;
        max-width: 420px;
    }

    .success-section h2 {
        font-size: 2rem;
        text-align: center;
    }

    blockquote {
        text-align: center;
    }
}




.deployment-section {
    background-color: #D1E7D2;
    padding: 130px 40px;
    display: flex;
    justify-content: center;
}

.deployment-container {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 10px 10px 0 #4A644E;
    max-width: 100%;
    padding: 55px;
}

.deployment-container h2 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    color: #263b2f;
    font-size: 2.9rem;
    line-height: 1.3;
    margin-bottom: 30px;
}

.deployment-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0px;
    flex-wrap: wrap;
}

.deployment-text {
    flex: 1 1 55%;
}

.deployment-text h3 {
    color: #263b2f;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Fraunces', serif;
}

.deployment-text p {
    color: #334d3a;
    line-height: 1.6;
    font-size: 19px;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: "Nobile", sans-serif;

}

.deployment-image {
    flex: 1 1 45%;
    display: flex;
    justify-content: left;
    padding-left: 30px;
}

.deployment-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
}

.deployment-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
    margin-top: 15px;
}

.deployment-steps-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

@media (max-width: 992px) {

    .deployment-steps,
    .deployment-steps-row {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.step {
    display: flex;
    flex-direction: column;
}

.step-number {
    font-weight: 300;
    font-size: 1rem;
    color: #3B4540;
    margin-bottom: 5px;
    font-family: 'Fraunces', serif;
}


.step-line {
    height: 2px;
    background-color: #2e6630;
    width: 100%;
    margin-bottom: 10px;
}

.step h4 {
    font-weight: 700;
    color: #405449;
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-family: 'Fraunces', serif;
}

.step p {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #334d3a;
    line-height: 1.5;
}

.deployment-note {
    background-color: #CCE6D1;
    border-radius: 10px;
    padding: 20px;
    margin: 40px 0px 0px 0px;
    display: flex;
}

.deployment-note p {
    font-size: 1.1rem;
    margin-left: 10px;
    letter-spacing: 0.2px;
    font-family: "Nobile", sans-serif;
}

.deployment-note strong {
    font-size: 1.3rem;
    color: black;
}

@media (max-width: 768px) {
    .deployment-container {
        padding: 30px 20px;
    }

    .deployment-container h2 {
        text-align: center;
    }

    .deployment-content {
        flex-direction: column;
        align-items: center;
    }

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

    .deployment-image img {
        max-width: 280px;
    }
}


.digital-future {
    background-color: #F8FCF8;
    padding: 100px 80px;
    text-align: center;
}

.digital-future .container {
    max-width: 100%;
    margin: 0 auto;
}

.digital-future h2 {
    color: #263B2F;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    font-family: 'Fraunces', serif;
    text-align: left;
    letter-spacing: 0.5px;
}

.digital-future .description {
    color: #334D3A;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto 30px;
    text-align: left;
    font-family: "Nobile", sans-serif;
}

.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.timeline-top,
.timeline-bottom {

    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    display: flex;
    width: 95%;
    justify-content: space-between;
}

.timeline-item h4 {
    color: #405449;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-family: 'Fraunces', serif;
}

.timeline-item p {
    color: #334D3A;
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: "Nobile", sans-serif;

}

.minimal-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.timeline-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.timeline-line .line {
    flex: 1;
    height: 2px;
    background-color: #C7D8C7;
}

.circle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: #DCEBDD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #263B2F;
    font-family: 'Fraunces', serif;
}

.stem {
    width: 2px;
    height: 30px;
    background-color: #C7D8C7;
}

.circle-wrapper.top .stem {
    order: -1;
    margin-bottom: 5px;
}

.circle-wrapper.bottom .stem {
    order: 1;
    margin-top: 5px;
}


.sustainability-section {
    margin-top: 40px;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.sustainability-item h4 {
    color: #438951;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-align: left;
}

.sustainability-item p {
    color: #334D3A;
    line-height: 1.6;
    font-size: 1.2rem;
    text-align: left;
    font-family: "Nobile", sans-serif;

}

.sustainability-note {
    color: #334D3A;
    line-height: 1.7;
    margin: 0 auto;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    text-align: left;
    font-family: "Nobile", sans-serif;
}

.timeline-mobile {
    display: none;
}

@media (max-width: 992px) {
    .sustainability-item h4 {
        text-align: center;
    }

    .sustainability-item p {
        text-align: center;

    }

    .sustainability-note {

        text-align: center;
    }

    .sustainability-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .digital-future h2 {
        font-size: 1.8rem;
    }

    .digital-future .description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .timeline-line {
        flex-direction: column;
    }

    .timeline-line .line {
        width: 1px;
        height: 40px;
    }

    .circle-wrapper {
        margin: 10px 0;
    }
}

@media (max-width: 992px) {

    .digital-future {
        padding: 60px 15px;
    }

    .digital-future h2 {
        font-size: 1.7rem;
        text-align: center;
    }

    .digital-future .description {
        font-size: 0.95rem;
        margin-bottom: 40px;
        text-align: center;
    }

    .timeline-top,
    .timeline-bottom,
    .minimal-timeline {
        display: none;
    }

    .timeline-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 35px;
        width: 100%;
    }

    .mobile-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
    }

    .mobile-step::after {
        content: '';
        position: absolute;
        width: 2px;
        height: 40px;
        background-color: #C7D8C7;
        bottom: -40px;
    }

    .mobile-step:last-child::after {
        display: none;
    }

    .mobile-step .circle {
        width: 42px;
        height: 42px;
        border-radius: 8px;
        background-color: #DCEBDD;
        font-weight: 700;
        font-size: 1rem;
        color: #263B2F;
        margin-bottom: 10px;
    }

    .mobile-step h4 {
        color: #263B2F;
        font-weight: 700;
        font-size: 1.1rem;
        font-family: 'Fraunces', serif;
        margin-bottom: 6px;
    }

    .mobile-step p {
        color: #334D3A;
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 280px;
    }

    .demo-buttons {
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }
}

.demo-section {
    background-color: #FAFFFA;
    padding: 24px 60px;
}

/* ===== Container ===== */
.demo-section .container {
    max-width: 100%;
    margin: 0 auto;

}

/* ===== Heading (Two Separate Lines) ===== */
.demo-heading {
    color: #3B4540;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 2.3rem;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 45px;
    padding: 0px 15px;

}

.demo-heading .line-1,
.demo-heading .line-2 {
    display: block;
    font-size: 2.9rem;
    text-align: left;
}

/* ===== Content Layout ===== */
.demo-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding: 10px 15px;

}

/* ===== Left Side Image ===== */
.demo-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: start;
}

.demo-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ===== Right Side Text ===== */
.demo-text {
    flex: 1;
    min-width: 300px;
}

.demo-text h4 {
    color: #263B2F;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.demo-text p {
    color: #334D3A;
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 15px;
    font-family: "Nobile", sans-serif;
}

.demo-btn {
    background-color: #2F6E3D;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.demo-btn:hover {
    background-color: #265D33;
}


/* ===== Responsive ===== */
@media (max-width: 992px) {
    .demo-content {
        flex-direction: column;
        text-align: left;
    }

    .demo-image img {
        max-width: 380px;
    }

    .demo-heading {
        font-size: 1.8rem;
    }

    .demo-text h4 {
        font-size: 1.2rem;
    }

    .demo-btn {
        margin: 20px auto 0;
    }

    .demo-heading {

        padding: 0px 0px;

    }
}

@media (max-width: 600px) {
    .demo-heading {
        font-size: 1.6rem;
    }

    .demo-text p {
        font-size: 0.95rem;
    }
}

.demo-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    padding: 20px 15px;

}

.option-card {
    background-color: #fff;
    border: 2px solid #C7D8C7;
    border-radius: 10px;
    padding: 15px 15px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.option-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.icon {
    font-size: 1.3rem;
}

.option-header h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: #405449;
    font-weight: 700;
    margin: 0;
}

.option-card p {
    font-size: 17px;
    color: #334D3A;
    line-height: 1.6;
    letter-spacing: 0.5px;
    font-family: "Nobile", sans-serif;
}

/* Buttons */
.demo-buttons {
    padding: 0px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 25px;
}



.demo-footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.demo-footer {
    font-size: 1.1rem;
    color: #334D3A;
    line-height: 1.7;
    border-top: 3px solid #C7D8C7;
    border-bottom: 3px solid #C7D8C7;
    padding: 25px 0px;
    margin-top: 20px;
    letter-spacing: 0.2px;
    font-family: "Nobile", sans-serif;
}

@media (max-width: 992px) {
    .demo-options {
        grid-template-columns: 1fr;
    }

    .option-card {
        text-align: left;
    }

    .demo-section {
        background-color: #FAFFFA;
        padding: 24px 10px;
    }

    .demo-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
        padding: 0px 20px;

    }


}

@media (max-width: 900px) {
    .workflow-section h2 {
        font-size: 1.8rem;
    }

    .core-features-section h2 {
        font-size: 1.8rem;
    }

    .collab-heading h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .success-section h2 {
        font-size: 1.8rem;

    }

    .deployment-container h2 {
        font-size: 1.8rem;
    }

    .digital-future h2 {
        font-size: 1.8rem;

    }

    .demo-heading .line-1,
    .demo-heading .line-2 {
        font-size: 1.8rem;
        text-align: center;
    }


}

@media (min-width: 1600px) {

    .container,
    section,
    header,
    main,
    footer {
        max-width: 1400px;
        margin: 0 auto;
    }
}

.btn-link {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    padding: 12px 14px;
}

.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  text-decoration: none;
  color: inherit;
}
#schedule-btn a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;

}

a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none !important;
  outline: none !important;
}



.btn-outline-2 {
    background: transparent;
    color: #3C6E47;
    border: 1.5px solid #3C6E47;
    padding: 12px 17px;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 19px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-outline-2 a {
    color: #3C6E47;
    text-decoration: none;
}

.btn-outline-2:hover {
    background-color: var(--green);
    color: #fff;
}

/* Make link text white on hover */
.btn-outline-2:hover a {
    color: #fff;
}

.main-footer {
    width: 100%;    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #333;
    flex-wrap: wrap; 
    gap: 10px;

    background: #d2dfc6 ;
    padding: 10px 80px;

}

.footer-left {
    font-weight: 500;
    text-align: left;
    margin-top: 5px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 5px;

}

.footer-link {
    color: #3C6E47;
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-icon1,
.footer-icon2 {
    font-size: 24px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-icon1 {
    color: #FF0033; /* YouTube */
}

.footer-icon2 {
    color: #0A66C2; /* LinkedIn */
}

.footer-icon1:hover,
.footer-icon2:hover {
    opacity: 0.8;
}

/* 📱 Responsive for Tablets */
@media (max-width: 768px) {
    .main-footer {
        padding: 15px 40px;
        font-size: 15px;
    }
}

/* 📱 Responsive for Mobile */
@media (max-width: 576px) {
    .main-footer {
        flex-direction: column;
        text-align: center;
        padding: 20px 20px;
        gap: 15px;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-icon1,
    .footer-icon2 {
        font-size: 22px;
    }
}
