/* ================= HERO SECTION ================= */

.hero-section {
    position: relative;
    min-height: 630px;
    padding: 96px 0 100px;
    overflow: hidden;
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('./images/image2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 122, 10, 0.35) 30%,
            rgba(255, 255, 255, 0.2) 65%,
            rgba(255, 255, 255, 0.05) 100%);
    z-index: 2;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 3;
}

/* Typography */
.hero-highlight {
    font-size: 1.25rem;
    color: #79c480;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #f8fafc;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
}

/* Buttons */
.hero-btn-success {
    border-radius: unset;
    background-color: #79c480;
    border: none;
    color: #fff;
}

.hero-btn-secondary {
    border-radius: unset;
    color: #fff;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
    .hero-section {
        min-height: 560px;
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle,
    .hero-highlight {
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .btn {
        /* width: 100%; */
        padding: 14px 20px;
    }

    /* Strong overlay for mobile readability */
    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, .75) 0%,
                rgba(0, 0, 0, .6) 60%,
                rgba(0, 0, 0, .45) 100%);
    }
}



/* ================= WHO WE SERVE ================= */

.who-we-serve {
    background: #fff;
}

/* Header */
.serve-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    font-weight: 600;
    color: #111d15;
}

.serve-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    line-height: 1.6;
}

/* Cards */
.serve-card {
    border: 0.5px solid rgba(15, 23, 42, 0.2);
    background: #fff;
    display: flex;
    flex-direction: column;
}

.serve-card-img {
    height: 180px;
    background: rgba(14, 37, 18, 0.4);
}

.serve-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serve-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.serve-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111d15;
}

.serve-card-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button */
.btn-serve {
    border-radius: unset;
    border: 1px solid #666;
    font-size: 1rem;
    font-weight: 500;
    color: #111d15;
    padding: 10px 18px;
    align-self: flex-start;
}

.btn-serve:hover {
    background: #79c480;
    color: #fff;
    border-color: #79c480;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .serve-title {
        font-size: 2rem;
    }
}



/* ================= WHY STARDUST ================= */

.why-stardust-section {
    background: #fff;
}

/* Header */
.why-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    font-weight: 600;
    color: #111d15;
}

.why-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    line-height: 1.6;
}

/* Cards */
.why-card {
    border: 0.5px solid rgba(15, 23, 42, 0.2);
    background: #f9fff9;
    padding: 24px;
    height: 100%;
}

.why-icon i {
    font-size: 1.6rem;
    color: #79c480;
}

.why-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111d15;
    line-height: 1.25;
    margin-bottom: 10px;
}

.why-card-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
}

/* Center Image */
.why-main-img {
    width: 100%;
    height: 386px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .why-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .why-title {
        font-size: 2rem;
    }

    .why-stardust-section {
        text-align: center;
    }

    .why-card {
        text-align: left;
    }
}

/* < !-- Our Solution=================--> */



/* ======== Background Image + Green Overlay =========== */
.solutions-section {

    background-position: center;
    background-size: cover;
}

.solutions-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/our-solution.png');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.solutions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.757) 0%,
            /* Left: Strong Green */
            rgba(0, 122, 10, 0.258) 25%,
            rgba(0, 65, 8, 0.491) 45%,
            /* Mid: Medium Green */
            rgba(255, 255, 255, 0.2) 65%,
            /* Right: Light White */
            rgba(255, 255, 255, 0.05) 100%
            /* Right: Transparent */
        );
    z-index: -1;
}

/* Typography */
.solutions-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: #ffffff;
    z-index: 22;
}

.solutions-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgb(190, 190, 190);
    font-weight: 400;
    line-height: 1.6;
}

/* Solution Cards */
.solution-card {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);

    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    height: 100%;
    z-index: 3;
}


.solution-icon-container {
    display: flex;
    justify-content: flex-start;
}

.solution-icon-box {
    width: 70px;
    height: 70px;
    background: rgb(121, 196, 128);
    color: #000;

    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon-box {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgb(0, 0, 0);
    transform: scale(1.05);
    color: #000;
}

.solution-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.solution-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgb(122, 122, 122);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .solutions-section {
        min-height: auto;
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .solution-card {
        padding: 2rem 1.5rem;
    }

    .solution-icon-box {
        width: 60px;
        height: 60px;
    }
}


/* ================ Future Product ============ */

.featured-product-section {
    padding-top: 108px;
    padding-bottom: 105px;
}

/* Typography - Left Aligned */
.featured-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    /* 44px */
    font-weight: 600;
    color: #111d15;
    line-height: 1;
}

.featured-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    /* 16px */
    font-weight: 500;
    color: #666;
    line-height: 1.5;

}

.product-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111d15;
    line-height: 1;
}

.product-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    line-height: 1.5;
}

/* Divider Line */
.divider {
    width: 100%;
    height: 3px;
    background: #111d15;
}

/* Features List */
.feature-item i {
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.feature-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    /* 14px */
    font-weight: 500;
    color: #111d15;
    line-height: 1.5;
}

