﻿:root {
    --text-dark: #0f172a;
    --text-light: #f8fafc;
    --text-dim: #94a3b8;
    --accent-primary: #6366f1;
    --accent-secondary: #10b981;
    --primary-color: #4361ee;
    --secondary-color: #4cc9f0;
    --bg-light: #f8f9fa;
    --primary-accent: #0061ff;
    --secondary-bg: #f8fbff;
    --text-dark: #1a1d23;
    --shape-color: rgba(0, 97, 255, 0.05); /* Soft blue for the shapes */
    --shape-border: 15px; /* Thickness of the circles */
    --footer-bg: #111827;
    --accent-color: #3b82f6;
    --text-muted: #9ca3af;
    --white: #FFF;
    --primary-color: #0d6efd;
    --dark-color: #121212;
    --accent-bg: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --card-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --dark-blue: #0a192f/*#4f46e5*/;


}

* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    scroll-behavior: smooth;
    /*overflow-x: hidden;*/
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
}
/* --- BANNER SLIDER THEMES --- */
.slide-1 {
    --slide-accent: #6366f1;
    --bg-gradient: radial-gradient(circle at center, #1e1b4b 0%, #020617 100%);
}

.slide-2 {
    --slide-accent: #10b981;
    --bg-gradient: radial-gradient(circle at center, #064e3b 0%, #020617 100%);
}

.slide-3 {
    --slide-accent: #f43f5e;
    --bg-gradient: radial-gradient(circle at center, #4c0519 0%, #020617 100%);
}

.slide-4 {
    --slide-accent: #3b82f6;
    --bg-gradient: radial-gradient(circle at center, #172554 0%, #020617 100%);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #020617;
    transition: background 1.5s ease-in-out;
}

.floating-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
    filter: blur(1px);
}

.shape-square {
    border: 2px solid var(--text-light);
}

.shape-circle {
    border: 2px solid var(--text-light);
    border-radius: 50%;
}

.shape-plane {
    fill: var(--text-light);
    width: 25px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

    .slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 5;
    }

.slide-text h6 {
    letter-spacing: 4px;
    color: var(--slide-accent);
    font-weight: 700;
    text-transform: uppercase;
}

.slide-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--text-light);
    margin: 15px 0;
    line-height: 1.1;
    font-family: "Poppins", sans-serif;
}

.slide-text p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 30px;
}

.image-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.slide-img {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

.rings-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    pointer-events: none;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    opacity: 0;
    transform: scale(0);
}

.r-1 {
    width: 380px;
    height: 380px;
    border-width: 2px;
    border-color: var(--slide-accent);
}

.r-2 {
    width: 520px;
    height: 520px;
    border-width: 1px;
    border-style: dashed;
    border-color: rgba(255,255,255,0.2);
}

.r-3 {
    width: 650px;
    height: 650px;
    border-width: 6px;
    border-style: double;
    border-color: var(--slide-accent);
    opacity: 0.05;
}

.btn-quote {
    background: var(--slide-accent);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 32px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.slider-nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.nav-line {
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

    .nav-line.active::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: var(--slide-accent);
        animation: lineProgress 5s linear forwards;
    }

@keyframes lineProgress {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* --- WELCOME SECTION --- */
.welcome-section {
    position: relative;
    padding: 160px 0;
    background: #ffffff;
    color: var(--text-dark);
    overflow: hidden;
}

.half-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.1;
    filter: blur(2px);
}

.hc-tl {
    top: -150px;
    left: -150px;
    background: transparent;
    border: 40px solid #6366f1;
}

.hc-tr {
    top: -150px;
    right: -150px;
    background: transparent;
    border: 40px solid #10b981;
}

.hc-bl {
    bottom: -150px;
    left: -150px;
    background: transparent;
    border: 40px solid #f43f5e;
}

.hc-br {
    bottom: -150px;
    right: -150px;
    background: transparent;
    border: 40px solid #f59e0b;
}

.edge-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 12px double var(--accent-primary);
    opacity: 0.05;
    z-index: 1;
}

.circle-tl {
    top: -200px;
    left: -200px;
}

.circle-br {
    bottom: -200px;
    right: -200px;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
}

.welcome-badge {
    background: #f1f5f9;
    color: var(--accent-primary);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 25px;
}

.welcome-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #020617;
    margin-bottom: 25px;
}

.welcome-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 600px;
}

.welcome-stats {
    display: flex;
    gap: 50px;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin: 0;
}

.stat-item p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    margin: 0;
}

.image-container {
    position: relative;
    width: 100%;
    z-index: 5;
    opacity: 0;
    transform: scale(0.9);
}

.sample-img {
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 45px 90px rgba(0,0,0,0.12);
    object-fit: cover;
    height: 500px;
}

.certified-badge {
    position: absolute;
    bottom: 40px;
    right: -25px;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    gap: 15px;
    border: 1px solid #f1f5f9;
    opacity: 0;
    transform: scale(0);
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.badge-text h5 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0;
    color: #0f172a;
}

