:root {
    --sky-blue: #00B4D8;
    --deep-blue: #03045E;
    --soft-sky: #E0F2FE;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow: 0 20px 40px rgba(0, 180, 216, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background: #ffffff;
    color: var(--deep-blue);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--soft-sky);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sky-blue);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-blue);
    font-weight: 700;
    margin-left: 40px;
    font-size: 0.85rem;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--sky-blue);
}

/* --- Hero --- */
.hero {
    padding: 200px 10% 120px;
    text-align: center;
    background: radial-gradient(circle at top right, var(--soft-sky), #fff);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, var(--deep-blue), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
}

/* --- SOS Journey --- */
.sos-journey {
    padding: 100px 10%;
    background: #fff;
}

.journey-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.journey-card {
    background: var(--soft-sky);
    padding: 50px 30px;
    border-radius: 40px;
    text-align: center;
    transition: 0.4s ease;
    border: 2px solid transparent;
}

.journey-card:hover {
    transform: translateY(-15px);
    background: #fff;
    border-color: var(--sky-blue);
    box-shadow: var(--shadow);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--sky-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* --- NEAR ME SERVICES (Animated Grid) --- */
.near-me-section {
    padding: 100px 10%;
    background: #fbfdff;
    overflow: hidden;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 30px;
    border: 1px solid var(--soft-sky);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: var(--sky-blue);
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.2);
}

.service-card i {
    font-size: 2.2rem;
    color: var(--sky-blue);
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: 0.3s;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    transition: 0.3s;
    line-height: 1.5;
}

.service-card:hover i,
.service-card:hover h3,
.service-card:hover p {
    color: white;
}

/* --- Tracking Visual --- */
.tracking-preview {
    display: flex;
    align-items: center;
    gap: 80px;
    background: var(--deep-blue);
    padding: 80px 10%;
    border-radius: 60px;
    margin: 50px 5%;
    color: white;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #000;
    border: 10px solid #222;
    border-radius: 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.map-bg {
    width: 100%;
    height: 100%;
    background: url('https://api.mapbox.com/styles/v1/mapbox/streets-v11/static/77.5946,12.9716,13,0/280x560?access_token=none') center;
    opacity: 0.8;
}

.gps-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #ff4d4d;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.gps-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff4d4d;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(5);
        opacity: 0;
    }
}

/* --- Video Tutorial --- */
.video-section {
    padding: 100px 10%;
    text-align: center;
}

.video-box {
    max-width: 1000px;
    margin: 50px auto;
    border-radius: 40px;
    overflow: hidden;
    border: 12px solid var(--soft-sky);
    box-shadow: var(--shadow);
}

video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
}

/* --- Footer --- */
footer {
    padding: 100px 10% 40px;
    background: #fbfdff;
    border-top: 1px solid var(--soft-sky);
}

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

.footer-col h4 {
    margin-bottom: 25px;
    color: var(--sky-blue);
    font-weight: 800;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #666;
}

.footer-col a {
    text-decoration: none;
    color: #666;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--sky-blue);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    font-size: 0.85rem;
    color: #999;
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .tracking-preview {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }

    .nav-links {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
 .reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 80px 10%; }
 .review-card { background: var(--soft-sky); padding: 40px; border-radius: 30px; }
 