* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

p, a, input, button, label {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.nav-links a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.hero h1 {
    font-weight: 700;
}

.hero .subtitle {
    font-weight: 500;
}

.service-card h2,
.what-we-offer h2,
.more-services h2 {
    font-weight: 600;
}

.footer h3 {
    font-weight: 500;
}

.header {
    background-color: #5c1f00;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    height: 80px;
    padding: 1rem 2rem;
    margin: 0;
    border: none;
}

.logo {
    padding: 0;
    background: transparent;
}

.logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #5c1f00;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 5px;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.dropdown-content a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #5c1f00;
    transform: rotate(45deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        animation: none;
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 12px 20px;
        text-align: center;
    }
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    padding: 20px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero .subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero .description {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.tracking-box {
    display: flex;
    gap: 10px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.tracking-box input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.tracking-box button {
    padding: 12px 30px;
    background: #FFA500;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(145deg, #5c1f00, #8B4513);
    padding: 2.5rem;
    text-align: center;
    color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #FFA500;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover i {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: #FFA500;
}

.service-card h2 {
    text-transform: uppercase;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #FFA500;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.service-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #FFA500;
    border-radius: 2px;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 1200px) {
    .services-grid {
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .service-card {
        min-height: auto;
        padding: 2rem;
    }
    
    .service-card h2 {
        font-size: 1.5rem;
    }
    
    .service-card i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.what-we-offer {
    padding: 50px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.what-we-offer h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.what-we-offer{
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    color: #666;
}

.subheading {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    color: white;
}

.what-we-offer .subheading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #FFA500;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.offer-card {
    text-align: left;
    padding: 20px;
}

.offer-card i {
    color: #FFA500;
    font-size: 2rem;
    margin-bottom: 20px;
}

.offer-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.offer-card p {
    color: #666;
    line-height: 1.6;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    height: 400px;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide {
    min-width: 25%;
    flex: 0 0 25%;
    position: relative;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 24px;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    width: 55px;
    height: 55px;
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.site-section {
    padding: 2.5em 0;
}

.unit-1 {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
}

.unit-1-text {
    position: absolute;
    bottom: -70px;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    transition: .3s all ease;
}

.unit-1:hover .unit-1-text {
    bottom: 0;
}

.unit-1 img {
    height: 400px;
    object-fit: cover;
    transition: .3s all ease-in-out;
}

.unit-1:hover img {
    transform: scale(1.05);
}

.unit-1-heading {
    font-size: 1.5rem;
    margin-bottom: 0;
}

/* Owl Carousel Navigation Styles */
.owl-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1px; /* Small gap between arrows */
    z-index: 10;
}

.owl-prev, .owl-next {
    width: 40px !important;
    height: 40px !important;
    background: white !important; /* White background */
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important; /* Remove default margins */
    border-radius: 0 !important; /* Square buttons */
}

.owl-prev i, .owl-next i {
    color: #000 !important; /* Black arrows */
    font-size: 18px;
}

/* Remove dots if present */
.owl-dots {
    display: none;
}

/* Make sure images fill the container */
.owl-carousel .owl-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Remove any gaps */
.owl-carousel .owl-stage {
    display: flex;
    gap: 0;
}

.nonloop-block-13 {
    position: relative;
}

/* Custom navigation arrows */
.owl-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px; /* Adjust width for arrow spacing */
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.owl-prev, .owl-next {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 0 !important; /* Remove border radius */
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
}

.owl-prev i, .owl-next i {
    color: #000 !important; /* Black arrows */
    font-size: 18px;
}

/* Remove any margins between slides */
.owl-carousel.nonloop-block-13 {
    margin: 0;
}

.owl-carousel .owl-stage {
    display: flex;
    gap: 0;
}

/* Update carousel initialization */

.more-services {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.more-services h2 {
    color: #FFA500;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.more-services .subtitle {
    color: #666;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.more-services .subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #FFA500;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    text-align: left;
    padding: 20px;
}

.service-item i {
    color: #FFA500;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-item h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    color: #FFA500;
    text-decoration: none;
    font-weight: bold;
}

.learn-more:hover {
    text-decoration: underline;
}

.footer {
    margin-top: auto;
    width: 100%;
    background-color: #5c1f00;
    color: white;
    padding: 20px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left h3, 
.footer-right h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-left p {
    margin: 5px 0;
}

.footer-left a {
    color: white;
    text-decoration: none;
}

.footer-left a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.about-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

.about-content-sections {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.breadcrumb {
    font-size: 18px;
    margin-top: 20px;
}

.breadcrumb a {
    color: #FFA500;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.founder-message {
    margin-bottom: 50px;
}

.founder-message h2,
.vision h2,
.mission h2,
.value h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.vision-mission-container {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.vision,
.mission {
    flex: 1;
}

.value {
    margin-bottom: 50px;
}

.about-content p {
    line-height: 1.6;
    color: #666;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .vision-mission-container {
        flex-direction: column;
        gap: 30px;
    }
}

.founder-message .signature {
    margin-top: 20px;
    line-height: 1.5;
}

.founder-message .signature p {
    margin: 0;
}

.value-points ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.value-points li {
    margin-bottom: 10px;
}

.value-descriptions p {
    margin-bottom: 10px;
}

.value-descriptions strong {
    color: #333;
}

/* Add these styles for the about page hero section */
.about-hero {
    min-height: 300px;  /* Smaller height than homepage hero */
    background-color: #1a3f5c;  /* Dark blue background */
}

.about-hero .hero-content {
    text-align: center;
    padding-top: 120px;  /* Adjust vertical centering */
}

.about-hero h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 10px;
}

.about-hero .breadcrumb {
    color: white;
    font-size: 16px;
    margin-top: 10px;
}

.about-hero .breadcrumb a {
    color: #FFA500;  /* Orange color for the link */
    text-decoration: none;
}

.about-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.about-hero .hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
}

.services-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

.services-content-sections {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Services page styles */
.service-item {
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.service-text p {
    color: #666;
    line-height: 1.6;
}

.service-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.rates-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    text-align: center;
}

.rates-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.rates-button {
    background-color: #FFA500;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.rates-button:hover {
    background-color: #e69500;
}

/* Responsive design */
@media (max-width: 768px) {
    .service-item,
    .service-item.reverse {
        flex-direction: column;
        gap: 20px;
    }

    .service-image {
        width: 100%;
    }
}

/* Client Section Styles */
.our-clients-section {
    padding: 60px 20px;
    text-align: center;
}

.our-clients-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.our-clients-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFA500;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logo {
    text-align: center;
}

.client-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.client-logo:hover img {
    transform: scale(1.1);
}

.client-logo p {
    color: #666;
    font-size: 1rem;
}
.client-logo a {
    text-decoration: none; /* Removes underline */
    color: inherit;        /* Keeps text color same as parent */
}

.client-logo a:hover {
    text-decoration: none; /* Ensures no underline on hover */
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .client-logos {
        gap: 20px;
    }
    
    .client-logo img {
        width: 100px;
        height: 100px;
    }
}

/* Contact page styles */
.contact-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

.contact-content .hero {
    min-height: 80vh;
}

.contact-content .hero-content {
    text-align: center;
}

.contact-content .hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-content .breadcrumb {
    color: white;
    font-size: 18px;
    margin-top: 20px;
}

.contact-content .breadcrumb a {
    color: #FFA500;
    text-decoration: none;
}

.contact-content .breadcrumb a:hover {
    text-decoration: underline;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 60px 20px;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;

}

.contact-form .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FFA500;
}

.send-message-btn {
    width: 100%;
    padding: 15px;
    background: #FFA500;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.send-message-btn:hover {
    background-color: #e69500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}

/* Update Company Information Styles */
.company-info-section {
    padding: 60px 20px;
   
}

.company-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;  /* Increased gap */
    align-items: start;  /* Align items to top */
}

.company-details {
    padding: 20px;
    background: white;  /* Add white background */
    border-radius: 10px;  /* Add rounded corners */
    box-shadow: 0 0 20px rgba(0,0,0,0.05);  /* Subtle shadow */
}

.company-details h2 {
    color: #333;
    font-size: 2rem;  /* Larger title */
    margin-bottom: 25px;
    position: relative;
}

.company-details h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #FFA500;
}

.company-details p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.1rem;  /* Slightly larger text */
}

.company-image {
    width: 100%;
    height: 400px;  /* Taller image */
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);  /* Add shadow */
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;  /* Add hover effect */
}

.company-image:hover img {
    transform: scale(1.03);  /* Slight zoom on hover */
}

.operation-hours,
.centre-type {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #eee;  /* Add separator */
}

.operation-hours h3,
.centre-type h3 {
    color: #333;
    font-size: 1.3rem;  /* Larger subheadings */
    margin-bottom: 20px;
}

.centre-type ul {
    list-style: none;
    padding: 0;
}

.centre-type li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;  /* Slightly larger text */
}

.centre-type li:before {
    content: "•";
    color: #FFA500;
    position: absolute;
    left: 0;
    font-size: 1.5rem;  /* Larger bullet points */
}

.get-location-btn {
    display: inline-block;
    background-color: #FFA500;
    color: white !important;
    padding: 15px 40px;
    border-radius: 5px;
    margin-top: 35px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-location-btn:hover {
    background-color: #e69500;
    text-decoration: none !important;
    transform: translateY(-2px);  /* Slight lift on hover */
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.company-map {
    grid-column: span 2;
    width: 100%;
    height: 400px;  /* Taller map */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);  /* Add shadow */
    margin-top: 30px;
}

.company-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .company-info-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .company-map {
        grid-column: span 1;
        height: 300px;
    }

    .company-details {
        padding: 20px;
    }

    .company-image {
        height: 300px;
    }
}

.company-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.company-image {
    width: 100%;
    height: 300px;  /* Adjust height as needed */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.faq-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-size: 2.5rem;
    position: relative;
}

.faq-section h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFA500;
}

.faq-item {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background-color 0.3s ease;
}

.question:hover {
    background: #f8f9fa;
}

.question h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.toggle-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: #5c1f00;
    transition: transform 0.3s ease;
}

.answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background: #f8f9fa;
}

