@import url('https://fonts.googleapis.com/css2?family=Proxima+Nova:wght@400;700&display=swap');


body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.navbar {
    background-color: #161717 !important; /* Changed to black */
}

.navbar .navbar-brand, .navbar .navbar-nav .nav-link {
    color: #FFF; /* Changed to white */
}

.navbar-brand {
    font-size: larger;
    
}

.navbar .navbar-nav .nav-link:hover {
    color: #AAA; /* Light gray for hover, adjust as needed */
    text-decoration: none; /* We will use a border instead of text-decoration */
}
 

.navbar .navbar-nav .nav-link {
    position: relative; /* Needed to position the pseudo-element */
    color: #FFF;
    /* Other styles... */
}

.navbar .navbar-nav .nav-link:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #AAA; /* Color of the underline */
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: white;
  border: 1px solid rgb(0, 0, 0);
}

  
.hero-section {
  background-image: url('images/home3.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: #2e2c2c;
  display: flex;
  align-items: center; /* Vertically center the content */
  justify-content: flex-end; /* Horizontally align content to the right */
  text-align: right; /* Aligns text to the right */
  padding: 2rem;
}

.hero-section .container {
  max-width: 1000px; /* Adjust the width of the content area */
  margin-right: 2rem; /* Right margin for spacing */
}


  .hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: 4rem; /* Adjust size as needed */
    font-weight: 800; /* Extra bold */
    /* text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);  */
    margin-bottom: 1rem; /* Space between the title and subtitle */
  }
  
  .hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem; /* Adjust size as needed */
    font-weight: 500; /* Medium weight */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
  }
 

  /* Responsive styles for mobile phones */
@media (max-width: 576px) {
    .hero-title {
      font-size: 2rem; /* Even smaller font size for the hero title */
    }
  
    .features-title {
      font-size: 1.5rem; /* Even smaller font size for features title */
    }
  
    .about-section p, .footer-section p {
      font-size: 0.9rem; /* Smaller font size for text */
    }
  
    /* Stack columns vertically in the about section */
    .about-section .row > div {
      flex-basis: 100%;
      max-width: 100%;
    }
    
    /* Adjust the layout of the navbar for mobile screens */
    .navbar .navbar-brand,
    .navbar .navbar-nav .nav-link {
      font-size: 0.8rem; /* Smaller font size for navigation */
    }
    
    /* Adjust button sizes for smaller screens */
    .btn-learn-more {
      font-size: 0.8rem;
      padding: 0.3rem 1rem;
    }
  }

  
  
  .features-section {
    padding: 4rem 0;
  }
  
  .features-title {
    font-size: 2.5rem; /* Adjust the size as needed */
    margin-bottom: 0.3rem; /* Adjusted to account for the border */
    font-family: 'Raleway', sans-serif; /* Raleway font */
    font-weight: 700; /* Raleway bold */
    position: relative; /* For pseudo-element positioning */
  }

  .features-title:after {
    content: ''; /* Required for pseudo-elements */
    display: block; /* Treat the pseudo-element like a block */
    border-top: 2px solid #b4b4b4; /* Your border styling */
    width: 95%; /* Width relative to the title element */
    margin-top: 0.3rem; /* Space between title and border */
    margin-bottom: 1rem; /* Space between border and description */
  }
  
  .features-description {
    font-size: 1.2rem; /* Increased font size */
    color: #666; /* Adjust the color as needed */
    font-family: 'Raleway', sans-serif; /* Consistent font family */
    margin-bottom: 2rem; /* Space between description and the next content */
    max-width: 80%; /* Maximum width of the description */
    margin-left: auto;
    margin-right: auto;
  }
  

  .btn-learn-more {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #000;
    background-color: transparent;
    border: 2px solid #000;
    padding: 0.5rem 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
  }
  
  .btn-learn-more:hover {
    color: #fff;
    background-color: #000;
  }
  
  
  .img-fluid {
    max-width: 80%;
    height: auto;
  }

  /* ABOUT CSS */

  .about-section {
    background-color: #f8f8f8; /* Adjust to match your design */
    padding: 4rem 0;
  }
  
  .about-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    color: #333; /* Adjust to match your design */
    margin-bottom: 1rem;
  }
  
  .about-section p {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #666; /* Adjust to match your design */
    margin-bottom: 1.5rem;
  }


  /* TESTIMONIALS CSS */

  .testimonials-section {
    background-color: #ffffff; /* White background */
    color: #333; /* Text color */
  }
  
  .testimonials-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  
  .testimonial-box {
    padding: 2rem;
    margin: 1rem;
    border: 1px solid #eaeaea; /* Light grey border */
    border-radius: 10px; /* Rounded corners */
    background-color: #f9f9f9; /* Slightly off-white background */
    position: relative;
  }
  
  .testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #555; /* Slightly darker text color for contrast */
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  
  .testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: right;
  }
  
  /* Carousel control styles */
  /* Carousel control styles */
