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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0; /* Restored top padding */
    background: transparent;
}

.header-container {
    /* width: 100%;
    padding: 0 40px; */ /* Add some padding to the sides */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0; /* Removed left/right padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}
    display: flex;
    gap: 15px;
}

.contact-btn {
    background: white;
    color: #333;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.menu-btn {
    background: #00bcd4;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.menu-btn:hover {
    background: #00acc1;
    transform: translateY(-2px);
}

.menu-icon {
    margin-left: 10px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/gold.jpg') no-repeat; /* Corrected path */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px; /* Added padding-top to push content below header */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.5), rgba(33, 47, 126, 0.6));
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content {
    max-width: 600px;
}

.hero-subtitle {
    color: #00bcd4;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 30px;
    background: #00bcd4;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.explore-btn:hover {
    background: white;
    color: #333;
    transform: translateX(5px);
}

.explore-btn::after {
    content: '→';
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.explore-btn:hover::after {
    transform: translateX(5px);
}

/* Side Text */
.side-text {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 2;
}

/* Cards Section */
.cards-section {
    background: white;
    padding: 0;
    position: relative;
    z-index: 10;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.card {
    padding: 40px 30px;
    border-right: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    background: white;
}

.card:last-child {
    border-right: none;
}

.card:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);;
}

.card-number {
    color: #00bcd4;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-arrow {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #00bcd4;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.card:hover .card-arrow {
    transform: translateY(-50%) translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding-bottom: 50px;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .card {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .card:last-child {
        border-bottom: none;
    }

    .side-text {
        display: none;
    }

    .nav-actions {
        gap: 10px;
    }

    .logo-text {
        font-size: 18px;
    }

    .why-choose-us-image {
        max-width: 100%;
    }

    .contact-btn,
    .menu-btn {
        padding: 10px 15px;
        font-size: 10px;
    }

    .logo .admin-logo {
        /* display: none; */ /* Removed this line */
        width: 50px !important; /* Make it very small on phone screens */
    }

    .hero-logo {
        top: 0;
        left: 0;
        z-index: 100;
    }

    .hero {
        height: 60vh;
    }

    .hero-content {
        padding-top: 80px;
        padding-left: 30px;
    }

    .tracking-form {
        flex-direction: column;
        gap: 15px;
    }

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

    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding-top: 50px;
        padding-left: 5px;
        padding-right: 5px; /* Keep existing right padding */
        padding-bottom: 30px; /* Keep existing bottom padding */
    }

    .logo-text {
        font-size: 16px;
    }

    .why-choose-us-image {
        max-width: 100%;
    }

    .logo .admin-logo {
        /* display: none; */ /* Removed this line */
        width: 40px !important; /* Make it very small on phone screens */
    }

    .logo-icon {
        display: block;
    }

    .hero-logo {
        top: 5px;
        left: 5px;
    }

    .hero {
        height: 50vh;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.4s;
}

.explore-btn {
    animation-delay: 0.6s;
}

/* Overlay Menu Styles */
.overlay-menu {
    height: 100%;
    width: 0; /* 0 width by default - off-screen */
    position: fixed;
    z-index: 1001; /* Higher than header */
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ a little transparency */
    overflow-x: hidden;
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width) */
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
    color: #818181;
    text-decoration: none;
    transition: 0.3s;
}

.overlay-menu .close-btn:hover,
.overlay-menu .close-btn:focus {
    color: #f1f1f1;
}

.overlay-content {
    position: relative;
    top: 25%; /* 25% from the top */
    width: 100%; /* 100% width */
    text-align: center; /* Centered text/links */
    margin-top: 30px; /* 30px top margin to make sure it isn't too close to the top */
}

.overlay-content a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block; /* Display as a block element for better spacing */
    transition: 0.3s; /* Transition effect on hover (color) */
}

.overlay-content a:hover,
.overlay-content a:focus {
    color: #f1f1f1;
}

/* Responsive adjustments for overlay menu */
@media screen and (max-height: 450px) {
    .overlay-content a {font-size: 20px}
    .overlay-menu .close-btn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

/* General Section Title (if not already present or needs adjustment) */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    color: #333; /* Default text color */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #00bcd4; /* Accent color from original UI */
    border-radius: 2px;
}

/* About Us Section */
.about-section {
    padding: 80px 0; /* Consistent padding */
    background-color: #f8f9fa; /* Light background for contrast */
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Vertically align items */
    gap: 40px; /* Space between text and image */
}

.about-content {
    flex: 1; /* Take up remaining space */
}

.about-content p {
    margin-bottom: 15px; /* Spacing for paragraphs */
    line-height: 1.8;
    color: #555;
}

