* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #2563eb;
    --primary-dark: #0067D6;
    --secondary: #ff9f43;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --accent: #10b981;
    --light-gray: #f1f5f9;
}

body {
    background-color: #f1f5f9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* background-image: radial-gradient(#cbd5e1 1px, transparent 1px); */
    background-size: 20px 20px;
}

/* Navbar styles */
.navbar {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 5%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    width: 28%;
}

/* .logo-icon {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            width: 42px;
            height: 42px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: -0.5px;
        }

        .logo-text span {
            color: var(--primary);
        } */

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-link {
    position: relative;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 60%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: rgba(37, 99, 235, 0.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
}

/* Hero section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 0 5%;
    max-width: 1400px;
    min-height: 90vh;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.tracking-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tracking-box h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--dark);
    font-size: 1.8rem;
}

.tracking-input {
    display: flex;
    gap: 10px;
}

.tracking-input input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    font-size: 16px;
    transition: border-color 0.3s;
}

.tracking-input input:focus {
    outline: none;
    border-color: var(--primary);
}

.tracking-input button {
    padding: 0 30px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tracking-input button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Responsive styles */
@media (max-width: 992px) {
    .nav-links {
        display: none !important;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 99;
        transform: translateY(-100%);
        transition: transform 0.5s ease;
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    .mobile-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .mobile-links .nav-link {
        font-size: 1.5rem;
    }

    .mobile-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tracking-input {
        flex-direction: column;
    }
}

/* Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}


/* ========service section========== */

.main-service-container {
    background-color: #fff;
    /* background: linear-gradient(135deg, #f8fafc, #e2e8f0); */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--primary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: scale(1.1);
}

.service-icon:after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    transition: all 0.6s ease;
    z-index: -1;
}

.service-card:hover .service-icon:after {
    transform: rotate(360deg);
    opacity: 0.4;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-desc {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
    transition: color 0.3s;
}

.service-card:hover .service-desc {
    color: #64748b;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 8px;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    color: white;
    border-color: transparent;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* =======How it works=========== */

.how-it-works-main-container {
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
    /* min-height: 100vh; */
    /* background: linear-gradient(135deg, #f8fafc, #e2e8f0); */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
}

.how-it-works-section {
    width: 100%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    /* background: rgb(255, 255, 255); */
    /* border-radius: 24px; */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 60px 40px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--primary);
    border-radius: 5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.6;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

/* Connecting line */
.steps-container:before {
    content: '';
    position: absolute;
    top: 100px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: var(--light-gray);
    z-index: 1;
    border-radius: 4px;
}

.step {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 20px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.step:hover {
    transform: translateY(-15px);
}

.step-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 159, 67, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 20px rgba(255, 159, 67, 0.4);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.step:hover .step-title {
    color: var(--primary);
}

.step-desc {
    color: var(--gray);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.step:hover .step-desc {
    color: var(--dark);
}

/* Animation for step elements */
.step:nth-child(1) {
    animation-delay: 0.1s;
}

.step:nth-child(2) {
    animation-delay: 0.3s;
}

.step:nth-child(3) {
    animation-delay: 0.5s;
}

.step:nth-child(4) {
    animation-delay: 0.7s;
}

/* Decorative elements */
.decoration {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 15px solid var(--primary);
    top: -150px;
    right: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 10px solid var(--secondary);
    bottom: -100px;
    left: -100px;
}

.square {
    width: 150px;
    height: 150px;
    border: 8px solid var(--accent);
    top: 50%;
    left: -75px;
    transform: rotate(45deg);
}

/* Responsive styles */
@media (max-width: 992px) {
    .steps-container {
        flex-wrap: wrap;
    }

    .steps-container:before {
        display: none;
    }

    .step {
        flex: 0 0 50%;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .step {
        flex: 0 0 100%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.step-icon {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* =========testimonial section=========== */

.testimonials-main-container {
    /* background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%); */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.testimonials-section {
    width: 100%;
    max-width: 1200px;
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.6s forwards;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.5s;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    color: rgba(37, 99, 235, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
    transition: all 0.4s ease;
}

.testimonial-card:hover::before {
    color: rgba(37, 99, 235, 0.1);
    transform: scale(1.1);
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.rating i {
    color: #ffc107;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    color: #334155;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e0f2fe;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    border-color: #93c5fd;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 5px;
}

.author-info p {
    color: #64748b;
    font-size: 0.95rem;
}

.company-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

/* FAQ */

.faq-main-container {
    /* background: linear-gradient(135deg, #f8fafc, #e2e8f0); */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
}

.faq-container {
    /* max-width: 1000px; */
    width: 100% !important;
    background: white;
    /* border-radius: 20px; */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.6;
}

.faq-items {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    gap: 20px;
}

.faq-item {
    border-radius: 12px;
    background: var(--light-gray);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.faq-item.active {
    background: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.03);
}

.question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.question-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px;
}

.answer-content {
    padding: 20px 0 0;
    color: var(--gray);
    line-height: 1.8;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-contact {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.faq-contact:hover {
    transform: translateY(-10px);
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-text {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: white;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-button:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-decoration {
    position: absolute;
    z-index: 0;
    opacity: 0.05;
    color: var(--primary);
    font-size: 15rem;
}

.dec-left {
    top: 50px;
    left: -30px;
    transform: rotate(-15deg);
}

.dec-right {
    bottom: 50px;
    right: -30px;
    transform: rotate(15deg);
}

@media (max-width: 768px) {
    .faq-container {
        padding: 30px 20px;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .faq-question {
        padding: 20px;
    }

    .question-text {
        font-size: 1.1rem;
    }

    .faq-contact {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.8rem;
    }

    .question-text {
        font-size: 1rem;
    }

    .contact-title {
        font-size: 1.5rem;
    }
}

/* contact section */

.contact-main-container {
    /* background: linear-gradient(135deg, #1a2a6c, #b21f1f, #1a2a6c); */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
    /* margin: 50px 0; */
    background: rgba(255, 255, 255, 0.95);
}


.contact-section {
    width: 100%;
    max-width: 1200px;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3); */
    display: flex;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.contact-info::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -30px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.contact-section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    animation: slideInLeft 0.8s ease-out;
    /* color: #1d4ed8!important; */
}

.contact-section-title span {
    color: #ff9f43;
}

.contact-section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    animation: slideInLeft 1s ease-out;
}

.contact-methods {
    position: relative;
    z-index: 2;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: backwards;
}

.contact-method:nth-child(1) {
    animation-delay: 0.2s;
}

.contact-method:nth-child(2) {
    animation-delay: 0.4s;
}

.contact-method:nth-child(3) {
    animation-delay: 0.6s;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    background: #ff9f43;
    transform: scale(1.1) rotate(5deg);
}

.method-details h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.method-details p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
    animation: fadeIn 1.2s ease-out;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: #ff9f43;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 60px 40px;
    position: relative;
}

.form-title {
    font-size: 2.2rem;
    color: #1d4ed8;
    margin-bottom: 30px;
    animation: slideInRight 0.8s ease-out;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: backwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.2s;
}

.form-group:nth-child(2) {
    animation-delay: 0.3s;
}

.form-group:nth-child(3) {
    animation-delay: 0.4s;
}

.form-group:nth-child(4) {
    animation-delay: 0.5s;
}

.form-group:nth-child(5) {
    animation-delay: 0.6s;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
    background: white;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    animation: fadeIn 1s ease-out;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 20px rgba(37, 99, 235, 0.6);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.delivery-icon {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
}

.delivery-icon.truck {
    bottom: 20px;
    right: 20px;
    font-size: 10rem;
    transform: rotate(-20deg);
    animation: float 6s ease-in-out infinite;
}

.delivery-icon.package {
    top: 20px;
    left: 20px;
    font-size: 8rem;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-20deg);
    }

    50% {
        transform: translateY(-20px) rotate(-22deg);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .delivery-icon {
        display: none;
    }
}

/* Footer */

.footer-main-container {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #2575fc);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #fff;
    width: 100%;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.get-started-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #2575fc;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.get-started-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #2575fc;
    color: #fff;
}

/* Footer Styles */
.footer {
    background: #0f172a;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18 138.3 24.88 209.4 13.08 36.15-6 69.85-17.84 104.45-29.34C989.49 25 1113-14.29 1200 52.47V0z" fill="%230f172a"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.footer-col:hover h4::after {
    width: 100px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    color: #4facfe;
    transition: all 0.4s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover i {
    color: #00f2fe;
    transform: scale(1.2);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #94a3b8;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.footer-contact p:hover {
    color: #fff;
}

.footer-contact i {
    width: 36px !important;
    height: 36px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 50%;
    color: #4facfe;
    transition: all 0.4s ease;
}

.footer-contact p:hover i {
    background: linear-gradient(to right, #4facfe, #00f2fe);
    color: #fff;
    transform: rotate(10deg);
}

.newsletter p {
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(79, 172, 254, 0.5);
}

/* .newsletter-btn {
    padding: 12px 25px;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    color: #0f172a;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
} */

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.4);
}

.social-links a:hover::before {
    transform: translateY(0);
}

.social-links a i {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.social-links a:hover i {
    transform: scale(1.2);
}

.copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.95rem;
}

.copyright a {
    color: #4facfe;
    text-decoration: none;
    transition: all 0.4s ease;
}

.copyright a:hover {
    color: #00f2fe;
    text-decoration: underline;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 90%;
}

/* .footer-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
} */

/* Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .content h1 {
        font-size: 2.5rem;
    }
}



/* About Us */

.about-us-main-container {
    background-color: var(--light-gray);
    color: var(--dark);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    gap: 10px;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* Navbar styles */
.navbar {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 5%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-link {
    position: relative;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 60%;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.2;
}

.about-hero h1 span {
    color: var(--primary);
    position: relative;
}

.about-hero h1 span:after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(37, 99, 235, 0.2);
    z-index: -1;
}

.about-hero p {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Story Section */
.story {
    position: relative;
    background-color: white;
}

.story-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    transform: translateY(0);
    transition: transform 0.5s ease;
    height: 600px;
    /* width: 100%; */
}

.story-image:hover {
    transform: translateY(-15px);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.milestone {
    text-align: center;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.milestone:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.milestone-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.milestone-text {
    font-size: 1rem;
    color: var(--dark);
}

/* Values Section */
.values {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(16, 185, 129, 0.03));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--primary);
    transition: height 0.5s ease;
}

.value-card:hover:before {
    height: 100%;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-desc {
    color: var(--gray);
    line-height: 1.7;
}

/* Team Section */
.team {
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 25px;
    text-align: center;
    position: relative;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.member-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta .btn {
    background: white;
    color: var(--primary);
    font-weight: 600;
    padding: 16px 45px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Responsive styles */
@media (max-width: 992px) {
    .story-container {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .about-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .milestones {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}



/* Service Page */

/* Service Hero Section */
.service-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), transparent);
    z-index: 0;
}

.service-hero:after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent, rgba(16, 185, 129, 0.15));
    z-index: 0;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

/* Service Categories */
.service-categories {
    background-color: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.category-card:hover .category-icon i {
    color: white;
}

.category-icon {
    width: 90px;
    height: 90px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.category-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.category-desc {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Features Section */
.features {
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover:before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(-10deg) scale(1.1);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-desc {
    color: var(--gray);
    line-height: 1.7;
}

/* Service Packages */
.packages {
    background-color: #fff;
    /* background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(16, 185, 129, 0.03)); */
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
    border: 3px solid var(--primary);
    transform: scale(1.03);
}

.package-card.popular:hover {
    transform: scale(1.03) translateY(-15px);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary);
    color: white;
    padding: 6px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.package-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.package-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.package-price span {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

.package-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 15px;
}

.package-features {
    padding: 40px 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: var(--light-gray);
    padding: 22px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.08);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
    color: var(--gray);
    line-height: 1.7;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 30px;
    max-height: 500px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.cta:after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* Responsive styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.3rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 80px 0;
    }
}



/* contact Us  */

.parcel-main-container {
    background-color: var(--light-gray);
    color: var(--dark);
    overflow-x: hidden;
}

/* Contact Page Container */
.parcel-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Header */
.parcel-contact-header {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08));
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.parcel-contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 20%);
}

.parcel-contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.parcel-contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.parcel-contact-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
}

/* Contact Main Section */
.parcel-contact-main {
    padding: 80px 0;
}

.parcel-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

/* Contact Form */
.parcel-contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.parcel-contact-form-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.parcel-form-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark);
}

.parcel-form-group {
    margin-bottom: 25px;
    position: relative;
}

.parcel-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.parcel-form-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    font-size: 16px;
    transition: all 0.3s;
    background-color: var(--light);
}

.parcel-form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.parcel-form-textarea {
    min-height: 180px;
    resize: vertical;
}

.parcel-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    gap: 12px;
    border: none;
    outline: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    width: 100%;
    margin-top: 10px;
}

.parcel-form-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4);
}

.parcel-form-submit i {
    transition: transform 0.3s ease;
}

.parcel-form-submit:hover i {
    transform: translateX(5px);
}

/* Contact Info */
.parcel-contact-info {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    padding: 50px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.parcel-contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect fill="rgba(255,255,255,0.05)" width="100" height="100"/></svg>');
    background-size: 20px 20px;
}

.parcel-contact-info-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.parcel-contact-info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.parcel-contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.parcel-contact-method:hover {
    transform: translateX(10px);
}

.parcel-contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.parcel-contact-method:hover .parcel-contact-icon {
    background: white;
    color: var(--primary);
    transform: scale(1.1);
}

.parcel-contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.parcel-contact-details p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.parcel-contact-details a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.parcel-contact-details a:hover {
    text-decoration: underline;
    transform: translateX(3px);
}

/* Social Media */
.parcel-social-section {
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.parcel-social-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.parcel-social-links {
    display: flex;
    gap: 15px;
}

.parcel-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    cursor: pointer;
}

.parcel-social-link:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
}

/* Map Section */
.parcel-map-section {
    margin-top: 80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    height: 500px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    position: relative;
}

.parcel-map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray);
}

.parcel-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.parcel-map-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
}

.parcel-map-address {
    color: var(--gray);
    max-width: 500px;
}

.parcel-map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    gap: 10px;
    border: none;
    outline: none;
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.parcel-map-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* FAQ Section */
.parcel-faq-section {
    margin-top: 80px;
}

.parcel-faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.parcel-faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.parcel-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.parcel-faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.parcel-faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.parcel-faq-question {
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.parcel-faq-question:hover {
    background: rgba(37, 99, 235, 0.03);
}

.parcel-faq-icon {
    transition: transform 0.3s ease;
}

.parcel-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--gray);
    line-height: 1.7;
}

.parcel-faq-item.active .parcel-faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
}

.parcel-faq-item.active .parcel-faq-icon {
    transform: rotate(180deg);
}

/* Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.parcel-floating {
    animation: float 4s ease-in-out infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.parcel-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Responsive styles */
@media (max-width: 992px) {
    .parcel-contact-title {
        font-size: 2.8rem;
    }

    .parcel-contact-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .parcel-contact-title {
        font-size: 2.2rem;
    }

    .parcel-contact-subtitle {
        font-size: 1rem;
    }

    .parcel-map-overlay {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ==================apply form ====================== */

.main-applyFormcontainer {
    font-family: 'Montserrat', sans-serif;
    /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
    color: var(--dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.applyForm-container {
    width: 100%;
    max-width: 800px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

.header {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 30px;
    text-align: center;
}

.header h1 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.header p {
    font-size: 16px;
    opacity: 0.9;
}

.form-container {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
}

.form-group:focus-within label {
    color: var(--primary);
    transform: translateX(5px);
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5eb;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
    transform: translateY(-2px);
}

input:hover,
select:hover,
textarea:hover {
    border-color: #b1b9d3;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option input,
.checkbox-option input {
    width: auto;
    margin-right: 8px;
}

.radio-option:hover,
.checkbox-option:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

button {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    opacity: 0;
    animation: fadeIn 0.5s ease 0.8s forwards;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
    background: linear-gradient(to right, var(--primary-dark), #651c93);
}

button:active {
    transform: translateY(0);
}

.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.form-group:nth-child(4) {
    animation-delay: 0.4s;
}

.form-group:nth-child(5) {
    animation-delay: 0.5s;
}

.form-group:nth-child(6) {
    animation-delay: 0.6s;
}

.form-group:nth-child(7) {
    animation-delay: 0.7s;
}

.form-group:nth-child(8) {
    animation-delay: 0.8s;
}

.form-group:nth-child(9) {
    animation-delay: 0.9s;
}

.form-group:nth-child(10) {
    animation-delay: 1.0s;
}

.form-group:nth-child(11) {
    animation-delay: 1.1s;
}

.form-group:nth-child(12) {
    animation-delay: 1.2s;
}

@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }

    .header {
        padding: 20px;
    }

    input,
    select,
    textarea {
        padding: 12px;
    }
}


/* ======================business form page====================== */

.businessContainer {
    margin: 80px auto;
    width: 100%;
    max-width: 800px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
    padding: 0;
}

.header {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.form-container {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3748;
    font-size: 1.1rem;
}

.input-container {
    position: relative;
}

input,
select,
textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #4b6cb7;
    box-shadow: 0 0 0 3px rgba(75, 108, 183, 0.2);
}

input:hover,
select:hover,
textarea:hover {
    border-color: #a0aec0;
}

.icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-size: 1.2rem;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(75, 108, 183, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.success-message {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    display: none;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.error-message {
    color: #e53e3e;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e53e3e;
}

.form-group.error .error-message {
    display: block;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .container {
        border-radius: 15px;
    }

    .header {
        padding: 20px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .form-container {
        padding: 20px;
    }
}

/* Stagger animations for form groups */
.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.form-group:nth-child(4) {
    animation-delay: 0.4s;
}

.form-group:nth-child(5) {
    animation-delay: 0.5s;
}

.form-group:nth-child(6) {
    animation-delay: 0.6s;
}



/* Our capabilities section */
.capabilities-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.capabilities-header {
    text-align: center;
    margin-bottom: 60px;
}

.capabilities-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.capabilities-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.capability-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #3b82f6;
    height: 100%;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.capability-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #3b82f6;
    font-size: 1.5rem;
}

.capability-title {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.capability-desc {
    color: #64748b;
    line-height: 1.6;
}

.stats-container {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    color: white;
    padding: 60px 20px;
    margin: 60px 0;
    text-align: center;
    border-radius: 16px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stats-title {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    padding: 20px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #93c5fd;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.collaboration-section {
    text-align: center;
    padding: 60px 20px;
    background: #f1f5f9;
    border-radius: 16px;
    max-width: 1000px;
    margin: 60px auto;
}

.collaboration-title {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700;
}

.collaboration-text {
    font-size: 1.3rem;
    color: #3b82f6;
    font-weight: 600;
}

@media (max-width: 768px) {
    .capabilities-header h2 {
        font-size: 2rem;
    }

    .capabilities-header p {
        font-size: 1.1rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .collaboration-title {
        font-size: 1.7rem;
    }

    .collaboration-text {
        font-size: 1.1rem;
    }
}

/* privacy css for driver apply form */

.privacy-policy {
    margin: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

.privacy-policy a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.privacy-policy a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.privacy-checkbox input {
    margin-right: 10px;
    margin-top: 3px;
    width: 18px;
}

.privacy-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}


/* Privacy policy page */


.policy-container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.policy-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.policy-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 3rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: #1e40af;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.policy-point {
    margin-bottom: 1.5rem;
}

.policy-point h3 {
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.policy-point p,
.policy-point ul {
    color: #4b5563;
    margin-left: 1.5rem;
}

.policy-point ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.policy-point li {
    margin-bottom: 0.5rem;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 2rem 0;
}

.footer {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 3rem 0 1rem;
    /* margin-top: 3rem; */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #3b82f6;
}

.footer-links li {
    margin-bottom: 0.75rem;
    list-style: none;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #94a3b8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #334155;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #3b82f6;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

.copyright a {
    color: #3b82f6;
    text-decoration: none;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .policy-content {
        padding: 2rem;
    }

    .policy-header h1 {
        font-size: 2rem;
    }
}