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

:root {
    --primary-color: #15BAB1;
    --secondary-color: #0ea5e9;
    --accent-color: #22c55e;
    --light-bg: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --dark-text: #1e293b;
    --medium-text: #475569;
    --light-text: #64748b;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --shadow-light: rgba(15, 23, 42, 0.08);
    --shadow-medium: rgba(15, 23, 42, 0.12);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
}


/* Animated Background */
.hero-bg-animated {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

/* Floating Particles */
.particles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float-particle 20s infinite linear;
    opacity: 0.3;
    will-change: transform;
}

@keyframes float-particle {
    0% {
        transform: translate3d(0, 100vh, 0) rotate(0deg);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.3;
    }
    100% {
        transform: translate3d(100px, -100vh, 0) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Navbar */
.main-navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.1s ease;
    border-bottom: 1px solid var(--border-color);
}

.navbar-solid {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(25px) !important;
    box-shadow: 0 8px 30px var(--shadow-medium) !important;
}

.main-navbar.navbar-solid,
.main-navbar.navbar-drawer-open {
    background: #fff !important;
    box-shadow: 0 8px 30px var(--shadow-medium) !important;
}

/* Responsive navbar */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(252, 252, 252, 0.98);
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        z-index: 10000;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 8px 32px var(--shadow-medium);
        padding: 1.5rem;
        border-top: 1px solid var(--border-color);
    }

    .navbar-collapse:not(.show) {
        display: none !important;
    }
}

.brand-logo {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--dark-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.1s ease;
}

.brand-logo:hover .brand-name {
color: var(--primary-color);
}


.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(21, 186, 177, 0.2);
    transition: all 0.1s ease;
}

.brand-logo:hover .brand-icon {
    box-shadow: 0 6px 20px rgba(21, 186, 177, 0.3);
    transform: rotate(5deg);
}

.nav-link {
    color: var(--medium-text) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px !important;
    border-radius: 8px;
    transition: all 0.1s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(21, 186, 177, 0.05);
    transform: translateY(-2px);
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.1s ease;
    box-shadow: 0 4px 15px rgba(21, 186, 177, 0.2);
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(21, 186, 177, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff !important;
    padding-top: 80px;
}

.hero-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.blob {
    position: absolute;
    opacity: 0.28;
    filter: blur(2px) drop-shadow(0 8px 32px #15BAB1AA);
    pointer-events: none;
    transition: opacity 0.1s;
}

.blob1 {
    left: -80px;
    top: 8%;
    animation: blobFloat1 18s ease-in-out infinite;
}

.blob2 {
    right: -60px;
    top: 22%;
    animation: blobFloat2 22s ease-in-out infinite;
}

.blob3 {
    left: 50%;
    top: 70%;
    transform: translateX(-50%);
    animation: blobFloat3 20s ease-in-out infinite;
}

.blob4 {
    left: 10%;
    bottom: 10%;
    animation: blobFloat4 19s ease-in-out infinite;
}

.blob5 {
    right: 8%;
    bottom: 12%;
    animation: blobFloat5 16s ease-in-out infinite;
}

.blob6 {
    left: 20%;
    top: 18%;
    animation: blobFloat6 21s ease-in-out infinite;
}

.blob7 {
    right: 18%;
    top: 60%;
    animation: blobFloat7 23s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.08) translateY(-30px); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(0.95) translateY(20px); }
}

@keyframes blobFloat3 {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.04) translateY(-20px); }
}

@keyframes blobFloat4 {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.1) translateY(18px); }
}

@keyframes blobFloat5 {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(0.92) translateY(-16px); }
}

@keyframes blobFloat6 {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.06) translateY(12px); }
}

@keyframes blobFloat7 {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(0.98) translateY(-10px); }
}

/* Geometric accents */
.geo-circle {
    position: absolute;
    right: 12%;
    top: 18%;
    width: 38px;
    height: 38px;
    background: #fff;
    border: 4px solid #15BAB1;
    border-radius: 50%;
    opacity: 0.18;
    animation: geoCircleFloat 14s ease-in-out infinite;
}

