* {
  margin: 0;
  padding: 0;
  font-family: "AileronRegular", sans-serif;


  box-sizing: border-box;
}

html,
body {
  height: 100vh;
  background-color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

/* custom components */

.w-400 {
  font-weight: 400;
}
.w-500 {
  font-weight: 500;
}
.w-600 {
  font-weight: 600;
}

.w-700 {
  font-weight: 700;
}

.w-800 {
  font-weight: 800;
}
.w-900 {
  font-weight: 900;
}
.text-16 {
  font-size: 16px;
}

.text-18 {
  font-size: clamp(1rem, 0.9375rem + 0.2083vw, 1.125rem);
}

.text-20 {
  font-size: clamp(1.125rem, 1.0625rem + 0.2083vw, 1.25rem);
}

.text-24 {
  font-size: clamp(1.25rem, 1.125rem + 0.4167vw, 1.5rem);
}

.text-28 {
  font-size: clamp(1.25rem, 1rem + 0.8333vw, 1.75rem);
}

.text-32 {
  font-size: clamp(1.5rem, 1.25rem + 0.8333vw, 2rem);
}
.text-40 {
  font-size: clamp(1.375rem, 0.8125rem + 1.875vw, 2.5rem);
}

.text-48 {
  font-size: clamp(1.375rem, 0.5625rem + 2.7083vw, 3rem);
}

.text-56 {
  font-size: clamp(1.75rem, 0.875rem + 2.9167vw, 3.5rem);
}

.text-64 {
  font-size: clamp(1.875rem, 0.8125rem + 3.5417vw, 4rem);
}
section {
  padding: 0 clamp(1.25rem, -0.625rem + 6.25vw, 5rem);
}

/* header */
header {
  background-color: #e6cdcd;
}

.header-container {
  margin: 0 clamp(1.875rem, 0.3125rem + 5.2083vw, 5rem) !important;
}

.header-container h1 {
  font-family: "Audiowide", sans-serif;
  color: #ffe310;
}

.btn-header {
  background-color: #ffffffb2;
  color: #840503;
  padding: clamp(0.5rem, 0.1875rem + 0.625vw, 0.75rem)
    clamp(0.9375rem, -0.3rem + 2vw, 1.5rem);
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  border-radius: 29px;
}
.btn-header:hover {
  background-color: #eae4e4cd;
}

.nav-link {
  font-family: "Raleway", sans-serif;
  color: #ffffff !important;
}

.nav-link:hover {
  color: #fee310 !important;
}

.navbar-toggler {
  border: 1px solid #fee310;
}

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

.navbar-toggler-icon {
  background-image: none !important;
}

.nav-item {
  margin: 0 clamp(1.875rem, 0.625rem + 4.1667vw, 4.375rem);
}

.navbar {
  height: 80px;
  background-color: #840503;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.navbar-brand {
  margin-right: 0;
}

@media (max-width: 992px) {
  .nav-item {
    margin: 0 !important;
  }
  .nav-link {
    color: #840503 !important;
    margin-top: 10px;
  }
  .btn-header {
    background-color: #840503;
    color: #ffe310;
  }
}

@media (max-width: 992px) {
  .navbar-nav {
    margin-bottom: 18px !important;
  }
}

/*
footer section */
.footer {
  background-color: #840503;
  color: #ffffff;
  padding: 60px clamp(1.25rem, -0.625rem + 6.25vw, 5rem) 20px;
}

.whitespace{
  margin-bottom: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid #ffffff;
  color: #ffffff;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
}

.logotext {
  color: #ffe310;
  font-family: "Audiowide", sans-serif;
}
.footer a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
.footer a:hover {
color: #ffd700;
}
.footer .divider {
  border-left: 1px solid #ccc;
}
.footer .social i {
  font-size: 24px;
  margin: 0 10px;
  color: white;
}
.footer .social i:hover {
  color: #ffd700;
}
.footer .store-btn img {
  height: 40px;
  margin-right: 10px;
}
@media (max-width: 992px) {
  .footer .divider {
    border: none;
  }
  .footer .social {
    justify-content: center;
    margin: 15px 0;
  }
  .footer .store-btn {
    justify-content: center;
    margin-top: 15px;
  }
}

/* playstore & app store icon */
.app-buttons {
  gap: clamp(0.625rem, -0.9375rem + 5.2083vw, 3.75rem);
}

@media (max-width: 480px) {
  .app-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .app-button {
    margin-bottom: 5px !important;
  }
}
.app-button {
  background-color: #000;
  color: white;
  padding: 10px 7px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  margin-bottom: 15px;
  border: 1px solid #ffffff;
  width: 200px;
}

.app-button:hover {
  background-color: #333;
  color: white;
}

.app-button-icon {
  font-size: 20px;
}

.app-button-icon img {
  width: 40px;
}

.app-button-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.app-button-text .small {
  font-size: 10px;
  opacity: 0.8;
  font-family: "Raleway", sans-serif;
}

.app-button-text .large {
  font-size: 16px;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
}

/* Hero section */

.hero-section {
  background-color: #e6cdcd;
  padding-top: 200px;
  background-image: url(../../img/background.png);
}
.span-text {
  color: #9e2a2b;
  font-family: "Audiowide", sans-serif;
}

h1 span {
  color: #ffe310;
  font-family: "Audiowide", sans-serif;
}

.hero-text {
  color: #840503;
  font-family: sans-serif;
  font-weight: 600;
}

/* Reviews & Ratings */

#Reviews {
  display: none;
}
.review {
  font-family: "Raleway", sans-serif;
}

