body {
    /*font-family: 'Inter', sans-serif;*/
}

h1,
h2,
h3 {
    font-weight: 600;
}

.nav-link.btn {
    border-radius: 30px;
}



/* Proven Section */

.proven-section {
    background: #fff;
}

.section-label {
    color: #7c5cc4;
    font-size: 14px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.section-title .highlight {
    color: #1f1f1f;
}

.section-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.check-item {
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-icon {
    color: #6c4ed9;
    font-weight: bold;
    font-size: 18px;
}

.logos-wrapper img {
    max-width: 100%;
    height: auto;
}

/* Responsive Adjustments */

@media (max-width: 991px) {
    .section-title {
        font-size: 28px;
    }
}



/* Platform Overview Section */

.platform-overview {
    background: #f4f1f8;
}

.section-title-large {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 10px;
}

.overview-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.overview-image {
    max-width: 100%;
}

/* Responsive */

@media (max-width: 991px) {

    .role-icon {
        position: relative !important;
    }

    .section-title-large {
        font-size: 28px;
    }

    .hero-navbar {
        opacity: 0 !important;
    }

}

/* Stakeholders Section */

.stakeholders-section {
    background: #fff;
}

.section-subtitle {
    max-width: 750px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
}

.stakeholder-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
    /* border: #aeadad 1px solid; */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stakeholder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    margin-bottom: 20px;
}

.icon-wrapper img {
    width: 60px;
    height: auto;
}

.stakeholder-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.stakeholder-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}



/* Regulated Markets Section */

.regulated-markets {
    background: #f4f1f8;
}

.market-card {
    background: #ffffff;
    padding: 30px 30px;
    border-radius: 18px;
    height: 100%;
    transition: all 0.3s ease;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.market-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.market-header img {
    width: 40px;
    height: auto;
}

.market-header h4 {
    font-weight: 700;
    margin: 0;
}

.market-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}



/* Ecosystem Section */

.ecosystem-section {
    background: #ffffff;
}

.ecosystem-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.ecosystem-logos img {
    max-height: 45px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.ecosystem-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.ecosystem-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

}

.ecosystem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ecosystem-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.ecosystem-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Final CTA Section */

.final-cta-section {
    background: #f4f1f8;
    position: relative;
}

.cta-image {
    max-width: 90%;
}

.btn-primary-custom {
    background: linear-gradient(90deg, #565ca2, #8d549e);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 2px solid #2b2b3a;
    color: #2b2b3a;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #2b2b3a;
    color: #ffffff;
}

/* Responsive */

@media (max-width: 991px) {
    .cta-buttons a {
        display: block;
        margin-bottom: 15px;
    }

    .cta-buttons a:last-child {
        margin-bottom: 0;
    }
}


/* Contact Section */

.contact-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-left {

    background: linear-gradient(90deg, #565ca2, #8d549e);
    color: #ffffff;
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
}

.contact-info .contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgb(239 239 239 / 49%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-right {
    background: #ffffff;
}

.custom-input {
    background: #f4f4f6;
    border: none;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
}

.custom-input:focus {
    box-shadow: none;
    border: 1px solid #6b4ed9;
}

.recaptcha-placeholder {
    background: #f4f4f6;
    padding: 20px;
    border-radius: 8px;
    color: #777;
}

/* Responsive */

@media (max-width: 991px) {
    .contact-left {
        text-align: center;
    }

    /* .contact-info .contact-item {
        justify-content: center;
    } */
}


/* Footer */

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #ffffff10;
    border: 1px solid #ffffff30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #6c5ce7;
    border-color: #6c5ce7;
    transform: translateY(-3px);
}

.main-footer {
    background: #eef2f7;
    position: relative;
}

/* Footer Top */



.footer-top {
    background: url('../images/footer-5.png') no-repeat center right;
    position: relative;
    overflow: hidden;
}

/* Background Image Layer */
.footer-top::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: url('../images/footer-5.png') no-repeat center right;
    background-size: contain;

    opacity: 0.15;
    /* control background visibility */
    z-index: 0;
}

/* Ensure content stays above background */
.footer-top .container {
    position: relative;
    z-index: 1;
}



.footer-logo {
    max-width: 200px;
}

.footer-about {
    color: #555;
    line-height: 1.8;
}

.footer-title {
    font-weight: 700;
}

.footer-contact-item {
    color: #444;
    font-size: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #6d589e;
    color: #ffffff;
}

/* Footer Bottom */

.footer-bottom {
    background: #e5e9f0;
    font-size: 14px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    margin: 0 8px;
}

.footer-links span {
    color: #87549e;
}

.footer-links a:hover {
    color: #6b4ed9;
}

/* Back To Top */

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #87549e;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.back-to-top:hover {
    background: #87549e;
}


/* ===============================
   HOME HERO SECTION
================================= */

