@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-navy: #0E1B31;
    --accent-cyan: #00AEEF;
    --accent-orange: #F7941D;
    --text-white: #FFFFFF;
    --text-dark: #333333;
    --bg-light: #F4F7FA;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --glass: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-navy);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.logo-container {
    background: transparent;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.logo-img {
    height: 90px; /* Big logo as requested */
    mix-blend-mode: lighten;
    filter: drop-shadow(0px 2px 5px rgba(255,255,255,0.1));
}
    transition: var(--transition);
}

.brand-name {
    color: var(--white);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.brand-name span {
    color: var(--accent-cyan);
}

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

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-cyan);
}

.btn-login {
    background: var(--accent-orange);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-login:hover {
    background: #e68512;
    transform: translateY(-2px);
}

/* Hero Section with Slider */
.hero {
    height: 95vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 27, 49, 0.7); /* Dark navy overlay for readability */
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}


.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%; /* 3 slides */
    height: 100%;
    display: flex;
    z-index: -1;
    animation: heroSlide 15s infinite;
}

.hero-slide {
    width: 33.333%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

@keyframes heroSlide {
    0%, 28% { transform: translateX(0); }
    33%, 61% { transform: translateX(-33.333%); }
    66%, 95% { transform: translateX(-66.666%); }
    100% { transform: translateX(0); }
}

.welcome-badge {
    display: inline-block;
    background: rgba(0, 174, 239, 0.2);
    color: var(--accent-cyan);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--accent-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 45px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Tracking Bar */
.tracking-box {
    background: var(--white);
    padding: 10px;
    border-radius: 50px;
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.tracking-box input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
}

.tracking-box button {
    background: var(--accent-cyan);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tracking-box button:hover {
    background: #0096ce;
    padding: 15px 50px;
}

/* About Section Home */
.about-home {
    padding: 100px 0;
    background: var(--white);
}

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

.about-img-box {
    position: relative;
}

.about-img-box img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-tag {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-orange);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 700;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.why-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

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

.why-item i {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.why-item h4 {
    margin-bottom: 15px;
    color: var(--primary-navy);
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

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

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

.section-header .underline {
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-cyan);
    box-shadow: var(--shadow);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-navy);
}

/* Statistics */
.stats {
    background: var(--primary-navy);
    color: var(--white);
    padding: 80px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-orange);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #070e1a;
    color: var(--white);
    padding: 80px 0 20px;
}

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

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: var(--accent-cyan);
}

.footer-col p, .footer-col li {
    opacity: 0.7;
    margin-bottom: 10px;
}

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

/* Support Section */
.support-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-top: 20px;
}

/* Logistics Tools Section */
.tools-section {
    padding: 100px 0;
    background: var(--white);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tool-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tool-card h3 {
    margin-bottom: 25px;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
}

.tool-card h3 i {
    color: var(--accent-orange);
}

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

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #666;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.input-group input:focus, .input-group select:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.tool-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-box {
    background: var(--primary-navy);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
}

.result-box .label {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.result-box .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.btn-calculate {
    background: var(--accent-cyan);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-calculate:hover {
    background: #0096ce;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .tracking-box {
        flex-direction: column;
        border-radius: 15px;
        padding: 20px;
    }
    .tracking-box input {
        margin-bottom: 15px;
        text-align: center;
    }
    .nav-links {
        display: none;
    }
    .tools-grid {
        grid-template-columns: 1fr;
    }
    .logo-img {
        height: 60px;
    }
}
/* Floating Widgets */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.ai-chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    font-family: 'Outfit', sans-serif;
}

.chat-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-cyan);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.chat-btn:hover { transform: scale(1.1); }

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.chat-header {
    background: var(--primary-navy);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    height: 300px;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    max-width: 85%;
}

.bot-msg { background: #e3f2fd; align-self: flex-start; border-bottom-left-radius: 2px; }
.user-msg { background: var(--accent-cyan); color: white; align-self: flex-end; border-bottom-right-radius: 2px; }

.chat-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-footer input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
}

.chat-footer button {
    background: var(--accent-cyan);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

/* Red Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    height: 45px;
    background: linear-gradient(90deg, #d32f2f, #e53935, #d32f2f);
    background-size: 200% 100%;
    animation: gradientMove 5s ease infinite;
    color: white;
    display: flex;
    align-items: center;
    position: sticky;
    top: 110px;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(211, 47, 47, 0.4);
    border-bottom: 2px solid #ffeb3b;
}

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

.ticker-move {
    display: flex;
    white-space: nowrap;
    animation: tickerLoop 40s linear infinite;
}

.ticker-item {
    padding: 0 60px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(255,235,59,0.5);
}

@keyframes tickerLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Fleet Showcase */
.fleet-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.fleet-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.fleet-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.fleet-info {
    padding: 25px;
    text-align: center;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll to Top */
.scroll-top-btn {
    position: fixed;
    bottom: -100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn.show {
    bottom: 90px;
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-5px);
}

/* Network UI */
.network-header {
    text-align: center;
    padding: 160px 0 40px;
}

.network-header h1 {
    font-size: 2.5rem;
    color: var(--primary-navy);
}

.network-banner {
    background: #2a417a;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
}

.network-search-box {
    background: #2a417a;
    padding: 30px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.search-field {
    display: flex;
    align-items: center;
}

.search-field label {
    color: white;
    margin-right: 15px;
    white-space: nowrap;
    font-weight: 600;
}

.search-field .input-group {
    display: flex;
    flex: 1;
}

.search-field input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-field button {
    background: #e53935;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: 0.3s;
}

.search-field button:hover {
    background: #c62828;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: white;
    opacity: 0.7;
    text-decoration: none;
    transition: 0.3s;
}
.footer-col ul li a:hover {
    color: var(--accent-orange);
    opacity: 1;
    padding-left: 5px;
}
