
        :root {
            --primary-color: #ff6b00;
            --secondary-color: #0056b3;
            --dark-color: #333;
            --light-color: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
        }
        

        
        .navbar {
            z-index:9999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
        }
        
        
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: #e05e00;
            border-color: #e05e00;
        }
        
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .hero-section {
            overflow: hidden;
            border-bottom:3px solid #ff6b00 !important;
            background-color: #f8f9fa;
            background-position: center;
           
           
        }
        
        .section-title {
            position: relative;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        
        .section-title-services{
            position: relative;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
           
            width: 60px;
            height: 3px;
            
            background-color: var(--primary-color);
        }
        
       

        .section-title-services:after{
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
           
            width: 60px;
            height: 3px;
            
            background-color: var(--primary-color);
        }


        .service-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            margin-bottom: 30px;
            height: 270px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .tracking-form {
            background-color: var(--light-color);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        #services{
            background-color: white !important;
            border-top:3px solid #ff6b00 !important;
            
        }
        .stats-section {
            background-color: var(--secondary-color);
            color: white;
            padding: 80px 0;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .testimonial-card {
            border-left: 4px solid var(--primary-color);
            padding-left: 20px;
            margin-bottom: 30px;
        }
        
        .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
        }


        .delivery-column {
            padding: 30px;
        }
        
        .delivery-title {
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 2.2rem;
        }
        
        .delivery-list {
            list-style: none;
            padding-left: 0;
        }
        
        .delivery-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .delivery-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .delivery-btn {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--light-color);
            padding: 8px 30px;
            font-weight: 600;
            text-transform: uppercase;
            font-family: 'Nunito', sans-serif;
            margin-top: 20px;
        }
        
        .delivery-btn:hover {
            background-color: var(--dark-color);
            border-color: var(--dark-color);
            color: var(--light-color);
        }
        
        /* Spacing utility */
        .spacing-20 {
            height: 20px;
        }
    

        .food-delivery-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .food-image {
            max-width: 100%;
            height: auto;
        }
        
        .pizza-icon {
            max-width: 90px;
            margin-bottom: 20px;
        }
        
        .section-title {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }
        
        .section-content {
            max-width: 540px;
            margin-bottom: 30px;
            line-height: 1.6;
            color: #666;
        }
        
        .divider {
            width: 60px;
            height: 2px;
            background-color: #ff7043;
            margin-bottom: 20px;
        }
        
        .btn-custom {
            background-color: #ff7043;
            border-color: #ff7043;
            color: white;
            padding: 8px 30px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        
        .btn-custom:hover {
            background-color: #111;
            border-color: #111;
            color: white;
        }
        
        @media (max-width: 768px) {
            .food-delivery-section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .text-content {
                text-align: center;
                margin-top: 30px;
            }
            
            .pizza-icon {
                margin: 0 auto 20px;
                display: block;
            }
            
            .divider {
                margin: 0 auto 20px;
            }
            
           

        }



        .package-delivery-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
        }
        
        .package-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .package-image:hover {
            transform: scale(1.02);
        }
        
        .package-icon {
            width: 90px;
            height: 90px;
            background-color: #ff7043;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(255, 112, 67, 0.3);
        }
        
        .package-icon i {
            font-size: 40px;
            color: white;
        }
        
        .section-title {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }
        
        .section-content {
            max-width: 540px;
            margin-bottom: 30px;
            line-height: 1.6;
            color: #666;
        }
        
        .divider {
            width: 60px;
            height: 2px;
            background-color: #ff7043;
            margin-bottom: 20px;
        }
        
        .btn-custom {
            background-color: #ff7043;
            border-color: #ff7043;
            color: white;
            padding: 10px 30px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(255, 112, 67, 0.3);
        }
        
        .btn-custom:hover {
            background-color: #111;
            border-color: #111;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }
        
        .features {
            display:flex;
            flex-direction: column;
            justify-content: center !important;
            align-items: start;
            padding-left: 0 !important;
            margin-top: 10px;
        }
        
        .feature-item {
            align-items: center !important;
            justify-content: start !important;
            display: flex;
            align-items: center;
            margin-bottom: 5px;
            
        }
        
        .feature-icon {
            width: 30px;
            height: 30px;
            background-color: rgba(255, 112, 67, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px !important;
            color: #ff7043;
            flex-shrink: 0;
            margin-top: 20px !important;
            
        }

        
        
        .app-badges {
            margin-top: 25px;
            display: flex;
            gap: 15px;
        }
        
        .app-badge {
            height: 45px;
            transition: transform 0.3s ease;
        }
        
        .app-badge:hover {
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .package-delivery-section {
                padding: 40px 0;
            }
            
            .feature-icon1{
                margin-right: 45% !important;
            }
            .features {
            display:flex;
            flex-direction: column;
            justify-content: center !important;
            align-items: center;
            padding-left: 0 !important;
            margin-top: 30px;
        }
            .section-title {
                font-size: 24px;
            }
            
            .text-content {
                text-align: center;
                margin-top: 30px;
            }
            
            .package-icon {
                margin: 0 auto 20px;
            }
            
            .divider {
                margin: 0 auto 20px;
            }
            
            .app-badges {
                justify-content: center;
            }
            
            .feature-item {
                justify-content: center;
            }

            .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform:translateX(-50%);
           
            width: 60px;
            height: 3px;
            
            background-color: var(--primary-color);
        }
        }


        .app-works-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }
        
        .divider {
            width: 60px;
            height: 2px;
            background-color: #ff7043;
            margin-bottom: 40px;
        }
        
        .step-item {
            margin-bottom: 40px;
            position: relative;
        }
        
        .step-number {
            position: absolute;
            left: -40px;
            top: 10px;
            width: 30px;
            height: 30px;
            background-color: #ff7043;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }
        
        .step-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #333;
        }
        
        .step-content {
            color: #666;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        .phone-mockup {
            max-width: 100%;
            height: auto;
            border-radius: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .phone-mockup:hover {
            transform: translateY(-5px);
        }
        
        .step-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 112, 67, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: #ff7043;
            flex-shrink: 0;
        }
        
        .step-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .pricing-section {
            padding: 80px 0;
            background-color: #fff;
        }
        
        .section-title {
            margin-bottom: 30px;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .section-title .separator {
            width: 60px;
            height: 2px;
            background-color: var(--primary-color);
            margin: 20px auto;
            position: relative;
        }
        
        .section-title .separator:before,
        .section-title .separator:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 2px;
            background-color: var(--primary-color);
            top: 0;
        }
        
        .section-title .separator:before {
            left: -70px;
        }
        
        .section-title .separator:after {
            right: -70px;
        }
        
        .section-title p {
            max-width: 540px;
            margin: 0 auto;
            color: var(--light-text);
            line-height: 1.6;
        }
        
        .pricing-card {
            background-color: var(--light-bg);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
            margin-bottom: 30px;
            border: 1px solid #e2e5e7;
            
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            border: 1px solid #ff6b00;
        }
        
        .pricing-card.featured {
            position: relative;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-header {
            padding: 10px 10px;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .pricing-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
            text-transform: uppercase;
        }
        
        .pricing-subtitle {
            color: var(--light-text);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .pricing-price {
            padding: 15px 20px;
            text-align: center;
            background-color: #fff;
        }
        
        .price {
            font-size: 48px;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }
        
        .price-unit {
            display: block;
            font-size: 14px;
            color: var(--light-text);
            margin-top: 5px;
        }
        
        .pricing-features {
            padding: 20px 20px;
            text-align: center;
        }
        
        .pricing-features p {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .pricing-features p:last-child {
            margin-bottom: 0;
            border-bottom: none;
        }
        
        .pricing-footer {
            padding: 0 20px 30px;
            text-align: center;
        }
        
        .pricing-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 4px;
            text-transform: uppercase;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .pricing-btn:hover {
            background-color: var(--primary-color);
            color: #fff;
        }
        
        .featured .pricing-btn {
            background-color: var(--primary-color);
            color: #fff;
        }
        
        .featured .pricing-btn:hover {
            background-color: #111;
            border-color: #111;
        }
        
        .badge {
            position: absolute;
            top: 20px;
            left: 50%;
            transform:translateX(-50%);
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }
        
        @media (max-width: 991px) {
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
        }


        @media (max-width: 768px) {
            .app-works-section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 28px;
                text-align: center;
            }
            
            .divider {
                margin: 0 auto 40px;
            }
            
            .step-item {
                padding-left: 40px;
            }
            
            .step-number {
                left: 0;
            }
            
            .phone-mockup-container {
                text-align: center;
                margin-top: 40px;
            }
        }
        
        @media (min-width: 769px) {
            .step-item {
                padding-left: 0;
            }
            
            .step-number {
                display: none;
            }

            
        }


        .contact-section {
            padding: 80px 0;
            background-color: #ffffff;
        }
        
        .contact-form {
            background: #ffffff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }
        
        .form-control {
            padding: 12px 15px;
            border: 1px solid #e1e1e1;
            border-radius: 5px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #ff7043;
            box-shadow: 0 0 0 0.2rem rgba(255, 112, 67, 0.25);
        }
        
        .btn-submit {
            background-color: #ff7043;
            border-color: #ff7043;
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .btn-submit:hover {
            background-color: #e55a2e;
            border-color: #e55a2e;
            transform: translateY(-2px);
        }
        
        .contact-info {
            padding-left: 20px;
        }
        
        .icon-box {
            display: flex;
            align-items: flex-start;
            margin-bottom: 40px;
        }
        
        .icon-wrapper {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 112, 67, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .icon-wrapper i {
            font-size: 24px;
            color: #ff7043;
        }
        
        .icon-content h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #333;
        }
        
        .icon-content p {
            color: #666;
            margin-bottom: 0;
            line-height: 1.5;
        }
        
        @media (max-width: 768px) {
            .contact-section {
                padding: 40px 0;
            }
            
            .contact-form {
                padding: 30px 20px;
                margin-bottom: 40px;
            }
            
            .contact-info {
                padding-left: 0;
            }
            
            .icon-box {
                margin-bottom: 30px;
            }
        }


        .about-section {
            padding: 80px 0;
            background-color: #ffffff;
        }
        
        .about-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .about-image:hover {
            transform: scale(1.02);
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }
        
        .section-content {
            color: #666;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        
        .divider {
            width: 60px;
            height: 2px;
            background-color: #ff7043;
            margin-bottom: 25px;
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 112, 67, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .feature-icon:hover {
            background-color: #ff7043;
            transform: translateY(-5px);
        }
        
        .feature-icon i {
            font-size: 30px;
            color: #ff7043;
            transition: color 0.3s ease;
        }
        
        .feature-icon:hover i {
            color: white;
        }
        
        .feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .feature-description {
            color: #666;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .about-section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 28px;
                text-align: center;
            }
            
            .divider {
                margin: 0 auto 25px;
            }
            
            .section-content {
                text-align: center;
            }
            
            .feature-icon {
                margin: 0 auto 20px;
            }
            
            .feature-content {
                text-align: center;
            }
        }
        
        .dropdown-menu{
            overflow:hidden !important;
        }
    :root {
  --navbar-height: 60px; /* default header height for desktop */
}




.btnm{
    max-width:300px;
}

.navbar-brand img{
    max-width: 130px !important;
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 300px; /* larger value if header is taller on mobile */
  }
  
  .modal{
      z-index:99999;
  }

}

.navbar-brand1 img{
    max-width: 120px !important;
    border-radius:50%;
}


     
        