:root {
  --primary: #66aafc;
  --primary-dark: #4a90e2;
  --dark: white;
  --transition: all 0.4s ease;
  --secondary: #2C3E50;
  --light: #F9F9F9;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
   
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  
  
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  padding: auto;
}


/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.071);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.navbar.scrolled {
  background-color:rgba(0, 0, 0, 0.071) ;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}

.navbar-brand img {
  height: 200px;
  width: 200px;
  padding-top: 20px;
  object-fit: contain;
}


.menu-items {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 18px;
  padding-top: 20px;
}

.menu-items a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}
.menu-items a:hover {
  color: var(--primary);
}

.menu-items a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.menu-items a:hover::after {
  width: 100%;
}


.request{
  background-color: var(--primary);
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: bolder;
  cursor: pointer;
  transition: var(--transition);
  font-size: 20px;
  

}
.request:hover{
  background-color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);

}

.cta-button {
  background-color: var(--primary);
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: bolder;
  cursor: pointer;
  transition: var(--transition);
  font-size: 20px;
  margin-top: 30px;
  margin-left: 20px;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}
.nav-cta {
  margin-left: 10px;
}



.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--secondary);
  cursor: pointer;
}

/* Coming Soon Section */
.coming-soon {
  height: 100vh;
  background-color: #111;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px; /* To offset fixed navbar */
  text-align: center;
}

.coming-text {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.coming-title {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: 4px;
}

.arrow {
  font-size: 2rem;
  margin-top: 30px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.app-showcase {
  padding: 70px 10px;
  
  margin: 0 auto;
  background: #000;
}

.app-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.content-left {
  flex: 1;
  padding-left: 15%;
}

.content-left h1 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 42px;
  margin-bottom: 20px;
  color: rgba(245, 222, 179, 0.721);
  font-weight: bolder;
  
}

.content-left p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #555;
  max-width: 600px;
}
.download-buttons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  align-items: center;
}

.download-btn {
  display: inline-block;
  transition: transform 0.3s ease;
  height: 50px; /* Fixed height for both buttons */
  border-radius: 8px;
  overflow: hidden; /* Ensures the images stay within the bounds */
}

/* App Store button specific styling */
.download-btn.app-store {
  width: 160px; /* Fixed width for App Store button */
}

/* Play Store button specific styling */
.download-btn.play-store {
  width: 180px; /* Slightly wider to accommodate Play Store button aspect ratio */
}

.download-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the images fill the container */
}

.content-right {
  flex: 1;
  padding-right: 15%;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: #141414;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  background: #000;
}