.geo-ring {
    position: absolute;
    left: 10%;
    bottom: 18%;
    width: 60px;
    height: 60px;
    border: 3px dashed #0ea5e9;
    border-radius: 50%;
    opacity: 0.16;
    animation: geoRingFloat 17s ease-in-out infinite;
}

.geo-dash {
    position: absolute;
    left: 50%;
    top: 8%;
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, #15BAB1 0%, #0ea5e9 100%);
    border-radius: 3px;
    opacity: 0.13;
    transform: translateX(-50%);
    animation: geoDashFloat 12s ease-in-out infinite;
}

.geo-triangle {
    position: absolute;
    left: 18%;
    top: 60%;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 32px solid #0ea5e9;
    opacity: 0.13;
    animation: geoTriangleFloat 15s ease-in-out infinite;
}

.geo-rect {
    position: absolute;
    right: 14%;
    bottom: 22%;
    width: 38px;
    height: 12px;
    background: #1976d2;
    border-radius: 6px;
    opacity: 0.11;
    animation: geoRectFloat 13s ease-in-out infinite;
}

@keyframes geoCircleFloat {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.1) translateY(-10px); }
}

@keyframes geoRingFloat {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(0.92) translateY(12px); }
}

@keyframes geoDashFloat {
    0%, 100% { transform: scaleX(1) translateY(0); }
    50% { transform: scaleX(1.2) translateY(-8px); }
}

@keyframes geoTriangleFloat {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.08) translateY(-12px); }
}

@keyframes geoRectFloat {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(0.95) translateY(10px); }
}

@media (max-width: 991.98px) {

    .blob1,
    .blob2 {
        width: 140px !important;
        height: 140px !important;
    }

    .blob3,
    .blob4,
    .blob5,
    .blob6,
    .blob7 {
        width: 60px !important;
        height: 60px !important;
    }
}

@media (max-width: 768px) {

    .blob1,
    .blob2,
    .blob3,
    .blob4,
    .blob5,
    .blob6,
    .blob7 {
        width: 40px !important;
        height: 40px !important;
    }

    .geo-circle,
    .geo-ring,
    .geo-dash,
    .geo-triangle,
    .geo-rect {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-blobs {
        display: none;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--medium-text);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 3rem;
    justify-content: center;
}

.tech-badge {
    background: rgba(21, 186, 177, 0.08);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(21, 186, 177, 0.15);
    transition: all 0.1s ease;
}

.tech-badge:hover {
    background: rgba(21, 186, 177, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(21, 186, 177, 0.15);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 50px;
    transition: all 0.1s ease;
    box-shadow: 0 4px 20px rgba(21, 186, 177, 0.25);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(21, 186, 177, 0.35);
}

.btn-hero-secondary {
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 40px;
    border-radius: 50px;
    transition: all 0.1s ease;
}

.btn-hero-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Floating Tech Icons */
.floating-tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-tech-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--card-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    animation: techFloat 12s ease-in-out infinite;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.1s ease;
    will-change: transform;
}

.floating-tech-icon:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-tech-icon:nth-child(2) {
    top: 20%;
    right: 12%;
    animation-delay: 2s;
}

.floating-tech-icon:nth-child(3) {
    bottom: 25%;
    left: 6%;
    animation-delay: 4s;
}

.floating-tech-icon:nth-child(4) {
    bottom: 30%;
    right: 8%;
    animation-delay: 1s;
}

.floating-tech-icon:nth-child(5) {
    top: 50%;
    left: 3%;
    animation-delay: 3s;
}

.floating-tech-icon:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 5s;
}

@keyframes techFloat {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(0, -20px, 0) rotate(5deg); }
}

/* Stats Section */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    transition: all 0.1s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-text);
    margin-top: 5px;
}

