:root {
    --primary: #0050ab;
    --accent: #08bd83;
    --white: #fff;
    --gradient: linear-gradient(135deg, #0a174e 0%, #1a2980 100%);
    --gradient-light: linear-gradient(135deg, #f5f7fa 0%, #e0e7ff 100%);
    --radius: 22px;
    --shadow: 0 8px 32px rgba(10,23,78,0.14);
    --shadow-lg: 0 16px 48px rgba(10,23,78,0.18);
}
* { box-sizing: border-box; }
body {
    font-family: 'Poppins', sans-serif;
    margin: 0; background: var(--gradient); color: var(--white);
    scroll-behavior: smooth;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
section {
    padding: 100px 0 90px 0;
    position: relative;
}
.container {
    width: 94%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
/* Section backgrounds */
.about, .modules, .contact {
    background: var(--gradient-light);
    color: #0a174e;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 60px;
}
.features {
    background: var(--gradient);
    color: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding-bottom: 140px;
}
.modules {
    background: var(--gradient-light);
    color: #0a174e;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 60px;
    padding-bottom: 140px;
}
.stats {
    background: #0a174e;
    color: #ffd700;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
/* Card and image enhancements */
.about-content, .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}
.about-text {
    flex: 1 1 380px;
    font-size: 1.15rem;
}
.about-images {
    flex: 1 1 420px;
    display: flex;
    gap: 32px;
}
.about-img-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 18px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
    min-width: 180px;
    min-height: 260px;
    position: relative;
}
.about-img-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 16px 48px rgba(10,23,78,0.18);
    z-index: 2;
}
.about-img-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 4px 18px rgba(10,23,78,0.10);
    transition: box-shadow 0.18s;
}
.about-img-card:hover img {
    box-shadow: 0 8px 32px rgba(10,23,78,0.18);
}
.chart-img {
    width: 100%;
    max-width: 340px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin: 18px auto 0 auto;
    box-shadow: 0 4px 18px rgba(10,23,78,0.10);
}
/* Modules Section */
.modules-title { text-align: center; font-size: 2.2rem; font-weight: 700; margin-bottom: 38px; }
.modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 36px; }
.module-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 38px 24px 28px 24px;
    text-align: center;
    transition: transform 0.22s cubic-bezier(.77,0,.18,1), box-shadow 0.22s;
    cursor: pointer;
    min-height: 220px;
    position: relative;
    will-change: transform, box-shadow;
}
.module-card:hover {
    transform: translateY(-16px) scale(1.07) rotate(-2deg);
    box-shadow: 0 20px 48px rgba(10,23,78,0.22);
    z-index: 3;
}
.module-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}
.module-title {
    font-weight: 700;
    font-size: 1.18rem;
    margin-bottom: 10px;
}
.module-card div:last-child {
    font-size: 1.01rem;
    color: #444;
}
/* Features Section */
.features-title { text-align: center; font-size: 2.2rem; font-weight: 700; margin-bottom: 38px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 36px; }
.feature-card {
    background: rgba(255,255,255,0.10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 38px 24px 28px 24px;
    text-align: center;
    transition: transform 0.22s cubic-bezier(.77,0,.18,1), box-shadow 0.22s;
    min-height: 220px;
    position: relative;
    will-change: transform, box-shadow;
}
.feature-card:hover {
    transform: translateY(-16px) scale(1.07) rotate(-2deg);
    box-shadow: 0 20px 48px rgba(10,23,78,0.22);
    z-index: 3;
}
.feature-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}
.feature-title {
    font-weight: 700;
    font-size: 1.18rem;
    margin-bottom: 10px;
}
.feature-card div:last-child {
    font-size: 1.01rem;
    color: #f7f7f7;
}
/* Statistics Section */
.stats-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 48px; }
.stat-card { min-width: 200px; background: rgba(255,255,255,0.10); border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px 24px; margin: 24px 0; }
.stat-number { font-size: 2.7rem; font-weight: 700; margin-bottom: 10px; }
.stat-label { font-size: 1.15rem; }
/* App from Play Store Section */
.app-section {
    background: var(--gradient-light);
    color: #0a174e;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 60px;
}
.app-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}
.app-left {
    flex: 1 1 380px;
}
.app-right {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
}
.app-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(10,23,78,0.06);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.app-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.app-sub {
    font-size: 1.02rem;
    margin-bottom: 14px;
}
.app-points {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}
.app-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.98rem;
    margin-bottom: 6px;
}
.app-points i {
    color: #0a174e;
    background: rgba(10,23,78,0.06);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
.app-playstore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 22px;
    background: #0f9d58;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(15,157,88,0.55);
    transition: transform 0.18s, box-shadow 0.18s;
}
.app-playstore-btn i {
    font-size: 1.3rem;
}
.app-playstore-btn span small {
    display: block;
    font-size: 0.65rem;
    line-height: 1.1;
}
.app-playstore-btn span {
    display: block;
    line-height: 1.1;
}
.app-playstore-btn:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 10px 30px rgba(15,157,88,0.65);
}
.app-phone-frame {
    width: 240px;
    height: 420px;
    border-radius: 40px;
    padding: 10px;
    background: linear-gradient(135deg,#0a174e,#1a2980);
    box-shadow: 0 20px 50px rgba(10,23,78,0.45);
}
.app-phone-inner {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: #050919;
    padding: 10px;
    display: flex;
    flex-direction: column;
}
.app-phone-status {
    height: 10px;
    border-radius: 999px;
    background: #111827;
    margin-bottom: 8px;
}
.app-phone-screen {
    flex: 1;
    border-radius: 22px;
    background: linear-gradient(160deg,#111827,#1f2937);
    padding: 12px 12px 10px 12px;
    display: flex;
    flex-direction: column;
    color: #e5e7eb;
    font-size: 0.8rem;
}
.app-phone-header {
    font-weight: 700;
    margin-bottom: 10px;
}
.app-phone-metrics {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}
.app-phone-metrics .label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}
.app-phone-metrics .value {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}
.app-phone-footer {
    margin-top: auto;
    font-size: 0.72rem;
    opacity: 0.8;
}
@media (max-width: 900px) {
    .app-grid {
        flex-direction: column;
        align-items: flex-start;
    }
    .app-right {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .app-title {
        font-size: 1.4rem;
    }
    .app-phone-frame {
        width: 200px;
        height: 360px;
    }
}
/* Portfolio Scroll Popup */
.portfolio-popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, rgba(255,215,0,0.16), transparent 55%),
                radial-gradient(circle at bottom right, rgba(10,23,78,0.55), rgba(10,23,78,0.95));
    padding: 16px;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-out;
}
.portfolio-popup-visible {
    opacity: 1;
    pointer-events: auto;
}
.portfolio-popup {
    width: 100%;
    max-width: 960px;
    background: #f5f7fa;
    border-radius: 24px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.45);
    padding: 22px 26px 24px 26px;
    position: relative;
    color: #0a174e;
}
.portfolio-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: rgba(10,23,78,0.06);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0a174e;
    transition: background 0.18s, transform 0.18s;
}
.portfolio-popup-close:hover {
    background: rgba(10,23,78,0.12);
    transform: scale(1.05);
}
.portfolio-popup-grid {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,1.1fr);
    gap: 26px;
    align-items: stretch;
}
.portfolio-popup-left {
    padding-right: 8px;
}
.portfolio-popup-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.portfolio-popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(255,215,0,0.18);
    color: #0a174e;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.portfolio-popup-title {
    font-size: 1.65rem;
    font-weight: 800;
    margin: 0 0 6px 0;
}
.portfolio-popup-sub {
    font-size: 0.98rem;
    margin: 0 0 14px 0;
    color: #1a2980;
}
.portfolio-popup-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.portfolio-popup-input-wrap {
    display: flex;
    align-items: center;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(10,23,78,0.16);
    padding: 4px 4px 4px 14px;
}
.portfolio-popup-country {
    font-weight: 600;
    color: #0a174e;
    font-size: 0.95rem;
    margin-right: 6px;
    border-right: 1px solid #dde3f3;
    padding-right: 8px;
}
.portfolio-popup-input-wrap input {
    border: none;
    outline: none;
    flex: 1;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.98rem;
    font-family: inherit;
}
.portfolio-popup-btn {
    border: none;
    border-radius: 999px;
    padding: 11px 22px;
    font-size: 0.98rem;
    font-weight: 700;
    background: linear-gradient(135deg,#0a174e 0%,#1a2980 100%);
    color: #ffd700;
    cursor: pointer;
    box-shadow: 0 8px 26px rgba(10,23,78,0.30);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: transform 0.18s, box-shadow 0.18s;
}
.portfolio-popup-btn:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 10px 30px rgba(10,23,78,0.35);
}
.portfolio-popup-help {
    font-size: 0.82rem;
    color: #4b567a;
}
.portfolio-input-error {
    box-shadow: 0 0 0 2px #ff4d4f !important;
}
.portfolio-app-card {
    background: linear-gradient(135deg,#0a174e 0%,#1a2980 100%);
    border-radius: 20px;
    padding: 16px 16px 14px 16px;
    color: #fffbe6;
    box-shadow: 0 10px 28px rgba(10,23,78,0.55);
}
.portfolio-app-tag {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.85;
    margin-bottom: 10px;
}
.portfolio-app-content {
    display: flex;
    gap: 12px;
    align-items: center;
}
.portfolio-app-phone-mock {
    width: 90px;
    height: 130px;
    border-radius: 22px;
    background: linear-gradient(145deg,#151f59,#24388a);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    gap: 4px;
}
.portfolio-app-phone-mock i {
    font-size: 1.8rem;
    color: #ffd700;
}
.portfolio-app-text {
    flex: 1;
    font-size: 0.9rem;
}
.portfolio-app-title {
    font-weight: 700;
    margin-bottom: 4px;
}
.portfolio-app-sub {
    font-size: 0.82rem;
    opacity: 0.92;
    margin-bottom: 8px;
}
.portfolio-playstore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 6px 14px;
    background: #0f9d58;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(15,157,88,0.55);
    transition: transform 0.18s, box-shadow 0.18s;
}
.portfolio-playstore-btn i {
    font-size: 1.1rem;
}
.portfolio-playstore-btn span small {
    display: block;
    font-size: 0.65rem;
    line-height: 1.1;
}
.portfolio-playstore-btn span {
    display: block;
    line-height: 1.1;
}
.portfolio-playstore-btn:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 24px rgba(15,157,88,0.65);
}
.portfolio-faq {
    background: #ffffff;
    border-radius: 18px;
    padding: 12px 14px 10px 14px;
    box-shadow: 0 4px 16px rgba(10,23,78,0.10);
}
.portfolio-faq-title {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #0a174e;
}
.portfolio-faq-item {
    margin-bottom: 4px;
}
.portfolio-faq-q {
    font-size: 0.86rem;
    font-weight: 600;
    color: #1a2980;
}
.portfolio-faq-a {
    font-size: 0.8rem;
    color: #4b567a;
}
@media (max-width: 900px) {
    .portfolio-popup {
        max-width: 96vw;
        padding: 18px 16px 18px 16px;
    }
    .portfolio-popup-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-popup-left {
        padding-right: 0;
    }
}
/* Popup Image Styles */
.popup-image-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 300px;
}

