/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  margin-bottom: 4rem;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-container:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  max-width: 800px;
  padding: var(--space-4);
  z-index: 1;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content .cta-button {
  font-size: var(--font-size-lg);
  padding: var(--space-3) var(--space-8);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
    height: 80vh;
    padding: var(--space-4);
  }
  
  .hero-content {
    max-width: 100%;
    padding: var(--space-3);
  }
  
  .hero-content h1 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-3);
  }
  
  .hero-content p {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-6);
  }
  
  .hero-content .cta-button {
    font-size: var(--font-size-base);
    padding: var(--space-2) var(--space-6);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 400px;
    height: 70vh;
    padding: var(--space-2);
  }
  
  .hero-content {
    padding: var(--space-2);
  }
  
  .hero-content h1 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-2);
  }
  
  .hero-content p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-4);
  }
  
  .hero-content .cta-button {
    font-size: var(--font-size-sm);
    padding: var(--space-2) var(--space-5);
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 350px;
    height: 60vh;
  }
  
  .hero-content h1 {
    font-size: var(--font-size-lg);
  }
  
  .hero-content p {
    font-size: var(--font-size-xs);
  }
}

/* Hero and navigation section ends here */

/* Why choose mobliv section starts from here */

.why-deliveroo {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.Why-title {
  text-align: center;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.tab-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  /* border-bottom: 1px solid #DE5B7B; */
}

.tab {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding-bottom: 6px;
  border-bottom: 4px solid #E0F9B5;
  color: #DE5B7B;
  transition: 0.3s;
}

.tab:hover {
  opacity: 0.7;
}

.tab.active {
  border-color: #DE5B7B;
  font-weight: bold;
}

.content-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 500px;
}

.text-content h3 {
  font-size: 1.3rem;
  color: #000000;
}

.text-content p {
  font-size: 15px;
  color: #000000;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: justify;
    margin: 16px 0;
}

    /* Button 86 styling */
    .button-86 {
      all: unset;
      width: 120px;
      height: 40px;
      font-size: 16px;
      background: transparent;
      border: none;
      position: relative;
      color: #f0f0f0;
      cursor: pointer;
      z-index: 1;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
    }

    .button-86::after,
    .button-86::before {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: -99999;
      transition: all .4s;
    }

    .button-86::before {
      transform: translate(0%, 0%);
      width: 100%;
      height: 100%;
      background: #DE5B7B;
      border-radius: 10px;
    }

    .button-86::after {
      transform: translate(10px, 10px);
      width: 35px;
      height: 35px;
      background: #e0f9b56a;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border-radius: 50px;
    }

    .button-86:hover::before {
      transform: translate(5%, 20%);
      width: 110%;
      height: 110%;
    }

    .button-86:hover::after {
      border-radius: 10px;
      transform: translate(0, 0);
      width: 100%;
      height: 100%;
    }

    .button-86:active::after {
      transition: 0s;
      transform: translate(0, 5%);
    }
    

.image-content {
  flex: 1;
  min-width: 300px;
}

.image-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
}


/* Why choose mobliv section ends here */

/* 2nd section starts from here */

.quality-section {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      background-color: #DE5B7B;
      color: white;
      padding: 80px 20px;
     clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 90%, 60% 85%, 40% 95%, 20% 90%, 0 100%);
     margin-bottom: 3rem;

    }

    .quality-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
      margin-top: 50px;
      margin-bottom: 50px;
    }

    .quality-image img {
      width: 100%;
        max-width: 450px;
      border-radius: 25px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .quality-text {
      max-width: 500px;
    }

    .quality-text h2 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .quality-text p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 30px;
      color: #ffffff;
    }

    .button-861 {
      all: unset;
      width: 120px;
      height: 40px;
      font-size: 16px;
      background: transparent;
      border: none;
      position: relative;
      color: #000000;
      cursor: pointer;
      z-index: 1;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      user-select: none;
      -webkit-user-select: none;
      touch-action: manipulation;
    }

    .button-861::after,
    .button-861::before {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: -99999;
      transition: all .4s;
      
    }

    .button-861::before {
      transform: translate(0%, 0%);
      width: 100%;
      height: 100%;
      background: #E0F9B5;
      border-radius: 10px;
     
    }

    .button-861::after {
      transform: translate(10px, 10px);
      width: 35px;
      height: 35px;
      background: #de5b7c56;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border-radius: 50px;
     
    }

    .button-861:hover::before {
      transform: translate(5%, 20%);
      width: 110%;
      height: 110%;
    }

    .button-861:hover::after {
      border-radius: 10px;
      transform: translate(0, 0);
      width: 100%;
      height: 100%;
    }

    .button-861:active::after {
      transition: 0s;
      transform: translate(0, 5%);
    }

    @media (max-width: 768px) {
      .quality-container {
        flex-direction: column;
        text-align: center;
      }

      .quality-text h2 {
        font-size: 1.8rem;
      }
    }
/* 2nd section ends here */

