/* styles.css */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  background: #f0f0f0;
  width: 5px;
}

html::-webkit-scrollbar-thumb {
  background: #ff5000;
  border-radius: 10px;
}

body {
  background: #fff;
  width: 100vw;
  overflow-x: hidden;
  color: #1a1a1a;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: rgba(255, 255, 255, 0.6); /* Glassmorphism background */
  backdrop-filter: blur(8px); /* Glassmorphism blur */
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border for glass effect */
}

.navbar .menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #ff4000; /* Color for the menu icon */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: #ff5000;
}

.logo img {
  width: 120px;
  height: 45px;
  object-fit: contain;
}

.btn {
  padding: 12px 24px;
  background-color: #ff4000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}
.btn-white {
  padding: 12px 24px;
  color: #ff4000;
  background: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-i {
  padding: 12px 24px;
  background-color: #ff4000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}


.short{
  max-width: 200px;
}

.btn:hover {
  background-color: #e63b00;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: row-reverse; /* Default: content then image */
  justify-content: space-evenly;
  align-items: center;
  padding: 80px 50px;
  background: #fff;
  gap: 50px;
  text-align: left; /* Align text to the left */
}

.hero-content {
  max-width: 1000px;
}

.hero-img {
  flex-shrink: 0; /* Prevent image from shrinking */
}

.hero-img img {
  max-width: 450px;
  border-radius: 20px;
}

.hero-header {
  font-size: 3.8rem;
  font-weight: 800; /* Made bolder */
  margin-bottom: 20px;
  color: #000313; /* Darker, richer color */
  line-height: 1.1;
}

.w-100{
  width: 400px;
}

.hero-sub {
  font-size: 1.3rem;
  margin-bottom: 30px;
  max-width: 550px;
  word-spacing: 1px;
  color: #555;
  line-height: 1.5;
}

/* Reveal Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Get Started Section */
.get-started {
  text-align: center;
  padding: 100px 30px;
  background: #fff6eb; /* Slightly off-white */
}

.get-started .badge,
.features-section .badge {
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  color: #ff4000;
  border: #ff4000 1px solid; /* Border color matches text */
  padding: 5px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-started-header,
.features-header {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c0e00;
}

.get-started-text,
.features-subtext {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Updated styles for get-started cards slideshow */
.cards-wrapper {
  overflow: hidden; /* Hide overflowing cards */
  position: relative;
  max-width: 960px; /* Adjust as needed */
  margin: 0 auto;
}

.cards-all {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.card {
  flex: 0 0 33.333%; /* Show 3 cards at a time for larger screens */
  max-width: 33.333%;
  border-radius: 15px;
  background: transparent;
  padding: 4px;
  text-align: start;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Space out content */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  padding: 15px; /* Added padding to give some space around content within the card */
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.card h1 {
  font-size: 1.4rem; /* Slightly larger */
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d002c; /* Darker color for better contrast */
}

.card p {
  font-size: 1rem; /* Slightly larger */
  margin-bottom: 25px; /* More space before button */
  color: #555;
  flex-grow: 1; /* Allow paragraph to take available space */
}

.card .btn {
  width: fit-content; /* Make button fit content */
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); /* Even stronger shadow on hover */
}

.slider-dots {
  text-align: center;
  margin-top: 30px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #ff4000;
}

/* Features Section */
.features-section {
  padding: 40px 50px;
  text-align: center;
  background: #fff;
}

.features-header-container {
  margin-bottom: 60px;
}

 .boxed-1 { 
  background: #250e00;
  border-radius: 16px;
  padding: 30px 20px; 
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  color: #efefef; /* Text color for the first feature box */
   } 

.boxed { 
  background-color: #fff; 
  border-radius: 16px; 
  padding: 30px 20px; 
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); 
  transition: transform 0.2s ease, box-shadow 0.2s ease; 
  text-align: left;
 } 



 .boxed:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); 
 }

 .boxed box-icon, 

 .boxed-1 box-icon { 
  width: 50px; 
  height: 50px; 
  display: flex; /* Use flexbox for centering */ 
  justify-content: center; 
  align-items: center; 
  padding: 10px; 
  border-radius: 50%; 
  background: #ff5000; /* Default background for icon container */ 
  margin-bottom: 20px; 
  color: white; /* Color for the icon itself */
 } 



 /* Feature Title */ 

 .boxed h3,
 .boxed-1 h3 { 
  font-size: 2rem; 
  font-weight: 900; 
  margin-bottom: 10px; 
 }
 .boxed p { 
   color: #555; 
   font-size: 15px; 
   line-height: 1.5; 
  

 } 

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Feature Box */
.feature-card { /* Renamed from .boxed, .boxed-1 to use a single class for dynamic generation */
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.feature-card .icon { /* This div wraps the box-icon */
  width: 50px;
  height: 50px;
  display: flex; /* Use flexbox for centering */
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 50%;
  background: #ff5000; /* Default background for icon container */
  margin-bottom: 20px;
}

.feature-card .icon box-icon { /* Target the box-icon directly for its color */
  color: white; /* Color for the icon itself */
}


/* Specific styling for the first feature card if needed - this can be done by adding a modifier class in JS */
.feature-card.dark-bg {
  background-color: #250e00;
}

.feature-card.dark-bg h3 {
  color: #ff5000;
}

.feature-card.dark-bg p {
  color: #ededed;
}

.feature-card:not(.dark-bg) { /* Styles for cards without the dark-bg class */
  background-color: #fff;
}

.feature-card:not(.dark-bg) h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #222;
}

.feature-card:not(.dark-bg) p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

/* Experience Camell (CTA Section) */
.experience-camell {
  background: #000313; /* Dark background */
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 80px;
  text-align: left;
  width: 1000px;
  margin: auto;
  z-index: 10;
  margin-bottom: -50px;
  border-radius: 10px;
  padding-top: 20px;
  position: relative;
  overflow: hidden;
}

.rel {
  background: rgba(255, 81, 0, 0.333);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: -20px;
  left: -20px;
  backdrop-filter: blur(5px);
}

.rel-2 {
  background: rgba(255, 81, 0, 0.333);
  width: 350px;
  height: 350px;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  bottom: -90px;
  right: -20px;
  backdrop-filter: blur(50px);
}
.experience-content {
  max-width: 600px;
  padding: 50px;
}

.experience-header {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.experience-text {
  font-size: .9rem;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #ccc;
}

.experience-img img {
  max-width: 300px;
  /* border-radius: 20px; */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); /* Strong shadow for contrast */
}

.experience-camell .join-waitlist-btn {
  background-color: #ff4000;
  color: #fff;
  padding: 15px 35px;
  font-size: 1.1rem;
}

.experience-camell .join-waitlist-btn:hover {
  background-color: #e63b00;
}

/* Footer */
.footer {
  background: #ff4000;
  color: #000;
  padding: 80px 50px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  line-height: 1.8;
}

.footer-column.logo-column {
  min-width: 250px;
}

.footer-column h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li a {
  color: #f0f0f0;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff4000;
}

.footer-column .logo img {
  filter: brightness(0) invert(1); /* Make logo white for dark background */
  width: 120px;
  height: 45px;
  margin-bottom: 15px;
}

.footer-column p {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.social-icons box-icon {
  fill: #f0f0f0;
  width: 30px;
  height: 30px;
  margin-right: 15px;
  transition: fill 0.3s ease;
}

.social-icons box-icon:hover {
  fill: #ff4000;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #333;
  background-color: #000313;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.input {
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ff9665;
  background-color: #a2aef100;
  color: #3c1400;
  font-size: 1rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #888;
}


.newsletter-form .btn {
  width: 100%;
  padding: 12px;
}

.footer-bottom{
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #fff;
}


/* Responsive */
@media (max-width: 992px) {
  .navbar {
    padding: 15px 30px;
    backdrop-filter: blur(10px); /* Glassmorphism blur */
  }
  .nav-links {
    gap: 20px;
  }
  .hero {
    flex-direction: column; /* Image on top, then text on smaller screens */
    padding: 60px 30px;
    text-align: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero-header {
    font-size: 2.8rem;
  }
  .hero-sub {
    font-size: 1.1rem;
  }
  .hero-img img {
    max-width: 90%;
  }

  .experience-camell {
    flex-direction: column;
    text-align: center;
    padding: 5px 3px;
    margin: auto;
    width: 100%;
    margin-bottom: -10px;
  }
  .experience-header {
    font-size: 2.5rem;
  }
  .experience-text {
    font-size: 1rem;
  }
  .experience-img img {
    max-width: 90%;
  }

  .footer-container {
    flex-direction: column;
    align-items: start;
    text-align: left;
  }

  .footer-column {
    width: 100%;
    max-width: 300px; /* Constrain width for columns */
  }

  .footer-column h3 {
    text-align: left;
  }

  .footer-column ul {
    padding: 0;
  }


  .social-icons {
    margin-bottom: 20px;
  }

  .newsletter-form input,
  .newsletter-form .btn {
    max-width: 400px;
  }

  .newsletter-form .btn {
    max-width: 200px;
  }

  /* Get Started cards responsive */
  .card {
    flex: 0 0 50%; /* Show 2 cards per row on tablets */
    max-width: 50%;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust minmax for smaller screens */
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .navbar .menu-toggle {
    display: block;
    position: relative; /* Keep it in flow, but can be positioned within the flex container */
    right: 0; /* Remove fixed positioning */
  }

  .card{
    flex: 0 0 100%; /* Show 1 card per row on mobile */
    max-width: 100%;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    background-color: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    margin-top: 10.6px;
    position: absolute; /* Position below the navbar */
    top: 65px; /* Adjust based on navbar height */
    left: 0;
    right: 0;
    z-index: 999; /* Below the navbar, above other content */
  }

  .nav-links.active {
    display: flex;
  }

  .w-100{
    width: 90%;
  }

  .cta {
    position: relative; /* Keep in flow, not fixed */
    margin-left: auto; /* Push to the right */
    margin-right: 20px; /* Space from menu toggle */
  }
  .cta .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .hero-header {
    font-size: 2.2rem;
  }

  .get-started-header,
  .features-header {
    font-size: 2rem;
  }

  .get-started-text,
  .features-subtext {
    font-size: 0.95rem;
  }

  .cards-all {
    flex-direction: row; /* Keep as row for slideshow */
    justify-content: flex-start; /* Align cards to the start */
  }

  .feature-card {
    min-width: unset; /* Allow cards to shrink */
    width: 90%; /* Take up more width on small screens */
    margin: 0 auto;
  }

  .feature-card img {
    max-width: 100%; /* Ensure images fit within the card */
    height: auto; /* Maintain aspect ratio */
  }

  .input {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ff9665;
    background-color: #a2aef100;
    color: #3c1400;
    font-size: 1rem;
    outline: none;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    max-width: 100%;
    margin: 0 auto;
  }

  .btn-i {
    padding: 12px 24px;
    background-color: #ff4000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }
  .logo img {
    width: 100px;
    height: 38px;
  }
  .cta .btn {
    padding: 7px 12px;
    font-size: 0.85rem;
  }
  .hero {
    padding: 40px 20px;
  }
  .hero-header {
    font-size: 1.8rem;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .get-started,
  .features-section,
  .footer {
    padding: 50px 20px;
  }
  .get-started-header,
  .features-header {
    font-size: 1.7rem;
  }
  .experience-header {
    font-size: 2rem;
  }
  .experience-text {
    font-size: 0.9rem;
  }
  .feature-card {
    padding: 20px;
  }
}