.answer p {
    margin: 0;
    padding: 15px 0;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .answer {
    max-height: 500px;
    padding: 15px 20px;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-container .faq-item:nth-child(n+6) {
    display: none;
}

.faq-container.show-all .faq-item:nth-child(n+6) {
    display: block;
}

.show-more-container {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.show-more-container:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
    z-index: 0;
}

.show-more-btn {
    position: relative;
    background-color: #FFA500;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    z-index: 1;
}

.show-more-btn:hover {
    background-color: #e69500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.remaining-faqs {
    display: none;
    max-width: 1000px;
    margin: 0 auto;
}

.remaining-faqs.show {
    display: block;
}

.service-block {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    padding: 20px;
}

.service-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-block-text {
    flex: 1;
}

.service-block-text h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.service-block-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-block-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.service-block-text ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-block-text ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FFA500;
}

.service-block-image {
    flex: 1;
    width: 100%;
    height: 400px; /* Fixed height for all images */
    overflow: hidden;
    border-radius: 8px;
}

.service-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures images cover the area without distortion */
    display: block;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .service-block-image {
        height: 300px; /* Slightly smaller height on mobile */
    }
}

@media (max-width: 768px) {
    .service-block,
    .service-block:nth-child(even) {
        flex-direction: column;
        gap: 20px;
    }
}

