/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');
/* Variables */
:root {
  --primary-color: #E2C452;
  --primary-dark: #cbb03e;
  --primary-rgb: 226, 196, 82;
  --text-color: #292929;
  --bg-color: #f9f9f9;
  --white: #fff;
  --dark: #292929;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #292929;
  line-height: 1.6;
  background-color: #f9f9f9;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  scroll-behavior: smooth; /* Enable smooth scrolling for the whole page */
}


.intro_main {
  position: relative;
  padding: 10px 0;
  min-height: 90vh;
  text-align: center;
  background: url("assets/background.png") no-repeat center center; /* Background image */
  background-size: cover; /* Ensures the background image covers the full width and height */
  background-attachment: fixed; /* Optional: Parallax effect */
  display: flex; /* Flex container for the section */
  flex-direction: column; /* Stack elements vertically */
  justify-content: space-between; /* Space between top content and bottom buttons */
}

.intro_main .slider_text {
  position: relative;
  z-index: 2;
}

.intro_main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* Optional: Adds a dark overlay for better text visibility */
  z-index: 1;
}

/* Positioning the app name and icons */
.app-banner {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Center content */
  padding: 55px 20px; /* Add some padding for spacing */
  justify-content: flex-start; /* Align content at the top */
  background-color: transparent;  /* Transparent background */
  color: white;  /* Set default text color to white */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);  /* Optional shadow for depth */
}

.app-banner p,  /* If there's any paragraph text */
.app-banner a {
  color: white !important;  /* Ensure all text elements are white with !important */
  text-decoration: none; /* Remove underline from links */
}

.app-name h4 {
  font-size: 52px;  /* Make the title larger */
  font-weight: bold;
  margin: 0;
}

.app-name h6 {
  font-size: 27px;  /* Make the subtitle slightly larger */
  margin: 10px 0;  /* Add some space between title and subtitle */
  margin-bottom: 30px; /* Adding space between the text and buttons */
}

/* Flexbox for the app icons (buttons) */
.app-icons {
  position: absolute;
  bottom: 30%; /* Position buttons 10px above the bottom edge */
  left: 50%;
  transform: translateX(-50%); /* Center the buttons horizontally */
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between buttons */
  z-index: 2;
}

.store-icon {
  height: auto;
  width: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  z-index: 10;
  position: relative; /* Add this */
}


.app-icons a {
  margin: 0 10px;  /* Space out the icons */
  z-index: 10;
  pointer-events: auto; /* Ensure the link is clickable */
  position: relative; /* Add this */
}

.app-icons img {
  width: 200px;  /* Make icons bigger */
  transition: transform 0.3s ease-in-out;
}

.app-icons img:hover {
  transform: scale(1.1);  /* Make icons zoom in on hover */
}


a {
  text-decoration: none;
  transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
}

ul {
  list-style: none;
  padding-left: 0;
}

.title_box h2 {
  position: relative;
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.title_box h2 span {
  color: #E2C452;
  text-align: center;
}

.title_box p {
  text-align: center;
}

section {
  padding: 80px 0;
}

img {
  max-width: 100%;
  height: auto;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #E2C452;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #cbb03e;
  transform: translateY(-3px);
}

/* Section Visibility Control */
.section-hidden {
  display: none !important;
}

/* Section Toggle Button */
.section-toggle {
  background-color: #E2C452;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.section-toggle:hover {
  background-color: #cbb03e;
}

.toggle-container {
  text-align: center;
  padding: 20px 0;
}

/* Restore all sections visibility */
.intro_main,
.about_main,
.features_main,
.tracking_stay_designed,
.download_main,
footer {
  display: block;
}


.contact_main {
  padding: 65px; /* adjust as needed */
}

.contact-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 20px;
  color: #E2C452;
}

.main_logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main_logo img {
  height: auto;
  width: auto;
}

.main_logo .logo-circle {
  height: 58px;
  width: 58px;
}

.main_logo .logo-text {
  height: 58px;
  width: 325px;
}



.navbar-nav .nav-link {
  padding: 0 15px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  color: #292929;
}