/* Ambient Orbs */
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(21, 186, 177, 0.06), transparent);
    top: 10%;
    left: 70%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05), transparent);
    bottom: 20%;
    left: 10%;
    animation-delay: 12s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.04), transparent);
    top: 60%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Additional Content Sections */
.additional-section {
    min-height: 100vh;
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.section-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }


    .hero-subtitle {
        font-size: 1.05rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 1rem;
        padding: 14px 30px;
    }

    .stats-section {
        gap: 40px;
    }

    .floating-tech-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .floating-tech-icon {
        display: none;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .stats-section {
        gap: 30px;
    }
}

.hero-chevron-bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
    max-width: 60vw;
    z-index: 1;
    pointer-events: none;
}

/* Enhanced Chevron Animations */
.chev-anim1 {
    animation: chevFloat1 14s ease-in-out infinite;
}

.chev-anim2 {
    animation: chevFloat2 17s ease-in-out infinite;
}

.chev-anim3 {
    animation: chevFloat3 21s ease-in-out infinite;
}

@keyframes chevFloat1 {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.38; }
    25% { transform: translateY(-18px) scale(1.04) rotate(-2deg); opacity: 0.44; }
    50% { transform: translateY(10px) scale(1.02) rotate(2deg); opacity: 0.41; }
    75% { transform: translateY(-8px) scale(1.01) rotate(-1deg); opacity: 0.40; }
}

@keyframes chevFloat2 {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.32; }
    20% { transform: translateY(12px) scale(1.03) rotate(2deg); opacity: 0.36; }
    50% { transform: translateY(-16px) scale(1.01) rotate(-2deg); opacity: 0.34; }
    80% { transform: translateY(8px) scale(1.02) rotate(1deg); opacity: 0.33; }
}

@keyframes chevFloat3 {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.28; }
    30% { transform: translateY(-10px) scale(1.05) rotate(3deg); opacity: 0.32; }
    60% { transform: translateY(14px) scale(1.01) rotate(-2deg); opacity: 0.30; }
    90% { transform: translateY(-6px) scale(1.03) rotate(-1deg); opacity: 0.29; }
}

@media (max-width: 991.98px) {
    .hero-chevron-bg {
        max-width: 80vw;
    }
}