.badge-text p {
    font-size: 0.85rem;
    margin: 0;
    color: #64748b;
}

/* --- SOLUTIONS SECTION (DARK MODE) --- */
.solutions-section {
    padding: 120px 0;
    background: #0f172a; /* Dark Professional Background */
    color: #fff;
}

.sol-header {
    text-align: center;
    margin-bottom: 70px;
}

    .sol-header h2 {
        font-weight: 800;
        color: #ffffff;
        font-size: 2.8rem;
    }

    .sol-header p {
        color: #94a3b8;
        max-width: 600px;
        margin: 15px auto 0;
    }

.sol-card {
    background: #1e293b; /* Slate-800 card */
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 28px;
    padding: 40px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

    /* CARD HOVER EFFECTS */
    .sol-card:hover {
        transform: translateY(-12px);
        background: #243049;
        border-color: var(--accent-primary);
        box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(99, 102, 241, 0.2);
    }

.sol-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.1); /* Visible bottom border */
    transition: border-color 0.4s;
}

.sol-card:hover .sol-top {
    border-color: var(--accent-primary);
}

.sol-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sol-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.sol-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 25px;
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

/* HOVER: ICON CHANGES COLOR AND BOX BG */
.sol-card:hover .sol-icon-box {
    background: var(--accent-primary);
    color: #ffffff;
    transform: rotate(-5deg) scale(1.1);
}

.sol-card h4 {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.sol-card p {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 65px;
}

.sol-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

    .sol-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.9rem;
        font-weight: 500;
        color: #cbd5e1;
        margin-bottom: 12px;
    }

        .sol-features li svg {
            color: var(--accent-primary);
        }

.sol-btn-group {
    display: flex;
    gap: 12px;
}

.btn-sol-primary {
    background: var(--accent-primary);
    color: #fff;
    border: none;
    padding: 14px 0;
    flex: 2;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
}

.btn-sol-outline {
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 14px;
    flex: 1;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
}

.btn-sol-primary:hover {
    background: #4f46e5;
    transform: scale(1.02);
    color: #fff;
}

.btn-sol-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}

/* Added spacer for demo purposes so you can actually scroll to the section */
.spacer {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-section {
    padding: 100px 0;
    overflow: hidden;
}

.process-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .process-container::before {
        content: '';
        position: absolute;
        top: 50px;
        left: 5%;
        width: 90%;
        height: 2px;
        background: #dee2e6;
        z-index: 0;
    }
}

.step-card {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
    margin-bottom: 30px;
    opacity: 0; /* Hidden initially for GSAP */
}

@media (min-width: 992px) {
    .step-card {
        width: 23%;
        margin-bottom: 0;
    }
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.step-title {
    font-weight: 700;
    color: #2b2d42;
    margin-bottom: 10px;
}

.step-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}


.spacer {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
}

/* Demo Section Container */
.demo-section {
    position: relative;
    background-color: var(--secondary-bg);
    padding: 120px 0;
    overflow: hidden; /* Clips the circles at the edge of the section */
}

    /* --- Decorative Half Circles --- */
    .demo-section::before,
    .demo-section::after,
    .shape-bottom-left,
    .shape-top-right {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border: var(--shape-border) solid var(--primary-accent);
        border-radius: 50%;
        opacity: 0.1;
        pointer-events: none;
        z-index: 0;
    }

    /* Top Left - Half Circle */
    .demo-section::before {
        top: -150px;
        left: -150px;
    }

    /* Bottom Right - Half Circle */
    .demo-section::after {
        bottom: -150px;
        right: -150px;
    }

/* Top Right - Half Circle */
.shape-top-right {
    top: 10%;
    right: -180px;
}

/* Bottom Left - Half Circle */
.shape-bottom-left {
    bottom: 10%;
    left: -180px;
}

/* --- Content Styling --- */
.container {
    position: relative;
    z-index: 1; /* Keeps content above shapes */
}

.demo-content h2 {
    font-weight: 800;
    line-height: 1.2;
}

