/* body {
    position: relative;
}
section {
    padding: 60px 0;
}
.card {
    margin: 20px 0;
}
.cta-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
}
.testimonials, .client-logos {
    margin: 40px 0;
}
.client-logos img {
    max-width: 100px;
    margin: 20px;
} */

:root {
    --primary-color: #4169e1;
    --secondary-color: #1a1f3d;
    --accent-color: #00f7ff;
    --button-color: #04a9d8;
    --main-color: #fe2761;
}

body {
    background-color: var(--secondary-color);
    color: white;
    font-family: 'Quicksand', sans-serif;
}

.navbar {
    background-color: rgba(26, 31, 61, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: white !important;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.btn-primary {
    background-color: var(--button-color);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2a4cd7;
    transform: translateY(-2px);
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(45deg, rgba(26, 31, 61, 0.50) 0%, rgba(26, 31, 61, 0.1) 100%),
                url('img/hero1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: aliceblue;
}

.hero-content {
    padding-top: 80px;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.floating-brain {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    opacity: 0.9;
    animation: float 6s ease-in-out infinite;
}

.circuit-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('path-to-circuit-pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-20px); }
    100% { transform: translateY(-50%) translateX(0); }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    .floating-brain {
        width: 80%;
        opacity: 0.3;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .navbar {
        background-color: var(--secondary-color);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.read-more {
    color: black !important;
}

/* Solutions Showcase Section */
.solutions-showcase {
    background-color: white;
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-image: url('path-to-dot-pattern.png');
    background-size: contain;
    opacity: 0.8;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.solution-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.solution-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-image {
    transform: scale(1.05);
}

.solution-content {
    padding: 1.5rem;
    text-align: center;
}

.solution-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: black;
}

.solution-content p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: black;
}

.read-more:hover svg {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    .solution-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 2rem;
    }
    .solutions-showcase {
        padding: 60px 0;
    }
}

/* Features Section */
.features-section {
    background-color: var(--secondary-color);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.features-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.features-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
}

.globe-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.globe-image {
    position: relative;
    width: 100%;
    height: auto;
    animation: rotate 20s linear infinite;
}

.btn-discover {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-discover:hover {
    background-color: #2a4cd7;
    transform: translateY(-2px);
    color: white;
}

.btn-discover svg {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-discover:hover svg {
    transform: translateX(5px);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 991px) {
    .features-content h2 {
        font-size: 2.8rem;
    }
    .globe-visual {
        margin-top: 3rem;
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .features-content h2 {
        font-size: 2.3rem;
    }
    .globe-visual {
        min-height: 300px;
    }
}

/* Team Section */
.team-section {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
}

.team-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.team-section p {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.team-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.team-card h5 {
    margin-top: 15px;
    font-weight: bold;
}

.team-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Planning Section */
.planning-section {
    padding: 60px 20px;
    text-align: center;
}

.planning-section h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.planning-section p {
    color: #6c757d;
    margin-bottom: 40px;
}

.feature-card {
    border: 1px solid #007bff;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
}

.feature-card h5 {
    font-weight: bold;
}

/* Projects Section */
.projects-section {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.projects-section h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.projects-section p {
    color: #6c757d;
    margin-bottom: 40px;
}

.project-card img {
    width: 100%;
    border-radius: 5px;
}

.project-card h5 {
    margin-top: 15px;
    font-weight: bold;
}

.project-card p {
    color: #6c757d;
}

.project-card a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.project-card a:hover {
    text-decoration: underline;
}