@media (max-width: 768px) {
    .hero-chevron-bg {
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .hero-chevron-bg {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 90px !important;
        flex-direction: column;
        align-items: flex-start;
        min-height: unset;
    }
    .container.hero-content { padding: 0 8px; }
    .hero-title { font-size: 1.5rem; margin-bottom: 1rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
    .tech-stack { gap: 6px; margin-bottom: 1.5rem; }
    .hero-buttons { flex-direction: column; gap: 12px; margin-bottom: 1.5rem; }
    .stats-section { flex-direction: column; gap: 16px; align-items: center; }
    .stat-item { font-size: 1rem; }
    .floating-tech-icons, .hero-blobs, .ambient-orb { display: none !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.1rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .container.hero-content { padding: 0 4px; }
}

.brand-name {
font-weight: 900;
font-size: 1.9rem;
color: var(--dark-text);
letter-spacing: 0;
white-space: nowrap;
display: inline;
}

.brand-name .highlight {
color: var(--primary-color);
font-weight: 900;
font-size: 1.9rem;

}

.aboutus-section.aboutus-large {
    padding: 120px 0 100px 0;
    background: #FBFCFD;
    position: relative;
    overflow: hidden;
}
.aboutus-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: var(--dark-text);
    margin-bottom: 2.2rem;
    line-height: 1.15;
    letter-spacing: -1px;
}
.aboutus-title .gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.aboutus-description {
    font-size: 1.05rem;
    color: var(--medium-text);
    line-height: 1.6;
    margin-bottom: 1.1rem;
    max-width: 600px;
}
.aboutus-features {
    margin-top: 0.5rem;
}

/* Animated border for feature cards */
.feature-card-wide {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(21,186,177,0.10), 0 1.5px 8px rgba(0,0,0,0.04);
    padding: 1.3rem 2rem;
    min-height: 110px;
    position: relative;
    margin-bottom: 0;
    gap: 1.5rem;
    opacity: 0;
    border: none;
    background-clip: padding-box;
    z-index: 1;
    transition: box-shadow 0.3s;
}
.feature-card-wide:hover {
    box-shadow: 0 12px 36px rgba(21,186,177,0.16);
}
.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 2px 12px rgba(21,186,177,0.13);
    flex-shrink: 0;
}
.feature-card-content {   
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-title {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.2rem;
    margin-top: 0.1rem;
}
.feature-desc {
    font-size: 1.01rem;
    color: var(--medium-text);
    line-height: 1.5;
    margin-bottom: 0;
}
.aboutus-illustration {
    width: 100%;
    max-width: 600px;
    min-width: 220px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    box-shadow: none;
}
.aboutus-illustration-bg-anim {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}
.aboutus-anim-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(32px);
    opacity: 0.22;
    animation: aboutusOrbFloat 14s ease-in-out infinite;
}
.orb1 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, #17BAAD 0%, #fff0 100%);
    top: 10%; left: 0%; animation-delay: 0s;
}
.orb2 {
    width: 120px; height: 120px;
    background: radial-gradient(circle, #0ea5e9 0%, #fff0 100%);
    bottom: 5%; right: 5%; animation-delay: 4s;
}
.orb3 {
    width: 80px; height: 80px;
    background: radial-gradient(circle, #22c55e 0%, #fff0 100%);
    top: 60%; left: 60%; animation-delay: 8s;
}
@keyframes aboutusOrbFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.22; }
    40% { transform: translateY(-24px) scale(1.08); opacity: 0.28; }
    60% { transform: translateY(18px) scale(0.96); opacity: 0.18; }
}
.aboutus-anim-dot {
    position: absolute;
    width: 10px; height: 10px;
    background: #17BAAD;
    border-radius: 50%;
    opacity: 0.18;
    animation: aboutusDotFloat 7s linear infinite;
}
.dot1 { left: 20%; top: 80%; animation-delay: 1.2s; }
.dot2 { left: 60%; top: 20%; animation-delay: 2.4s; }
.dot3 { left: 80%; top: 40%; animation-delay: 3.6s; }
@keyframes aboutusDotFloat {
    0% { opacity: 0.18; transform: scale(1) translateY(0); }
    50% { opacity: 0.32; transform: scale(1.2) translateY(-12px); }
    100% { opacity: 0.18; transform: scale(1) translateY(0); }
}
.aboutus-illustration-img {
    width: 100%;
    max-width: 520px;
    min-width: 180px;
    display: block;
}
.aboutus-cta-btn {
    display: block;
    margin: 1.5rem auto 1.7rem auto;
    padding: 0.85rem 2.5rem;
    font-size: 1.12rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #17BAAD 0%, #0ea5e9 100%);
    border: none;
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(21,186,177,0.13);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    max-width: 340px;
    width: 100%;
    text-align: center;
}
.aboutus-cta-btn:hover, .aboutus-cta-btn:focus {
    background: linear-gradient(90deg, #0ea5e9 0%, #17BAAD 100%);
    box-shadow: 0 8px 32px rgba(21,186,177,0.22);
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    text-decoration: none;
}
.aboutus-cta-btn i {
    margin-right: 0.7em;
    font-size: 1.1em;
    vertical-align: middle;
}
@media (max-width: 1200px) {
    .aboutus-illustration { max-width: 420px; }
    .aboutus-illustration-img { max-width: 340px; }
}

@media (max-width: 991.98px) {
    .aboutus-section.aboutus-large { padding: 60px 0 40px 0; }
    .aboutus-title { font-size: 2rem; }
    .aboutus-illustration { max-width: 320px; }
    .aboutus-illustration-img { max-width: 220px; }
    .feature-card-wide { padding: 1rem; min-height: 90px; }
    .feature-icon { width: 36px; height: 36px; font-size: 1.1rem; }
    .aboutus-description { font-size: 0.98rem; }
    .aboutus-cta-btn { max-width: 95vw; font-size: 1.05rem; }
}

@media (max-width: 768px) {
    .aboutus-section.aboutus-large { padding: 30px 0 18px 0; }
    .aboutus-title { font-size: 1.2rem; }
    .aboutus-illustration { max-width: 100%; }
    .aboutus-illustration-img { max-width: 100%; margin-bottom: 2rem; }
    .feature-card-wide { flex-direction: column; align-items: flex-start; padding: 0.7rem 0.5rem; min-height: 70px; gap: 0.7rem; }
    .feature-icon { width: 28px; height: 28px; font-size: 0.9rem; }
    .feature-title { font-size: 1rem; }
    .feature-desc { font-size: 0.92rem; }
    .aboutus-cta-btn { max-width: 98vw; font-size: 1rem; }
}

.services-section {
    padding: 8px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 38px;
}

/* Background Elements */
.services-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.service-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(21, 186, 177, 0.08), transparent);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06), transparent);
    bottom: 20%;
    left: 5%;
    animation-delay: 8s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05), transparent);
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.service-geometric {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
    animation: geoFloat 20s ease-in-out infinite;
}