.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-overlay i {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.play-overlay:hover i {
  color: white;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  /* Navigation */
  .navbar {
    height: 8vh;
    padding: 0 15px;
    
  }

  .navbar .container {
    padding: 0 15px;
  }

  .navbar-brand img {
    height: 120px;
    width: 120px;
  }

  .menu-items {
    display: none;
    flex-direction: column;
   background-color:black;
   opacity: 1;
   
   position: absolute;
   top: 80px; /* adjust as per your navbar height */
   left: 0;
   width: 100%;
   padding: 20px 0;
   text-align: center;
   z-index: 1000;
  }
  .menu-items a
  {
    color: white;
    padding: 10px 0;
    text-decoration: none;
    border: none;
    background: none;
  }
  .menu-items .request{
    background-color:#7fa5dd;
    border-radius: 10px;
    color: white;
    padding: 10px 10px;
   


  }

 
 


  .menu-items.show {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }

  .cta-button, .request {
    padding: 8px 16px;
    font-size: 16px;
    margin-left: 0;
  }

  .container {
      justify-content: center;
  }
  .content-right{
    justify-content: center;
    padding-left: 100px;
  }
  
  .content-left {
      text-align: center;
      padding-right: 100px;
  }
  
  .content-left p {
      margin-left: auto;
      margin-right: auto;
  }
  
  .download-buttons {
      justify-content: center;
  }
  
  .phone-mockup {
      width: 280px;
      height: 560px;
  }
}
@media (max-width:575px){
  body {
      padding-top: 0;
    }
    
    
    .mobile-menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1100;
      position: relative;
    }
    
    .mobile-menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: #333;
      position: relative;
      transition: all 0.3s ease;
      
    }
    
    .mobile-menu-toggle span:before,
    .mobile-menu-toggle span:after {
      content: '';
      position: absolute;
      width: 20px;
      height: 1px;
      background: #333;
      transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle span:before {
      transform: translateY(-8px);
    }
    
    .mobile-menu-toggle span:after {
      transform: translateY(5px);
    }
    
    /* Active state (when menu is open) */
    .mobile-menu-toggle.active span {
      background: transparent;
    }
    
    .mobile-menu-toggle.active span:before {
      transform: rotate(45deg);
      background: white;
    }
    
    .mobile-menu-toggle.active span:after {
      transform: rotate(-45deg);
      background: white;
    }
    
    /* Menu items when open */
    .menu-items.show {
      top: 40px;
      height: calc(100vh - 60px);
      justify-content: flex-start;
      padding-top: 0px;
      overflow-y: auto;
    }
    .navbar {
      padding-top: 20px;
      position: fixed;
      z-index: 1000;
    }
    
    /* Dark overlay when menu is open */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .menu-overlay.show {
      opacity: 1;
      visibility: visible;
    }
    .phone-mockup {
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .content-left h1 {
      font-size: 2rem;
  }
  
  .download-btn {
      height: 40px;
      display: flex;
  }
  
  .download-btn.app-store {
      width: 135px;
  }
  
  .download-btn.play-store {
      width: 150px;
  }
  
  .phone-mockup {
      width: 250px;
      height: 500px;
  }
}

  /* Feature */

.features {
  background-color: #1a1a1a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.features h2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 60px;
  font-weight: 600;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.feature {
  max-width: 300px;
}

.feature .icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #ff5d5d;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #bbb;
  font-size: 1rem;
  line-height: 1.5;
}


.download-section {
  display: flex;
  height: 100vh;
  width: 100%;
}

.download-image {
  flex: 1;
  background-image: url('./images/desert.jpg'); /* update this path */
  background-size: cover;
  background-position: center;
}

.download-content {
  flex: 1;
  background-color: #1e1e1e;
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.download-content h2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.download-content p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.subscribe-form {
  display: flex;
  margin-bottom: 20px;
}

.subscribe-form input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: none;
  margin-right: 10px;
}

.subscribe-form button {
  background-color: #ff6b6b;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.social-icons {
  display: flex;
  gap: 15px;
  font-size: 20px;
  margin-top: 10px;
}

/* Hide image and adjust layout on tablets and below */
@media (max-width: 768px) {
  .download-image {
    display: none;
  }

  

  .download-section {
    flex-direction: column;
    text-align: center;
    
   
  }

  .download-content {
    width: 100%;
    
  }
 
}

/* Further refinement for mobile phones */
@media (max-width: 480px) {
  .download-image {
    display: none;
  }

  .download-content h2 {
    font-size: 1.8rem;
  }

  .subscribe-form input {
    width: 100%;
    
  }

  .subscribe-form {
    flex-direction: column;
    align-items: center;
  }

  .subscribe-form button {
    width: 100%;
  }

  .social-icons i {
    margin: 10px;
    font-size: 20px;
  }
}



/* Footer */
.footer {
  background-color: #2C3E50;
  color: white;
  padding: 80px  20px;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-column address {
  font-style: normal;
  margin-bottom: 15px;
  opacity: 0.8;
}
.footer-column h2{
  padding: 20px 0;
}

.contact-info {
  opacity: 0.8;
  margin-bottom: 20px;
}
.footer-column{
  padding-right: 20px;
}
.footer-column h4 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color:#4A90E2;
}

.footer-column ul {
  list-style: none;
  margin-bottom: 30px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;;
}

.footer-column ul li a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-cta {
  width: 40%;
  margin-top: 10px;
  
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-container input {
  margin-right: 10px;
}

.submit-button {
  background-color: #4A90E2;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;;
  width: 100%;
}

.submit-button:hover {
  background-color: #4A90E2;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  opacity: 0.7;
  transition: all 0.3s ease;;
}

.social-icons a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

.cta-button {
background-color: var(--primary);
color: white;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

border: none;
padding: 10px 22px;
border-radius: 10px;
font-weight: bolder;
cursor: pointer;
transition: var(--transition);
font-size: 20px;
margin-top: 30px;
margin-left: 20px;
}

.cta-button:hover {
background-color: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.nav-cta {
margin-left: 10px;
}


.material-symbols-outlined.icon {
  font-size: 48px;
  color: #5587c5; /* Customize color */
  margin-bottom: 10px;
  display: block;
}

@media (max-width: 768px) {
  .footer .container {
    grid-template-columns: 1fr; /* Stack columns vertically */
    gap: 30px;
  }

  .footer-cta {
    width: 95%; /* Full width on small screens */
    margin-top: 20px;
    margin-left: 10px;
  }

  .footer-column {
    padding-right: 0;
  }

  .newsletter-form input[type="email"],
  .submit-button {
    font-size: 16px;
  }

  .social-icons {
    justify-content: center;
  }

  .copyright {
    margin-top: 30px;
    font-size: 14px;
  }
}



