 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Inter', sans-serif;
     line-height: 1.6;
     color: #333;
     background-color: #fefefe;
 }

 /* Color Variables */
 :root {
     --primary-orange: #d4621a;
     --primary-brown: #4a3728;
     --secondary-brown: #6b4d3a;
     --accent-cream: #f4f1ed;
     --light-orange: #e8935b;
     --dark-brown: #2d211a;
     --white: #ffffff;
     --light-gray: #f8f9fa;
     --medium-gray: #6c757d;
     --dark-gray: #343a40;
     --success: #28a745;
     --shadow: rgba(0, 0, 0, 0.1);
     --shadow-dark: rgba(0, 0, 0, 0.2);
 }

 /* Utility Classes */
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 12px 24px;
     border: none;
     border-radius: 8px;
     font-weight: 600;
     text-decoration: none;
     cursor: pointer;
     transition: all 0.3s ease;
     font-size: 16px;
     line-height: 1;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
     color: var(--white);
     box-shadow: 0 4px 15px rgba(212, 98, 26, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(212, 98, 26, 0.4);
 }

 .btn-secondary {
     background: transparent;
     color: var(--primary-brown);
     border: 2px solid var(--primary-brown);
 }

 .btn-secondary:hover {
     background: var(--primary-brown);
     color: var(--white);
 }

 .section-header {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-header h2 {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--primary-brown);
     margin-bottom: 16px;
 }

 .section-header p {
     font-size: 1.2rem;
     color: var(--medium-gray);
     max-width: 600px;
     margin: 0 auto;
 }

 .highlight {
     color: var(--primary-orange);
 }

 /* Navigation */
 .navbar {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     z-index: 1000;
     padding: 12px 0;
     border-bottom: 1px solid rgba(0, 0, 0, 0.1);
 }

 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     height: 40px;
     width: auto;
     max-width: 200px;
 }

 .nav-menu {
     display: flex;
     align-items: center;
     gap: 32px;
 }

 .nav-link {
     text-decoration: none;
     color: var(--primary-brown);
     font-weight: 500;
     transition: color 0.3s ease;
     position: relative;
 }

 .nav-link:hover {
     color: var(--primary-orange);
 }

 .nav-link.cta-button {
     background: var(--primary-orange);
     color: var(--white);
     padding: 8px 20px;
     border-radius: 6px;
     transition: all 0.3s ease;
 }

 .nav-link.cta-button:hover {
     background: var(--light-orange);
     transform: translateY(-1px);
 }

 .nav-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
 }

 .bar {
     width: 25px;
     height: 3px;
     background: var(--primary-brown);
     margin: 3px 0;
     transition: 0.3s;
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(135deg, var(--accent-cream) 0%, #ffffff 100%);
     padding: 120px 0 80px;
     min-height: 100vh;
     display: flex;
     align-items: center;
 }

 .hero-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .hero-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .hero-title {
     font-size: 3.5rem;
     font-weight: 700;
     color: var(--primary-brown);
     line-height: 1.2;
     margin-bottom: 24px;
 }

 .hero-description {
     font-size: 1.2rem;
     color: var(--medium-gray);
     margin-bottom: 32px;
     line-height: 1.6;
 }

 .hero-buttons {
     display: flex;
     gap: 16px;
     margin-bottom: 48px;
     flex-wrap: wrap;
 }

 .app-store-btn,
 .google-play-btn {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px 20px;
     min-width: 160px;
 }

 .btn-text {
     display: flex;
     flex-direction: column;
     text-align: left;
     line-height: 1.2;
 }

 .btn-subtitle {
     font-size: 12px;
     font-weight: 400;
     opacity: 0.9;
 }

 .btn-title {
     font-size: 16px;
     font-weight: 600;
 }

 .hero-stats {
     display: flex;
     gap: 40px;
 }

 .stat {
     text-align: center;
 }

 .stat-number {
     display: block;
     font-size: 2rem;
     font-weight: 700;
     color: var(--primary-orange);
 }

 .stat-label {
     font-size: 0.9rem;
     color: var(--medium-gray);
 }

 .hero-image {
     position: relative;
 }

 .hero-img {
     width: 100%;
     height: 500px;
     object-fit: cover;
     border-radius: 20px;
     box-shadow: 0 20px 40px var(--shadow-dark);
 }

 .floating-card {
     position: absolute;
     bottom: 20px;
     left: 20px;
     background: var(--white);
     padding: 16px 20px;
     border-radius: 12px;
     box-shadow: 0 10px 30px var(--shadow);
     display: flex;
     align-items: center;
     gap: 12px;
     animation: float 3s ease-in-out infinite;
 }

 .floating-card i {
     color: var(--primary-orange);
     font-size: 1.2rem;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-10px);
     }
 }

 /* Services Section */
 .services {
     padding: 100px 0;
     background: var(--white);
 }

 /* Services Carousel */
 .services-carousel {
     position: relative;
 }

 .carousel-container {
     overflow: hidden;
     padding: 0 20px;
 }

 .carousel-track {
     display: flex;
     transition: transform 0.5s ease;
     gap: 30px;
     padding: 20px 0;
 }

 .service-card {
     flex: 0 0 calc(33.333% - 20px);
     min-width: 320px;
     max-width: 380px;
 }

 .carousel-controls {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 20px;
     margin-top: 40px;
 }

 .carousel-btn {
     width: 50px;
     height: 50px;
     border: none;
     border-radius: 50%;
     background: var(--primary-orange);
     color: var(--white);
     font-size: 1.2rem;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .carousel-btn:hover {
     background: var(--light-orange);
     transform: scale(1.1);
 }

 .carousel-btn:disabled {
     background: var(--medium-gray);
     cursor: not-allowed;
     transform: scale(1);
 }

 .carousel-dots {
     display: flex;
     gap: 12px;
 }

 .carousel-dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: var(--medium-gray);
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .carousel-dot.active {
     background: var(--primary-orange);
     transform: scale(1.2);
 }

 .service-card {
     background: var(--white);
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 10px 30px var(--shadow);
     transition: all 0.3s ease;
     position: relative;
     cursor: pointer;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px var(--shadow-dark);
 }

 .service-icon {
     position: absolute;
     top: 20px;
     right: 20px;
     width: 50px;
     height: 50px;
     background: var(--primary-orange);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 1.2rem;
     z-index: 2;
 }

 .service-image {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 .service-content {
     padding: 24px;
 }

 .service-content h3 {
     font-size: 1.5rem;
     font-weight: 600;
     color: var(--primary-brown);
     margin-bottom: 12px;
 }

 .service-content p {
     color: var(--medium-gray);
     margin-bottom: 16px;
 }

 .service-content ul {
     list-style: none;
 }

 .service-content li {
     padding: 4px 0;
     color: var(--medium-gray);
     position: relative;
     padding-left: 20px;
 }

 .service-content li::before {
     content: "✓";
     position: absolute;
     left: 0;
     color: var(--success);
     font-weight: bold;
 }

 /* How It Works Section */
 .how-it-works {
     padding: 100px 0;
     background: var(--light-gray);
 }

 .steps-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
 }

 .step {
     text-align: center;
     position: relative;
 }

 .step-number {
     position: absolute;
     top: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 40px;
     height: 40px;
     background: var(--primary-orange);
     color: var(--white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 1.2rem;
 }

 .step-icon {
     width: 80px;
     height: 80px;
     background: var(--white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 30px auto 24px;
     box-shadow: 0 10px 30px var(--shadow);
 }

 .step-icon i {
     font-size: 2rem;
     color: var(--primary-brown);
 }

 .step h3 {
     font-size: 1.3rem;
     font-weight: 600;
     color: var(--primary-brown);
     margin-bottom: 12px;
 }

 .step p {
     color: var(--medium-gray);
     line-height: 1.6;
 }

 /* Coverage Section */
 .coverage {
     padding: 100px 0;
     background: var(--white);
 }

 .coverage-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .coverage-text h2 {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--primary-brown);
     margin-bottom: 24px;
 }

 .coverage-text p {
     font-size: 1.1rem;
     color: var(--medium-gray);
     margin-bottom: 40px;
 }

 .coverage-cities {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
     gap: 32px;
     margin-bottom: 40px;
 }

 .city-group h4 {
     color: var(--primary-orange);
     font-weight: 600;
     margin-bottom: 12px;
 }

 .city-group ul {
     list-style: none;
 }

 .city-group li {
     padding: 4px 0;
     color: var(--medium-gray);
     position: relative;
     padding-left: 16px;
 }

 .city-group li::before {
     content: "•";
     position: absolute;
     left: 0;
     color: var(--primary-orange);
 }

 .coverage-img {
     width: 100%;
     height: 400px;
     object-fit: cover;
     border-radius: 16px;
     box-shadow: 0 20px 40px var(--shadow);
 }

 /* Track Order Section */
 .track-order {
     padding: 100px 0;
     background: var(--white);
 }

 .track-content {
     max-width: 800px;
     margin: 0 auto;
     text-align: center;
 }

 .track-form {
     margin-bottom: 60px;
 }

 .track-form .form-group {
     display: flex;
     gap: 16px;
     max-width: 500px;
     margin: 0 auto;
 }

 .track-form input {
     flex: 1;
     padding: 16px 20px;
     border: 2px solid #e9ecef;
     border-radius: 8px;
     font-size: 16px;
     transition: border-color 0.3s ease;
 }

 .track-form input:focus {
     outline: none;
     border-color: var(--primary-orange);
 }

 .track-features {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
 }

 .track-feature {
     text-align: center;
     padding: 32px 24px;
     background: var(--light-gray);
     border-radius: 16px;
 }

 .track-feature i {
     width: 60px;
     height: 60px;
     background: var(--primary-orange);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 1.5rem;
     margin: 0 auto 20px;
 }

 .track-feature h4 {
     color: var(--primary-brown);
     font-weight: 600;
     margin-bottom: 12px;
 }

 .track-feature p {
     color: var(--medium-gray);
 }

 /* Delivery Signup Section */
 .delivery-signup {
     padding: 100px 0;
     background: var(--light-gray);
 }

 .signup-content {
     display: grid;
     grid-template-columns: 2fr 1fr;
     gap: 60px;
     align-items: start;
 }

 .signup-text h2 {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--primary-brown);
     margin-bottom: 24px;
 }

 .signup-text>p {
     font-size: 1.1rem;
     color: var(--medium-gray);
     margin-bottom: 40px;
 }

 .signup-benefits {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 32px;
     margin-bottom: 40px;
 }

 .benefit {
     display: flex;
     align-items: flex-start;
     gap: 16px;
 }

 .benefit i {
     width: 50px;
     height: 50px;
     background: var(--primary-orange);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 1.2rem;
     flex-shrink: 0;
 }

 .benefit h4 {
     color: var(--primary-brown);
     font-weight: 600;
     margin-bottom: 8px;
 }

 .benefit p {
     color: var(--medium-gray);
     margin: 0;
 }

 .signup-buttons {
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
 }

 .signup-requirements {
     background: var(--white);
     padding: 32px;
     border-radius: 16px;
     box-shadow: 0 10px 30px var(--shadow);
 }

 .signup-requirements h3 {
     color: var(--primary-brown);
     font-weight: 600;
     margin-bottom: 24px;
     text-align: center;
 }

 .requirements-list {
     list-style: none;
 }

 .requirements-list li {
     padding: 12px 0;
     color: var(--medium-gray);
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .requirements-list i {
     color: var(--success);
     font-size: 1.1rem;
 }

 /* Contact Section */
 .contact {
     padding: 100px 0;
     background: linear-gradient(135deg, var(--accent-cream) 0%, #ffffff 50%, var(--light-gray) 100%);
     position: relative;
     overflow: hidden;
 }

 .contact::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg,
             rgba(212, 98, 26, 0.05) 0%,
             rgba(74, 55, 40, 0.03) 25%,
             rgba(244, 241, 237, 0.8) 50%,
             rgba(74, 55, 40, 0.03) 75%,
             rgba(212, 98, 26, 0.05) 100%);
     pointer-events: none;
 }

 .contact-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     position: relative;
     z-index: 1;
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 32px;
 }

 .contact-item {
     display: flex;
     align-items: flex-start;
     gap: 16px;
 }

 .contact-item i {
     width: 50px;
     height: 50px;
     background: var(--primary-orange);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 1.2rem;
     flex-shrink: 0;
 }

 .contact-item h4 {
     color: var(--primary-brown);
     font-weight: 600;
     margin-bottom: 8px;
 }

 .contact-item p {
     color: var(--medium-gray);
     margin: 0;
 }

 .contact-form {
     background: var(--white);
     padding: 40px;
     border-radius: 16px;
     box-shadow: 0 10px 30px var(--shadow);
 }

 .form-group {
     margin-bottom: 24px;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 12px 16px;
     border: 2px solid #e9ecef;
     border-radius: 8px;
     font-size: 16px;
     transition: border-color 0.3s ease;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--primary-orange);
 }

 .form-group textarea {
     resize: vertical;
 }

 /* Footer */
 .footer {
     background: var(--primary-brown);
     color: var(--white);
     padding: 60px 0 20px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: 1fr 2fr;
     gap: 60px;
     margin-bottom: 40px;
 }

 .footer-brand {
     max-width: 350px;
 }

 .footer-logo {
     height: 50px;
     margin-bottom: 20px;
     max-width: 250px;
 }

 .footer-brand p {
     color: #ccc;
     margin-bottom: 24px;
     line-height: 1.6;
 }

 .social-links {
     display: flex;
     gap: 16px;
 }

 .social-link {
     width: 40px;
     height: 40px;
     background: var(--primary-orange);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .social-link:hover {
     background: var(--light-orange);
     transform: translateY(-2px);
 }

 .footer-links {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
 }

 .footer-column h4 {
     color: var(--primary-orange);
     font-weight: 600;
     margin-bottom: 16px;
 }

 .footer-column ul {
     list-style: none;
 }

 .footer-column li {
     margin-bottom: 8px;
 }

 .footer-column a {
     color: #ccc;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-column a:hover {
     color: var(--white);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 20px;
     border-top: 1px solid #555;
     color: #ccc;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .nav-menu {
         position: fixed;
         left: -100%;
         top: 70px;
         flex-direction: column;
         background-color: var(--white);
         width: 100%;
         text-align: center;
         transition: 0.3s;
         box-shadow: 0 10px 27px var(--shadow);
         padding: 20px 0;
     }

     .nav-menu.active {
         left: 0;
     }

     .nav-toggle {
         display: flex;
     }

     .nav-toggle.active .bar:nth-child(2) {
         opacity: 0;
     }

     .nav-toggle.active .bar:nth-child(1) {
         transform: translateY(8px) rotate(45deg);
     }

     .nav-toggle.active .bar:nth-child(3) {
         transform: translateY(-8px) rotate(-45deg);
     }

     .hero-content {
         grid-template-columns: 1fr;
         gap: 40px;
         text-align: center;
     }

     .hero-title {
         font-size: 2.5rem;
     }

     .hero-buttons {
         flex-direction: column;
         align-items: center;
     }

     .hero-stats {
         justify-content: center;
     }

     .carousel-container {
         padding: 0 10px;
     }

     .carousel-track {
         gap: 20px;
     }

     .service-card {
         flex: 0 0 calc(100% - 20px);
         min-width: 280px;
         max-width: none;
     }

     .steps-container {
         grid-template-columns: 1fr;
     }

     .track-form .form-group {
         flex-direction: column;
     }

     .track-features {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .signup-content {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .signup-benefits {
         grid-template-columns: 1fr;
     }

     .coverage-content {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .contact-content {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .footer-links {
         grid-template-columns: 1fr;
         gap: 32px;
     }

     .section-header h2 {
         font-size: 2rem;
     }

     .coverage-cities {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 480px) {
     .hero-title {
         font-size: 2rem;
     }

     .hero-stats {
         flex-direction: column;
         gap: 20px;
     }

     .contact-form {
         padding: 24px;
     }

     .btn {
         width: 100%;
         justify-content: center;
     }
 }

 /* Animation Classes */
 .fade-in {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.6s ease;
 }

 .fade-in.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .slide-in-left {
     opacity: 0;
     transform: translateX(-50px);
     transition: all 0.6s ease;
 }

 .slide-in-left.visible {
     opacity: 1;
     transform: translateX(0);
 }

 .slide-in-right {
     opacity: 0;
     transform: translateX(50px);
     transition: all 0.6s ease;
 }

 .slide-in-right.visible {
     opacity: 1;
     transform: translateX(0);
 }

 /* Footer Partners Section */
 .footer-partners {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding: 40px 0;
     margin-top: 40px;
 }

 .partners-content {
     text-align: center;
 }

 .partners-content h4 {
     color: var(--white);
     font-size: 1.25rem;
     font-weight: 600;
     margin-bottom: 24px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .partners-logos {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 40px;
     flex-wrap: wrap;
 }

 .partner-logo {
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
     background: rgba(255, 255, 255, 0.05);
     border-radius: 12px;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .partner-logo:hover {
     background: rgba(255, 255, 255, 0.1);
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
 }

 .partner-img {
     height: 80px;
     width: auto;
     max-width: 150px;
     object-fit: contain;
     filter: brightness(0.9) contrast(1.1);
     transition: all 0.3s ease;
 }

 .partner-logo:hover .partner-img {
     filter: brightness(1) contrast(1.2);
     transform: scale(1.05);
 }

 @media (max-width: 768px) {
     .footer-partners {
         padding: 30px 0;
     }

     .partners-content h4 {
         font-size: 1.1rem;
         margin-bottom: 20px;
     }

     .partners-logos {
         gap: 20px;
     }

     .partner-img {
         height: 60px;
         max-width: 120px;
     }
 }



/* START ORDER HISTORY */

.order-history-card {
    border: 1px solid rgba(152, 138, 138, 0.13);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.history-name {
    height: 60px;
    background-color: var(--primary-orange);
    display: flex;
    align-items: center;
    padding-left: 1rem;
}

.history-title {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

.timeline-section {
    min-height: 25rem;
    padding: 2rem 1.5rem 1rem 4rem;
}

.timeline-with-icons {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
    border-left: 4px solid var(--primary-orange);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-icon {
    position: absolute;
    left: -1.7rem;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-white {
    color: white;
}

.timeline-content {
    margin-left: 1rem;
}

.timeline-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 0.25rem 0;
    color: #333;
}

.timeline-message {
    font-size: 14px;
    color: #666;
    margin-bottom: 0.25rem;
}

.timeline-date {
    font-size: 13px;
    color: #888;
    font-weight: bold;
}

.timeline-main-section {
    margin-top: 6rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-section {
        padding-left: 2.5rem;
    }

    .timeline-icon {
        left: -2rem;
    }
}

/* END ORDER HISTORY */

/* START SHOW/HIDE PASSWORD  */
 .password-container {
     position: relative;
 }

 .toggle-password {
     position: absolute;
     top: 50%;
     right: 10px;
     transform: translateY(-50%);
     cursor: pointer;
 }
/* END SHOW/HIDE PASSWORD  */

/* START VALIDATION */
 .error {
     color: red;
 }

 .is-invalid {
     border-color: red;
 }

 .is-valid {
     border-color: green;
 }

/* END VALIDATION */

/* START SIGN IN */

 .sign-out {
    background-color: red !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 10px;
    border: none;
    border-radius: 12px;
}

 .custom-modal {
     display: none;
     position: fixed;
     z-index: 1050;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     overflow: auto;
     background: rgba(0, 0, 0, 0.6);
     justify-content: center;
     align-items: center;
 }

 /* Modal Box */
 .custom-modal-box {
     background-color: #fff;
     margin: auto;
     max-width: 600px;
     width: 90%;
     padding: 0;
     border-radius: 1rem;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
 }

 /* Modal Header/Footer */
 .custom-modal-header {
     display: flex;
     justify-content: space-between;
     align-items: start;
     padding: 1rem;
 }

 /* Close Button */
 .custom-modal-close {
     background: none;
     border: none;
     font-size: 1.5rem;
     cursor: pointer;
 }

 /* Modal Body */
 /* .custom-modal-body {
     padding: 1rem;
 } */

 .signin-modalcontent {
     border-radius: 1rem !important;
 }

 .signin-modalhead {
     padding: 1.2rem 1.4rem !important;
 }

 .signin-modalbody {
     padding: 0.2rem 1.4rem !important;
 }

 .signin-form {
     padding: 0.675rem .75rem !important;
     border: 1px solid #d4d4d4 !important;
 }

 .signin-form:focus {
     /* box-shadow: 0 0 0 0.25rem rgb(157 78 229 / 25%) !important; */
     outline: none;
     border-color: var(--primary-orange);
 }

 .signin-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
 }

 .signin-check-ts {
   
    margin-bottom: 10px;
 }

 .signin-check-input:checked {
     background-color: var(--primary-orange) !important;
 }

 .signin-check-input {
     width: 1.2em !important;
     height: 1.2em !important;
     border: 2px solid #49454f !important;
     border-radius: 0px !important;
 }

 .sign-in-h5 {
     font-size: 20px;
     color: var(--primary-orange) !important;
 }

 .sing-up-p {
    text-decoration: none;
     color: var(--primary-orange) !important;
 }

 .sign-in-label {
     font-size: 15px !important;
 }

 .sign-in-btn {
     margin: 0 0 20px 0;
 }

 .sign-in-with-google {
     border: 1px solid #a29393 !important;
     border-radius: 20px !important;
     padding: 8px !important;
     color: #929292 !important;
 }

 .sign-in-with-google p {
     margin-right: 20px !important;
     font-size: 15px !important;
 }

 .sign-in-with-google-img {
     margin-left: 20px !important;
 }

 /* END SIGN IN */

/* START SIGN UP */

.custom-modal-signup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.custom-modal-box-signup {
    background: white;
    border-radius: 1rem;
    width: 90%;
    max-width: 700px;
    /* max-width: 1080px; */
    padding: 1.5rem;
    position: relative;
}

.custom-modal-header-signup {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-modal {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.text-danger {
    color: #dc3545 !important;
}

/* .phone-input-wrapper {
    display: flex;
    align-items: center;
}

.phone-prefix {
    background-color: #f1f1f1;
    padding: 0.675rem 0.75rem;
    border: 1px solid #d4d4d4;
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.phone-input-wrapper input {
    border-radius: 0 4px 4px 0;
    border-left: none;
} */

.signup-modalcontent {
    border-radius: 1rem !important;
}

.signup-modalhead {
    padding: 1.2rem 1.4rem !important;
}

.signup-modalbody {
    padding: 0.2rem 1.4rem !important;
}

.signup-form {
    padding: 0.675rem .75rem !important;
    border: 1px solid #d4d4d4 !important;
}

.signup-form:focus {
    box-shadow: 0 0 0 0.25rem rgb(157 78 229 / 25%) !important;
}

.signup-check-input:checked {
    background-color: var(--site-color) !important;
}

.signup-check-input {
    width: 1.2em !important;
    height: 1.2em !important;
    border: 2px solid #49454f !important;
    border-radius: 0px !important;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.forgot-togglePassword {
    position: absolute;
    top: 50%;
    right: 35%;
    transform: translateY(-50%);
    cursor: pointer;
}

.sign-up-purle {
    color: var(--site-color) !important;
}

.sing-up-font {
    font-size: 15px !important;
}

.sing-up-btn {
    background-color: var(--site-color) !important;
    padding: 12px !important;
}

.iti--allow-dropdown .iti__flag-container, .iti--separate-dial-code .iti__flag-container {
    height: 48px !important;
}

.alreay-account {
    text-align: center;
}

.form-group-signup {
    margin-bottom: 12px !important;
}

.sign-up-btn {
     margin: 0 0 10px 0;
 }

 .flash-message {
    padding: 12px 20px;
    margin: 20px auto;
    width: fit-content;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    animation: fadeOut 5s forwards;
}
.flash-message.success {
    background-color: #28a745;
}
.flash-message.error {
    background-color: #dc3545;
}
@keyframes fadeOut {
    0%   { opacity: 1; }
    80%  { opacity: 1; }
    100% { opacity: 0; display: none; }
}

/* END SIGN UP */

/* START FORGOT PASSWORD */

.forgotModal-modalcontent {
    background-color: #eeebf5 !important;
}

.forgotModal-form {
    padding: 0.675rem .75rem !important;
    border: 1px solid #d4d4d4 !important;
    background-color: #eeebf5 !important;
}

.forgotModal-form:focus {
    box-shadow: 0 0 0 0.25rem rgb(157 78 229 / 25%) !important;
}

.forgot-cancle-btn {
    background-color: #ebf2f7 !important;
    padding: 10px;
    width: 130px;
    border: 1px solid #d4d4d4 !important;
}

.forgot-submit-btn {
    background-color: var(--site-color) !important;
    padding: 10px;
    width: 130px;
}

.forgot-pwd-h5 {
    color: var(--site-color) !important;
}

.forgot-email-label {
    font-size: 16px !important;
}

.forgot-pwd-p {
    font-size: 15px !important;
}

.admin-forgot-btn {
    padding-left: 0px !important;
}

/* END FORGOT PASSWORD */