.navbar-nav .nav-link:hover {
  color: #E2C452;
}

/* Mobile Menu */
.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.slider_text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #E2C452;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.slider_text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.slider_text p span {
  display: block;
}

/* Info Boxes */
.info_boxes_section {
  position: absolute;
  bottom: -100px;
  display: flex;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 10px;
}

.info_box {
  background: #fff;
  text-align: center;
  padding: 30px 20px;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

/* Red line above info boxes */
.info_box::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 30%;
  width: 40%;
  height: 3px;
  background-color: #E2C452;
}

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

.info_box i {
  font-size: 40px;
  color: #E2C452;
  margin-bottom: 15px;
}

.info_box h4 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
}

/* About Section */
.about_main {
  background-color: #fff;
  margin-top: 100px;
}

.about_text p {
  margin-bottom: 15px;
  font-size: 16px;
}

/* App Boxes Section Styling */
.app_boxes {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.app_boxes a {
  display: inline-block;
  margin: 10px; /* optional: spacing between buttons */
}

.app_boxes img {
  height: 60px; /* or your desired height */
  width: auto;
}

.app_boxes a {
  margin-right: 15px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.app_boxes a:hover {
  transform: translateY(-3px);
}

.app_boxes img {
  max-height: 60px;
  width: auto;
}

/* Features Section */
.features_main {
  background-color: #fff;
}

.features_box ul {
  padding-left: 25px;
}

.features_box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  list-style-type: none;
}

.features_box ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: #E2C452;
  border-radius: 50%;
}