.about-image {
    flex: 1; /* Take up remaining space */
    text-align: center; /* Center image horizontally */
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments for About Us section */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column; /* Stack content vertically on smaller screens */
        text-align: center;
    }
    .about-content,
    .about-image {
        flex: none; /* Remove flex grow */
        width: 100%; /* Take full width */
    }
    .about-image {
        margin-top: 40px; /* Space between text and image when stacked */
    }
}

/* Services Overview Section */
.services-overview-section {
    padding: 80px 0;
    background-color: #fff;
}

.service-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.service-item i {
    color: #00bcd4; /* Accent color */
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-item {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%; /* Ensure consistent height */
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.feature-item i {
    color: #00bcd4; /* Accent color */
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-section .carousel-item {
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonials-section .blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
    font-style: italic;
}

.testimonials-section .blockquote-footer {
    font-size: 1rem;
    color: #555;
    font-weight: bold;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: #00bcd4; /* Theme color */
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.testimonials-section .carousel-control-prev:hover,
.testimonials-section .carousel-control-next:hover {
    opacity: 1;
}

.testimonials-section .carousel-control-prev-icon,
.testimonials-section .carousel-control-next-icon {
    background-image: none; /* Remove default bootstrap icons */
    font-size: 24px;
    color: #fff;
    line-height: 1;
}

.testimonials-section .carousel-control-prev-icon::before {
    content: '\2039'; /* Left angle bracket */
}

.testimonials-section .carousel-control-next-icon::before {
    content: '\203A'; /* Right angle bracket */
}

/* Get a Quote Section */
.get-a-quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.8), rgba(33, 47, 126, 0.9)), url('../images/port1.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.get-a-quote-section .section-title {
    color: white;
}

.get-a-quote-section .section-title::after {
    background-color: white; /* White line for contrast */
}

/* Responsive Adjustments for new sections */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    .about-section,
    .services-overview-section,
    .why-choose-us-section,
    .testimonials-section,
    .get-a-quote-section {
        padding: 60px 0;
    }
    .service-item,
    .feature-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    .service-item,
    .feature-item {
        padding: 20px;
    }
    .service-item h3,
    .feature-item h3 {
        font-size: 1.3rem;
    }
    .blockquote {
        font-size: 1rem;
    }

    .why-choose-us-section .col-md-6 {
        padding: 0 30px;
    }

    .why-choose-us-image {
        margin-bottom: 30px;
    }
}

/* Client Logos/Partners Section */
.clients-section {
    padding: 60px 0;
    background-color: #f8f9fa; /* Light background */
}

.client-logo {
    max-width: 120px; /* Adjust as needed */
    height: auto;
    filter: grayscale(100%); /* Make logos grayscale */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%); /* Color on hover */
    opacity: 1;
    transform: scale(1.05);
}

/* Back to Top Button */
#backToTopBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 30px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #00bcd4; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s, transform 0.3s;
}

#backToTopBtn:hover {
    background-color: #00acc1; /* Darker blue on hover */
    transform: translateY(-2px);
}

/* Animations for scroll-based effects */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light background */
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #fff;
    color: #333;
    cursor: pointer;
    padding: 18px 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #f1f1f1;
}

.faq-question::after {
    content: '+'; /* Plus sign for collapsed state */
    font-size: 1.5rem;
    color: #00bcd4;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '-'; /* Minus sign for expanded state */
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

/* Responsive adjustments for FAQ section */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 15px 18px;
    }
    .faq-answer {
        padding: 0 18px;
    }
}

/* Contact Information/Map Section */
.contact-map-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-info {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    height: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: #00bcd4; /* Accent color */
    margin-right: 10px;
    font-size: 1.2rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 8px; /* Apply border-radius to iframe as well */
}

/* Responsive adjustments for Contact/Map section */
@media (max-width: 768px) {
    .contact-info {
        margin-bottom: 30px;
    }
}

/* About Us Section - Custom Layout */
.about-section {
    padding: 80px 0; /* Consistent padding */
    background-color: #f8f9fa; /* Light background for contrast */
}

.about-container {
    max-width: 1200px; /* Match header/cards container width */
    margin: 0 auto;
    padding: 0 20px;
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Vertically align items */
    gap: 40px; /* Space between text and image */
}

.about-content {
    flex: 1; /* Take up remaining space */
}

.about-content p {
    margin-bottom: 15px; /* Spacing for paragraphs */
    line-height: 1.8;
    color: #555;
}

.about-image {
    flex: 1; /* Take up remaining space */
    text-align: center; /* Center image horizontally */
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments for About Us section */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column; /* Stack content vertically on smaller screens */
        text-align: center;
    }
    .about-content,
    .about-image {
        flex: none; /* Remove flex grow */
        width: 100%; /* Take full width */
    }
    .about-image {
        margin-top: 40px; /* Space between text and image when stacked */
    }
}