.geo-dot-1 {
    width: 8px;
    height: 8px;
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.geo-dot-2 {
    width: 12px;
    height: 12px;
    top: 70%;
    right: 25%;
    animation-delay: 5s;
}

.geo-dot-3 {
    width: 6px;
    height: 6px;
    top: 40%;
    right: 10%;
    animation-delay: 10s;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    animation: shapeFloat 30s ease-in-out infinite;
}

.shape-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    right: 15%;
    animation-delay: 10s;
}

.shape-3 {
    width: 25px;
    height: 25px;
    bottom: 30%;
    left: 20%;
    animation-delay: 5s;
}

.shape-4 {
    width: 18px;
    height: 18px;
    top: 40%;
    right: 25%;
    animation-delay: 15s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.2; }
}

@keyframes geoFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.1; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 0.2; }
}

/* Enhanced Section Header */
.section-header {
    margin-bottom: 60px;
    position: relative;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.8rem;
}

.decoration-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.6;
}

.decoration-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(21, 186, 177, 0.5);
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1.2rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.title-line {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.title-line:nth-child(1) {
    transition-delay: 0.3s;
}

.title-line:nth-child(2) {
    transition-delay: 0.6s;
}

.services-section.animate-in .title-line {
    opacity: 1;
    transform: translateY(0);
}

.section-description {
    font-size: 1rem;
    color: var(--medium-text);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Enhanced Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 0rem;
}

/* Service Cards Centering */
.service-card-wrapper:nth-last-child(-n+2) {
    grid-column: span 1;
    justify-self: center;
    max-width: 280px;
}

@media (min-width: 768px) {
    .service-card-wrapper:nth-last-child(-n+2) {
        max-width: 320px;
    }
}

@media (min-width: 1024px) {
    .service-card-wrapper:nth-last-child(-n+2) {
        max-width: 350px;
    }
}

.service-card-wrapper {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-section.animate-in .service-card-wrapper {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Service Card Animation Delays */
.service-card-wrapper:nth-child(1) { transition-delay: 0.4s; }
.service-card-wrapper:nth-child(2) { transition-delay: 0.6s; }
.service-card-wrapper:nth-child(3) { transition-delay: 0.8s; }
.service-card-wrapper:nth-child(4) { transition-delay: 1.0s; }
.service-card-wrapper:nth-child(5) { transition-delay: 1.2s; }
.service-card-wrapper:nth-child(6) { transition-delay: 1.4s; }
.service-card-wrapper:nth-child(7) { transition-delay: 1.6s; }
.service-card-wrapper:nth-child(8) { transition-delay: 1.8s; }
.service-card-wrapper:nth-child(9) { transition-delay: 2.0s; }
.service-card-wrapper:nth-child(10) { transition-delay: 2.2s; }
.service-card-wrapper:nth-child(11) { transition-delay: 2.4s; }
.service-card-wrapper:nth-child(12) { transition-delay: 2.6s; }

/* Enhanced Service Cards */
.service-card {
    position: relative;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    min-height: 240px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(20px);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(248, 250, 252, 0.05));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02) rotateX(2deg);
    box-shadow: 0 16px 48px rgba(21, 186, 177, 0.12);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(21, 186, 177, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.06) 0%, transparent 50%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card:hover .bg-pattern {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Enhanced Service Icon */
.service-icon-wrapper {
    position: relative;
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: iconRingRotate 20s linear infinite;
}

@keyframes iconRingRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.icon-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(21, 186, 177, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card:hover .icon-glow {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    position: relative;
    z-index: 3;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(21, 186, 177, 0.25);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 8px 24px rgba(21, 186, 177, 0.4);
}

.icon-particles {
    position: absolute;
    width: 60px;
    height: 60px;
}

.icon-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}

.icon-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.icon-particles span:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.icon-particles span:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Enhanced Service Content */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.6rem;
    transition: color 0.6s ease;
    text-align: center;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    color: var(--medium-text);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-align: center;
    flex: 1;
}

/* Enhanced Service Features */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 1rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(21, 186, 177, 0.08);
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid rgba(21, 186, 177, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-card:hover .feature-tag {
    background: rgba(21, 186, 177, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(21, 186, 177, 0.15);
}

.service-card:hover .feature-tag::before {
    left: 100%;
}

/* Enhanced Service Stats */
.service-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 1px solid rgba(21, 186, 177, 0.08);
    margin-top: auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--light-text);
    font-weight: 500;
}

/* Card Border Animation */
.card-border-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.service-card:hover .card-border-animation {
    opacity: 1;
}

/* Card Shine Effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 3;
}

.service-card:hover .card-shine {
    left: 100%;
}

/* Enhanced CTA Section */
.services-cta {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 3rem;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(21, 186, 177, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.services-cta:hover .cta-pattern {
    opacity: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--medium-text);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 186, 177, 0.3);
}

.btn-outline-primary:hover::before {
    left: 100%;
}

/* Animation Delays */
[data-delay="0.2"] { animation-delay: 0.2s; }
[data-delay="0.4"] { animation-delay: 0.4s; }
[data-delay="0.6"] { animation-delay: 0.6s; }
[data-delay="0.8"] { animation-delay: 0.8s; }
[data-delay="1.0"] { animation-delay: 1.0s; }
[data-delay="1.2"] { animation-delay: 1.2s; }
[data-delay="1.4s"] { animation-delay: 1.4s; }
[data-delay="1.6s"] { animation-delay: 1.6s; }

/* Responsive Design */
@media (max-width: 991.98px) {
    .services-section { padding: 80px 0; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
    .card-content { padding: 2.5rem; }
    .service-icon { width: 80px; height: 80px; font-size: 2rem; }
    .cta-content { padding: 3rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .card-content { padding: 2rem; }
    .service-stats { flex-direction: column; gap: 0.5rem; }
    .cta-title { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .service-features { justify-content: center; }
    .service-stats { text-align: center; }
    .header-decoration { display: none; }
}

/* --- BEGIN PATCH FOR CARD HOVER READABILITY --- */
.service-card:hover .bg-gradient {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.98), rgba(248, 250, 252, 0.96));
    /* soft blue-white gradient for better text visibility */
}

.service-card:hover .bg-pattern {
    background-image:
        radial-gradient(circle at 20% 80%, rgba(147, 197, 253, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(167, 139, 250, 0.06) 0%, transparent 50%);
    /* soft blue and purple pattern colors */
}

.service-card:hover .service-title,
.service-card:hover .service-description,
.service-card:hover .stat-number,
.service-card:hover .stat-label {
    color: #ffffff !important;
    /* white text for contrast */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card:hover .feature-tag {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.8);
    color: #1e40af !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card:hover .stat-number {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card:hover .stat-label {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}