/* Button */
.btn-featured-product {
    width: 200px;
    height: 54px;
    background: #79c480;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: unset;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 17px 32px;
    transition: all 0.3s ease;
}

.btn-featured-product:hover {
    background: #6bb370;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(121, 196, 128, 0.4);
}

/* Image - EXACT Figma Borders */
.featured-product-image {
    width: 559px;
    height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-product-image img {
    width: 559px !important;
    height: 530px;
    object-fit: contain;
}

.image-borders {
    position: absolute;
    top: 0;
    left: 0;
    right: -20px;
    bottom: -20px;
    border-right: 20px solid #79c480;
    border-bottom: 20px solid #79c480;
    pointer-events: none;
    z-index: -1;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-product-section {
        padding: 80px 0;
    }

    .featured-title,
    .featured-subtitle,
    .product-desc {
        width: 100%;
    }

    .featured-product-image {
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }

    .featured-product-image img {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .featured-title {
        font-size: 2rem;
    }

    .col-lg-6 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}


/* =============== CTA SECTION ============ */



/* Full-Width Section */
.stardust-cta-hero {
    min-height: 320px;
    padding: 120px 0;
    display: flex;
    align-items: center;
}

/* Background Image */
.cta-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/cta-bg.png');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}



/* Main Heading - 44px + Highest Z-Index */
.cta-master-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    /* 44px max */
    font-weight: 700;
    color: #FFFFFF !important;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
    margin-bottom: 2.5rem;
}

@media (max-width: 992px) {

    .cta-master-title {
        font-size:18px;
    }
    .why-subtitle {
        font-size: 12px;
    }
}

/* CTA Button Hub */
.cta-action-hub {
    position: relative;
    z-index: 10;
}

/* Stardust CTA Button */
.btn-stardust-cta {
    background: #79C480;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;

    padding: 1.25rem 3rem;
    border-radius: unset;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-stardust-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.btn-stardust-cta:hover::before {
    left: 100%;
}

.btn-stardust-cta:hover {
    background: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    /* border-color: rgba(255, 255, 255, 0.5); */
    color: #000 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .stardust-cta-hero {
        min-height: 60vh;
        padding: 80px 0;
    }

    .cta-master-title {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .stardust-cta-hero {
        padding: 60px 0;
    }

    .btn-stardust-cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}


/* ================ Find US SEction ============  */


.find-us-section {
    background: #fff;
}

/* Left heading */
.findus-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: #111d15;
}

/* Cards */
.contact-card {
    background: #dedddd87;
    border: 1px solid #f0f0f0;
    padding: 20px 24px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #79c480;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    margin-right: 20px;
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #111d15;
}

.contact-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #555;
}

/* Right form side */
.form-mini-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.form-main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #111d15;
}

.form-helper {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
}

/* Inputs */
.contact-input {
    border: 1px solid #f0f0f0;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 12px 14px;
}

.contact-input:focus {
    border-color: #79c480;
    box-shadow: 0 0 0 0.15rem rgba(121, 196, 128, 0.15);
}

/* Button */
.btn-send {
    background: #79c480;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 0;
    border: none;
}

/* Responsive behaviour like design */
@media (max-width: 991.98px) {

    .findus-title,
    .form-main-title {
        font-size: 32px;
    }

    .contact-card {
        margin-bottom: 10px;
    }
}

@media (max-width: 575.98px) {
    .find-us-section {
        padding: 40px 15px;
    }
}


/* ============= footer Scetion ======  */

.site-footer {
    background: #0b2012;
    /* dark green like design */
    color: #ffffff;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #e5e5e5;
    line-height: 1.6;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #e5e5e5;
    text-decoration: none;
}

.footer-links a:hover {
    color: #79c480;
}

.footer-social {
    color: #ffffff;
    font-size: 18px;
}

.footer-social:hover {
    color: #79c480;
}

.footer-divider {
    border-color: #ffffff33;
}

.footer-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #cccccc;
}

/* responsive tweaks */
@media (max-width: 767.98px) {
    .site-footer {
        text-align: left;
    }

    .text-center .footer-copy {
        text-align: center;
    }
}


/* About page settings  */


.btn-featured-product2 {
    width: 200px;
    height: 54px;
    background: #79c480;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: unset;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    padding: 17px 32px;
    transition: all 0.3s ease;
}

.btn-featured-product2:hover {
    background: #6bb370;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(121, 196, 128, 0.4);
}

.about-hero {
    padding: 100px 220px;
}


@media (max-width: 991px) {
    .about-hero {
        padding: 0px;
    }
}



