/* DHL Clone Styles */
:root {
  --dhl-yellow: #ffcc00;
  --dhl-red: #d40511;
  --dhl-dark: #1F1F2E;
  --dhl-bg: #f5f5f5;
}

body {
    font-family: 'Inter', sans-serif;
}

/* 3-Tier Header */
.dhl-topbar {
    background: #fff;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: none;
}
.dhl-topbar-left {
    display: flex;
    align-items: center;
}
.dhl-topbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.btn-dhl-red {
    background-color: var(--dhl-red) !important;
    color: #fff !important;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
}
.btn-dhl-red:hover {
    background-color: #a8040d !important;
}
.btn-dhl-outline {
    background-color: #fff;
    color: var(--dhl-red) !important;
    border: 1px solid var(--dhl-red) !important;
    border-radius: 4px;
    padding: 8px 16px;
    font-weight: bold;
}
.btn-dhl-outline:hover {
    background-color: #fcfcfc;
}

.dhl-primary-navbar {
    background: var(--dhl-yellow);
    padding: 15px 0;
}
.dhl-primary-navbar .navbar-brand img {
    height: 25px;
}
.dhl-primary-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.dhl-primary-links a {
    color: #000;
    font-weight: 700;
    margin-left: 30px;
    text-decoration: none;
    font-size: 14px;
}
.dhl-primary-links a i {
    margin-right: 5px;
}
.dhl-primary-links a:hover {
    color: var(--dhl-red);
}

.dhl-secondary-navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    padding: 0;
}
.dhl-secondary-navbar .nav-link {
    color: #000 !important;
    font-weight: 600;
    padding: 20px 20px !important;
    font-size: 14px;
}
.dhl-secondary-navbar .nav-link:hover {
    color: var(--dhl-red) !important;
}

/* Sections */
.dhl-hero {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
}
.dhl-tracking-box {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 8px;
    width: 600px;
    max-width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.dhl-tracking-box h2 {
    font-weight: 700;
    margin-bottom: 20px;
}
.tracking-input-group {
    display: flex;
}
.tracking-input-group input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    font-size: 18px;
}
.tracking-input-group button {
    border-radius: 0 4px 4px 0;
    padding: 0 40px;
    font-size: 18px;
}

/* Overlapping Cards */
.overlapping-cards {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}
.dhl-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
}
.dhl-card:hover {
    transform: translateY(-5px);
}
.dhl-card i {
    color: var(--dhl-red);
    font-size: 30px;
    margin-bottom: 15px;
}
.dhl-card h5 {
    font-weight: 700;
}

/* Split Sections */
.dhl-split {
    padding: 80px 0;
}
.dhl-split-yellow {
    background-color: var(--dhl-yellow);
}
.dhl-split img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    height: 100%;
    min-height: 400px;
}
.dhl-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 40px;
}
.dhl-split-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.dhl-service-btn {
    background: var(--dhl-yellow);
    border: none;
    color: #000;
    font-weight: bold;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
}
.dhl-service-btn i {
    margin-right: 15px;
    font-size: 20px;
}

/* Info Cards */
.dhl-info-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}
.dhl-info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.dhl-info-card .content {
    padding: 25px;
}
.dhl-info-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Footer */
.dhl-footer-top {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #eee;
}
.dhl-footer-top h5 {
    color: var(--dhl-red);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1rem;
}
.dhl-footer-top ul {
    list-style: none;
    padding: 0;
}
.dhl-footer-top ul li {
    margin-bottom: 10px;
}
.dhl-footer-top ul li a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}
.dhl-footer-top ul li a:hover {
    color: var(--dhl-red);
}
.dhl-footer-bottom {
    background: #f5f5f5;
    padding: 30px 0;
    font-size: 13px;
}
.social-icons a {
    color: #555;
    font-size: 20px;
    margin-right: 15px;
}
.social-icons a:hover {
    color: var(--dhl-red);
}
.footer-links a {
    color: #555;
    margin-right: 15px;
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--dhl-red);
}
