/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container3 {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    max-width: 900px;
    padding: 0 120px;
}

.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    position: relative;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.chat-btn {
    background: #e31e24;
    color: white;
    text-decoration: none;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.chat-btn:hover {
    background: #c41e3a;
}

/* Desktop and Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 200px;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu ul {
    list-style: none;
    padding: 10px 0;
}

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease;
}

.nav-menu a:hover {
    background: #f8f9fa;
    color: #e31e24;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-dark {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #E31E24;
    color: white;
}

.btn-primary:hover {
    background: #c41e3a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Added dark button style for the how it works section */
.btn-dark {
    background: #333;
    color: white;
    padding: 0.3rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 .black-text {
  color: #000;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  font-style: normal;
  font-size: 85px;
}

.hero h1 .highlight-text {
  color: #e31e24;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 85px;
  font-weight: 600;
}


.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  margin: 0 10px;
}

.btn {
  padding: 14px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.btn.primary {
  background-color: #e31e24;
  color: #fff;
  text-decoration: none;
}

.btn.secondary {
  background-color: transparent;
  color: #e31e24;
  text-decoration: none;
  border: 2px solid #e31e24;
}

/* RINGS – with blur + thicker border + float animation */
.ring-left,
.ring-right {
  position: absolute;
  border: 60px solid rgba(227, 30, 36, 0.15);
  /* thicker borders */
  border-radius: 50%;
  z-index: 1;
  filter: blur(4px);
  /* soften edges */
  animation: floatRing 6s ease-in-out infinite alternate;
}

/* Left ring (lower, bigger) */
.ring-left {
  width: 420px;
  height: 420px;
  left: -150px;
  bottom: -100px;
  animation-delay: 0s;
}

/* Right ring (higher, smaller) */
.ring-right {
  width: 320px;
  height: 320px;
  right: -120px;
  top: 100px;
  animation-delay: 3s;
  /* stagger movement */
}

/* Floating animation */
@keyframes floatRing {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-30px);
  }
}


/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #2563eb;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Updated How It Works Section to match the design */
.how-it-works {
    padding: 6.5rem 0;
    background: #ffffff;
}

.how-it-works-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.how-it-works-left h3 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.0;
    max-width: 300px;
    margin-bottom: 20px;
}

.title-black {
    color: #333;
}

.title-orange {
    color: #E31E24;
}

.how-it-works-left p {
    font-size: 0.8rem;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 300px;
}

.steps-horizontal {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

.step-item {
    text-align: center;
    flex: 1;
}

.step-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.step-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #E31E24;
    margin: 0;
}

/* Vehicles Section */
.vehicles-section {
    padding: 6.5rem 0;
    background: #ffffff;
}

.vehicles-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.vehicles-left h3 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.0;
    max-width: 300px;
    margin-bottom: 20px;
}

.vehicles-left p {
    font-size: 0.8rem;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 300px;
}

.vehicles-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.vehicle-item {
    transition: transform 0.3s ease;
}

.vehicle-item:hover {
    transform: scale(1.05);
}

.vehicle-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.vehicle-item.truck {
    grid-column: 1;
    grid-row: 1;
}

.vehicle-item.motorcycle {
    grid-column: 2;
    grid-row: 1;
    transform: scale(0.9);
}

.vehicle-item.sedan {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: center;
}

.vehicle-item.van {
    grid-column: 2;
    grid-row: 1;
    transform: translateY(60px) scale(0.8);
}

/* Added Partners Section styling */
/* Partners Section */
.partners-section {
    padding: 0px 0;
    margin-bottom: 100px;
    background: #fff;
}

.partners-content {
    text-align: center;
}