/* Bootstrap-like grid */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-4 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.text-center {
    text-align: center !important;
}
.why-choose-us-image {
    max-width: 450px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.hero-logo {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.hero-logo img {
    width: 120px;
    height: auto;
}

/* Tracking Page */
.tracking-form-container {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.tracking-results-container .card {
    margin-bottom: 20px;
}

.progress-container {
    margin-top: 40px;
}

.timeline {
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
}

.timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #eeeeee;
    left: 25px;
    margin-right: -1.5px;
}

.timeline > li {
    margin-bottom: 20px;
    position: relative;
}

.timeline > li:before,
.timeline > li:after {
    content: " ";
    display: table;
}

.timeline > li:after {
    clear: both;
}

.timeline > li > .timeline-panel {
    width: calc( 100% - 75px );
    float: right;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    padding: 20px;
    position: relative;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}

.timeline > li > .timeline-badge {
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 0px;
    margin-right: -25px;
    background-color: #00bcd4; /* Theme color */
    z-index: 100;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.timeline-badge.primary {background-color: #2e6da4 !important;}
.timeline-badge.success {background-color: #3f903f !important;}
.timeline-badge.warning {background-color: #f0ad4e !important;}
.timeline-badge.danger {background-color: #d9534f !important;}
.timeline-badge.info {background-color: #5bc0de !important;}

.timeline-title {
    margin-top: 0;
    color: inherit;
}

.timeline-body > p,
.timeline-body > ul {
    margin-bottom: 0;
}

.timeline-body > p + p {
    margin-top: 5px;
}

/* Detailed tracking history */
.detailed-tracking-history {
    border-left: 2px solid #4CAF50;
    padding-left: 20px;
}

.tracking-item {
    display: flex;
    position: relative;
    margin-bottom: 20px;
}

.tracking-icon {
    position: absolute;
    left: -31px;
    top: 5px;
    z-index: 1;
}

.timeline-point {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #e0e0e0;
    border: 4px solid #fff;
}

.timeline-point.completed {
    background-color: #fff;
    border-color: #4CAF50;
    color: #4CAF50;
    text-align: center;
    line-height: 14px;
}

.timeline-point.completed::after {
    content: '\2713';
    font-size: 12px;
}

.timeline-point.current {
    background-color: #4CAF50;
    border: 4px solid #4CAF50;
    position: relative;
}

.timeline-point.current::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}

.tracking-content {
    margin-left: 20px;
}

.tracking-date {
    font-weight: bold;
    margin-bottom: 5px;
}

.tracking-status {
    color: #555;
}

/* --- Admin Page Styles --- */

.admin-page {
    background-color: #f0f2f5;
}

.admin-page .header {
    position: static;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.admin-page .logo {
    color: #333;
}

.admin-page .container {
    max-width: 1400px;
}

.admin-page h2 {
    color: #333;
    font-weight: 600;
}

.admin-page .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.admin-page .card-header {
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    padding: 20px;
}

.admin-page .form-control {
    border-radius: 5px;
}

.admin-page .btn-primary {
    background-color: #00bcd4;
    border-color: #00bcd4;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 600;
}

.admin-page .btn-primary:hover {
    background-color: #00acc1;
    border-color: #00acc1;
}

.admin-page .table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.admin-page .table thead th {
    border: none;
    color: #888;
    font-weight: 600;
}

.admin-page .table tbody tr {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.admin-page .table tbody td {
    border: none;
    vertical-align: middle;
}
.admin-logo {
    width: 120px;
    height: auto;
}

/* --- Admin Login Page Styles --- */

.admin-login-page {
    background: url('../images/log.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-page .card {
    width: 500px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 40px;
}

.admin-login-page .card-header {
    background: none;
    border: none;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.admin-login-page .form-control {
    border-radius: 5px;
    padding: 15px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

.password-toggle .fa-eye,
.password-toggle .fa-eye-slash {
    pointer-events: none; /* Ensures click passes through to parent span */
}

.admin-login-page .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
}
/* Tracking Section */
.tracking-section {
    padding: 80px 0;
    background-color: #1a237e; /* Dark Blue */
    color: #fff;
}

.tracking-section .section-title,
.tracking-section .lead {
    color: #fff;
}

.tracking-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.tracking-form input {
    width: 400px;
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    font-size: 16px;
}

.track-btn {
    background-color: #00bcd4;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

.track-btn:hover {
    background-color: #00acc1;
}

/* New styles for the tracking page */
.track-page-content {
    background: url('../images/track.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 100px; /* Adjust as needed to avoid overlap with header */
}

.track-page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.track-page-content .container {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}