:root {
    --primary-color: #202359;
    --primary-dark: #202359;
    --primary-light: #2a4da8;
    --secondary-color: #43cad9;
    --secondary-dark: #32adbb;
    --secondary-light: #47d9e9;
    --accent-color: #00a8e8;
    --dark-color: #212529;
    --gray-dark: #495057;
    --gray-medium: #6c757d;
    --gray-light: #e9ecef;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "Orbitron", sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-dark);
}

.btn-link:hover i {
    transform: translateX(4px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.satellite-loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.satellite {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    animation: satellite-orbit 2s linear infinite;
}

.orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

@keyframes satellite-orbit {
    0% {
        transform: rotate(0deg) translateX(40px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(40px) rotate(-360deg);
    }
}

/* Navigation */
.nav-fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-fixed-top.scrolled {
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    display: flex;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
}
.logo-img-big {
    height: 100px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    color: var(--gray-medium);
    line-height: 1;
    margin-top: 2px;
}

#mobile-menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: none;
    padding: 10px;
    z-index: 1001;
}

.menu-icon {
    width: 25px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-icon.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.navbar-collapse {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#main-nav {
    display: flex;
    align-items: center;
}

#nav {
    display: flex;
    margin-right: 30px;
}

#nav li {
    position: relative;
    margin-left: 25px;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
    overflow: hidden;
}

.nav-link span {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-link span::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--primary-color);
}

.nav-link:hover span {
    transform: translateY(-100%);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.dropdown-toggle i {
    margin-right: 5px;
}

.dropdown-toggle .fa-chevron-down {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--dark-color);
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: var(--gray-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.nav-cta {
    margin-left: 20px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        var(--primary-color) 100%
    );
    overflow: hidden;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(26, 58, 143, 0.8) 0%,
        rgba(18, 42, 109, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAyKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==");
    opacity: 0.5;
}

.map-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    transform: scale(0);
    animation: pulse 2s infinite;
}

.map-point::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

.map-point:nth-child(1) {
    animation-delay: 0s;
}
.map-point:nth-child(2) {
    animation-delay: 0.4s;
}
.map-point:nth-child(3) {
    animation-delay: 0.8s;
}
.map-point:nth-child(4) {
    animation-delay: 1.2s;
}
.map-point:nth-child(5) {
    animation-delay: 1.6s;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    70% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    margin: 0 auto 5px;
}

.wheel {
    width: 5px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
    margin-top: 5px;
    animation: scroll-wheel 2s infinite;
}

.arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin: -3px;
    animation: scroll-arrow 2s infinite;
}

.arrows span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrows span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