/* Additional Features */
.tracking_stay_designed {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.boxes {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.boxes h3 {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.boxes h3 span {
  color: #E2C452;
}

.boxes ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.boxes ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #E2C452;
  border-radius: 50%;
}

/* Application Section */
.download_main {
  background-color: #292929;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.download_main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.download_main .container {
  position: relative;
  z-index: 1;
}

.download_main .title_box h2 {
  color: #fff;
  background-image: none !important;
  transition: none !important;
}

.download_main p {
  margin-bottom: 25px;
  font-size: 22px;
}

/* Contact Section */
.contact_main {
  background-color: #fff;
  height: auto;
  width:100%;
}



.contact_form .form-control {
  height: 50px;
  border-radius: 3px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
}

.contact_form textarea.form-control {
  height: 150px;
}

.contact_form .submit-btn {
  background-color: #E2C452;
  border: none;
  color: #fff;
  padding: 12px 30px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.contact_form .submit-btn:hover {
  background-color: #cbb03e;
}

/* Footer */
footer {
  background-color: #292929;
  color: #fff;
  padding: 50px 0 20px;
  text-align: center;
}

.footer_logo a {
  font-size: 24px;
  font-weight: 700;
  color: #E2C452;
  margin-bottom: 20px;
  display: inline-block;
}

.image-wrapper {
  height: 100%;
}


.social_box {
  margin: 20px 0;
}

.social_box ul {
  display: flex;
  justify-content: center;
  padding: 0;
}

.social_box ul li {
  margin: 0 10px;
}

.social_box ul li a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social_box ul li a:hover {
  background-color: #E2C452;
}

.links {
  margin: 20px 0;
}

.links ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.links ul li {
  position: relative;
  margin: 0 15px;
}

.links ul li a {
  color: #fff;
  font-size: 14px;
}

.links ul li a:hover {
  color: #E2C452;
}

.copyright p {
  margin-bottom: 5px;
  font-size: 14px;
  color: #a1a2a9;
}


.cloud-rect {
  width: 200px; /* Default size for larger screens */
  height: 60px; /* Default height */
  position: relative;
  margin: 0 auto; /* Center the rectangle horizontally */
  z-index: 1;  /* Ensure cloud is below */
}

svg {
  width: 100%;
  height: 100%;
}

.cloud-rect svg path {
  animation: pulseCloud 1s ease-in-out infinite; /* Only animate cloud path */
  z-index: 1;
}

.whatsapp-container {
  position: absolute;
  top: 40%;
  left: 52%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  font-family: Arial, sans-serif;
  z-index: 10; /* higher than cloud-rect */
}

.whatsapp-icon {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

.whatsapp-container span { 
  width: 120px;
  font-size: 15px;
}



.links1 {
  text-align: center;
  padding: 0 0;
  color: #bbb; /* subtle text color */
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
}

.links1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links1 li {
  display: inline-block;
}

.links1 a {
  color: #ffd700; /* gold accent, or choose your brand color */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.links1 a:hover {
  color: #fff;
  text-decoration: underline;
}



/* Responsive Styles */
/* Large Desktops (>=1200px) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .slider_text h1 {
    font-size: 52px;
  }
}

/* Desktops (992px - 1199px) */
@media (max-width: 1199px) {
  section {
    padding: 70px 0;
  }

  .slider_text h1 {
    font-size: 42px;
  }

  .title_box h2 {
    font-size: 30px;
  }

  .info_box {
    padding: 25px 15px;
  }

  .info_box i {
    font-size: 36px;
  }
}

/* Tablets and Small Desktops (768px - 991px) */
@media (max-width: 991px) {
  section {
    padding: 65px 0;
  }

  .slider_text h1 {
    font-size: 36px;
  }

  .navbar-collapse {
    text-align: center;
  }

  .navbar-nav {
    margin: 0 auto;         /* Horizontally center the UL */
    display: flex;
    flex-direction: column; /* Stack the links vertically */
    align-items: center;    /* Center the items */
    gap: 10px;              /* Add space between items (optional) */
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    display: inline-block;
  }

  .intro_main {
    padding: 30px 0;
    position: relative; /* Ensure stacking context */
    z-index: 0;
  }

  .about_text, .features_box {
    margin-top: 30px;
  }

  .boxes {
    margin-bottom: 20px;
  }


}

/* Large Mobile Phones (576px - 767px) */
@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }

  .main_logo .logo-circle {
    max-height: 40px;
    max-width: 40px;
  }

  .main_logo .logo-text {
    max-height: 35px;
    max-width: 200px;
  }


  .app-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0px; /* or whatever gap you need */
    width: 100%;
    max-width: 90%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: -25px auto; /* optional: adds space and centers horizontally */
  }

  .app-icons img {
    width: 145px;  /* Make icons bigger */
    transition: transform 0.3s ease-in-out;
  }

  .app-icons a {
    flex: 0 0 auto;             /* Prevent stretching/shrinking */
  }

  .app-icons a:nth-child(1),
  .app-icons a:nth-child(2) {
    align-self: center;         /* Align both to center */
  }


  .navbar-toggler {
    order: 1; /* Moves the menu icon to the left side */
  }

  .slider_text h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .slider_text p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .title_box h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .app_boxes {
    flex-direction: row;
    align-items: center;
    justify-content: center; 
    gap: 15px;
  }

  .app_boxes a {
    margin-bottom: 0px;
    margin-right: 0;
  }

  .info_boxes_section {
    position: static;
    width: 100%; /* Ensure full width for mobile */
    left: 0; /* Align to the left edge */
    transform: none; /* Disable translateX for mobile */
    padding: 10px;
    height: 380px;
    margin-top: 50px;
  }

  .info_boxes {
    flex-direction: column;
    align-items: center;
  }

  .info_boxes .col-sm-12:not(:last-child) {
    margin-bottom: 100px;
  }

  .info_box {
    width: 100%;
    max-width: 100%; /* Ensure it fits within the screen */
    text-align: center;
    box-sizing: border-box;
    padding: 20px;
  }


  .social_box ul li {
    margin: 0 8px;
  }

  .links ul li {
    margin: 5px 10px;
  }

  /* Add image handling for better mobile display */
  .intro_main .hero-image {
    margin-top: 30px;
  }

  /* Improve spacing in contact form on mobile */
  .contact_form .row + .row {
    margin-top: 5px !important;
  }

  /* Adjust back to top button for mobile */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }


  .cloud-rect {
    width: 80%; /* Make the cloud-rect smaller for mobile */
    max-width: 320px; /* Set a max-width for the cloud-rect to ensure it's not too big */
    height: 80px; /* Increase height for better visibility */
  }

  .whatsapp-container {
    font-size: 14px; /* Smaller text size for mobile */
  }

  .whatsapp-icon {
    width: 20px; /* Smaller icon size on mobile */
    height: 20px; /* Smaller icon size on mobile */
    margin-right: 8px; /* Reduce space between icon and number */
  }


  .intro_main {
  position: relative;
  padding: 10px 0;
  min-height: 65vh;
  text-align: center;
  background: url("assets/background.png") no-repeat center center; /* Background image */
  background-size: cover; /* Ensures the background image covers the full width and height */
}

  .app-name h4 {
    font-size: 40px;  /* Make the title larger */
    font-weight: bold;
    margin: 0;
  }
  
  .app-name h6 {
    font-size: 18px;  /* Make the subtitle slightly larger */
    margin: 10px 0;  /* Add some space between title and subtitle */
    margin-bottom: 10px; /* Adding space between the text and buttons */
  }

  .contact_main {
    padding: 30px; /* adjust as needed */
  }
}

