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

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

/* Top Banner */
.top-banner {
    background: #ff000e;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.banner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.top-banner i {
    font-size: 1.2rem;
}

.top-banner p {
    margin: 0;
}

.top-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.top-banner a:hover {
    text-decoration: none;
}

/* Header Styles */
.nav {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.nav-left {
    flex-shrink: 0;
}

.nav-logo {
    display: block;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #ff000e;
    background: rgba(255,0,14, 0.1);
}

.nav-link:hover i {
    transform: translateY(-2px);
}

.nav-right {
    flex-shrink: 0;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-btn i {
    font-size: 1.2rem;
}

.nav-btn.signin {
    color: #ff000e;
    background: transparent;
    border: 2px solid #ff000e;
}

.nav-btn.signin:hover {
    background: rgba(255,0,14, 0.1);
    transform: translateY(-2px);
}

.nav-btn.signup {
    padding: 0.6rem 1.2rem;
    color: white;
    background: #ff000e;
    border: 2px solid #ff000e;
}

.nav-btn.signup:hover {
    background: #ff3d5d;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-left: auto;
}

@media (max-width: 992px) {
    .nav {
        padding: 0.8rem 1rem;
    }

    .nav-wrapper {
        width: 100%;
        gap: 1rem;
    }

    .nav-center, .nav-right {
        display: none;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .nav.active .nav-center {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav.active .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .nav.active .nav-link {
        width: 100%;
        padding: 0.8rem;
        font-size: 1.1rem;
    }

    .nav.active .nav-right {
        display: none;
    }

    .nav.active .nav-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav.active .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .nav {
        padding: 0.8rem 1rem;
    }

    .nav-logo img {
        height: 32px;
    }

    .menu-toggle {
        padding: 0.4rem;
    }

    .nav.active .nav-center {
        padding: 0rem;
    }

    .nav.active .nav-link {
        padding: 0.7rem;
        font-size: 1rem;
    }

    .nav.active .nav-btn {
        padding: 0.7rem;
        font-size: 1rem;
    }
}

/* Navbar Styles */
.navbar {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto;
}

.nav-links .nav-buttons{
    display:none;
}

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

.nav-links a:hover {
    color: #ff000e;
    background-color: rgba(255,0,14, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 4rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#ff000e15 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-content h1 .highlight {
    color: #ff000e;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-features .feature i {
    font-size: 1.5rem;
    color: #ff000e;
}

.hero-features .feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
}

.hero-form {
    background: white;
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.track-form-hero {
    display: flex;
    gap: 1rem;
}

.track-form-hero .form-group {
    flex: 1;
    position: relative;
}

.track-form-hero .form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.track-form-hero input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 1rem;
}

.track-form-hero input:focus {
    outline: none;
    border-color: #ff000e;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.hero-stats {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 3rem;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff000e;
    margin-bottom: 0.2rem;
}

.hero-stats .label {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        margin-top: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .track-form-hero {
        flex-direction: column;
    }

    .hero-stats {
        position: relative;
        margin-top: 2rem;
        padding: 1rem;
    }
}

/* Tracking Section Styles */
.tracking-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, white);
    position: relative;
    overflow: hidden;
}

.tracking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(255,0,14, 0.1);
    color: #ff000e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.tracking-form {
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
}

.track-form {
    display: flex;
    gap: 1rem;
}

.track-form .form-group {
    flex: 1;
    position: relative;
	margin-bottom:0px !important;
}

.track-form .form-group i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.2rem;
}

.track-form input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.track-form input:focus {
    outline: none;
    border-color: #ff000e;
    box-shadow: 0 0 0 4px rgba(255,0,14, 0.1);
}