@keyframes scroll-arrow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background-color: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.solution-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid transparent;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 58, 143, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.solution-card:hover .card-icon {
    background-color: var(--primary-color);
    color: white;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.solution-card p {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.features-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.features-image {
    flex: 1;
}

.dashboard-mockup {
    position: relative;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 15px;
    transform: perspective(1000px) rotateY(-10deg);
}

.screen {
    background-color: #f5f7fa;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.map-view {
    height: 250px;
    background: linear-gradient(135deg, #e0e5ec 0%, #f5f7fa 100%);
    position: relative;
}

.vehicle-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.vehicle-marker::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.route-line {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 2px;
    background-color: var(--primary-color);
}

.route-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: var(--secondary-color);
    animation: route-animation 3s infinite linear;
}

@keyframes route-animation {
    0% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}

.stats-panel {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background-color: white;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-medium);
}

.features-list {
    flex: 1;
}

.feature-item {
    display: flex;
    /* margin-bottom: 30px; */
}

.feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background-color: rgba(26, 58, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 20px;
}

.feature-text h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.feature-text p {
    color: var(--gray-medium);
}

/* Technology Section */
.technology-section {
    padding: 100px 0;
    background-color: white;
}

.tech-tabs {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--gray-light);
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.tech-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.tech-image {
    flex: 1;
    position: relative;
}

.device-mockup {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.signal-animation {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 80px;
    height: 60px;
}

.signal-animation::before,
.signal-animation::after {
    content: "";
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
}

.signal-animation::before {
    width: 30px;
    height: 30px;
    top: 15px;
    right: 25px;
    animation: signal 2s infinite;
}

.signal-animation::after {
    width: 50px;
    height: 50px;
    top: 5px;
    right: 15px;
    animation: signal 2s infinite 0.3s;
}

@keyframes signal {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.tech-text {
    flex: 1;
}

.tech-text h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.tech-text p {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.tech-features {
    list-style: none;
}

.tech-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tech-features i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.industry-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 58, 143, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    background-color: var(--primary-color);
    color: white;
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.industry-card p {
    color: var(--gray-medium);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        var(--primary-color) 100%
    );
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: white;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.testimonial-quote {
    margin-bottom: 30px;
    position: relative;
}

.testimonial-quote i:first-child {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 3rem;
    color: rgba(26, 58, 143, 0.1);
}

.testimonial-quote i:last-child {
    position: absolute;
    bottom: -40px;
    right: 0;
    font-size: 3rem;
    color: rgba(26, 58, 143, 0.1);
}

.testimonial-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gray-dark);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
    text-align: left;
}

.author-info p {
    color: var(--gray-medium);
    text-align: left;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 15px;
}

.testimonial-dots {
    display: flex;
    margin: 0 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-light);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    align-items: end;
    gap: 50px;
    margin-bottom: 30px;
}

.about-text {
    flex: 1;
}

.about-text p {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    /* margin-bottom: 15px; */
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    color: var(--primary-dark);
}

.feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-image {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: -8px;
    right: -14px;
    background-color: var(--secondary-color);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.years {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    line-height: 1;
}

.label {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        var(--primary-color) 100%
    );
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: white;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background-color: rgba(26, 58, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 20px;
}

.info-text h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.info-text p {
    color: var(--gray-medium);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(26, 58, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background-color: white;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 58, 143, 0.1);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--gray-medium);
    transition: all 0.3s ease;
    pointer-events: none;
    background-color: white;
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 120px;
    margin-right: 10px;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-main {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    line-height: 1;
}

.footer-logo .logo-sub {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    margin-top: 2px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 15px;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-primary);
}

.footer-newsletter button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--secondary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
    margin-left: 5px;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .features-content,
    .tech-content,
    .about-content,
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .features-image,
    .tech-image,
    .about-image {
        margin-bottom: 30px;
    }

    .dashboard-mockup {
        transform: none;
    }
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    .about-image {
        margin-bottom: 30px;
        width: 100%;
    }
    .about-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .logo-main {
        font-size: 1rem;
    }
    #mobile-menu-toggle {
        display: block;
    }
    .testimonial-quote i:first-child {
        position: absolute;
        top: -38px;
        left: 0;
        font-size: 3rem;
        color: rgba(26, 58, 143, 0.1);
    }

    .testimonial-quote i:last-child {
        position: absolute;
        bottom: -60px;
        right: 0;
        font-size: 3rem;
        color: rgba(26, 58, 143, 0.1);
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .navbar-collapse.active {
        right: 0;
    }

    #nav {
        flex-direction: column;
        margin: 0 0 30px;
        width: 100%;
    }

    #nav li {
        margin: 0 0 15px;
    }

    .nav-cta {
        margin: 20px 0 0;
        width: 100%;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .author-info h4,
    .author-info p {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    .about-image {
        margin-bottom: 30px;
        width: 100%;
    }
    .about-text {
        width: 100%;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-header h2 {
        font-size: 1.8rem;
    }

    .solution-card,
    .industry-card {
        padding: 20px;
    }

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        border-bottom: 1px solid var(--gray-light);
    }

    .tab-btn::after {
        bottom: 0;
        height: 100%;
        width: 3px;
        transform: scaleY(0);
    }

    .tab-btn.active::after {
        transform: scaleY(1);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

.alert-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-danger {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--danger-color);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* team */
/* Team Section Styles */
.team-section {
    background: var(--gray-light);
    padding: 80px 0;
}
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}
.team-card {
    background: #fff;
    border-radius: 1.25rem;
    /* box-shadow: var(--shadow-md); */
    padding: 2rem 1.5rem;
    max-width: 320px;
    width: 100%;
    text-align: center;
    transition: box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.team-card:hover {
    /* box-shadow: var(--shadow-lg); */
}
.team-avatar {
    margin-bottom: 1.25rem;
}
.team-avatar img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}
.team-avatar-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    border: 4px solid var(--primary-color);
}
.team-name {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}
.team-position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.team-bio {
    color: var(--gray-dark);
    font-size: 0.98rem;
    margin-bottom: 1rem;
    min-height: 48px;
}
.team-social {
    margin-bottom: 0.5rem;
}
.team-social-link {
    margin: 0 6px;
    color: var(--primary-light);
    font-size: 1.2rem;
    transition: color 0.2s;
}
.team-social-link:hover {
    color: var(--accent-color);
}
