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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Chat Support */
.chat-support {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    z-index: 100;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.chat-modal {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 101;
}

.chat-modal-content {
    border-radius: 12px;
    overflow: hidden;
}

.chat-header {
    background: #007bff;
    color: white;
    padding: 12px;
    display: flex;
    justify-content: space-between;
}

.close-chat {
    cursor: pointer;
    font-size: 24px;
}

.chat-body {
    padding: 12px;
    min-height: 150px;
    background: #f9f9f9;
}

.chat-footer {
    display: flex;
    padding: 8px;
    border-top: 1px solid #ddd;
}

.chat-footer input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.chat-footer button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    margin-left: 8px;
    border-radius: 4px;
    cursor: pointer;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo i {
    font-size: 32px;
    color: #007bff;
}

.logo img {
    height: 120px !important;
    width: auto !important;
    max-width: none !important;
}

.logo img {
    width: 200px;
    height: auto;
}
@media (max-width: 768px) {
    .logo img {
        height: 55px;  /* smaller on mobile */
        width: 150px;
    }
    nav {
        padding: 10px 20px;
    }
}
.logo h1 {
    font-size: 24px;
}

.logo span {
    color: #007bff;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;  /* reduced from 20px to balance */
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007bff;
}

/* Hero Section */
/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/4481259/pexels-photo-4481259.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h2 {
    font-size: 36px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero h3 {
    font-size: 48px;
    margin: 20px 0;
}

.hero h3 span {
    font-size: 20px;
    display: block;
}

.btn {
    background: #ff6b35;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e55a2b;
}

/* Services */
.services, .partners, .testimonials, .faq {
    padding: 60px 50px;
    text-align: center;
}

.services h2, .partners h2, .testimonials h2, .faq h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

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

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.card i {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 15px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logos span {
    background: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 300px;
    font-style: italic;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-item {
    background: white;
    padding: 15px 20px;
    margin: 15px auto;
    max-width: 700px;
    border-radius: 8px;
    text-align: left;
}

/* Tracking Page */
.tracking-section, .admin-section {
    padding: 60px 50px;
    text-align: center;
}

.tracking-box, .admin-box {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tracking-box input, .admin-box input, .admin-box select, .admin-box textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.tracking-result {
    margin-top: 20px;
    padding: 15px;
    background: #e8f5e9;
    border-radius: 8px;
    display: none;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: white;
    text-align: center;
    padding: 30px;
}

/* Admin Table */
.admin-table {
    max-width: 1200px;
    margin: 20px auto;
    overflow-x: auto;
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.admin-table th, .admin-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.admin-table th {
    background: #007bff;
    color: white;
}

.delete-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h2 {
        font-size: 24px;
    }
    .services, .partners, .testimonials, .faq {
        padding: 40px 20px;
    }
}