.text-b {
  color: #840503;
  text-align: center;
}
.slider-container-R {
  max-width: 1200px;
  margin: auto;
  position: relative;
  overflow: hidden;
  padding: 50px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.slider1 {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.card1 {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0 8px;
  background: white;
  padding: 20px;
  border-radius: 9px;

  box-shadow: 0 10px 20px #00000040;
  transform: scale(0.8);
  transition: transform 0.3s, opacity 0.3s;
  position: relative;
  border-top: 4px solid #840503;
  border-left: 4px solid #840503;
}
.textop-1 {
  opacity: 0.5;
  color: #999999 !important;
}
.card1.active .textop-1 {
  opacity: 1;
}

.active .textop-1 {
  color: #000000 !important;
}

.card1.active {
  transform: scale(1);
  opacity: 1 !important;
  z-index: 2;
  border-radius: 9px;
  position: relative;
}
.card1.active .text-black {
  font-size: clamp(1.125rem, 0.9375rem + 0.625vw, 1.5rem) !important;
  font-weight: 600 !important;
}

@media (max-width: 530px) {
  .quote-top,
  .quote-bottom {
    display: none !important;
  }
}

.quote-top {
  position: absolute;
  top: 30px;
  left: 31%;
  transform: translateX(-50%);
  width: 40px;
  z-index: 1;
}

.quote-bottom {
  position: absolute;
  bottom: 25px;
  left: 70%;
  transform: translateX(-50%);
  width: 40px;
  z-index: 1;
}

@media (max-width: 980px) {
  .quote-top {
    top: 30px;
    left: 25%;
  }
  .quote-bottom {
    bottom: 32px;
    left: 77%;
  }
}

@media (max-width: 700px) {
  .quote-top {
    top: 30px;
    left: 16%;
  }
  .quote-bottom {
    bottom: 32px;
    left: 88%;
  }
}

.card:not(.active) .quote-top,
.card:not(.active) .quote-bottom {
  display: none;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  color: #fff;
  border: none;
  /* padding: 10px; */
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
}

.arrow.left {
  left: 0px;
}

.arrow.right {
  right: 0px;
}

@media (max-width: 768px) {
  .card1 {
    flex: 0 0 50%;
  }
}

@media (min-width: 320px) {
  .card1 {
    flex: 0 0 32.3333%;
  }
}

@media (max-width: 768px) {
  .card1 {
    opacity: 1;
  }
}

@media (max-width: 450px) {
  .card1 {
    flex: 0 0 32.3333%;
  }
}

.copy-p {
  width: 100%;
}

@media (max-width: 992px) {
  .copyright {
    display: flex;
    flex-direction: column; /* Row to column */
  }
}

@media (max-width: 992px) {
  .hide {
    display: none;
  }
  .copy-p {
    text-align: center !important;
    padding-top: 5px;
  }
}

/* App-section */

.App {
  background-color: #e6cdcd4d;
}

.App-section {
  font-family: "Raleway", sans-serif;
  color: #000000;
}

.App-p {
  font-family: "Raleway", sans-serif;
  color: #000000;
}

.App-container {
  background: linear-gradient(to top, #811e1d, #e6cdcd); /* Gradient */
  border: 5px solid #840503;
  border-radius: 24px;
  padding: 0 0 0 40px;
  /* background-image: url("IMG/appbackground.png"); */
}

@media (max-width: 1199px) {
  .buttons {
    justify-content: center;
    align-items: center;
  }
}

.image-container {
  text-align: center;
  position: relative;
}

.appimg{
  width: 100%;
}
 .scroll-animate{
  /* Initial state - image is below and invisible */
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

/* Animation triggered when in view */
.scroll-animate.animate {
  transform: translateY(0);
  opacity: 1;
}

/* scroll-Section */

.our-services {
  font-family: "Raleway", sans-serif;
}

.wrapper {
  position: relative;
  /* padding-bottom: 1500px; Enough space for last card */
  margin-top: clamp(3.125rem, 1.5625rem + 5.2083vw, 6.25rem);
  font-family: "Raleway", sans-serif;
}

.card {
  position: sticky;
  border: 1px solid #000000;
  background-color: white;
  color: #333;
  padding-top: clamp(1.875rem, 0.3125rem + 5.2083vw, 5rem);
  padding-bottom: clamp(2.5rem, -0.9375rem + 11.4583vw, 9.375rem);
  padding-left: clamp(1.25rem, -0.125rem + 4.5833vw, 4rem);
  padding-right: clamp(1.25rem, -0.125rem + 4.5833vw, 4rem);
  border-radius: 56px;
}

.card h1 {
  padding: 0;
  font-family: "Raleway", sans-serif;
}

.services-button {
  background-color: #ffffff;
  padding: 8px 24px;
  border: none;
  color: #000000;
  text-align: justify;
}

.card:nth-child(1) {
  top: 80px;
  z-index: 1;
}
.card:nth-child(2) {
  top: 160px;
  z-index: 2;
}
.card:nth-child(3) {
  top: 240px;
  z-index: 3;
}
.card:nth-child(4) {
  top: 320px;
  z-index: 4;
}
.card:nth-child(5) {
  top: 400px;
  z-index: 5;
}
.card:nth-child(6) {
  top: 480px;
  z-index: 6;
}
.card:nth-child(7) {
  top: 560px;
  z-index: 7;
}
.card:nth-child(8) {
  top: 640px;
  z-index: 8;
}

/* splesh screen effect */

/* Splash Screen */
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e6cdcd;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#splash-img {
  width: 250px;
  height: auto;
}

/* Main site content hidden initially */
#site-content {
  display: none;
}
