/* Global Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #333;
    --light-text: #f8fafc;
    --background-color: #ffffff;
    --light-bg: #f1f5f9;
    --dark-bg: #0f172a;
    --border-color: #e2e8f0;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

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

.primary-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

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

.section-header h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

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

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

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

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

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

.hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Hero Slider Section */
.hero-slider {
    padding-top: 80px;
    position: relative;
    height: auto;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 600px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
    overflow: hidden;
    display: none;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    display: block;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f6f9ff 0%, #e9f1ff 100%);
    z-index: -1;
}

/* Pixel-style irregular shapes */
.pixel-shape {
    position: absolute;
    background-color: var(--primary-color);
    opacity: 0.1;
    z-index: 0;
}

.pixel-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 100%, 50% 75%, 0% 75%);
}

.pixel-2 {
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 25% 100%, 25% 75%, 0% 75%, 0% 25%, 25% 25%);
}

.pixel-3 {
    bottom: 15%;
    left: 15%;
    width: 100px;
    height: 100px;
    clip-path: polygon(0% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 100%, 25% 100%, 25% 75%, 0% 75%);
}

.pixel-4 {
    top: 40%;
    left: 30%;
    width: 60px;
    height: 60px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 75% 100%, 75% 75%, 25% 75%, 25% 100%, 0% 100%);
}

.pixel-5 {
    bottom: 10%;
    right: 20%;
    width: 90px;
    height: 90px;
    clip-path: polygon(25% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 75%, 75% 75%, 75% 100%, 25% 100%, 25% 75%, 0% 75%, 0% 25%, 25% 25%);
}

.pixel-6 {
    top: 15%;
    left: 10%;
    width: 70px;
    height: 70px;
    clip-path: polygon(0% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 75%, 25% 75%, 25% 100%, 0% 100%);
    background-color: #8b5cf6;
}

.pixel-7 {
    top: 25%;
    right: 15%;
    width: 110px;
    height: 110px;
    clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 0% 100%, 0% 25%, 25% 25%);
    background-color: #8b5cf6;
}

.pixel-8 {
    bottom: 20%;
    left: 20%;
    width: 90px;
    height: 90px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 25% 100%, 25% 75%, 0% 75%);
    background-color: #8b5cf6;
}

.pixel-9 {
    bottom: 15%;
    right: 25%;
    width: 80px;
    height: 80px;
    clip-path: polygon(25% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 100%, 0% 100%, 0% 25%, 25% 25%);
    background-color: #8b5cf6;
}

.pixel-10 {
    top: 20%;
    left: 15%;
    width: 90px;
    height: 90px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 75% 100%, 75% 75%, 25% 75%, 25% 100%, 0% 100%);
    background-color: #ef4444;
    opacity: 0.08;
}

.pixel-11 {
    top: 30%;
    right: 20%;
    width: 100px;
    height: 100px;
    clip-path: polygon(25% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 75%, 75% 75%, 75% 100%, 0% 100%, 0% 25%, 25% 25%);
    background-color: #ef4444;
    opacity: 0.08;
}

.pixel-12 {
    bottom: 25%;
    left: 25%;
    width: 80px;
    height: 80px;
    clip-path: polygon(0% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 100%, 25% 100%, 25% 75%, 0% 75%);
    background-color: #ef4444;
    opacity: 0.08;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.slide-text {
    flex: 1;
    padding-right: 50px;
}

.slide-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.slide-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* Slide Features */
.slide-features {
    margin-bottom: 25px;
    padding-left: 0;
}

.slide-features li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
}

.slide-features i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 18px;
}

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

.hero-illustration {
    max-width: 100%;
    height: auto;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    transition: var(--transition);
}

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

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

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

/* Agency GPS Tracking Section */
.agency-gps-section {
    position: relative;
    background: linear-gradient(120deg, #f1f5fa 60%, #e0eaff 100%);
    overflow: hidden;
    padding: 90px 0 60px 0;
    z-index: 2;
}

.agency-gps-bg {
    position: absolute;
    top: 0; left: 0; width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.agency-gps-bg svg {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 220px;
    display: block;
}

/* GPS Pixel Shapes */
.gps-pixel-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.gps-pixel {
    position: absolute;
    background-color: var(--primary-color);
    opacity: 0.08;
}

.gps-pixel-1 {
    top: 15%;
    left: 5%;
    width: 40px;
    height: 40px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 0% 100%);
}

.gps-pixel-2 {
    top: 25%;
    right: 8%;
    width: 60px;
    height: 60px;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 25%);
}

.gps-pixel-3 {
    bottom: 20%;
    left: 12%;
    width: 50px;
    height: 50px;
    clip-path: polygon(0% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 100%, 0% 100%);
}

.gps-pixel-4 {
    top: 40%;
    left: 30%;
    width: 30px;
    height: 30px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 25% 100%, 25% 75%, 0% 75%);
}

.gps-pixel-5 {
    bottom: 30%;
    right: 15%;
    width: 45px;
    height: 45px;
    clip-path: polygon(25% 0%, 75% 0%, 75% 25%, 100% 25%, 100% 75%, 75% 75%, 75% 100%, 0% 100%, 0% 25%, 25% 25%);
}