.home-hero {
    background: url('../images/hero-bg.png') no-repeat center;
    position: relative;
    /* min-height: 80vh; */
    background: linear-gradient(180deg, #f3f4fa 0%, #eef1f8 100%);
    overflow: hidden;
    padding-bottom: 30px;
}

/* Optional subtle abstract background */
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') no-repeat center;
    background-size: cover;
    /* opacity: 0.15; */
    z-index: 0;
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

.hero-menu-bar {
    background: #fff;
    padding: 6px 26px 6px 10px;
}

/* HERO NAVBAR */

.hero-navbar {
    padding: 50px 0px 25px 0;
}

.hero-logo img {
    height: 55px;
}

.hero-menu ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.hero-menu a {
    text-decoration: none;
    font-weight: 600;
    color: #111;
    transition: 0.3s;
}

.hero-menu a.active,
.hero-menu a:hover {
    color: #96539e;
}

/* HERO CONTENT */

.hero-content {
    /* padding-top: 60px; */
}

.hero-title {
    font-weight: 800;
    line-height: 1.2;
    color: #0e1b2c;
}

.hero-title span {
    background: linear-gradient(90deg, #565ca2, #8d549e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-weight: 700;
    color: #565ca2;
    margin-top: 20px;
}

.hero-desc {
    margin-top: 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

/* BUTTONS */

.btn-outline-hero {
    border: 2px solid #565ca2;
    padding: 12px 24px;
    border-radius: 8px;
    color: #565ca2;
    font-weight: 600;
    text-decoration: none;
}

/* .btn-outline-hero:hover {
    background: #8d549e;
    color: #fff;
} */

.btn-primary-hero {
    background: linear-gradient(90deg, #565ca2, #8d549e);
    padding: 12px 24px;
    border-radius: 8px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
}

/* 
.btn.btn-primary-hero:hover {
    color: #cf98e3 !important;
} */

/* HERO IMAGE */

.hero-image {
    max-width: 100%;
    height: auto;
}

/* SCROLL INDICATOR */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid #6b4ed9;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 6px;
    height: 6px;
    background: #87549e;
    border-radius: 50%;
    animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-navbar {
        text-align: center;
    }
}



/* ==========================
   STICKY HEADER SYSTEM
========================== */

.main-header {
    position: fixed;
    top: -120px;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    z-index: 9999;
}

/* When visible */
.main-header.show {
    top: 0;
}

/* Inner pages always visible */
.inner-header {
    top: 0;
}

/* Layout */

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.header-logo img {
    height: 55px;
}

.header-menu ul {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu a {
    text-decoration: none;
    font-weight: 600;
    color: #111;
    transition: 0.3s;
}

.header-menu a.active,
.header-menu a:hover {
    color: #87549e;
}

/* ===============================
   MOBILE DOT TOGGLE
================================= */

.mobile-toggle {
    width: 30px;
    height: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 6px;
    height: 6px;
    background: #222;
    border-radius: 50%;
}

/* ===============================
   OFFCANVAS MENU
================================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
    z-index: 10000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu-content a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.mobile-menu-content a:hover {
    color: #87549e;
}

/* Overlay */

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.platform-hero {
    padding-top: 130px !important;
    background: #f3eeff;
}

.section-tag {
    font-size: 14px;
    letter-spacing: 1px;
    color: #7a60ff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-tag .line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6a00, #ff3c00);
}

.bg-light-purple {
    background: #f4f1fb;
}

.architecture-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-box {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 20px;
}







/*SOLUTIONS HERO */
.solutions-hero {
    padding-top: 130px !important;
    background: #f2edfe;
}

.hero-text {
    max-width: 820px;
    margin: auto;
}

/* SECTION TAG */
.section-tag {
    font-size: 14px;
    letter-spacing: 1px;
    color: #7a60ff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-tag .line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6a00, #ff3c00);
}

/* ROLE CARDS */
.solution-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    overflow: hidden;
    transition: 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
}

.solution-card ul {
    padding-left: 18px;
    margin-top: 10px;
}

.role-icon {
    position: absolute;
    right: 25px;
    bottom: 20px;
    width: 140px;
    /* opacity: 0.12; */
}

/* USE CASE SECTION */
.use-case-section {
    background: #f8f9fc;
}

.use-case-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-6px);
}

.usecase-icon {
    width: 60px;
}



/* HERO */
.gp-hero {
    padding-top: 130px !important;
    background: #f3eeff;
}

.gp-text {
    max-width: 850px;
}

/* CARD STYLE */
.gp-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.3s ease;
}

.gp-card:hover {
    transform: translateY(-6px);
}

.gp-large {
    min-height: 250px;
}

/* FLAG + HEADER */
.gp-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.flag {
    width: 40px;
    height: 26px;
    object-fit: cover;
    border-radius: 4px;
}

/* BADGE */
.gp-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(90deg, #6f42c1, #5e6ad2);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px;
}

/* CTA */
.gp-cta {
    background: #f8f9fc;
}

.gp-btn {
    background: linear-gradient(90deg, #565ca2, #8d549e);
    border: none;
    padding: 12px 28px;
    color: #fff;
    border-radius: 8px;
}

.gp-btn:hover {
    opacity: 0.9;
}



.about-hero {
    padding-top: 130px !important;
    background: #f4f1fb;
}

.about-text {
    max-width: 900px;
}

.about-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.light-bg {
    background: #f8f9fc;
}

.about-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.about-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6f42c1;
    font-weight: bold;
}



.contact-section {
    padding-top: 130px !important;
    padding-bottom: 80px !important;
}

/* =========================
   CONTACT FORM VALIDATION
========================= */

.field-error {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    min-height: 18px;
}

.custom-input.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15) !important;
}

.custom-input.is-invalid:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.contact-form-alert {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.55;
    animation: fadeInAlert 0.3s ease;
}

.contact-form-alert.alert-success {
    background-color: #d4edda;
    border: 1px solid #b4dfc4;
    color: #155724;
}

.contact-form-alert.alert-error {
    background-color: #f8d7da;
    border: 1px solid #f1aeb5;
    color: #721c24;
}

@keyframes fadeInAlert {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#captchaError {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
}

/* =========================
   THANK YOU PAGE
========================= */

.thank-you-section {
    min-height: 80vh;
    background: #f5f3fa;
    padding: 100px 0;
}

.thank-you-box {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 16px;
    max-width: 600px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.thank-icon {
    font-size: 60px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #7b4cff, #4a2dbb);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}


/* =====================
   FULL WIDTH GOOGLE MAP
===================== */

.gmap-full {
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 550px;
    border: 0;
    display: block;
}


.ecosystem-container {
    padding-top: 130px !important;
}