.btn-track {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ff000e;
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-track:hover {
    background: #ff3d5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.2);
}

.btn-track i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-track:hover i {
    transform: translateX(3px);
}

.tracking-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.tracking-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tracking-features .feature i {
    font-size: 2rem;
    color: #ff000e;
    background: rgba(255,0,14, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.tracking-features .feature-text h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.tracking-features .feature-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.tracking-visual {
    position: relative;
}

.tracking-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.tracking-map img {
    width: 100%;
    height: auto;
    display: block;
}

.delivery-status {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 250px;
}

.status-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,0,14, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon i {
    font-size: 1.5rem;
    color: #ff000e;
}

.status-info {
    display: flex;
    flex-direction: column;
}

.status-info .status {
    font-weight: 600;
    color: #333;
}

.status-info .time {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 1024px) {
    .tracking-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tracking-content {
        text-align: center;
    }

    .tracking-features {
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .tracking-features .feature {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .tracking-features {
        grid-template-columns: 1fr;
    }

    .track-form {
        flex-direction: column;
    }

    .btn-track {
        padding: 1rem;
        justify-content: center;
    }

    .delivery-status {
        position: relative;
        bottom: 0;
        transform: translateY(-50%) translateX(-50%);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(to bottom, white, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about .section-header {
    margin-bottom: 2rem;
}

.about .section-tag {
    display: inline-block;
    background: rgba(255,0,14, 0.1);
    color: #ff000e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.about .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff000e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-features .feature i {
    font-size: 1.5rem;
    color: #ff000e;
}

.about-features .feature span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #ff000e;
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(255, 77, 109, 0.3);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.experience-badge .text {
    font-size: 0.8rem;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        text-align: center;
    }

    .about-features {
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .about-features .feature {
        justify-content: center;
    }

    .experience-badge {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .about .section-header h2 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }

    .experience-badge .text {
        font-size: 0.7rem;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa, white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ff000e;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,0,14, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #ff000e;
}

.service-icon i {
    font-size: 2rem;
    color: #ff000e;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.service-features li i {
    color: #ff000e;
    font-size: 1.2rem;
}

.service-features li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

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

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.stats-wrapper {
    text-align: center;
}

.stats-content {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.stats-content .section-tag {
    display: inline-block;
    background: rgba(255,0,14, 0.1);
    color: #ff000e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.stats-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.stats-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ff000e;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,0,14, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: #ff000e;
}

.stat-icon i {
    font-size: 2.5rem;
    color: #ff000e;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon i {
    color: white;
}

.stat-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff000e;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 60px 0;
    }

    .stats-content h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

/* Fees Section */
.fees {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.fees-search {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.search-box {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #ff000e;
    box-shadow: 0 0 0 4px rgba(255,0,14, 0.1);
}

.search-box i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.2rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.city-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ff000e;
}

.city-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.city-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,0,14, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.city-card:hover .city-icon {
    background: #ff000e;
}

.city-icon i {
    font-size: 1.5rem;
    color: #ff000e;
    transition: all 0.3s ease;
}

.city-card:hover .city-icon i {
    color: white;
}

.city-header h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.city-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-info {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff000e;
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-item i {
    font-size: 1.2rem;
    color: #ff000e;
}

.info-item span {
    font-size: 0.95rem;
    color: #666;
}

.select-city {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ff000e;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.select-city:hover {
    background: #ff3d5d;
    transform: translateY(-2px);
}

.select-city i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.select-city:hover i {
    transform: translateX(3px);
}

@media (max-width: 1200px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fees {
        padding: 60px 0;
    }

    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .city-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .city-header h3 {
        font-size: 1.2rem;
    }
}

/* Signup Section */
.signup {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.signup-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.signup-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.signup-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
}

.signup-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.2rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 3rem;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff000e;
    box-shadow: 0 0 0 4px rgba(255,0,14, 0.1);
}

.terms {
    margin: 2rem 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #eee;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input:checked + .checkmark {
    background: #ff000e;
    border-color: #ff000e;
}

.checkbox-container input:checked + .checkmark:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-text {
    font-size: 0.9rem;
    color: #666;
}

.terms-text a {
    color: #ff000e;
    text-decoration: none;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #ff000e;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.submit-btn:hover i {
    transform: translateX(3px);
}

.signup-features {
    display: grid;
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ff000e;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,0,14, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #ff000e;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #ff000e;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .signup-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .signup-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .signup {
        padding: 60px 0;
    }

    .signup-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .signup-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Signup Page Styles */
.signup-page {
    min-height: 100vh;
    padding: 120px 20px 60px;
    background: #f8f9fa;
}

.signup-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.signup-container h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.signup-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff000e;
}

.password-input {
    position: relative;
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.toggle-password i {
    font-size: 1.2rem;
}

.toggle-password:hover {
    color: #333;
}

.form-message {
    text-align: center;
    min-height: 24px;
    font-weight: 500;
}

.form-message.error {
    color: #dc3545;
}

.form-message.success {
    color: #28a745;
}

.signup-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
	text-align:center;
}

.login-link {
    text-align: center;
    margin-top: 2rem;
    color: #666;
}

.login-link a {
    color: #ff000e;
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .signup-container {
        padding: 2rem 1.5rem;
    }

    .signup-container h1 {
        font-size: 1.75rem;
    }
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width:100%;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #999;
    line-height: 1.6;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
}

.footer-section ul li i {
    color: #ff000e;
}

.footer-section ul a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #ff000e;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    background: #333;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff000e;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .footer-section ul li {
        justify-content: center;
    }

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    padding: 0.5rem 0;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: #ff000e;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    background: white;
}

.btn-login i {
    font-size: 1.2rem;
}

.btn-login:hover {
    border-color: #ff000e;
    color: #ff000e;
    background: rgba(255, 77, 109, 0.05);
}

.btn-signup {
    background: #ff000e;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: #ff3d5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.2);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-auth {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav.active .nav-auth {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        border-top: 1px solid #eee;
    }

    .btn-login, .btn-signup {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
	
	.nav-links .nav-buttons{
		display:block;
	}
	
	.nav-links .nav-buttons a{
		margin:5px 0px;
	}
}

@media (max-width: 576px) {
    .nav-logo img {
        height: 32px;
    }

    .nav-logo span {
        font-size: 1.2rem;
    }
}

/* Pricing navigation buttons */
.pricing-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pricing-nav button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pricing-nav button:hover {
    background: #ff000e;
    color: white;
}

.pricing-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Remove bottom footer links */
.footer-bottom .footer-links {
    display: none;
}

.btn,
.tracking-btn,
.page-btn,
.signup-btn {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.lx-floating-response{
	position:fixed;
	z-index:99999;
	bottom:20px;
	left:0px;
	display:none;
	padding:0px 20px;
	width:100%;
	text-align:center;
	cursor:pointer;
}
.lx-floating-response p{
	position:relative;
	display:inline-block;
	max-width:300px;
	padding:17px 20px 20px;
	font-size:16px;
	background:rgba(0,0,0,0.8);
	color:#FFFFFF;
	border-radius:4px;
}
.lx-floating-response p.lx-error{
	border-bottom:3px solid #e50000;
}
.lx-floating-response p.lx-succes{
	border-bottom:3px solid green;
}
.lx-floating-response p i{
	position:relative;
	top:6px;
	line-height:1px;
}
.lx-floating-response p i:last-child{
	position:absolute;
	right:3px;
	top:10px;
	font-size:16px;
	line-height:1px;
}
.lx-floating-response p i.fa{
	top:2px;
}

.lx-api h3{
	margin-bottom:20px;
	line-height:22px;
	font-size:24px;
}
.lx-api p{
	margin-bottom:20px;
	line-height:22px;
}
.lx-api ul{
	margin-bottom:20px;
}
.lx-api ul li{
	margin-left:40px;
	list-style:square;
	line-height:22px;
}
.lx-api pre{
	margin-bottom:20px;
	padding:15px;
	background:#424242;
	color:#FFFFFF;
	border:1px solid #EEEEEE;
	overflow:auto;
}
.lx-api table{
	margin-bottom:20px;
	border:1px solid #EEEEEE;
	border-collapse: collapse;
}
.lx-api table tr:first-child td{
	font-weight:bold;
}
.lx-api table td{
	padding:15px;
	background:#FFFFFF;
	border:1px solid #EEEEEE;
}
.lx-bloc-title{
	max-width:1170px;
	margin:auto;
	text-align:center;
}
.lx-bloc-title h2{
	position:relative;
	padding-top:20px;
	padding-bottom:30px;
	font-family:'Montserrat';
	font-size:34px;
	text-transform:uppercase;
	color:#242424;
}
.lx-bloc-title h2 span{
	color:#d51554;
}
/* Popup */
.lx-popup{
	position:fixed;
	top:0px;
	left:0px;
	z-index:99999;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.7);
	display:none;
	overflow:auto;
}
.lx-popup-inside{
	display:flex;
	height:100%;
}
.lx-popup-content{
	position:relative;
	display:table;
	margin:auto;
	opacity:0.0;
	transform:scale(0.9);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.lx-popup-content > a{
	position:absolute;
	right:8px;
	top:8px;
	color:#242424;
}
.lx-form{
	min-width:600px;
	background:#FFFFFF;
}
.lx-form-title{
	padding:10px;
	text-align:center;
	background:#F8F8F8;
}
.lx-popup .lx-add-form{
	padding:15px;
}
.lx-popup .lx-textfield{
	margin-bottom:0px;
}
.lx-popup .lx-textfield span{
	display:inline-block;
	margin-bottom:5px;
}
.lx-popup .lx-textfield input[type='text']{
	width:100%;
	padding:10px;
	border:1px solid #EEEEEE;
	border-radius:2px;
	box-shadow:0px 0px 5px #F8F8F8 inset;
}
.lx-popup .lx-textfield input[type='number']{
	width:100%;
	padding:10px;
	border:1px solid #EEEEEE;
	border-radius:2px;
}
.lx-popup .lx-textfield input[type='password']{
	width:100%;
	padding:10px;
	border:1px solid #EEEEEE;
	border-radius:2px;
}
.lx-popup .lx-textfield select{
	width:100%;
	padding:10px;
	border:1px solid #EEEEEE;
	border-radius:2px;
}
.lx-popup .lx-textfield textarea{
	width:100%;
	height:100px;
	padding:10px;
	border:1px solid #EEEEEE;
	border-radius:2px;
	resize:none;
}
.lx-popup .lx-textfield p{
	font-size:12px;
	font-style:italic;
	color:#BEBEBE;
}

.top-banner {
    background-color: #ff000e;
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.top-banner p {
    margin: 0;
}

.top-banner a {
    color: white;
    text-decoration: underline;
}

.tracking-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.tracking-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.tracking-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.tracking-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.tracking-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.track-form {
    display: flex;
    gap: 1rem;
}

.track-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.track-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    background-color: #ff000e;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.track-form button:hover {
    background-color: #ff3d5d;
}

.tracking-image {
    margin-top: 3rem;
    text-align: center;
}

.tracking-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-text,
.accent-color {
    color: #ff000e;
}

.accent-bg {
    background-color: #ff000e;
}

.progress-bar {
    background-color: #ff000e;
}

.timeline-dot {
    background-color: #ff000e;
}

.feature-icon {
    color: #ff000e;
}

.price-highlight {
    border-color: #ff000e;
}

.testimonial-quote {
    color: #ff000e;
}

/* Thank You Page Styles */
.thank-you {
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #fff5f6 0%, #fff 100%);
}

.thank-you-content {
    max-width: 600px;
    width: 100%;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: scaleIn 0.5s ease-out;
}

.thank-you-content h1 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thank-you-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.next-steps {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h2 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.4;
}

.next-steps li i {
    color: #ff000e;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-info {
    margin-top: 2rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #ff000e;
    color: white;
    transform: translateY(-2px);
}

.contact-method i {
    font-size: 1.2rem;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .thank-you {
        padding: 2rem 1rem;
    }

    .thank-you-content {
        padding: 2rem;
    }

    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-method {
        justify-content: center;
    }

    .next-steps {
        padding: 1.5rem;
    }

    .thank-you-content h1 {
        font-size: 1.8rem;
    }

    .thank-you-content p {
        font-size: 1rem;
    }
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 20px 0;
}

.page-btn {
    background: #f8f9fa;
    border: 1px solid #ccc;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.page-btn:hover {
    background: #e9ecef;
    transform: scale(1.05);
}

.page-btn.active {
    background: #ff000e;
    color: white;
    border-color: #ff000e;
}

.page-btn.disabled {
    background: #ddd;
    cursor: not-allowed;
    color: #888;
    border-color: #ddd;
}

.page-ellipsis {
    padding: 0 10px;
    font-size: 18px;
    color: #555;
}
