:root {
    --primary: #0a174e;
    --accent: #ffd700;
    --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; }
/* 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; }
.navbar-logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; display: flex; align-items: center; }
.navbar-logo i { color: var(--accent); margin-right: 10px; }
.navbar-menu { display: flex; gap: 32px; }
.navbar-menu a { font-weight: 500; padding: 8px 0; position: relative; }
.navbar-menu a.active, .navbar-menu a:hover { color: var(--accent); }
.navbar-toggle { display: none; font-size: 2rem; cursor: pointer; }
@media (max-width: 900px) {
    .navbar-menu { display: none; position: absolute; top: 60px; right: 0; background: #0a174e; flex-direction: column; width: 220px; border-radius: var(--radius); box-shadow: var(--shadow); }
    .navbar-menu.open { display: flex; }
    .navbar-toggle { display: block; }
}
/* 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;
    }
} 