/* What we Offer section starts from here */

.why-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  margin: 0 auto;
}

.why-title {
  text-align: center;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.why-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  /* border-bottom: 1px solid #DE5B7B; */
}

.why-tab {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding-bottom: 6px;
  border-bottom: 4px solid #E0F9B5;
  color: #DE5B7B;
  transition: 0.3s;
}

.why-tab:hover {
  opacity: 0.7;
}

.why-tab.active {
  border-color: #DE5B7B;
  font-weight: bold;
}

.why-content-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.why-text {
  flex: 1;
  min-width: 500px;
}

.why-text h3 {
  font-size: 1.3rem;
  color: #000;
}

.why-text p {
  font-size: 15px;
  color: #000;
  line-height: 1.6;
  margin: 16px 0;
  text-align: justify;
}

.button-86 {
  all: unset;
  width: 120px;
  height: 40px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
}

.button-86::after,
.button-86::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  transition: all .4s;
}

.button-86::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #DE5B7B;
  border-radius: 10px;
}

.button-86::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #e0f9b56a;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button-86:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-86:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-86:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

.why-image {
  flex: 1;
  min-width: 300px;
}

.why-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .why-content-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

/* How we work section starts from here  */

.how-we-work-section {
  text-align: center;
  padding: 2rem 1rem;
}

.how-we-work-heading {
  font-size: 1.6rem;
  color: #000000;
  margin-bottom: 1.5rem;
}

.laptop-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.laptop-frame {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 10;
  border-radius: 20px 20px 10px 10px;
  overflow: hidden;
  position: relative;
}

.screen-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* How we work section ends here */



/* What we Offer section ends here */

/* 4th section starts from here */

/* .serve-section {
  padding: 60px 100px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
}

.serve-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #000000;
  font-weight: 700;
}

.serve-tabs {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  
}

.serve-tab {
  flex: 1;
  width: 100px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #DE5B7B;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.serve-tab:hover {
  transform: translateY(-5px);
}

.serve-tab img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.tab-text {
  padding: 20px;
}

.tab-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #DE5B7B;
}

.tab-text p {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 16px;
}


.serve-display {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.serve-text {
  flex: 1;
  min-width: 300px;
}

.serve-text h3 {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 15px;
}

.serve-text p {
  font-size: 15px;
  color: #000000;
}

.serve-image {
  flex: 1;
  min-width: 300px;
}

.serve-image img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .serve-display {
    flex-direction: column;
    text-align: center;
  }
} */




/* 4th section ends here */

/* 5th section starts from here */


    .section-logo {
      padding: 3rem 1rem;
    }

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

    .logo-center {
      text-align: center;
    }

    .logo-title {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .logo-description {
      color: #6c757d;
      margin-bottom: 2rem;
    }

    .logo-divider {
      width: 50%;
      margin: 0 auto 3rem;
      border: 1px solid #aaa;
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
      justify-items: center;
      align-items: center;
    }

    svg {
      max-width: 100%;
      height: auto;
      fill: #222;
    }

    @media (max-width: 600px) {
      .logo-title {
        font-size: 1.5rem;
      }

      .logo-description {
        font-size: 0.95rem;
      }

      .logo-divider {
        width: 70%;
      }
    }

/* 5th section ends here */

/* 6th section starts from here */

.banner-container {
  width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4rem;
    /* padding: 100px 50px; */
}

.banner {
    background: linear-gradient(135deg, #DE5B7B 0%, #E0F9B5 100%);
    /* border-radius: 12px; */
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    position: relative;
    z-index: 2;
    min-height: 300px;
}

.left-content {
    flex: 1;
    max-width: 500px;
}

.heading {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

.center-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-image {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

.right-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sources {
    margin-top: 20px;
    padding: 0 20px;
}

.sources p {
    color: #888;
    font-size: 15px;
    font-style: italic;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .left-content,
    .right-content {
        max-width: 100%;
    }
    
    .heading {
        font-size: 2rem;
    }
    
    .center-image {
        max-height: 200px;
    }
    
    .sources {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .center-image {
        max-height: 150px;
    }
}

/* 6th section ends here */

/* Solution and Bookings Section starts from here */

.grab-solutions-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10px;
}

.solutions-card {
    background: linear-gradient(rgba(0, 0, 0, 0.109), rgba(0, 0, 0, 0.4)),
              url('../Images/Main\ Redirection1.jpg') center/cover no-repeat;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 1200px; /* Expanded */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.solutions-grid, .bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px;
    max-width: 100%;
    margin: 0 auto;
    
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-title {
    font-size: 25px;
    font-weight: 600;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-icon img {
    width: 24px;
    height: 24px;
}

.solution-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 12px;
}

.solution-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.solution-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon img {
    width: 60px;
    height: 60px;
}

.solution-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .solutions-grid,
    .bookings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .solution-icon img {
        width: 35px;
        height: 35px;
    }
}

/* Solution and Bookings Section ends here */