.feature-list {
    padding-left: 0;
    list-style: none;
}

    .feature-list li {
        font-size: 1.1rem;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Form Card */
.demo-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.btn-submit {
    background-color: var(--primary-accent);
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        background-color: #0052d4;
        transform: translateY(-2px);
    }

/* GSAP Initial States */
.reveal-left, .reveal-right, .reveal-item {
    opacity: 0;
}



.main-footer {
    background-color: var(--footer-bg);
    color: #ffffff;
    padding: 80px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: var(--accent-color);
    }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: var(--text-muted);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

        .footer-links a:hover {
            color: #ffffff;
            transform: translateX(5px);
        }

.contact-info i {
    width: 25px;
    color: var(--accent-color);
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 10px;
}

.support-hours {
    background: rgba(59, 130, 246, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    margin-top: 15px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animation Delays */
.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}


/*------------------------- Inner Pages--------------- */
.section-padding {
    padding: 100px 0;
}

.text-gradient {
    background: linear-gradient(45deg, #0d6efd, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* --- Banner Section --- */
/*.inner-banner {
    height: 55vh;
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}*/
.services, .choose-bg, .industries, .need-software {
    padding: 100px 0;
    position: relative;
}

.inner-banner {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #172a45 100%);
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
}
.inner-banner h1{font-size:3rem !important}
.banner-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/*--- Solution Sections ---*/
.solution-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.4s ease;
}

.img-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

    .img-container img {
        transition: transform 0.6s ease;
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

.solution-section:hover .img-container img {
    transform: scale(1.05);
}

.section-title, .section-home-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    color: var(--text-dark);
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--primary-color);
    }

.alternate-row .section-title::after {
    left: auto;
    right: 0;
}

.description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-demo-inner {
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.btn-quote {
    padding: 20px 35px;
    border-radius: 32px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-size: 14px
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary-custom:hover {
        background-color: transparent;
        color: var(--primary-color);
        transform: translateY(-3px);
    }

/*----------------- Services -------------------*/

.service-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 50px 35px;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
}

    /* Ambient Glow Background */
    .service-card::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 70%);
        opacity: 0;
        transition: var(--transition-smooth);
        z-index: -1;
    }

    /* Animated Bottom Accent */
    .service-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-color);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(10, 25, 47, 0.1);
        border-color: rgba(13, 110, 253, 0.2);
    }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

    .icon-box-inner{
        width: 70px;
        height: 70px;
        background: rgba(13, 110, 253, 0.05);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: var(--transition-smooth);
        position: relative;
    }

.service-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.service-card:hover .icon-box-inner {
    background: var(--primary-color);
    transform: rotateY(360deg);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

.service-card:hover .service-icon {
    color: white;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

/*  Why Choose Us Section --- */
.choose-bg {
    background-color: #fcfdfe;
    background-image: radial-gradient(#0d6efd05 2px, transparent 2px);
    background-size: 30px 30px;
}

.choose-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .choose-card .check-circle {
        width: 50px;
        height: 50px;
        background: #e7f3ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--primary-color);
        font-size: 1.2rem;
        transition: var(--transition-smooth);
    }

    .choose-card h5 {
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 12px;
    }

    .choose-card p {
        font-size: 0.9rem;
        color: #6c757d;
        margin-bottom: 0;
    }

    .choose-card:hover {
        transform: translateY(-10px) scale(1.02);
        background: var(--dark-blue);
        border-color: var(--dark-blue);
        box-shadow: 0 20px 40px rgba(10, 25, 47, 0.2);
    }

        .choose-card:hover .check-circle {
            background: var(--primary-color);
            color: white;
            transform: rotate(360deg);
        }

        .choose-card:hover h5 {
            color: white;
        }

        .choose-card:hover p {
            color: rgba(255,255,255,0.7);
        }

    .choose-card::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, transparent 100%);
        border-radius: 0 0 0 100%;
        transition: var(--transition-smooth);
    }

    .choose-card:hover::after {
        background: linear-gradient(135deg, rgba(13, 110, 253, 0.4) 0%, transparent 100%);
    }

/* --- Industries We Serve --- */
.industry-box {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

    .industry-box:hover {
        background: #eef5ff;
        border-color: var(--primary-color);
        transform: rotate(-2deg);
    }

    .industry-box i {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

/* --- CTA Section --- */
.cta-section {
    background: var(--dark-blue);
    color: white;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: -50px;
    position: relative;
    z-index: 10;
}

.btn-premium {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

    .btn-premium:hover {
        background: white;
        color: var(--primary-color);
        transform: scale(1.1);
    }

    /*------------Contact us----------------*/


.info-wrapper {
    padding-right: 30px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

    .info-card:hover {
        transform: translateX(10px);
        box-shadow: 0 15px 35px rgba(13, 110, 253, 0.1);
    }

    .info-card i {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        display: block;
    }

    .info-card h5 {
        font-weight: 700;
        color: var(--dark-blue);
    }

/* --- Message Form --- */
.contact-form-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(10, 25, 47, 0.05);
    border: 1px solid #eee;
}

.form-control {
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background: #fcfdfe;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

    .form-control:focus {
        box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
        border-color: var(--primary-color);
        background: white;
    }

.btn-send {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    border: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

    .btn-send:hover {
        background: var(--dark-blue);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(10, 25, 47, 0.3);
    }

/* --- About Section --- */
.about-box {
    background: rgba(13, 110, 253, 0.03);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    border-radius: 0 20px 20px 0;
    margin-top: 40px;
}
.info-help-line{background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://www.transparenttextures.com/patterns/cubes.png');}
@media (max-width: 991px) {
    .slider-wrapper, .welcome-section, .solutions-section, .process-section, .demo-section, .main-footer {
        padding-left: 20px;
        padding-right: 20px
    }

    .section-padding {
        padding: 60px 20px;
    }

    .img-container {
        margin-bottom: 30px;
    }

    .text-center-mobile {
        text-align: center !important;
    }

    .alternate-row .section-title::after {
        left: 0;
        right: auto;
    }
}