.gps-pixel-6 {
    top: 60%;
    right: 25%;
    width: 35px;
    height: 35px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 25% 100%, 25% 75%, 0% 75%);
}

/* GPS Header */
.gps-header h2 {
    color: var(--primary-color);
}

/* GPS Content */
.agency-gps-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 2;
    gap: 60px;
    margin-bottom: 80px;
}

.agency-gps-text {
    flex: 1.2;
    z-index: 2;
}

.agency-gps-text h3 {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 18px;
}

.agency-gps-text p {
    font-size: 18px;
    color: #444;
    margin-bottom: 28px;
    line-height: 1.7;
}

/* GPS Features Grid */
.gps-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.gps-feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(37,99,235,0.06);
    transition: var(--transition);
    border: 1px solid #e5edfa;
    position: relative;
    overflow: hidden;
}

.gps-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37,99,235,0.1);
}

.gps-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.8;
}

.feature-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gps-feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.gps-feature-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Agency GPS Features List */
.agency-gps-features {
    margin: 30px 0;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.agency-gps-features li {
    font-size: 16px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 500;
}

.agency-gps-features i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 18px;
    min-width: 20px;
}

.gps-cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* GPS Graphic */
.agency-gps-graphic {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.gps-main-graphic {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(37,99,235,0.1));
}

/* Device Specs */
.device-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
}

.spec-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 12px 15px;
    box-shadow: 0 4px 12px rgba(37,99,235,0.08);
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--primary-color);
}

.spec-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.spec-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Use Cases Section */
.gps-use-cases {
    padding: 60px 0;
    background-color: #f8fafc;
    border-radius: 20px;
    margin-bottom: 80px;
}

.use-cases-title {
    text-align: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.use-cases-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.use-case-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(37,99,235,0.06);
    transition: var(--transition);
    border: 1px solid #e5edfa;
    position: relative;
    overflow: hidden;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37,99,235,0.1);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(37,99,235,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.use-case-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.use-case-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.use-case-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.use-case-features {
    padding-left: 0;
}

.use-case-features li {
    font-size: 15px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: #444;
}

.use-case-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Tech Specs Section */
.tech-specs-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.tech-specs-text {
    flex: 1.5;
}

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

.tech-specs-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.6;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.spec-group h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(37,99,235,0.1);
}

.spec-group ul {
    padding-left: 0;
}

.spec-group li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #444;
    list-style: none;
}

.spec-group li strong {
    color: var(--secondary-color);
    margin-right: 5px;
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}

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

.outline-btn i {
    margin-left: 8px;
}

.tech-specs-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Pixel-style device illustration */
.device-illustration {
    position: relative;
    width: 200px;
    height: 350px;
    margin: 0 auto;
}

.device-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e293b;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.device-screen {
    position: absolute;
    top: 40px;
    left: 20px;
    width: calc(100% - 40px);
    height: 220px;
    background-color: #0f172a;
    border-radius: 8px;
    overflow: hidden;
}

.device-screen::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60%;
    height: 10px;
    background-color: #2563eb;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(37,99,235,0.5);
    animation: pulse 2s infinite;
}

.device-screen::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 20px;
    width: 80%;
    height: 120px;
    background-color: rgba(37,99,235,0.1);
    border-radius: 5px;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(37,99,235,0.2) 50%, transparent 100%),
        linear-gradient(transparent 20px, rgba(255,255,255,0.1) 20px, rgba(255,255,255,0.1) 21px, transparent 21px),
        linear-gradient(transparent 40px, rgba(255,255,255,0.1) 40px, rgba(255,255,255,0.1) 41px, transparent 41px),
        linear-gradient(transparent 60px, rgba(255,255,255,0.1) 60px, rgba(255,255,255,0.1) 61px, transparent 61px),
        linear-gradient(transparent 80px, rgba(255,255,255,0.1) 80px, rgba(255,255,255,0.1) 81px, transparent 81px),
        linear-gradient(transparent 100px, rgba(255,255,255,0.1) 100px, rgba(255,255,255,0.1) 101px, transparent 101px);
    background-size: 200% 100%, 100% 120px, 100% 120px, 100% 120px, 100% 120px, 100% 120px;
    animation: scan 3s infinite linear;
}

.device-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
}

.device-indicator {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
}

.device-indicator.active {
    background-color: #10b981;
    box-shadow: 0 0 10px rgba(16,185,129,0.7);
    animation: blink 2s infinite;
}

.device-antenna {
    position: absolute;
    top: -15px;
    right: 30px;
    width: 3px;
    height: 15px;
    background-color: #64748b;
}

.device-antenna::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 9px;
    height: 3px;
    background-color: #64748b;
    border-radius: 3px;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