.popup-image-mobile {
    display: none;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.popup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.popup-image-desktop:hover .popup-img {
    transform: scale(1.03);
}

@media (max-width: 600px) {
    .popup-image-desktop {
        display: none;
    }
    
    .popup-image-mobile {
        display: block;
    }
    
    .portfolio-popup-title {
        font-size: 1.25rem;
    }
    .portfolio-popup-sub {
        font-size: 0.9rem;
    }
    .portfolio-app-phone-mock {
        width: 74px;
        height: 108px;
    }
}
/* Timed Marketing Popup */
.promo-popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.75);
    padding: 16px;
    z-index: 1300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-out;
}
.promo-popup-visible {
    opacity: 1;
    pointer-events: auto;
}
.promo-popup {
    width: 100%;
    max-width: 980px;
    background: linear-gradient(135deg,#ffd700 0%,#fef6d7 40%,#ffffff 100%);
    border-radius: 26px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.55);
    padding: 26px 30px 26px 30px;
    position: relative;
    color: #0a174e;
}
.promo-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: rgba(10,23,78,0.06);
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0a174e;
    transition: background 0.18s, transform 0.18s;
}
.promo-popup-close:hover {
    background: rgba(10,23,78,0.12);
    transform: scale(1.05);
}
.promo-popup-content {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
    gap: 26px;
    align-items: center;
}
.promo-text {
    padding-right: 10px;
}
.promo-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(10,23,78,0.08);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.promo-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 6px 0;
}
.promo-sub {
    font-size: 1rem;
    margin: 0 0 12px 0;
    color: #1a2980;
}
.promo-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}
.promo-metric-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.75;
}
.promo-metric-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
}
.promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg,#0a174e 0%,#1a2980 100%);
    color: #ffd700;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(10,23,78,0.65);
    transition: transform 0.18s, box-shadow 0.18s;
}
.promo-cta:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 16px 40px rgba(10,23,78,0.75);
}
.promo-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.promo-card-main {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(10,23,78,0.25);
    padding: 14px 16px 12px 16px;
    min-width: 0;
}
.promo-card-header {
    font-weight: 700;
    margin-bottom: 8px;
}
.promo-card-body {
    font-size: 0.86rem;
}
.promo-row {
    display: grid;
    grid-template-columns: 1.4fr 0.5fr 0.8fr;
    gap: 6px;
    padding: 4px 0;
    border-bottom: 1px dashed #e2e8f0;
}
.promo-row span:last-child {
    text-align: right;
}
.promo-total {
    padding-top: 8px;
    font-size: 0.9rem;
}
.promo-logo-tag {
    font-size: 0.8rem;
    opacity: 0.8;
    text-align: right;
}
@media (max-width: 900px) {
    .promo-popup-content {
        grid-template-columns: 1fr;
    }
    .promo-text {
        padding-right: 0;
    }
}
@media (max-width: 600px) {
    .promo-title {
        font-size: 1.4rem;
    }
}