/* Small Mobile Phones (< 576px) */
@media (max-width: 575px) {
  section {
    padding: 40px 0;
  }

  .slider_text h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .slider_text p {
    font-size: 15px;
  }

  .title_box h2 {
    font-size: 22px;
  }

  .about_text p, .boxes ul li {
    font-size: 15px;
  }

  .boxes h3 {
    font-size: 18px;
  }

  .info_box {
    padding: 20px 15px;
  }

  .info_box i {
    font-size: 32px;
  }

  .info_box h4 {
    font-size: 16px;
  }

  .navbar-brand span {
    font-size: 18px;
  }

  .features_box ul li {
    font-size: 15px;
    padding-left: 20px;
  }

  .features_box ul li:before {
    top: 7px;
    width: 8px;
    height: 8px;
  }

  footer {
    padding: 40px 0 15px;
  }

  .footer_logo a {
    font-size: 20px;
  }

  .contact_form .submit-btn {
    padding: 10px 15px;
    font-size: 14px;
  }

  /* Better handling for multiple columns on mobile */
  .contact_form .col-md-6 + .col-md-6 {
    margin-top: 10px;
  }

  /* Adjust the navigation toggler for better mobile experience */
  .navbar-toggler {
    padding: 4px 8px;
  }

  /* Improve the appearance of the social icons on small screens */
  .social_box ul li a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* Adjust back to top button for small mobile */
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
	
	.app-name h4 {
    font-size: 40px;  /* Make the title larger */
    font-weight: bold;
    margin: 0;
  }
  
  .app-name h6 {
    font-size: 18px;  /* Make the subtitle slightly larger */
    margin: 10px 0;  /* Add some space between title and subtitle */
    margin-bottom: 10px; /* Adding space between the text and buttons */
  }
}

/* Tiny Mobile Phones (< 400px) */
@media (max-width: 399px) {
  .slider_text h1 {
    font-size: 20px;
  }

  .navbar-brand span {
    font-size: 16px;
  }

  .title_box h2 {
    font-size: 20px;
  }

  .boxes {
    padding: 20px 15px;
  }

  .links ul {
    flex-direction: column;
  }

  .links ul li {
    margin: 5px 0;
  }

  /* Adjust app boxes for very small screens */
  .app_boxes img {
    max-height: 50px;
  }
}




@keyframes pulseCloud {
  0%, 100% {
    transform: scale(1);
    fill: #e53935; /* Original color for the cloud */
  }
  50% {
    transform: scale(1.05);
    fill: #f44336; /* Slightly lighter red for the cloud */
  }
}



/* Landscape mode fix: maintain portrait layout */
@media screen and (orientation: landscape) and (max-height: 500px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .custom-flex {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
  }

  .main_logo {
    margin-bottom: 10px;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 10px;
  }

  .cloud-rect {
    position: relative;
    margin-top: 10px;
  }

  .cloud-rect svg {
    max-height: 60px;
    width: 100%;
  }

  .info_boxes_section {
    position: absolute;
    bottom: -215px;
    display: flex;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    padding: 10px;
  }

}