/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Top Header */
.top-header {
    background-color: #f8f9fa;
    padding: 10px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0069d9;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../css/image/Backgroud\ picture\ shipping\ .jfif') no-repeat center center/cover;
    color: #fff;
    padding: 150px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #0069d9;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0069d9;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 15px;
    color: #0069d9;
}

.service-item p {
    margin-bottom: 20px;
    color: #666;
}

.read-more {
    color: #0069d9;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-stats {
    text-align: center;
}

.stat-item h3 {
    font-size: 4rem;
    color: #0069d9;
    margin-bottom: 10px;
}

.features {
    display: flex;
    margin: 20px 0;
}

.features ul {
    list-style: none;
    margin-right: 40px;
}

.features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0069d9;
}

.contact-call {
    margin-top: 30px;
}

.contact-call a {
    font-size: 1.5rem;
    color: #0069d9;
    text-decoration: none;
    font-weight: bold;
}

/* Why Choose Us */
.employee-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.emp-stat {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.emp-stat h4 {
    font-size: 2rem;
    color: #0069d9;
    margin-bottom: 10px;
}

/* Additional Services */
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-name {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
}

.testimonial-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-item h4 {
    color: #0069d9;
    margin-bottom: 5px;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat h3 {
    font-size: 3rem;
    color: #0069d9;
    margin-bottom: 10px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #0069d9;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step h3 {
    margin: 20px 0 15px;
    color: #0069d9;
}

/* CTA Section */
.cta {
    background-color: #0069d9;
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: #fff;
    color: #0069d9;
}

.cta .btn:hover {
    background-color: #f8f9fa;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item h3 {
    color: #0069d9;
    margin-bottom: 15px;
}

/* Newsletter */
.newsletter {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h3 {
    margin-bottom: 15px;
    color: #0069d9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: #0069d9;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section p {
    margin-bottom: 10px;
    color: #ddd;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    margin-left: 20px;
}

.footer-links a:hover {
    color: #fff;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}

.breadcrumb h1 {
    margin-bottom: 10px;
    color: #0069d9;
}

/* Tracking Form */
.tracking-form {
    text-align: center;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.form-container h2 {
    margin-bottom: 30px;
    color: #0069d9;
}

#trackingForm {
    display: flex;
    flex-direction: column;
}

#trackingNumber {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 10px;
}

.example {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

/* Tracking Results */
.tracking-results {
    background-color: #f8f9fa;
}

.tracking-status {
    margin-bottom: 30px;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
}

.progress-bar:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 5px;
    background-color: #ddd;
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.progress-step:before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #ddd;
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px;
}

.progress-step.active:before {
    background-color: #0069d9;
}

.progress-step span {
    font-size: 14px;
}

.tracking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-item h4 {
    color: #0069d9;
    margin-bottom: 10px;
}

.tracking-history {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tracking-history h4 {
    margin-bottom: 20px;
    color: #0069d9;
}

.tracking-history ul {
    list-style: none;
}

.tracking-history li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 15px;
}

.tracking-history li:last-child {
    border-bottom: none;
}

.date {
    color: #666;
    font-size: 14px;
}

.location {
    text-align: right;
    color: #666;
}

/* Contact Form */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-method {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-method h3 {
    color: #0069d9;
    margin-bottom: 15px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    min-height: 150px;
}

/* FAQ Page */
.faq-item {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.ask-question {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-top: 50px;
}

.ask-question h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #0069d9;
}