/* FAQ Section - Vertical Accordion */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    overflow: hidden;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: #0a174e;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    color: #0a174e;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 10px auto 0;
    border-radius: 2px;
}

.faq-sub {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 23, 78, 0.1);
}

.faq-item {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* FAQ Header */
.faq-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.faq-sub {
    text-align: center;
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* FAQ Grid */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(10, 23, 78, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 23, 78, 0.12);
}

/* FAQ Question */
.faq-q {
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq-q::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    background: rgba(255, 215, 0, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.open .faq-q {
    color: var(--primary);
    background-color: #f8fafc;
}

.faq-item.open .faq-q::after {
    content: '−';
    background: var(--accent);
    color: white;
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    margin: 0;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-10px);
    border-top: 1px solid transparent;
}

.faq-item.open .faq-a {
    max-height: 500px;
    padding: 0 25px 25px;
    opacity: 1;
    transform: translateY(0);
    border-top: 1px solid #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-sub {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .faq-q {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-a {
        font-size: 0.95rem;
        padding: 0 20px !important;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.faq-q {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a174e;
    padding: 20px 60px 20px 25px;
    margin: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-q:hover {
    background-color: #f7fafc;
}

.faq-q::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
    border-radius: 50%;
    color: #0a174e;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-item.open .faq-q::after {
    content: '−';
    background: var(--accent);
    color: #fff;
}

.faq-a {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    margin: 0;
    opacity: 0;
}

.faq-item.open .faq-a {
    padding: 0 25px 25px;
    max-height: 500px;
    opacity: 1;
    margin-top: -5px;
}

/* Add a subtle animation when opening/closing */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item.open .faq-a {
    animation: fadeIn 0.3s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-q {
        font-size: 1rem;
        padding: 18px 50px 18px 20px;
    }
    
    .faq-q::after {
        right: 15px;
        width: 22px;
        height: 22px;
        font-size: 1.1rem;
    }
    
    .faq-a {
        font-size: 0.9rem;
        padding: 0 20px !important;
    }
    
    .faq-item.open .faq-a {
        padding: 0 20px 20px !important;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.6rem;
    }
    
    .faq-sub {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .faq-q {
        padding: 16px 45px 16px 16px;
    }
    
    .faq-q::after {
        right: 12px;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    margin-top: 2px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 23, 78, 0.95);
    box-shadow: var(--shadow);
    transition: 0.3s all;
}

.navbar.shrink {
    padding: 10px 0;
    background: #0a174e;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 100%;
    position: relative;
}

.navbar-left,
.navbar-center,
.navbar-right {
    display: flex;
    align-items: center;
}

.navbar-center {
    flex: 1;
    justify-content: center;
}

.navbar-right {
    justify-content: flex-end;
}

.navbar-logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    white-space: nowrap;
}

.navbar-logo i {
    color: var(--accent);
}

.navbar-logo-img {
    height: 36px;
    width: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.navbar-logo:hover .navbar-logo-img {
    transform: rotate(5deg);
}

/* Navigation Menu */
.navbar-menu {
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-menu a {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--accent);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    width: 100%;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 12px;
    margin-left: 24px;
}

.btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-login {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-register {
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
}

.btn-register:hover {
    background: #ffea00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 16px;
}

/* Mobile Styles */
@media (max-width: 992px) {
    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a174e;
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
        margin: 0;
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.open {
        display: flex;
    }

    .navbar-menu a {
        padding: 14px 24px;
        display: block;
        width: 100%;
        box-sizing: border-box;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-menu a:last-child {
        border-bottom: none;
    }

    .navbar-menu a:hover,
    .navbar-menu a.active {
        background: rgba(255, 255, 255, 0.1);
    }

    .navbar-menu a::after {
        display: none;
    }

    .auth-buttons {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #0a1f5c;
        padding: 16px 24px;
        margin: 0;
        justify-content: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-menu.open + .auth-buttons {
        display: flex;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-logo-img {
        height: 28px;
    }

    .navbar-logo {
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .navbar .container {
        padding: 8px 12px;
    }

    .navbar-logo {
        font-size: 0.8rem;
    }

    .navbar-logo-img {
        height: 24px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--gradient); }
.hero-content { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 40px; }
.hero-text { flex: 1 1 350px; }
.hero-title { font-size: 2.8rem; font-weight: 700; margin-bottom: 18px; }
.hero-sub { font-size: 1.2rem; margin-bottom: 32px; }
.hero-cta { background: var(--accent); color: #0a174e; font-weight: 700; padding: 16px 36px; border-radius: var(--radius); font-size: 1.1rem; box-shadow: var(--shadow); border: none; cursor: pointer; transition: 0.2s; }
.hero-cta:hover { background: #ffe066; }
.hero-lottie { flex: 1 1 350px; min-width: 320px; }
/* Contact Section */
.contact-form { flex: 1 1 320px; }
.contact-form form { display: flex; flex-direction: column; gap: 18px; }
.contact-form input, .contact-form textarea { padding: 14px; border-radius: var(--radius); border: 1px solid #e0e0e0; font-size: 1rem; }
.contact-form button { background: var(--accent); color: #0a174e; font-weight: 700; padding: 14px; border-radius: var(--radius); border: none; cursor: pointer; transition: 0.2s; }
.contact-form button:hover { background: #ffe066; }
.contact-info { flex: 1 1 320px; display: flex; flex-direction: column; gap: 18px; }
.contact-info .contact-icon { font-size: 2.5rem; color: var(--accent); }
.contact-info .contact-number { font-size: 1.2rem; font-weight: 600; }
.contact-info .contact-locations { font-size: 1rem; }
.whatsapp-btn { background: #25d366; color: #fff; font-weight: 700; padding: 12px 24px; border-radius: var(--radius); display: inline-flex; align-items: center; gap: 10px; border: none; font-size: 1.1rem; margin-bottom: 18px; transition: 0.2s; }
.whatsapp-btn:hover { background: #1ebe57; }
/* Footer */
footer { background: #0a174e; color: #fff; padding: 60px 0 20px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-col h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #fff; opacity: 0.85; transition: 0.2s; }
.footer-col ul li a:hover { color: var(--accent); opacity: 1; }
.footer-social { display: flex; gap: 18px; margin-top: 10px; }
.footer-social a { color: #fff; font-size: 1.3rem; transition: 0.2s; }
.footer-social a:hover { color: var(--accent); }
.footer-bottom { text-align: center; font-size: 0.95rem; opacity: 0.8; }
/* Responsive */
@media (max-width: 900px) {
    .container { max-width: 98vw; }
    .about-content, .contact-content { gap: 32px; }
    .about-images { gap: 16px; }
    .modules-grid, .features-grid { gap: 18px; }
}
@media (max-width: 700px) {
    .hero-content, .about-content, .contact-content { flex-direction: column; text-align: center; }
    .about-images { flex-direction: column; }
    .contact-info { align-items: center; }
    section { padding: 60px 0 50px 0; }
}
@media (max-width: 500px) {
    .hero-title { font-size: 2rem; }
    .modules-title, .features-title { font-size: 1.3rem; }
    .about-img-card img, .chart-img { width: 90px; height: 90px; }
}

/* Enhanced About Section Styling for SaaS */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 32px 0;
}
.about-text {
    flex: 1 1 420px;
    font-size: 1.18rem;
    line-height: 1.7;
    color: #0a174e;
    font-weight: 500;
    padding-right: 18px;
}
.about-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--primary);
}
.about-text ul li {
    font-size: 1.08rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.about-images {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 420px;
    min-width: 220px;
}
.about-img-card {
    background: linear-gradient(135deg,#e0e7ff 0%,#f5f7fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(10,23,78,0.10);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 0 18px 0;
    transition: box-shadow 0.18s, transform 0.18s;
    position: relative;
}
.about-img-card:hover {
    box-shadow: 0 16px 48px rgba(10,23,78,0.18);
    transform: translateY(-6px) scale(1.03);
    z-index: 2;
}
.about-img-card div:first-child {
    width: 100px;
    height: 80px;
    background: #e9ecef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #b0b0b0;
    font-weight: 600;
    margin-bottom: 0;
    border: 1.5px dashed #c7d0e0;
    letter-spacing: 0.02em;
}
.about-img-card div:last-child {
    font-weight: 600;
    margin-top: 10px;
    color: var(--primary);
    font-size: 1.08rem;
}
@media (max-width: 900px) {
    .about-content { gap: 32px; }
    .about-text { padding-right: 0; }
    .about-images { max-width: 100%; }
}
@media (max-width: 700px) {
    .about-content { flex-direction: column; align-items: stretch; padding: 18px 0; }
    .about-images { flex-direction: row; gap: 12px; justify-content: center; }
    .about-img-card { min-width: 120px; padding: 18px 0 12px 0; }
}
@media (max-width: 500px) {
    .about-text h2 { font-size: 1.3rem; }
    .about-img-card div:first-child { width: 70px; height: 50px; font-size: 0.95rem; }
    .about-img-card { min-width: 80px; }
}

/* SaaS About Section Enhanced Styles */
.about-headline {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary);
    letter-spacing: -1px;
}
.about-subheadline {
    font-size: 1.18rem;
    line-height: 1.7;
    color: #0a174e;
    margin-bottom: 18px;
    font-weight: 500;
}
.about-feature-list {
    margin-bottom: 18px;
    padding-left: 0;
    list-style: none;
}
.about-feature-list li {
    font-size: 1.08rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #1a2980;
}
.about-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg,#ffd700 60%,#fffbe6 100%);
    color: #0a174e;
    border-radius: 50%;
    font-size: 1.18rem;
    margin-right: 12px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.08);
}
.about-summary {
    font-size: 1.09rem;
    opacity: 0.88;
    margin-top: 10px;
    color: #0a174e;
    font-weight: 600;
}
.about-saas-ref {
    margin-top: 28px;
    font-size: 1.01rem;
    opacity: 0.7;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.about-images {
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 420px;
    min-width: 220px;
    align-items: stretch;
    justify-content: flex-start;
}
.about-img-card {
    background: linear-gradient(135deg,#e0e7ff 0%,#f5f7fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(10,23,78,0.10);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 0 18px 0;
    transition: box-shadow 0.18s, transform 0.18s;
    position: relative;
}
.about-img-card:hover {
    box-shadow: 0 16px 48px rgba(10,23,78,0.18);
    transform: translateY(-6px) scale(1.03);
    z-index: 2;
}
.about-img-placeholder {
    width: 90px;
    height: 90px;
    background: #e9ecef;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #b0b0b0;
    font-weight: 600;
    margin-bottom: 0;
    border: 2px dashed #c7d0e0;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}
.about-img-label {
    font-weight: 700;
    margin-top: 10px;
    color: var(--primary);
    font-size: 1.13rem;
    letter-spacing: 0.01em;
}
@media (max-width: 900px) {
    .about-content { gap: 32px; }
    .about-text { padding-right: 0; }
    .about-images { max-width: 100%; }
}
@media (max-width: 700px) {
    .about-content { flex-direction: column; align-items: stretch; padding: 18px 0; }
    .about-images { flex-direction: row; gap: 12px; justify-content: center; }
    .about-img-card { min-width: 120px; padding: 18px 0 12px 0; }
}
@media (max-width: 500px) {
    .about-headline { font-size: 1.3rem; }
    .about-img-placeholder { width: 60px; height: 60px; font-size: 1.2rem; }
    .about-img-card { min-width: 80px; }
}

/* === Custom Background Overlays === */
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg,rgba(10,23,78,0.82) 0%,rgba(26,41,128,0.82) 100%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
}
.about-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg,rgba(245,247,250,0.92) 0%,rgba(224,231,255,0.92) 100%);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: lighten;
}
.hero, .about {
    position: relative;
    overflow: hidden;
}
.hero-content, .about-content {
    position: relative;
    z-index: 2;
}

/* === SVG Wave Transitions === */
.section-wave-bottom {
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    width: 100%;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}

/* === Vector & Illustration Styling === */
.hero-vector, .about-vector, .feature-vector, .contact-vector {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(10,23,78,0.13);
    border-radius: 18px;
    transition: box-shadow 0.18s, transform 0.18s;
    background: #fff;
}
.hero-vector:hover, .about-vector:hover, .feature-vector:hover, .contact-vector:hover {
    box-shadow: 0 16px 48px rgba(10,23,78,0.18);
    transform: translateY(-6px) scale(1.04);
    z-index: 2;
}
.hero-vector, .about-vector, .feature-vector, .contact-vector {
    filter: drop-shadow(0 2px 8px rgba(10,23,78,0.08));
}

/* === Responsive Vector Sizing === */
.hero-vector { width: 340px; max-width: 95vw; }
.about-vector { width: 220px; max-width: 90vw; margin-bottom: 18px; }
.feature-vector { width: 120px; max-width: 80vw; margin: 18px auto 0 auto; }
.contact-vector { width: 90px; max-width: 60vw; margin-top: 18px; }
@media (max-width: 900px) {
    .hero-vector { width: 220px; }
    .about-vector { width: 140px; }
    .feature-vector { width: 80px; }
}
@media (max-width: 700px) {
    .hero-vector { width: 160px; }
    .about-vector { width: 100px; }
    .feature-vector { width: 60px; }
    .contact-vector { width: 60px; }
}

/* === AOS Animation Enhancements === */
.aos-animate[data-aos] {
    will-change: transform, opacity;
    transition: all 0.7s cubic-bezier(.77,0,.18,1);
}

/* === Section Z-Index Fixes for Waves === */
.hero, .about, .features {
    z-index: 10;
}
.section-wave-bottom svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* === Ensure All Images Are Retina-Ready === */
img.hero-vector, img.about-vector, img.feature-vector, img.contact-vector {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

/* === Redesigned About Section Grid === */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
    flex: 1 1 420px;
    max-width: 440px;
    min-width: 220px;
    align-items: stretch;
    justify-content: center;
}
.about-card {
    background: linear-gradient(135deg,#e0e7ff 0%,#f5f7fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(10,23,78,0.10);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 18px 18px 18px;
    transition: box-shadow 0.18s, transform 0.18s;
    position: relative;
    text-align: center;
}
.about-card:hover {
    box-shadow: 0 16px 48px rgba(10,23,78,0.18);
    transform: translateY(-6px) scale(1.04);
    z-index: 2;
}
.about-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#ffd700 60%,#fffbe6 100%);
    color: #0a174e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.08);
}
.about-card-title {
    font-weight: 700;
    margin-top: 6px;
    color: var(--primary);
    font-size: 1.13rem;
    letter-spacing: 0.01em;
}
.about-card-desc {
    font-size: 1.01rem;
    color: #1a2980;
    margin-top: 6px;
    opacity: 0.85;
}
@media (max-width: 900px) {
    .about-grid { max-width: 100%; }
}
@media (max-width: 700px) {
    .about-content { flex-direction: column; align-items: stretch; padding: 18px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 18px; justify-items: center; }
    .about-card { min-width: 180px; }
}
@media (max-width: 500px) {
    .about-card-icon { width: 40px; height: 40px; font-size: 1.2rem; }
    .about-card { min-width: 100px; padding: 12px 0 8px 0; }
    .about-card-title { font-size: 1rem; }
}

/* About intro style */
.about-intro {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
}

/* === Redesigned Contact Section === */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0 10px 0;
    min-height: 0;
}
.contact-left {
    flex: 1 1 340px;
    min-width: 280px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-headline {
    font-size: 2rem;
    margin-bottom: 4px;
}
.contact-subheadline {
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.contact-card {
    padding: 20px 16px 16px 16px;
    gap: 12px;
}
.contact-card form {
    gap: 10px;
}
.contact-card input, .contact-card textarea {
    padding: 10px;
    border-radius: 10px;
    font-size: 0.98rem;
}
.contact-card button[type="submit"] {
    padding: 10px;
    font-size: 1rem;
}
.contact-right {
    flex: 1 1 260px;
    min-width: 180px;
    max-width: 320px;
    gap: 14px;
}
.contact-graphic {
    width: 80px;
    height: 80px;
    font-size: 2.2rem;
    margin-bottom: 4px;
}
.contact-icon-cards {
    gap: 10px;
}
.contact-icon-card {
    gap: 10px;
    padding: 10px 10px 8px 10px;
    min-height: 48px;
}
.contact-icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
}
.contact-info-main {
    font-size: 1rem;
}
.contact-info-label {
    font-size: 0.92rem;
}
.contact-fast-response {
    margin-top: 8px;
    font-size: 0.98rem;
}
@media (max-width: 900px) {
    .contact-grid { gap: 16px; }
    .contact-left, .contact-right { max-width: 100%; }
}
@media (max-width: 700px) {
    .contact-grid { flex-direction: column; align-items: stretch; padding: 10px 0 4px 0; }
    .contact-left, .contact-right { align-items: center; }
    .contact-card { width: 100%; }
    .contact-icon-cards { flex-direction: row; gap: 6px; justify-content: center; }
    .contact-icon-card { flex-direction: column; align-items: center; min-width: 80px; padding: 8px 4px; }
}
@media (max-width: 500px) {
    .contact-headline { font-size: 1.1rem; }
    .contact-graphic { width: 48px; height: 48px; font-size: 1rem; }
    .contact-icon { width: 20px; height: 20px; font-size: 0.8rem; }
    .contact-icon-card { min-width: 40px; }
}

/* === Enhanced Contact Section Visuals === */
.contact-enhanced {
    background: linear-gradient(135deg, #f5f7fa 60%, #e0e7ff 100%);
    box-shadow: 0 12px 48px rgba(10,23,78,0.10);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}
.contact-bg-svg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120px;
    z-index: 1;
    pointer-events: none;
}
.contact-grid {
    position: relative;
    z-index: 2;
}
.contact-accent-bar {
    width: 6px;
    height: 38px;
    background: linear-gradient(135deg, #ffd700 60%, #fffbe6 100%);
    border-radius: 8px;
    margin-bottom: 8px;
    display: inline-block;
}
.contact-headline {
    display: inline-block;
    position: relative;
    z-index: 2;
}
.contact-card-float {
    box-shadow: 0 8px 32px rgba(10,23,78,0.18);
    position: relative;
    top: -10px;
    z-index: 3;
    border: 1.5px solid #e0e7ff;
}
.contact-right-float {
    position: relative;
    top: 10px;
    z-index: 3;
}
.whatsapp-btn-animate {
    position: relative;
    overflow: visible;
    transition: transform 0.18s, box-shadow 0.18s;
}
.whatsapp-btn-animate:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(37,211,102,0.18);
}
.whatsapp-badge {
    background: #25d366;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 2px 8px;
    margin-left: 10px;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(37,211,102,0.10);
    position: absolute;
    right: -38px;
    top: 50%;
    transform: translateY(-50%);
}
.contact-graphic-glow {
    box-shadow: 0 0 0 0 #ffd700, 0 0 32px 8px #ffd70033;
    animation: contact-glow 1.8s infinite alternate;
}
@keyframes contact-glow {
    0% { box-shadow: 0 0 0 0 #ffd700, 0 0 32px 8px #ffd70033; }
    100% { box-shadow: 0 0 0 8px #ffd70044, 0 0 48px 16px #ffd70044; }
}
.contact-fast-response-badge {
    display: inline-block;
    background: linear-gradient(135deg,#ffd700 60%,#fffbe6 100%);
    color: #0a174e;
    font-weight: 700;
    border-radius: 12px;
    padding: 6px 18px;
    font-size: 1.01rem;
    box-shadow: 0 2px 8px rgba(255,215,0,0.10);
    margin-top: 12px;
    letter-spacing: 0.01em;
}
.contact-24-7 {
    background: #ffd700;
    color: #0a174e;
    font-weight: 700;
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.92em;
    margin-left: 4px;
}
@media (max-width: 900px) {
    .contact-enhanced { border-radius: 18px; }
    .contact-bg-svg { height: 80px; }
}
@media (max-width: 700px) {
    .contact-enhanced { border-radius: 10px; }
    .contact-bg-svg { height: 40px; }
    .contact-accent-bar { height: 24px; }
    .contact-fast-response-badge { padding: 4px 10px; font-size: 0.92rem; }
    .whatsapp-badge { right: -24px; font-size: 0.7rem; }
}

/* === CTA Enquire Section Styles === */
.cta-enquire {
    position: relative;
    background: linear-gradient(135deg, #ffd700 0%, #f5f7fa 100%);
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 60px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-enquire-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    position: relative;
    z-index: 2;
}
.cta-enquire-headline {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0a174e;
    margin-bottom: 18px;
    text-align: center;
}
.cta-enquire-sub {
    font-size: 1.25rem;
    color: #1a2980;
    margin-bottom: 32px;
    text-align: center;
    max-width: 600px;
}
.cta-enquire-btn {
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 18px 48px;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(10,23,78,0.13);
    text-decoration: none;
    transition: background 0.2s, transform 0.18s;
    display: inline-block;
}
.cta-enquire-btn:hover {
    background: #1ebe57;
    transform: scale(1.05);
}
.section-wave-top {
    position: absolute;
    left: 0; right: 0; top: -1px;
    width: 100%;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}
@media (max-width: 700px) {
    .cta-enquire-headline { font-size: 1.3rem; }
    .cta-enquire-content { min-height: 220px; }
    .cta-enquire-btn { font-size: 1rem; padding: 12px 24px; }
}

/* === Animated Floating Shapes === */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    z-index: 2;
    pointer-events: none;
    animation: floatShape 8s ease-in-out infinite alternate;
}
.shape1 {
    width: 120px; height: 120px; background: #ffd700; left: 6%; top: 18%; animation-delay: 0s;
}
.shape2 {
    width: 80px; height: 80px; background: #0a174e; right: 10%; top: 30%; animation-delay: 2s;
}
.shape3 {
    width: 60px; height: 60px; background: #1a2980; left: 40%; bottom: 10%; animation-delay: 4s;
}
@keyframes floatShape {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.08); }
}

/* === Animated SVG Waves === */
.animated-wave {
    overflow: visible;
}
.wave-path {
    animation: waveMove 7s linear infinite alternate;
}
@keyframes waveMove {
    0% { d: path('M0,64L48,74.7C96,85,192,107,288,117.3C384,128,480,128,576,112C672,96,768,64,864,53.3C960,43,1056,53,1152,69.3C1248,85,1344,107,1392,117.3L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'); }
    100% { d: path('M0,80L60,90C120,100,240,120,360,110C480,100,600,80,720,90C840,100,960,120,1080,110C1200,100,1320,80,1380,90L1440,100L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z'); }
}

/* === Pulse Animation for CTA Buttons === */
.pulse-anim {
    animation: pulseBtn 1.6s infinite alternate;
    box-shadow: 0 0 0 0 #25d36644;
}
@keyframes pulseBtn {
    0% { transform: scale(1); box-shadow: 0 0 0 0 #25d36644; }
    100% { transform: scale(1.06); box-shadow: 0 0 24px 8px #25d36644; }
}

/* === Enhanced Card Animations === */
.module-card, .feature-card {
    /* transition: transform 0.22s cubic-bezier(.77,0,.18,1), box-shadow 0.22s; */
    will-change: transform, box-shadow;
}
.module-card:hover, .feature-card:hover {
    /* transform: translateY(-16px) scale(1.07) rotate(-2deg); */
    box-shadow: 0 20px 48px rgba(10,23,78,0.22);
    z-index: 3;
}

/* Add more AOS animation delays for staggered entrance */
.module-card[data-aos], .feature-card[data-aos] {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1);
}
.module-card[data-aos].aos-animate, .feature-card[data-aos].aos-animate {
    opacity: 1;
}

/* === Icon Animations for Features and Modules === */
.icon-anim-bounce {
    /* animation: iconRotatePulse 2.2s infinite alternate cubic-bezier(.77,0,.18,1); */
    display: inline-block;
}
@keyframes iconRotatePulse {
    0% { transform: rotate(-8deg) scale(1); color: var(--accent); }
    50% { transform: rotate(8deg) scale(1.12); color: #0a174e; text-shadow: 0 0 12px #ffd70055; }
    100% { transform: rotate(-8deg) scale(1); color: var(--accent); }
}
.icon-anim-pulse {
    /* animation: iconPulse 1.6s infinite alternate cubic-bezier(.77,0,.18,1); */
    display: inline-block;
}
@keyframes iconPulse {
    0% { transform: scale(1); color: var(--accent); }
    100% { transform: scale(1.18); color: #fffbe6; text-shadow: 0 0 16px #ffd70088; }
}

/* === Custom Scroll-triggered Animation for Modules and Features === */
.module-card.in-view, .feature-card.in-view {
    /* animation: popGlow 0.85s cubic-bezier(.77,0,.18,1) both; */
    /* box-shadow: 0 0 0 0 #ffd700, 0 0 32px 8px #ffd70033; */
}
@keyframes popGlow {
    0% {
        transform: scale(0.85) rotate(-2deg);
        box-shadow: 0 0 0 0 #ffd70000;
        opacity: 0.5;
    }
    60% {
        transform: scale(1.08) rotate(2deg);
        box-shadow: 0 0 32px 8px #ffd70066;
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 8px 32px rgba(10,23,78,0.18);
        opacity: 1;
    }
} 