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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}



.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #b4ee2b;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #b4ee2b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b4ee2b;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.login-btn {
    background: #b4ee2b;
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #7ed957;
    transform: translateY(-1px);
}

.login-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4b5563;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    overflow: hidden;
    background: #f8fafc;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 42px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem !important;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff !important;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.highlight {
    color: #b4ee2b;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff !important;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 35px;
}

.btn {
    padding: 18px 44px;
    border: none;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #b4ee2b;
    color: #fff;
    box-shadow: 0 4px 15px rgba(180, 238, 43, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(180, 238, 43, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #b4ee2b;
    border: 2px solid #b4ee2b;
}

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 42px;
}

.stat {
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    background: #fff;
    backdrop-filter: blur(40px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    min-width: 84px;
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.stat-number {
    display: block;
    font-size: 1.57rem;
    font-weight: 800;
    color: #b4ee2b;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2.8px;
}

.stat-bell {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #b4ee2b;
    margin: 0 auto;
    width: 39px;
    height: 39px;
    border-radius: 50%;
}

/* Dashboard Preview */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: white;
    border-radius: 24px;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.15),
        0 12px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
    /* transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02); */
    /* transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); */
}

.dashboard-header {
    background: #f8fafc;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: statusPulse 2s infinite;
}

.status-text {
    font-size: 12px;
    color: #10b981;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes statusPulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.dashboard-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ef4444;
}

.control.yellow {
    background: #f59e0b;
}

.control.green {
    background: #10b981;
}

.dashboard-title {
    font-size: 14px;
    color: #6b7280;
    margin-left: auto;
}

.dashboard-content {
    padding: 20px;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Metrics Bar */
.metrics-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.metric {
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.metric-value {
    font-size: 16px;
    font-weight: 700;
    color: #b4ee2b;
    margin-bottom: 2px;
}

.metric-label {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
}

.map-container {
    width: 100%;
    height: 180px;
    background: #f0f9ff;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(59, 130, 246, 0.04);
    background-size: 20px 20px;
    animation: gridFlow 15s linear infinite;
}

@keyframes gridFlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.location-pin {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.location-pin.origin {
    background: #10b981;
    top: 35%;
    left: 15%;
}

.location-pin.transit {
    background: #b4ee2b;
    top: 45%;
    left: 45%;
}

.location-pin.destination {
    background: #f59e0b;
    top: 25%;
    right: 20%;
}

.location-pin.active .pin-pulse {
    animation: pinPulse 2s infinite;
}

.pin-pulse {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
}

@keyframes pinPulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.pin-tooltip {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 20;
}

.pin-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.location-pin:hover .pin-tooltip {
    opacity: 1;
}

.tooltip-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.tooltip-status, .tooltip-temp {
    color: #94a3b8;
    font-size: 9px;
}

.route-path {
    position: absolute;
    top: 37%;
    left: 17%;
    width: 65%;
    height: 2px;
    background: #b4ee2b;
    transform: rotate(5deg);
    border-radius: 1px;
    animation: routeFlow 3s ease-in-out infinite;
}

@keyframes routeFlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.weather-indicator {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    animation: weatherFloat 4s ease-in-out infinite;
}

.weather-indicator.good {
    background: #f59e0b;
}

.weather-indicator.warning {
    background: #ef4444;
}

@keyframes weatherFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Status Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.status-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    transition: all 0.3s ease;
}

.status-card.secure::before { background: #10b981; }
.status-card.tracking::before { background: #b4ee2b; }
.status-card.environmental::before { background: #f59e0b; }
.status-card.alerts::before { background: #ef4444; }

.status-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}

.status-card.secure .card-icon { background: #10b981; }
.status-card.tracking .card-icon { background: #b4ee2b; }
.status-card.environmental .card-icon { background: #f59e0b; }
.status-card.alerts .card-icon { background: #ef4444; }

.card-content {
    flex: 1;
    min-width: 0;
}

.card-title {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.card-value {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.card-trend {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #10b981;
}

.card-detail {
    font-size: 10px;
    color: #94a3b8;
}

.card-signal-bars {
    display: flex;
    gap: 2px;
    align-items: end;
}

.bar {
    width: 3px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 1px;
}

.bar.active {
    background: #b4ee2b;
}

.bar:nth-child(1) { height: 4px; }
.bar:nth-child(2) { height: 6px; }
.bar:nth-child(3) { height: 8px; }
.bar:nth-child(4) { height: 10px; }
.bar:nth-child(5) { height: 12px; }

/* Timeline */
.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #10b981;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: #e2e8f0;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-dot {
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.timeline-item.active .timeline-dot {
    background: #b4ee2b;
    animation: timelinePulse 2s infinite;
    box-shadow: 0 0 0 4px rgba(180, 238, 43, 0.2);
}

.timeline-item.pending .timeline-dot {
    background: #e2e8f0;
}

@keyframes timelinePulse {
    0% { box-shadow: 0 0 0 4px rgba(180, 238, 43, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(180, 238, 43, 0.1); }
    100% { box-shadow: 0 0 0 4px rgba(180, 238, 43, 0.2); }
}

.timeline-content {
    text-align: center;
}

.timeline-title {
    font-size: 9px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.timeline-time {
    font-size: 8px;
    color: #64748b;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(180, 238, 43, 0.02);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #b4ee2b;
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.12),
        0 16px 48px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: #b4ee2b;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(180, 238, 43, 0.25);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #b4ee2b;
    box-shadow: 0 4px 16px rgba(180, 238, 43, 0.2);
}

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

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.company-stats {
    display: flex;
    gap: 12px;
}

.company-stats .stat {
    font-size: 0.75rem;
    padding: 4px 8px;
    background: rgba(180, 238, 43, 0.1);
    color: #b4ee2b;
    border-radius: 12px;
    font-weight: 600;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.trust-item {
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(180, 238, 43, 0.02);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #b4ee2b;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.trust-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.trust-item i {
    font-size: 4rem;
    margin-bottom: 6px;
    color: #1a1a1a;
    display: block;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: url('test_background.jpg') center center/cover no-repeat;
}

.bg-grid {
    background-color: rgba(180, 238, 43, 0.02);
    background-size: 60px 60px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: gridMove 20s linear infinite;
}

.bg-gradient {
    background: rgba(180, 238, 43, 0.04);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(180, 238, 43, 0.08);
    border-radius: 50%;
    animation: floatUpDown 6s ease-in-out infinite;
    border: 1px solid rgba(180, 238, 43, 0.1);
}

.floating-element:nth-child(2) {
    animation-delay: -1s;
    animation-duration: 8s;
}

.floating-element:nth-child(3) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.floating-element:nth-child(4) {
    animation-delay: -3s;
    animation-duration: 9s;
}

.floating-element:nth-child(5) {
    animation-delay: -4s;
    animation-duration: 5s;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.05);
        opacity: 0.5;
    }
}

/* Particle System */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #b4ee2b;
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px) scale(0);
        opacity: 0;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #b4ee2b;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(180, 238, 43, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #b4ee2b;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(180, 238, 43, 0.10);
    transition: all 0.4s ease;
    position: relative;
}

.feature-card:hover .feature-icon {
    background: #b4ee2b;
    color: #fff;
    transform: scale(1.05) rotateY(10deg);
    box-shadow: 0 12px 32px rgba(180, 238, 43, 0.15);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: #23272a;
}

/* Mobile-specific solution styling improvements */
@media (max-width: 768px) {
    .solutions .container {
        padding: 0 15px;
    }
    
    .solutions .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .solutions .section-header p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    /* Coming Soon badge styling for mobile */
    .solution-content div[style*="color:#b4ee2b"] {
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        margin-bottom: 12px !important;
        padding: 4px 12px;
        background: rgba(180, 238, 43, 0.1);
        border-radius: 12px;
        display: inline-block;
        border: 1px solid rgba(180, 238, 43, 0.3);
    }
    
    /* Better spacing for solution content on mobile */
    .solution-content h3 span {
        display: inline-block;
        line-height: 1.3;
    }
    
    /* Improved feature list for mobile */
    .solution-features {
        background: rgba(248, 250, 252, 0.8);
        padding: 15px;
        border-radius: 12px;
        margin: 20px 0;
    }
    
    /* App download section improvements */
    .app-downloads {
        margin-top: 25px !important;
        text-align: center;
    }
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.solution-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(180, 238, 43, 0.03);
    transition: left 0.8s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04);
}

.solution-card:nth-child(even) {
    direction: rtl;
}

.solution-card:nth-child(even) > * {
    direction: ltr;
}

.solution-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-mockup {
    width: 200px;
    height: 300px;
    background: #1e293b;
    border-radius: 28px;
    position: relative;
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(71, 85, 105, 0.8);
}

.solution-card:hover .device-mockup {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.3),
        0 12px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.device-screen {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    bottom: 30px;
    background: #0f172a;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sensor-indicator {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #6b7280;
    position: relative;
}

.sensor-indicator.active {
    background: #10b981;
    animation: pulse 2s infinite;
}

.lock-indicator {
    width: 60px;
    height: 60px;
    background: #b4ee2b;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lock-indicator::after {
    content: '\f023';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 1.5rem;
}

.device-label {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.solution-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.solution-content p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #4b5563;
}

.solution-features i {
    color: #10b981;
    font-size: 1.2rem;
}

/* Partnership Section */
.partnership {
    padding: 100px 0;
    background: #fff;
    color: #1a1a1a;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partnership-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.partnership-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 30px;
}

.partnership-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #cbd5e1;
}

.partnership-benefits {
    display: flex;
    gap: 30px;
}

.benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.benefit i {
    font-size: 2rem;
    color: #ef4444;
}

.benefit span {
    font-weight: 600;
    color: #f1f5f9;
}

.partnership-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-shield {
    width: 200px;
    height: 200px;
    background: #b4ee2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: #23272a;
    text-align: center;
    color: white;
}

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #4b5563;
}

.contact-item i {
    color: #b4ee2b;
    font-size: 1.2rem;
}

.app-downloads h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.app-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #334155;
    font-weight: 600;
}

.app-button:hover {
    background: #b4ee2b;
    transform: translateY(-2px);
}

.app-button i {
    font-size: 1.5rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #b4ee2b;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8fafc;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b4ee2b;
    background: white;
    box-shadow: 
        0 0 0 4px rgba(180, 238, 43, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
    transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: #cbd5e1;
    transform: translateY(-2px);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    font-size: 14px;
    color: #6b7280;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.footer-brand p {
    margin-top: 20px;
    color: #9ca3af;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #b4ee2b;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(180, 238, 43, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(180, 238, 43, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(180, 238, 43, 0);
    }
}

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

/* Enhanced Animation Styles */
.animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #b4ee2b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7ed957;
}

/* Enhanced button hover effects */
.btn {
    position: relative;
    transform: perspective(1px) translateZ(0);
    backface-visibility: hidden;
}

/* Navbar scroll enhancement */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(30px) saturate(200%) !important;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08) !important;
    border-bottom-color: rgba(226, 232, 240, 0.6) !important;
}

/* Text selection styling */
::selection {
    background: rgba(180, 238, 43, 0.2);
    color: inherit;
}

::-moz-selection {
    background: rgba(180, 238, 43, 0.2);
    color: inherit;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #b4ee2b;
    outline-offset: 2px;
    outline-style: solid;
}

/* Performance optimizations */
.hero-background,
.dashboard-preview,
.feature-icon,
.device-mockup {
    will-change: transform;
    transform: translateZ(0);
}

/* Enhanced loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Micro-interactions for better UX */
.contact-item:hover i {
    transform: scale(1.1);
    color: #7ed957;
    transition: all 0.3s ease;
}

.app-button:hover i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-4px);
    }
    80% {
        transform: translateY(-2px);
    }
}