.partners-content h2 {
    font-size: 1.0rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 0.7fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-bottom: 2rem;
    max-width: 50rem;
    justify-self: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    height: 100px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    width: 100%;
    height: 100px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Commitments Section */
.commitments-section {
    padding: 70px 0;
    background: #2C2926;
}

.commitments-section .section-header h2 {
    color: #ffffff;
    font-size: 2.2rem;
    
    text-align: center;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.commitment-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #2C2926;
    transition: transform 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
}

.commitment-percentage {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.commitment-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.commitment-card p {
    color: #999791;
    line-height: 1.6;
}

/* Updated CTA Section to match the mobile app design with phones and orange background */
.cta-section {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.cta-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.phone {
    position: relative;
    width: 280px;
    height: 560px;
    background: #333;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

.phone-1 {
    transform: rotate(-15deg) translateX(-20px);
    z-index: 2;
}

.phone-2 {
    transform: rotate(10deg) translateX(20px);
    z-index: 999;
}

.phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.cta-text {
    position: relative;
    z-index: 3;
}

.cta-background {
    position: absolute;
    top: -100px;
    right: -200px;
    width: 800px;
    height: 600px;
    background: linear-gradient(135deg, #E31E24 0%, #ff7043 100%);
    border-radius: 50%;
    z-index: -1;
}

.cta-text-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 3rem;
}

.cta-text-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-text-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.google-play-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.google-play-btn:hover {
    transform: translateY(-3px);
}

.google-play-btn img {
    height: 60px;
    width: auto;
}

/* Footer */
.footer {
  background: #e31e24;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.company-description h4 {
  color: #e31e24;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.company-description p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.quick-links h4 {
  margin-bottom: 1rem;
  color: #e31e24;
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 0.5rem;
}

.quick-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links a:hover {
  color: #e31e24;
}

.contact-section h4 {
  margin-bottom: 1rem;
  color: #e31e24;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.social-section h4 {
  margin-bottom: 1rem;
  color: #e31e24;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #e31e24;
  color: white;
  text-decoration: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #c41e3a;
}

.social-link.facebook {
  background: #4267b2;
}

.social-link.facebook:hover {
  background: #365899;
}

.social-link.instagram {
  background: #e4405f;
}

.social-link.instagram:hover {
  background: #c13584;
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.linkedin:hover {
  background: #005885;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 1rem;
  text-align: center;
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Added visually-hidden class for SEO content that should be hidden from visual users but accessible to screen readers and search engines */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .how-it-works-content {
        grid-template-columns: 1fr;
        gap: 3rem;
       
    }

    .how-it-works-left h2 {
        font-size: 2.5rem;
    }

    .steps-horizontal {
        flex-direction: column;
        gap: 2rem;
    }

    .vehicles-content {
        grid-template-columns: 1fr;
        gap: 3rem;
       
    }

    .vehicles-left h2 {
        font-size: 2.5rem;
    }

    .vehicles-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .vehicle-item.sedan {
        grid-column: 1 / 3;
    }

    .vehicle-item.van {
        transform: scale(0.9);
    }

    /* Added mobile styles for partners section */
    .partners-content h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

    /* Mobile styles for updated CTA section */
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-phones {
        order: 2;
        gap: 1rem;
    }

    .phone {
        width: 200px;
        height: 400px;
        padding: 15px;
    }

    .phone-1 {
        transform: rotate(-10deg) translateX(-10px);
    }

    .phone-2 {
        transform: rotate(5deg) translateX(10px);
    }

    .cta-text {
        order: 1;
    }

    .cta-background {
        width: 600px;
        height: 400px;
        top: -50px;
        right: -100px;
    }

    .cta-text-content h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .vehicles-left h2 {
        font-size: 2rem;
    }

    .vehicles-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vehicle-item.sedan,
    .vehicle-item.van {
        grid-column: 1;
        transform: none;
    }

    /* Added mobile styles for partners section on small screens */
    .partners-content h2 {
        font-size: 1.8rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Small mobile styles for CTA section */
    .phone {
        width: 160px;
        height: 320px;
        padding: 10px;
    }

    .cta-background {
        width: 400px;
        height: 300px;
        top: -30px;
        right: -50px;
    }

    .cta-text-content {
        padding: 2rem;
    }

    .cta-text-content h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Enhanced CTA Phone Mockup Styles */
.mockup:hover .phone.left {
    transform: rotate(-12deg) translateX(-50px) translateY(-10px);
}

.mockup:hover .phone.right {
    transform: rotate(12deg) translateX(50px) translateY(-10px);
}

@media (max-width: 1200px) {
    .section {
        padding: 60px 30px;
    }

    .mockup {
        width: 600px;
        height: 500px;
    }

    .gradient-circle {
        width: 500px;
        height: 500px;
    }

    .phone {
        width: 320px;
    }
}

@media (max-width: 900px) {
    .section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding-bottom: 100px;
    }

    .text-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .download-buttons {
        justify-content: center;
    }

    .mockup {
        width: 100%;
        max-width: 500px;
        height: 400px;
        margin-top: 50px;
    }

    .gradient-circle {
        width: 400px;
        height: 400px;
        bottom: -30px;
    }

    .phone {
        width: 280px;
        bottom: -60px;
    }

    .phone.left {
        left: 10px;
        transform: rotate(-5deg) translateX(-20px);
    }

    .phone.right {
        right: 10px;
        transform: rotate(5deg) translateX(20px);
    }

    .mockup:hover .phone.left {
        transform: rotate(-8deg) translateX(-30px) translateY(-10px);
    }

    .mockup:hover .phone.right {
        transform: rotate(8deg) translateX(30px) translateY(-10px);
    }
}

@media (max-width: 480px) {
    .mockup {
        height: 350px;
        margin-top: 30px;
    }

    .gradient-circle {
        width: 300px;
        height: 300px;
        bottom: -20px;
    }

    .phone {
        width: 220px;
        bottom: -40px;
    }

    .phone.left {
        left: 0;
        transform: rotate(-3deg) translateX(-10px);
    }

    .phone.right {
        right: 0;
        transform: rotate(3deg) translateX(10px);
    }

    .mockup:hover .phone.left {
        transform: rotate(-5deg) translateX(-15px) translateY(-5px);
    }

    .mockup:hover .phone.right {
        transform: rotate(5deg) translateX(15px) translateY(-5px);
    }
}




/* Testimonial Section */
.testimonial-section {
  position: relative;
  height: 95vh;
  width: 100%;
  overflow: hidden;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgb(0, 0, 0), transparent);
  display: flex;
  align-items: center;
  z-index: 1;
}

.testimonial-content {
  padding: 40px;
  margin-left: 170px;
  color: white;
  max-width: 500px;
  font-size: 20px;
}

.carousel {
  position: relative;
}

.testimonial {
  display: none;
  animation: fade 0.5s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial h4 {
  font-size: 1.1rem;
  opacity: 0.9;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.carousel-controls {
  margin-top: 20px;
}

.carousel-controls button {
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 8px 12px;
  margin: 0 5px;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.carousel-controls button:hover {
  background: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .testimonial-section {
    height: 80vh;
  }

  .overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
  }

  .testimonial-content {
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    max-width: 90%;
  }

  .testimonial p {
    font-size: 1.2rem;
  }

  .testimonial h4 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    height: 70vh;
  }

  .testimonial p {
    font-size: 1rem;
  }

  .carousel-controls button {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
}








.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 50px;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.text-content {
    max-width: 450px;
    z-index: 1;
}

.text-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.download-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.download-buttons img {
    height: 50px;
    transition: transform 0.3s ease;
}

.download-buttons img:hover {
    transform: translateY(-3px);
}

.qr {
    height: 80px;
    width: 80px;
}

.mockup {
    position: relative;
    width: 700px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -50px;  /* Move the mockup up slightly */
}

.gradient-circle {
    position: absolute;
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, #e31e24, #000);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
    bottom: -50px;  /* Position circle higher to cut phones */
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.phone {
    position: absolute;
    width: 380px;  /* Larger phone size */
    height: auto;
    z-index: 1;
    transform: rotate(-8deg) translateX(-40px);
    background: transparent;
    box-shadow: none;
    transition: all 0.7s ease;
    bottom: -80px;  /* Position phones to overlap with circle */
}

.phone.right {
    transform: rotate(8deg) translateX(40px);
    right: 40px;
    bottom: -100px;  /* Slightly different position for visual interest */
}

.phone.left {
    left: 40px;
    bottom: -90px;
}

.mockup:hover .phone.left {
    transform: rotate(-12deg) translateX(-40px);
}

.mockup:hover .phone.right {
    transform: rotate(12deg) translateX(40px);
}

/* Enhanced vehicle section responsiveness */
.vehicles-content {
    gap: 2rem;
}

.vehicles-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vehicles-right img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.vehicles-right img:hover {
    transform: scale(1.05);
}

/* Media Queries */
@media (max-width: 1200px) {
    .section {
        padding: 60px 30px;
    }

    .mockup {
        width: 500px;
        height: 400px;
    }

    .gradient-circle {
        width: 400px;
        height: 400px;
    }

    .phone {
        width: 240px;
    }
}

@media (max-width: 900px) {
    .section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .text-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .download-buttons {
        justify-content: center;
    }

    .mockup {
        width: 100%;
        max-width: 400px;
        height: 350px;
        margin-top: 30px;
    }

    .gradient-circle {
        width: 300px;
        height: 300px;
    }

    .phone {
        width: 200px;
    }

    .phone.left {
        left: 20px;
    }

    .phone.right {
        right: 20px;
    }

    /* Vehicle section adjustments */
  

    .vehicles-right img {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 20px;
    }

    .text-content h2 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .download-buttons img {
        height: 40px;
    }

    .qr {
        height: 60px;
        width: 60px;
    }

    .mockup {
        height: 300px;
    }

    .gradient-circle {
        width: 250px;
        height: 250px;
    }

    .phone {
        width: 160px;
    }

    .phone.left {
        left: 10px;
        top: -10px;
    }

    .phone.right {
        right: 10px;
        top: 30px;
    }

    /* Vehicle section adjustments */
    .vehicles-right img {
        max-width: 100%;
    }

    .vehicles-left h3 {
        font-size: 2rem;
    }
}