/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #fff;
  line-height: 1.6;
}

/*.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}*/

/* Hero Section */
.hero {
  background: url(https://images.pexels.com/photos/9488963/pexels-photo-9488963.jpeg?_gl=1*l9oux*_ga*MTkzODQyNzY1Ny4xNzY2OTg5ODEx*_ga_8JE65Q40S6*czE3NzA2MTMyNzUkbzQkZzAkdDE3NzA2MTMyNzUkajYwJGwwJGgw) center / cover no-repeat;
  padding: 44px 0px;
  color: white;
  position: relative;
  height: 650px;
  text-align: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0%);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.logo {
  max-width: 120px;
  margin-bottom: 115px;
}
.hero h1 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}
/* App Store Buttons */
.store-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.store-buttons img {

}

/* Intro Section */
.intro {
  background-color: #e8e8e8;
  padding: 60px 0px;
  text-align: center;
}
.intro h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #000;
  font-weight: bold;
}
.intro p {
  color: #858585;
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
  margin-bottom: 30px;
}
.cta-button {
  background-color: #0d7863;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #000000;
  color: #fff;
}

/* Carousel Section */
#features:after{
  content: '';
 
}
.carousel-multi {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px;
  scrollbar-width: none;
}
.carousel-multi::-webkit-scrollbar {
  display: none;
}

.carousel-item-box {
  flex: 0 0 30%;
  background: transparent;
  padding: 10px;
  border-radius: 10px;
  min-width: 30%;
  box-shadow: none;
  text-align: center;
}
.carousel-item-box img {
  width: auto;
  max-width: 100%;
  max-height: 660px;
  object-fit: contain;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.carousel-item-box h4 {
  margin-top: 10px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #000;
}
.carousel-item-box p {
  font-size: 0.95rem;
  color: #858585;
}

/* Carousel Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #014d47;
  border: 1px solid #014d47;
  backdrop-filter: blur(6px);
  color: #ffffff;
  width: 40px;
  height: 40px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 10;
  transition: all 0.3s ease;
  z-index: 5;
}
/*.carousel-nav:hover {
  opacity: 1;
  background: rgba(255, 239, 205, 0.9);
  color: #00332f;
  border-color: #fff;
  transform: translateY(-50%) scale(1.1);
}*/
.carousel-nav.left {
  left: -50px;
}
.carousel-nav.left i{
  position: relative;
  left: -2px;
}
.carousel-nav.right {
  right: -50px;
}
.carousel-nav.right i{
  position: relative;
  right: -2px;
}
.social_mediaicon{
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
}
.social_mediaicon a{
  color: #fff;
    font-size: 25px;
    margin: 0px 4px;
    background-color: #014d47;
    width: 45px;
    height: 45px;
    display: inline-block;
    border-radius: 5px;
    line-height: 46px;
}
.social_mediaicon a i{}
.social_mediaicon a img{
  width: 22px;
}

/* Footer */
footer {
  background-color: #d9d9d9;
  padding: 40px 0px;
  color: #000;
  text-align: center;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  padding-left: 0;
}
.footer-links a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}
.contact_modalsetdiv{

}
.contact_modalsetdiv .modal-title{
  color: #000;
  font-size: 25px;
}
.contact_modalsetdiv .btn-close{
  color: #000;
  font-size: 20px;
  opacity: 10;
}
.contact_modalsetdiv .modal-dialog{
  max-width: 700px;
}
.contact_inputset{
  display: inline-block;
  width: 100%;
}
.contact_inputset input{
  width: 100%;
  border: 0px solid #000;
  padding: 15px 15px;
  color: #000;
  font-size: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #d9d9d9;
}
.contact_inputset textarea{
  width: 100%;
  border: 0px solid #000;
  padding: 15px 15px;
  color: #000;
  font-size: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #d9d9d9;
  resize: none;
}
.contact_inputset button{
  background-color: #00332f;
  color: #fff;
  padding: 7px 31px;
  border-radius: 8px;   
  border: 0;
  font-size: 19px;
}
.privacypolicy_textbox {
    display: inline-block;
    width: 100%;
    margin-top: 70px;
}
.privacypolicy_textbox h3 {
    margin: 0px;
    font-size: 45px;
    color: #000000;
    margin-bottom: 8px;
}
.privacypolicy_textbox p {
    margin: 0px;
    font-size: 20px;
    color: #636161;
}
.inner_textmandiv {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}
.details_textbox {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #B7B7B7;
}
.details_textbox p {
    margin: 0px;
    color: #808080;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 26px;
}
.details_textbox h3 {
    color: #000000;
    font-size: 26px;
    margin: 0px;
    padding-top: 22px;
    padding-bottom: 15px;
}












/* ---------------------------------- */
/* 📱 RESPONSIVE ADJUSTMENTS BELOW 🔽 */
/* ---------------------------------- */
@media (max-width: 1300px) {
  .carousel-nav.left {
      left: 0;
  }
  .carousel-nav.right {
      right: 0;
  }
}
@media (max-width: 991px) {
  .hero {
    padding: 45px 0px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .logo {
    max-width: 100px;
    margin-bottom: 83px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .carousel-item-box {
    flex: 0 0 80%;
    min-width: 80%;
  }

  .carousel-item-box img {
    max-height: 300px;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .carousel-nav.left {
    left: 0px;
  }

  .carousel-nav.right {
    right: 0px;
  }

  .intro h2 {
    font-size: 1.4rem;
  }

  .intro p {
    font-size: 0.95rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .store-buttons img {
    
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 40px 0px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .carousel-item-box {
    flex: 0 0 90%;
    min-width: 90%;
  }

  .carousel-item-box img {
    max-height: 250px;
  }

  .intro p {
    padding: 0 10px;
  }

  .store-buttons {
    flex-direction: row;
    gap: 10px;
  }

  .footer-links {
    font-size: 0.85rem;
  }

  .carousel-nav {
    display: none; /* optional: hide on small screens */
  }
}


/* Adjust container to avoid horizontal overflow */
/*.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}*/

/* Remove nowrap on small screens */
@media (max-width: 768px) {
  .hero{
    height: 480px;
  }
  .hero h1 {
    white-space: normal;
    font-size: 21px;
    line-height: 1.3;
  }

  .store-buttons {
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }

  .store-buttons img {    
    width: auto;
  }
}





@media (max-width: 768px) {
  .carousel-item-box {
    flex: 0 0 100% !important;
    min-width: 100% !important;
  }

  .carousel-item-box img {
    max-height: 100%;
    width: auto;
    height: auto;
  }

  .carousel-multi {
    padding-left: 10px;
    padding-right: 10px;
    gap: 0;
    touch-action: none;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .carousel-nav.left {
    left: 5px;
  }

  .carousel-nav.right {
    right: 5px;
  }
}