/* product==========================CSSS============= */

  .hero-section {
            position: relative;
            min-height: 630px;
            padding: 96px 0 100px;
            overflow: hidden;
        }

        /* Background Image */
        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            z-index: 1;
        }

        /* Product-specific background */
        .product-bg {
            background-image: url("images/productimg.png");
        }

        /* Dark green overlay */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(17, 53, 36, 0.75);
            z-index: 2;
        }

        .hero-content {
            z-index: 3;
            color: #ffffff;

            margin: 0 auto;
        }

        /* Product code */
        .product-code {
            font-size: 40px;
            letter-spacing: 2px;
            font-weight: 600;
            color: #7cc47f;
            text-transform: uppercase;
        }

        /* Main title */
        .hero-title {
            font-size: 40px;
            font-weight: 700;
            line-height: 1.7;
        }

        /* Description */
        .hero-subtitle {
            font-size: 16px;
            line-height: 1.7;
            color: #d6e6dd;
        }

        /* CTA Button */
        .btn-featured-product2 {
            background: #7cc47f;
            color: #0f2d1f;
            border-radius: 2px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-featured-product2:hover {
            background: #6ab86f;
            color: #0f2d1f;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                height: auto;
                padding: 120px 0 100px;
            }

            .product-code {
                font-size: 16px;
                letter-spacing: 2px;
                font-weight: 600;
                color: #7cc47f;
                text-transform: uppercase;
            }

            .hero-title {
                font-size: 16px;
            }

            .hero-subtitle {
                font-size: 16px;
                margin-bottom: 10px !important;
            }
        }



        /* //////////// what we do ////// */

          .what-we-do-section {
            background: #ffffff;
        }

        .what-title {
            font-size: 44px;
            font-weight: 600;
            color: #0f2d1f;
            margin-bottom: 16px;
        }

        .what-desc {
            font-size: 16px;
            line-height: 1.2;
            color: #5f6f66;
            max-width: 520px;
            margin-bottom: 25px;
        }

        .what-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .what-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: 16px;
            color: #1f3a2d;
            margin-bottom: 16px;
        }

        .what-list img {
            width: 22px;
            margin-top: 2px;
        }

        .what-image img {
            width: 100%;
            max-width: 480px;
            border-radius: 4px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        /* MOBILE */
        @media (max-width: 767px) {
            .what-title {
                font-size: 30px;
            }

            .what-desc {
                max-width: 100%;
            }

            .what-image img {
                max-width: 100%;
            }
        }

        /* core value ************************* */

         .core-systems-section {
            background: #f7fbf6;
        }

        .core-header h2 {
            font-size: 42px;
            font-weight: 700;
            color: #0f2d1f;
            margin-bottom: 6px;
        }

        .core-header p {
            font-size: 15px;
            color: #6b7f74;
        }

        .core-card {
            background: #ffffff;
            border: 1px solid #e3eee7;
            padding: 40px;
        }

        .core-card h3 {
            font-size: 26px;
            font-weight: 700;
            color: #0f2d1f;
            margin-bottom: 6px;
        }

        .core-card h4 {
            font-size: 18px;
            font-weight: 400;
            color: #6a9f78;
            margin-bottom: 18px;
        }

        .core-card ul {
            padding-left: 18px;
            margin: 0;
        }

        .core-card ul li {
            font-size: 15px;
            color: #2e3f36;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .core-img {
            width: 100%;
            max-width: 420px;
            border-radius: 4px;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .core-header h2 {
                font-size: 30px;
            }

            .core-card {
                padding: 25px;
            }

            .core-card h3 {
                font-size: 22px;
            }
        }


        /* ----=================inner page CSS ================ */

         /* HERO HEIGHT */
        .inner-hero {
            min-height: 420px;
            position: relative;
        }

        /* Background image */
        .central-bank-bg {
            background: url('images/service1.png');
            background-position: start;
            background-size: cover;
            background-repeat: no-repeat;
        }

        /* OVERLAP SECTION */
        .bank-support-wrapper {
            position: relative;
            margin-top: -160px;
            /* overlap amount */
            z-index: 5;
            padding-bottom: 80px;
        }

        /* White Box */
        .bank-support-box {
            background: #f6fbf5;
            padding: 70px 60px;
            border-radius: 6px;
        }

        /* Title */
        .support-main-title {
            font-size: 36px;
            font-weight: 700;
            color: #0f2f1e;
        }

        /* Cards */
        .support-card {
            background: #ffffff;
            border: 1px solid #e3efe5;
            border-radius: 6px;
            padding: 28px;
            display: flex;
            gap: 20px;
            height: 100%;
        }

        /* Icons */
        .support-icon {
            width: 46px;
            height: 46px;
            background: #e8f6ea;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2f8f4e;
            font-size: 22px;
            flex-shrink: 0;
        }

        /* Text */
        .support-card h5 {
            font-size: 18px;
            font-weight: 600;
            color: #0f2f1e;
            margin-bottom: 6px;
        }

        .support-card p {
            font-size: 14.5px;
            color: #5f6f66;
            line-height: 1.6;
            margin-bottom: 0;
        }

        @media (max-width: 768px) {

            .bank-support-wrapper {
                margin-top: -80px;
            }

            .bank-support-box {
                padding: 40px 25px;
            }

            .support-main-title {
                font-size: 26px;
            }

            .support-card {
                flex-direction: row;
            }
        }