/* Loading Animation */
.loading {
    overflow: hidden;
}

.loading .hero-content,
.loading .features,
.loading .solutions,
.loading .testimonials {
    opacity: 0;
    transform: translateY(20px);
}

.loaded .hero-content,
.loaded .features,
.loaded .solutions,
.loaded .testimonials {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loaded .hero-content {
    transition-delay: 0.2s;
}

.loaded .features {
    transition-delay: 0.4s;
}

.loaded .solutions {
    transition-delay: 0.6s;
}

.loaded .testimonials {
    transition-delay: 0.8s;
}

/* Initial state for animated elements */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
}

.trust-number {
    opacity: 0;
    transform: scale(0.8);
}



/* Responsive Design */
/* Mobile Navigation Styles */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu.active {
    display: flex !important;
    transform: translateX(0);
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 40px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    .nav-link {
        font-size: 1.2rem;
        font-weight: 600;
        color: #1a1a1a;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInDown 0.3s ease-out forwards;
    }
    
    .nav-menu.active .nav-link {
        animation: slideInDown 0.3s ease-out forwards;
    }
    
    .nav-menu.active .nav-link:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active .nav-link:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active .nav-link:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(6) { animation-delay: 0.35s; }
    
    .login-btn {
        margin-top: 20px;
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
        background: none;
        border: none;
        padding: 8px;
        border-radius: 6px;
        transition: background-color 0.3s ease;
    }
    
    .hamburger:hover {
        background-color: rgba(180, 238, 43, 0.1);
    }
    
    .hamburger span {
        display: block;
        transform-origin: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions {
        padding: 60px 0;
    }
    
    .solutions-grid {
        gap: 40px;
    }
    
    .solution-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 25px;
        gap: 30px;
        margin: 0 15px;
        border-radius: 20px;
    }
    
    .solution-card:nth-child(even) {
        direction: ltr;
    }
    
    .solution-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .solution-image img {
        max-width: 250px !important;
        max-height: 300px !important;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .solution-content {
        text-align: left;
    }
    
    .solution-content h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .solution-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .solution-features {
        margin-top: 20px;
    }
    
    .solution-features li {
        font-size: 0.95rem;
        margin-bottom: 12px;
        text-align: left;
    }
    
    .app-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .app-button {
        flex: 1;
        min-width: 140px;
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .partnership-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .partnership-benefits {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .solution-content h3 {
        font-size: 1.5rem;
    }
    
    .partnership-text h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .dashboard-preview {
        max-width: 100%;
        transform: none !important;
        margin: 0 10px;
    }
    
    .new-dashboard {
        grid-template-columns: 60px 1fr;
        min-height: 400px;
        border-radius: 16px;
    }
    
    .dashboard-sidebar {
        padding: 15px 0;
        border-radius: 16px 0 0 16px;
    }
    
    .nav-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .shipment-panel {
        padding: 15px;
    }
    
    .panel-title {
        font-size: 1.1rem;
    }
    
    .shipment-card {
        padding: 15px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .metric-item {
        padding: 8px;
    }
    
    .alert-list {
        max-height: 120px;
    }
    
    .map-panel {
        min-height: 200px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    /* Testimonials responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .company-stats {
        justify-content: center;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-item {
        padding: 20px 15px;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    /* Floating elements responsive */
    .floating-element {
        width: 80px;
        height: 80px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    /* Enhanced Solutions Mobile Styling */
    .solutions {
        padding: 40px 0;
    }
    
    .solution-card {
        padding: 20px;
        margin: 0 10px;
        gap: 25px;
        border-radius: 16px;
    }
    
    .solution-image img {
        max-width: 200px !important;
        max-height: 250px !important;
    }
    
    .solution-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .solution-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .solution-features li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .app-button {
        width: 100%;
        min-width: unset;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* New Dashboard Styles */
.new-dashboard {
    display: grid;
    grid-template-columns: 80px 1fr;
    background: #f4f7fa;
    width: 100%;
    max-width: 1400px;
    min-height: 600px;
    border-radius: 24px;
    /* transform: perspective(1500px) rotateY(0) rotateX(0) scale(1); */
    /* box-shadow: 0 40px 120px rgba(0, 0, 0, 0.15); */
    border: 1px solid #e2e8f0;
}

.dashboard-sidebar {
    background: white;
    border-right: 1px solid #e2e8f0;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px 0 0 24px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-icon:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.nav-icon.active {
    background: #b4ee2b;
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(180, 238, 43, 0.4);
}

.dashboard-main {
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 20px;
    overflow: hidden;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 8px 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    width: 300px;
}

.search-bar input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    margin-left: 10px;
    font-size: 14px;
}

.search-bar i {
    color: #94a3b8;
}

.filter-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    font-size: 16px;
    margin-left: 10px;
}

.notification-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    position: relative;
}

.notification-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    border: 2px solid #f4f7fa;
}

.main-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 20px;
    overflow: hidden;
}

.shipment-panel {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow-y: auto;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.panel-title {
    font-size: 18px;
    font-weight: 600;
}

.add-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
}

.shipment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shipment-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.shipment-card.active {
    border-color: #cbd5e1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.shipment-header {
    margin-bottom: 20px;
}

.shipment-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.shipment-id {
    font-size: 12px;
    color: #64748b;
}

.shipment-details-section {
    margin-bottom: 20px;
}

.shipment-details-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.detail-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.detail-row span:first-child {
    color: #64748b;
}

.status-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.status-badge.in-transit {
    background: #b4ee2b;
    color: #1e293b;
}

.rtl-section {
    margin-bottom: 20px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.rtl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.green {
    background: #10b981;
}

.metrics-section {
    margin-bottom: 20px;
}

.metrics-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.last-updated {
    font-size: 11px;
    color: #64748b;
    font-weight: normal;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.metric-item i {
    font-size: 20px;
    color: #64748b;
}

.metric-value {
    font-size: 14px;
    font-weight: 600;
}

.metric-value small {
    font-size: 10px;
    font-weight: normal;
    color: #64748b;
}

.alert-history-section h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.view-all {
    font-size: 12px;
    color: #2563eb;
    text-decoration: none;
}

.alert-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}

.alert-icon {
    color: #ef4444;
    font-size: 14px;
}

.alert-text {
    flex: 1;
    font-weight: 500;
}

.alert-time {
    color: #64748b;
}

.view-full-report {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-size: 12px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-full-report:hover {
    border-color: #b4ee2b;
    color: #1e293b;
}

.map-panel {
    background: #e0e5ea;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-image: url('final-lines.png');
    background-size: cover;
    background-position: center;
}

.map-pin {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.map-pin.blue-pin {
    width: 16px;
    height: 16px;
    background: #3b82f6;
    border: 3px solid white;
}

.map-pin.green-cluster {
    width: 40px;
    height: 40px;
    background: #b4ee2b;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cluster-count {
    color: #1e293b;
    font-size: 12px;
    font-weight: 600;
}

.map-controls {
    position: absolute;
    bottom: 60px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #64748b;
    font-size: 16px;
}

.map-control-btn:hover {
    background: #f8fafc;
}

.map-attribution {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #64748b;
}

.solutions .section-header h2 {
    color: #b4ee2b;
    font-size: 3.5rem;
}

.solutions .section-header p {
    color: #e5e7eb;
}

.fas.fa-check {
    color: #b4ee2b !important;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    /* Partnership Section Mobile */
    .partnership {
        padding: 60px 0;
    }
    
    .partnership-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .partnership-text h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
    }
    
    .partnership-subtitle {
        font-size: 1.2rem !important;
    }
    
    .partnership-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .partnership-visual {
        margin: 0 auto;
    }
    
    .partnership-visual img {
        max-width: 260px !important;
    }
    
    /* CTA Section Mobile */
    .cta {
        padding: 60px 20px;
    }
    
    .cta-content {
        text-align: center;
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .contact-info {
        text-align: center;
        padding: 0;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .contact-info p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 25px;
        margin: 0;
        width: 100%;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .checkbox label {
        font-size: 0.9rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        text-align: left;
    }
    
    .footer-column {
        margin-bottom: 0;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-column a {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    /* Enhanced Touch Interactions */
    .contact-item,
    .footer-column a,
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .contact-form input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
    
    .form-group input,
    .form-group textarea {
        -webkit-appearance: none;
        border-radius: 12px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    /* Improved Form Button */
    .contact-form .btn-primary {
        width: 100%;
        margin-top: 20px;
        padding: 14px;
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* Better Spacing for Links */
    .footer-column a {
        padding: 8px 0;
    }
}

@media (max-width: 768px) {
    /* Hide Dashboard Preview on Mobile */
    .dashboard-preview {
        display: none;
    }
    
    /* Adjust Hero Section Without Dashboard */
    .hero-visual {
        min-height: auto;
        padding: 0;
    }
}

.partnership-visual {
    text-align: center;
}

.mega-fortris-logo-wrapper {
    background: #fff;
    padding: 24px;
    border-radius: 24px;
    display: inline-block;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.mega-fortris-logo-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(0,0,0,0.1);
}

.security-shield {
    position: relative;
    width: 300px;
}

 