@keyframes scan {
    0% { background-position: 100% 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: -100% 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
}

@keyframes blink {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* Modern GPS Card */
.gps-card-modern {
    position: relative;
    background: linear-gradient(120deg, #f3f9ff 70%, #e5edfa 100%);
    box-shadow: 0 8px 24px rgba(37,99,235,0.06);
    border: 1.5px solid #e0eaff;
    overflow: visible;
}
.gps-card-modern .gps-card-svg {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 1;
}
.gps-card-modern .gps-card-svg svg {
    width: 100px;
    height: auto;
    opacity: 0.7;
}
.gps-card-modern ul.service-features li {
    color: #1e40af;
    font-weight: 500;
}
.gps-card-modern h3 {
    color: var(--primary-color);
}

/* General SVG/Irregular Shapes */
svg {
    shape-rendering: geometricPrecision;
}

/* Transition Section */
.transition-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-text);
    padding: 60px 0 30px;
    position: relative;
    z-index: 3;
}

.transition-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.transition-text {
    flex: 1.5;
}

.transition-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.transition-text p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.transition-stats {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.transition-stat {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    flex: 1 0 calc(33.333% - 20px);
    min-width: 120px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.transition-stat:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    opacity: 0.8;
}

.transition-arrow {
    text-align: center;
    margin-top: 20px;
}

.transition-arrow i {
    font-size: 24px;
    color: var(--light-text);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

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

/* Responsive for new sections */
@media screen and (max-width: 992px) {
    .agency-gps-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .agency-gps-graphic {
        justify-content: center;
    }
    
    /* Transition section responsive */
    .transition-content {
        flex-direction: column;
        text-align: center;
    }
    
    .transition-stats {
        width: 100%;
        justify-content: center;
    }
    
    .transition-stat {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    /* Improve slide content on tablets */
    .slide-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
    }
    
    .slide-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .slide-features {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-illustration {
        max-width: 400px;
    }
}
@media screen and (max-width: 768px) {
    /* Header and navigation */
    header {
        padding: 15px 0;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 70px);
        background-color: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    /* Agency GPS section */
    .agency-gps-section {
        padding: 60px 0 40px 0;
    }
    
    .agency-gps-text h3 {
        font-size: 28px;
    }
    
    .agency-gps-graphic svg {
        max-width: 230px;
    }
    
    .gps-card-modern .gps-card-svg {
        position: static;
        margin: 18px auto 0 auto;
        display: block;
    }
    
    .gps-card-modern .gps-card-svg svg {
        width: 70px;
    }
    
    /* Transition section mobile */
    .transition-section {
        padding: 40px 0 20px;
    }
    
    .transition-text h2 {
        font-size: 26px;
    }
    
    .transition-text p {
        font-size: 16px;
    }
    
    .transition-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .transition-stat {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    /* Hero slider mobile */
    .hero-slider {
        min-height: auto;
        padding-bottom: 50px;
    }
    
    .slide {
        min-height: auto;
        padding-bottom: 30px;
    }
    
    .slide-content {
        padding: 30px 20px;
        flex-direction: column;
    }
    
    .slide-text {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .slide-text h1 {
        font-size: 32px;
    }
    
    .slide-text p {
        font-size: 16px;
    }
    
    .slide-features {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .slide-features li {
        font-size: 15px;
        text-align: left;
    }
    
    .hero-illustration {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .slider-controls {
        bottom: 10px;
    }
    
    /* GPS features grid mobile */
    .gps-features-grid {
        grid-template-columns: 1fr;
    }
    
    .agency-gps-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    /* Use cases mobile */
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    /* Tech specs mobile */
    .tech-specs-content {
        flex-direction: column;
    }
    
    .tech-specs-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    .footer-logo-container {
        justify-content: center;
    }
    
    .contact-info {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    /* Header and logo */
    .logo-text {
        font-size: 18px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    /* Hero section */
    .hero-slider {
        min-height: 800px;
    }
    
    .slide-text h1 {
        font-size: 26px;
    }
    
    .slide-text p {
        font-size: 15px;
    }
    
    .slide-content {
        padding-top: 80px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-illustration {
        max-width: 220px;
    }
    
    /* Services section */
    .service-card {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    /* GPS section */
    .gps-cta-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .agency-gps-text h3 {
        font-size: 24px;
    }
    
    /* About section */
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
    }
    
    /* Contact section */
    .contact-form input, .contact-form textarea {
        padding: 12px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-item i {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    /* Other sections */
    .section-header h2 {
        font-size: 26px;
    }
    
    .device-specs {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}


.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

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

.hero-image {
    flex: 1;
}

/* Services Section */
.services {
    background-color: var(--light-bg);
}

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

.service-card {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-features {
    margin: 20px 0;
}

.service-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.learn-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 15px;
}

.values-list li {
    margin-bottom: 10px;
}

/* Stats Section */
.stats {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    padding: 60px 0;
}

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

.stat-item h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background-color: var(--background-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.contact-item i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 70px 0 20px;
}

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

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

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-right: 10px;
    filter: brightness(0) invert(1); /* Make the logo white */
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--light-text);
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h3,
.footer-services h3,
.footer-social h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

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

.footer-links ul li a,
.footer-services ul li a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact-item {
        flex: 1;
        min-width: 200px;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--background-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .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(5px, -5px);
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .contact-info {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .stats .container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-services h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}
