:root {
    --fedex-purple: #4D148C;
    --fedex-orange: #FF6200;
    --fedex-light-gray: #f7f7f7;
    --text-dark: #333333;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navbar Styling */
.navbar {
    background-color: var(--fedex-purple);
    padding: 15px 0;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    margin-right: 15px;
}

.nav-right i {
    font-size: 1.2rem;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('./bg.webp');
    background-size: cover;
    background-position: center;
}

.tracking-box {
    max-width: 800px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.tracking-tabs {
    background: rgba(255,255,255,0.9);
}

.tab-item {
    flex: 1;
    padding: 20px;
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
}

.tab-item.active {
    background: var(--fedex-purple);
    color: white;
}

.tab-item:hover:not(.active) {
    background: #eee;
}

.btn-orange {
    background-color: var(--fedex-orange);
    color: white;
    font-weight: bold;
    padding: 10px 30px;
    border: none;
    transition: 0.3s transform;
}

.btn-orange:hover {
    transform: translateX(5px);
    background-color: #e55a00;
    color: white;
}

/* Service Icons */
.col-md-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 768px) {
    .col-md-2-4 { width: 50%; }
}

.service-card {
    transition: 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon-circle {
    font-size: 2.5rem;
    color: var(--fedex-purple);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.75rem;
    font-weight: 700;
    color: #007AB7; /* Blue used for some links in screenshot */
}

/* Content Blocks */
.btn-outline-primary {
    border-color: #007AB7;
    color: #007AB7;
}

.btn-outline-primary:hover {
    background-color: #007AB7;
    border-color: #007AB7;
}

.text-purple {
    color: var(--fedex-purple);
}

/* Scroll Animation Classes */
.reveal {
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

/* Footer */
footer {
    background-color: white;
    border-top: 1px solid #eee;
}

footer a {
    text-decoration: none;
    color: #666;
    transition: 0.2s;
}

footer a:hover {
    color: var(--fedex-purple);
}

.social-links a {
    font-size: 1.2rem;
    margin-right: 20px;
    color: #333;
}