﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}


/* Header Styles */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}

.logo-d, .logo-r {
    color: #dc2626;
}

.logo-m {
    color: #1e3a5f;
}


.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: #1a1a1a;
        transition: all 0.3s;
    }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
    z-index: 999;
}

    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

.mobile-nav-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #0066cc;
    color: #ffffff;
}

    .btn-primary:hover {
        background: #0052a3;
    }

.btn-accent {
    background: #ff8c42;
    color: #ffffff;
}

    .btn-accent:hover {
        background: #e67a35;
    }

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
    }

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #063b67 0%, #0a5a8a 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

    .hero-title .highlight {
        color: #ffb84d;
    }

.hero-subtext {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #f89f3d;
    color: white;
    border: none;
}

    .btn-primary:hover {
        background: #e68a2e;
    }

.btn-secondary {
    background: white;
    color: #063b67;
    border: 2px solid white;
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.9);
    }

.trusted {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

    .trusted .icon {
        color: #10b981;
        font-weight: bold;
    }

.hero-right {
    position: relative;
}

.image-box {
    border-radius: 20px;
    padding: 16px;
    overflow: hidden;
}

    .image-box img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        display: block;
    }

.badge {
    position: absolute;
    background: white;
    padding: 0px 7px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.badge-top {
    top: -10px;
    right: -20px;
}

.badge-bottom {
    bottom: -10px;
    left: -20px;
}

.badge-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 12px;
}

.badge h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
}

.badge p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.hero-wave {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 1;
}

    .hero-wave svg {
        width: 100%;
        height: auto;
        display: block;
    }


.dashboard-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.bg-light {
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 32px;
}

.link-primary {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

    .link-primary:hover {
        color: #0052a3;
    }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

    .feature-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(-4px);
    }

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 16px;
}

.bg-blue {
    background: #0066cc;
}

.bg-green {
    background: #059669;
}

.bg-orange {
    background: #ff8c42;
}

.bg-purple {
    background: #8b5cf6;
}

.bg-blue-alt {
    background: #3b82f6;
}

.bg-cyan {
    background: #0891b2;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-description {
    color: #6b7280;
    font-size: 14px;
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.insight-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

    .insight-card:hover {
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
    }

.insight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.insight-content {
    padding: 24px;
}

.insight-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.insight-description {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.industry-card {
    color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

    .industry-card:hover {
        opacity: 0.9;
        transform: scale(1.02);
    }

.industry-number {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 8px;
}

.industry-name {
    font-size: 14px;
    font-weight: 600;
}

/* Expertise Section */
.expertise-section {
    background: #1e3a5f;
    color: #ffffff;
    padding: 80px 0;
}

.expertise-content {
    display: grid;
    gap: 48px;
    align-items: center;
}

.expertise-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.expertise-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 24px;
}

.expertise-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #ff8c42;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 48px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-text {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insights-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .expertise-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .industry-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .badge-top {
        top: 10px;
        right: 10px;
    }

    .badge-bottom {
        bottom: 10px;
        left: 10px;
    }

    .badge {
        /*padding: 12px 16px;*/
        padding: 1px 1px;
        margin: -18px;
    }

        .badge h4 {
            font-size: 1.25rem;
        }

    .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}


/* Trusted Section */
.trusted-section {
    padding: 80px 0;
    background: #ffffff;
}

.trusted-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.trusted-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-top: 8px;
}

/* Testimonials */
.testimonial-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #f8fbff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stars {
    color: #facc15;
    font-size: 20px;
    margin-bottom: 10px;
}

.testi-text {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 20px;
}

.profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1d4ed8;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

    .avatar.green {
        background: #059669;
    }

    .avatar.orange {
        background: #f97316;
    }

.center-btn {
    text-align: center;
    margin-top: 30px;
}

.btn-primary2 {
    background: #0d6efd;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* CTA Section */
.cta-section {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, #0a58a8, #003e75);
    color: white;
}

.cta-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
}

.cta-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 10px auto 40px auto;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    border: none;
    font-weight: 600;
}

    .cta-btn.orange {
        background: #ff8c42;
        color: white;
    }

    .cta-btn.white {
        background: white;
        color: #063b67;
    }

.cta-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .cta-icons {
        flex-direction: column;
        text-align: center;
    }
}


/* Our Clients Section */

.our-client-section {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-top: 20px;
}

/* Main Section */
.client-section {
    padding: 0px 335px;
    background: #f9f9f9;
    text-align: center;
}

.client-title {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Slider Base */
.client-slider {
    height: 120px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Keep your original loop structure */
.slide-track {
    display: flex;
    width: calc(250px * 10); 
    animation: scroll 30s linear infinite;
}

.slide {
    height: 120px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .slide img {
        width: 150px;
        max-width: 100%;
        height: auto;
        transition: 0.3s;
    }

        .slide img:hover {
           /* filter: grayscale(0%);*/
            opacity: 1;
        }

/* Animation KEEP SAME */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 5));
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .client-section {
        padding: 0px 60px;
    }

    .client-slider {
        height: 100px;
    }

    .slide {
        width: 200px;
        height: 100px;
    }

        .slide img {
            width: 120px;
        }

    .slide-track {
        width: calc(200px * 10); /* maintain loop */
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-200px * 5));
        }
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .client-section {
        padding: 0px 30px;
    }

    .client-slider {
        height: 90px;
    }

    .slide {
        width: 160px;
        height: 90px;
    }

        .slide img {
            width: 100px;
        }

    .slide-track {
        width: calc(160px * 10);
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-160px * 5));
        }
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .client-section {
        padding: 0px 10px;
    }

    .client-slider {
        height: 80px;
    }

    .slide {
        width: 130px;
        height: 80px;
    }

        .slide img {
            width: 80px;
        }

    .slide-track {
        width: calc(130px * 10);
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-130px * 5));
        }
    }
}