.order-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.pricing-card {
    background-color: #5c1f00;
    color: white;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

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

.pricing-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.pricing-card .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.recommendation {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.recommendation i {
    font-size: 24px;
    color: #FFA500;
}

.recommendation p {
    font-size: 14px;
    line-height: 1.4;
}

.order-btn {
    display: inline-block;
    background-color: #FFA500;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.order-btn:hover {
    background-color: #ff8c00;
}

@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        margin-bottom: 20px;
    }
}


/*register form*/
.rcontainer {
    flex: 1; /* Takes up remaining space after navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .register-container {
    width: 600px;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 40px; 
    margin-bottom: 40px;
  }
.rform-group {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.rform-group p {
flex: 0 0 120px; /* Adjust the width of the labels as needed */
margin-right: 10px;
}
.rform-check{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    }

  
  /* Form Links */
  .extra-links {
    margin-top: 50px;
    margin-bottom: 20px;
  }
  
  .forgot-password,
  .register-link,
  .contact-link {
    color: #b05000;
    text-decoration: none;
    font-weight: bold;
  }
  
  .forgot-password:hover,
  .register-link:hover,
  .contact-link:hover,
  .lcontact-link:hover{
    text-decoration: underline;
  }

  .lcontact-link {
    color: #FFA500;
    text-decoration: none;
    font-weight: bold;
  }

  .mainlbox {
    display: center;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.mainlbox i {
    font-size: 24px;
    color: #FFA500;
}

.mainlbox p {
    font-size: 14px;
    line-height: 1.4;
}
/* button whatsapp*/
.green-button {
    display: inline-block;
    padding: 5px 5px;
    background-color: #28a745;  /* Green background */
    color: #fff;  /* White text */
    text-decoration: none;
    border-radius: 5px;  /* Rounded corners */
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

.green-button:hover {
    background-color: #218838;  /* Darker green on hover */
}

.social-icons a {
    margin-right: 10px;  /* Adjust spacing between social icons */
    font-size: 24px;  /* Icon size */
    color: inherit;  /* Maintain original icon color */
}
/* whatsapp*/
.cwhatsapp-icon {
    width: 50px;         /* Adjust icon size */
    height: 50px;
    margin-left: 5px;    /* Space between number and icon */
    vertical-align: middle; /* Align icon with text */
}

.black-link {
    color: #444;             /* Make the text black */
    text-decoration: underline; /* Keep the underline */
}

.black-link:hover {
    color: #444;             /* Slightly lighter black on hover */
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* Form Container */
.fcontainer {
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .login-container {
    width: 400px;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 40px; 
    margin-bottom: 40px;
  }
  
  .login-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
  }
  
  /* Form Styles */
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
  }
  
  .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
  }
  
  .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
  }
  
  .btn-login {
    width: 100%;
    padding: 10px;
    background-color: #b05000;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .btn-login:hover {
    background-color: #944c00;
  }
  
  .rform-row{
    text-align: center;
    width: 60%;
    justify-content:space-between;
    margin: auto;
}
/*register form*/
.rcontainer {
    flex: 1; /* Takes up remaining space after navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .register-container {
    width: 600px;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 40px; 
    margin-bottom: 40px;
  }
.rform-group {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.rform-group p {
flex: 0 0 120px; /* Adjust the width of the labels as needed */
margin-right: 10px;
}
.rform-check{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    }

  
  /* Form Links */
  .extra-links {
    margin-top: 50px;
    margin-bottom: 20px;
  }
  
  .forgot-password,
  .register-link,
  .contact-link {
    color: #b05000;
    text-decoration: none;
    font-weight: bold;
  }
  
  .forgot-password:hover,
  .register-link:hover,
  .contact-link:hover,
  .lcontact-link:hover{
    text-decoration: underline;
  }

  .lcontact-link {
    color: #FFA500;
    text-decoration: none;
    font-weight: bold;
  }

  .mainlbox {
    display: center;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.mainlbox i {
    font-size: 24px;
    color: #FFA500;
}

.mainlbox p {
    font-size: 14px;
    line-height: 1.4;
}
/* button whatsapp*/
.green-button {
    display: inline-block;
    padding: 5px 5px;
    background-color: #28a745;  /* Green background */
    color: #fff;  /* White text */
    text-decoration: none;
    border-radius: 5px;  /* Rounded corners */
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
}

.green-button:hover {
    background-color: #218838;  /* Darker green on hover */
}

.social-icons a {
    margin-right: 10px;  /* Adjust spacing between social icons */
    font-size: 24px;  /* Icon size */
    color: inherit;  /* Maintain original icon color */
}
/* whatsapp*/
.cwhatsapp-icon {
    width: 50px;         /* Adjust icon size */
    height: 50px;
    margin-left: 5px;    /* Space between number and icon */
    vertical-align: middle; /* Align icon with text */
}

.black-link {
    color: #444;             /* Make the text black */
    text-decoration: underline; /* Keep the underline */
}

.black-link:hover {
    color: #444;             /* Slightly lighter black on hover */
}

/* Header Styles */
.top-nav {
    background: #5c1f00;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-items {
    display: flex;
    align-items: center;
}

.nav-items a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-items a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-items a.active {
    background: rgba(255, 255, 255, 0.2);
}

.nav-items .logout-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-items .logout-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #5c1f00;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.dropdown-content a:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.dropdown-content a:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* Container Style */
.container {
    padding: 20px 30px;
    background: #f8f9fa;
    
}

/* Responsive styles for PHP pages */
@media (max-width: 768px) {
    /* Table responsiveness */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 100%;
        font-size: 14px;
    }

    /* Form responsiveness */
    .form-group {
        margin-bottom: 15px;
    }

    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="date"],
    select,
    textarea {
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
    }

    /* Button responsiveness */
    .btn {
        width: 100%;
        margin-bottom: 10px;
        padding: 10px;
        font-size: 14px;
    }

    /* Card responsiveness */
    .card {
        margin-bottom: 15px;
    }

    .card-body {
        padding: 15px;
    }

    /* Container padding */
    .container,
    .container-fluid {
        padding: 10px;
    }

    /* Modal responsiveness */
    .modal-dialog {
        margin: 10px;
    }

    .modal-content {
        padding: 15px;
    }

    /* Navigation responsiveness */
    .navbar-nav {
        flex-direction: column;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    /* Grid system adjustments */
    .row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, 
    .col-sm, .col-md, .col-lg, .col-xl {
        padding-right: 5px;
        padding-left: 5px;
    }

    /* Dashboard cards */
    .dashboard-card {
        margin-bottom: 15px;
    }

    /* Search form responsiveness */
    .search-form {
        flex-direction: column;
    }

    .search-form input,
    .search-form select,
    .search-form button {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Action buttons in tables */
    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .action-buttons .btn {
        margin: 2px 0;
    }

    /* Form layout */
    .form-row {
        flex-direction: column;
    }

    .form-row > .col,
    .form-row > [class*="col-"] {
        padding: 0;
    }

    /* Alert messages */
    .alert {
        padding: 10px;
        margin-bottom: 10px;
    }

    /* Pagination */
    .pagination {
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-link {
        padding: 6px 12px;
    }

    /* Tabs */
    .nav-tabs {
        flex-wrap: wrap;
    }

    .nav-tabs .nav-item {
        margin-bottom: 5px;
    }

    /* Custom table styles for better mobile view */
    .table-mobile-friendly {
        display: block;
    }

    .table-mobile-friendly thead {
        display: none;
    }

    .table-mobile-friendly tbody tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .table-mobile-friendly tbody td {
        display: block;
        text-align: right;
        padding: 8px;
        position: relative;
        border-bottom: 1px solid #eee;
    }

    .table-mobile-friendly tbody td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 12px;
    }

    .table-mobile-friendly tbody td:last-child {
        border-bottom: none;
    }

    /* Header adjustments */
    .page-header {
        text-align: center;
        margin-bottom: 15px;
    }

    .page-header h1,
    .page-header h2,
    .page-header h3 {
        font-size: 1.5rem;
    }

    /* Filter sections */
    .filter-section {
        flex-direction: column;
    }

    .filter-section > * {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Status badges */
    .badge {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }

    /* Modal footer buttons */
    .modal-footer {
        flex-direction: column;
    }

    .modal-footer .btn {
        width: 100%;
        margin: 5px 0;
    }

    /* Print and export buttons */
    .export-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .export-buttons .btn {
        width: 100%;
    }
}

/* Additional styles for extra small devices */
@media (max-width: 576px) {
    /* Further reduce font sizes */
    body {
        font-size: 14px;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }

    /* Adjust padding and margins */
    .container,
    .container-fluid {
        padding: 8px;
    }

    .card-body {
        padding: 10px;
    }

    /* Stack buttons vertically */
    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
        margin: 2px 0;
        border-radius: 4px !important;
    }

    /* Adjust modal padding */
    .modal-body {
        padding: 10px;
    }

    /* Make dropdowns full width */
    .dropdown-menu {
        width: 100%;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }

    .print-only {
        display: block !important;
    }

    body {
        padding: 0;
        margin: 0;
    }

    .container,
    .container-fluid {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    table {
        width: 100% !important;
        border-collapse: collapse !important;
    }

    table td,
    table th {
        background-color: #fff !important;
        border: 1px solid #ddd !important;
    }
}

/* FAQ Tabs Styles */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.faq-tab-btn {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #333;
}

.faq-tab-btn:hover {
    background: #e9ecef;
    border-color: #5c1f00;
}

.faq-tab-btn.active {
    background: #5c1f00;
    color: white;
    border-color: #5c1f00;
}

.faq-tab-content {
    display: none;
}

.faq-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .faq-tabs {
        flex-direction: column;
    }

    .faq-tab-btn {
        width: 100%;
        text-align: center;
    }
}

.service-card.enquiry-form {
    background: linear-gradient(145deg, #5c1f00, #8B4513);
    padding: 2.5rem;
    text-align: center;
    color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card.enquiry-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card.enquiry-form .form-header {
    margin-bottom: 2rem;
}

.service-card.enquiry-form h2 {
    color: #FFA500;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-card.enquiry-form .form-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.service-card.enquiry-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card.enquiry-form .form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.service-card.enquiry-form .form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-card.enquiry-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.service-card.enquiry-form .form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.service-card.enquiry-form .submit-btn {
    background: #FFA500;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card.enquiry-form .submit-btn:hover {
    background-color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.service-card.enquiry-form .submit-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-card.enquiry-form .submit-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .service-card.enquiry-form {
        padding: 2rem;
    }
    
    .service-card.enquiry-form .form-input {
        padding: 0.875rem 1rem;
    }
}

/* Driver's Delivery Overview Styles */
.overview-section {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.overview-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.overview-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s;
}

.overview-item:hover {
    transform: translateY(-2px);
}

.overview-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.overview-title i {
    color: #5c1f00;
}

.overview-subtitle {
    font-size: 0.9rem;
    color: #666;
}

.overview-item > div:last-child {
    font-size: 2rem;
    font-weight: 600;
    color: #5c1f00;
}

.section-container {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.section-container h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-container h3 i {
    color: #5c1f00;
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.delivery-item {
    background: #fff;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.delivery-details p {
    margin: 0.3rem 0;
    color: #333;
}

.delivery-details strong {
    color: #5c1f00;
}

.create-fr-btn {
    background: #5c1f00;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
}

.create-fr-btn:hover {
    background: #7a2900;
    color: #fff;
}

@media (max-width: 768px) {
    .overview-section {
        padding: 1rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .delivery-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .create-fr-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 1rem;
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #5c1f00;
        flex-direction: column;
        padding: 1rem 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 20px;
        width: 100%;
        text-align: left;
        border-radius: 0;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        background: #7a2900;
        box-shadow: none;
        margin-top: 0;
    }

    .dropdown-content::before {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }

    /* Hero Section Mobile Styles */
    .hero {
        min-height: 60vh;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .hero .description {
        font-size: 14px;
    }

    .tracking-box {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .tracking-box input {
        width: 100%;
    }

    .tracking-box button {
        width: 100%;
        margin-left: 0;
    }

    /* Services Grid Mobile Styles */
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .service-card {
        min-height: auto;
        padding: 1.5rem;
    }

    /* What We Offer Section Mobile Styles */
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .what-we-offer {
        padding: 30px 15px;
    }

    .what-we-offer h2 {
        font-size: 1.8rem;
    }

    /* More Services Section Mobile Styles */
    .services-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .service-item {
        padding: 15px;
    }

    /* Footer Mobile Styles */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left, .footer-right {
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    /* Modal Mobile Styles */
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 15px;
    }

    #trackingResult {
        padding: 10px;
    }

    .status-badge {
        width: 100%;
        margin-bottom: 10px;
    }

    #trackingResult p {
        padding: 8px;
        font-size: 14px;
    }

    #trackingResult strong {
        min-width: 100px;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .service-card h2 {
        font-size: 1.3rem;
    }

    .what-we-offer h2 {
        font-size: 1.5rem;
    }

    .footer {
        padding: 30px 15px;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .header {
        padding: 1rem;
        height: auto;
        min-height: 80px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #5c1f00;
        padding: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links a {
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links a:hover {
        background: rgba(255,255,255,0.1);
        transform: none;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        margin: 0;
        padding: 0;
    }

    .dropdown-content a {
        padding-left: 40px;
    }

    .dropdown:hover .dropdown-content {
        animation: none;
    }
}