.carousel-control-prev,
.carousel-control-next {
  width: 4%; /* Adjust the width for larger clickable area */
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Adjust vertical alignment */
}

.carousel-control-prev {
  left: -5%; /* Adjust so the control is outside the box */
}

.carousel-control-next {
  right: -8%; /* Adjust so the control is outside the box */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  /* Styling for the arrows, you can use your own custom SVG or font icon here */
  background: none; /* Remove the default background image */
  display: inline-block; /* Allows us to use width and height */
  width: 30px; /* Set a fixed width */
  height: 30px; /* Set a fixed height */
  border: solid #333; /* Border to create the arrow shape */
  border-width: 0 3px 3px 0; /* Create the L shape for the arrow */
  padding: 3px;
  /* Create a circular hit area for the arrows */
  border-radius: 50%;
  /* Position the icon in the middle of the hit area */
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  /* Add a background color that matches the carousel background */
  background-color: #ffffff;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: ''; /* We'll use a pseudo-element for the arrow */
  display: inline-block;
  border: solid #333; /* Arrow color */
  border-width: 0 3px 3px 0; /* Arrow size */
  padding: 3px;
}

.carousel-control-prev-icon::after {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.carousel-control-next-icon::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-control-prev {
    left: 0; /* Position control inside the container on small screens */
  }

  .carousel-control-next {
    right: 0; /* Position control inside the container on small screens */
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    height: 30px;
    width: 30px; /* Smaller size for small devices */
  }
}

@media (max-width: 576px) {
  .carousel-control-prev,
  .carousel-control-next {
    top: auto;
    transform: none;
    bottom: -40px; /* Position controls below the testimonials on the smallest screens */
    width: 10%;
  }
}

  

  /* DOWNLOAD APP LINKS CSS */

  .download-app-section {
    background-color: #f8f8f8; /* To match your about-section */
    padding: 4rem 0;
    color: #333; /* To match your about-section text color */
  }
  
  .download-app-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem; /* To match your about-section */
    color: #333; /* To match your about-section */
    margin-bottom: 1rem;
  }
  
  .download-app-section h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem; /* To match your about-section */
    color: #666; /* To match your about-section */
    margin-bottom: 1.5rem;
  }
  
  .app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Adds space between buttons */
  }
  
  .app-store-link {
    display: inline-block;
    margin: 0 5px; /* Adds space around the link */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
  }
  
  .app-store-link img {
    height: auto;
    width: auto; /* Adjust width based on your images */
    max-width: 200px; /* Ensures images are not too large */
  }
  
  .app-store-link:hover,
  .app-store-link:focus {
    transform: scale(1.05); /* Slightly enlarge links on hover/focus */
  }
  

  .popup-container {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #444446; /* Dark contrasting background color */
    color: #f2e9e4; /* Light color for the text */
    width: 250px; /* Fixed width to create a square shape */
    height: 120px; /* Fixed height to match the width */
    padding: 20px; /* Padding inside the popup */
    border-radius: 10px; /* Rounded corners for aesthetics */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* More prominent shadow */
    text-align: center;
    transition: opacity 0.6s ease-in-out, top 0.6s ease-in-out;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack elements vertically */
  }
  
  .popup-message {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem; /* Slightly larger font size for visibility */
    line-height: 1.4; /* Spacing between lines */
    margin-bottom: 0; /* Remove margin between lines */
  }
  
  
  /* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .download-app-section .download-tagline {
      font-size: 2rem; /* Smaller font size for the tagline on small devices */
    }
  
    .download-app-section p {
      font-size: 0.9rem; /* Smaller font size for the description on small devices */
    }
  
    .app-store-link img {
      max-width: 150px; /* Smaller buttons on small devices */
    }
  }
  


/* Footer css */

.footer-section {
  background-color: #c4c4c4; /* Light background color */
  color: #2c2c2c;
  font-weight: 400;
  padding: 2rem 0;
  position: relative; /* Needed for absolute positioning of logos */
}

.footer-logo {
  max-width: 100px; /* Adjust as needed */
  margin-right: 1rem; /* Space between logos */
  transition: opacity 0.3s ease; /* Smooth transition for hover effect */
}

.footer-logo:hover {
  opacity: 1; /* Logos stand out on hover */
}

.footer-section p {
  font-family: 'Raleway', sans-serif;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.5;
}

.logo1 {
  max-width: 120px;
}

.logo2 {
  max-width: 200px; /* Size for logo 2 */
}

.logo3 {
  max-width: 290px; /* Size for logo 2 */
}
 
