@import url("https://fonts.googleapis.com/css2?family=Hind+Vadodara:wght@400;500;700&family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap");
@import url("./fontfamily.style.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hind Vadodara", sans-serif;
  scroll-behavior: smooth;
  position: relative;
}

.container-fluid,
.main-container {
  max-width: 1700px;
  margin: 0 auto;
}

.navbar {
  --bs-navbar-color: #fff !important;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  width: 100%;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar {
  padding: 15px 25px;
  font-family: "Hind Vadodara", sans-serif;
  background: #222831;
  height: 90px;
}

.offcanvas {
  background: #222831;
}

.navbar-toggler,
.btn-close {
  background-color: white;
}

.nav-link {
  font-weight: 500;
  margin-right: 20px;
  box-shadow: inset 0 0 #ee6c4d;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%;
  border-radius: 4px;
}

.nav-link:hover {
  box-shadow: inset 110px 0 #ee6c4d;
  color: #eeeeee;
}

.btn-custom {
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 12px;
  border: 2px solid #cc1010 !important;
  width: fit-content;
  cursor: pointer;
}

.btn-featured {
  font-size: 20px;
  padding: 9px 25px;
}

.btn-about {
  width: 10rem;
  height: 3.5rem;
  text-transform: uppercase;
}

.btn-about-color {
  background-color: #cc1010;
  color: white;
}

.btn-fit {
  height: fit-content;
  width: fit-content;
}

.btn-about:hover,
.btn-active {
  background-color: white;
  color: #cc1010;
}

.btn-active:hover {
  background-color: white;
  color: black;
  border-color: black;
}

.slider-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  cursor: pointer;
}

.slider-btn.invalid {
  border: 2px solid rgba(0, 0, 0, 0.33);
}

.slider-btn.valid {
  border: 2px solid #ed0c0c;
}

.slider-btn i {
  font-size: 1.5rem;
}

.slider-btn.invalid i {
  color: rgba(0, 0, 0, 0.33);
}

.slider-btn:hover {
  background-color: #ed0c0c;
  border: 2px solid #ed0c0c;
}

.slider-btn:hover i {
  color: white;
}

#welcome .main-container,
#welcome-slide .main-container {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 2rem;
  /* min-height: 40rem; */
  padding: 1rem 0 3rem;
}

#welcome-slide {
  background: linear-gradient(180deg, #ad0b0b 0%, #220101 100%);
}

#welcome .website-details,
#welcome-slide .website-details {
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

#welcome .header,
#about .header,
#welcome-slide .header {
  font-family: "Hind Vadodara", sans-serif;
  color: #cc1010;
  font-weight: 700;
  font-size: 4.0625rem;
  letter-spacing: -0.01em;
}

#welcome-slide .header {
  text-transform: uppercase;
  color: #fff;
}

#welcome-slide .border {
  height: 15px;
  background-color: white;
  font-weight: 700;
  font-size: 65px;
  width: 6ch;
}

#welcome .subtitle {
  font-size: 2rem;
  color: #200505;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  width: fit-content;
  padding-bottom: 0.5rem;

  border-bottom: 0.4375rem solid #293241;
  margin-bottom: 1.5rem;
}

#welcome .website-details .welcome-description,
#welcome-slide .description {
  font-family: "Hind Vadodara", sans-serif;
  text-align: justify;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: rgba(51, 27, 59, 0.66);
}

#welcome-slide .description {
  color: #fcfdff;
}

#welcome .welcome-logo {
  width: 100%;
}

#welcome .welcome-logo img,
#welcome-slide .welcome-logo img {
  width: 100%;
  aspect-ratio: 1 /1;
}

#giftcard {
  color: white;
  max-height: 30rem;
  background-image: url("./../media/money.png");
  object-fit: cover;
  position: relative;
}

#giftcard .main-container {
  padding: 0rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
}

#giftcard::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(41, 50, 65, 0.9);
  z-index: 2;
}

.index > div {
  z-index: 3;
}

#giftcard .header {
  font-weight: 600;
  font-size: 2.5rem;
}

#giftcard .subtitle {
  font-size: 2rem;
  font-family: "Open Sans", sans-serif;
}

#giftcard .description {
  line-height: 25px;
  max-width: 35rem;
}

#giftcard .images img {
  width: min(36.25rem, 100%);
  max-height: 30rem;
  object-fit: cover;
  object-position: top;
}

#about .main-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding: 1rem 3rem;
}

#about .images img {
  width: 85%;
  aspect-ratio: 1 /1;
  object-fit: contain;
}

#about .header {
  font-size: 48px;
  width: fit-content;

  display: flex;
  flex-direction: column;
}

#about .header span {
  display: block;
}

#about .border {
  height: 10px;
  background-color: #cc1010;
  width: 4ch;
  align-self: flex-end;
}

#about .description {
  text-align: justify;
  letter-spacing: 0.02em;
  color: rgba(51, 27, 59, 0.66);
}

#insiders {
  background: #ecf7ff;
  min-height: 32rem;
  padding: 3rem 5rem;
}

#insiders .headers,
#insights .headers {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #cc1010;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

#insiders .web-title {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  border-bottom: 7px solid #cc1010;
}

.swiper-content {
  max-width: 20rem;
  display: flex;
  flex-flow: column;
  align-items: center;

  background-image: url("./../media/carwash.png"),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1675) 58.9%,
      rgba(10, 108, 227, 0.303) 99.28%
    );
  background-color: rgba(255, 255, 255, 0.65);
  background-size: 20rem;
  background-repeat: no-repeat;
  background-position: bottom;
  background-blend-mode: overlay;

  padding: 3rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  user-select: none;
  box-shadow: 34.8541px 29.626px 48.34px rgba(51, 102, 255, 0.05);
}

.swiper-content .logo-image {
  width: 10rem;
}

.swiper-content .content-details {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-align: center;
}

.swiper-content .service-name {
  font-weight: 700;
  font-size: 26px;
}

#promotion .header {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 34px;
  text-align: center;

  color: #200505;
}

#promotion .items-details {
  width: 20rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 2rem;
  font-family: "Open Sans", sans-serif;
}

#promotion .item-name {
  color: #cc1010;
  font-weight: 700;
}

#promotion .item-image {
  width: 12rem;
}

#promotion .price {
  font-weight: 700;
  font-size: 2rem;
}

#promotion .item-promotion {
  color: rgba(51, 27, 59, 0.66);
  font-weight: 500;
}

#subscribe {
  background-color: #293241;
}

#subscribe .main-container {
  height: 20rem;
  gap: 10rem;
}

#subscribe .subscribe-image {
  width: 18rem;
}

.subscribe-form {
  width: 20rem;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
  border: none;
  font-family: "Open Sans", sans-serif;
  padding-left: 10px;
  font-size: 13px;
}

input,
select {
  line-height: 45px;
}

.btn-general {
  border-radius: 25px;
  border: none !important;
  padding: 9px 25px;
}

.btn-subscribe-color {
  background-color: #fae200;
  border: 2px solid #fae200 !important;
  color: #0d0d0d;
}

.btn-subscribe-color:hover {
  color: white;
  background-color: transparent;
}

.btn-message-color {
  background-color: #222831;
  border: 2px solid #222831 !important;
  color: white;
}

.btn-message-color:hover {
  background-color: #fae200;
  border: 2px solid #fae200 !important;
  color: #0d0d0d !important;
}

#contact {
  background: #cc1010;
}

#contact .header {
  height: 5.25rem;
  font-size: 24px;
  color: white;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

#contact #googleMap {
  width: 100%;
  aspect-ratio: 16 / 5;
}

#contact .message-container {
  padding: 3rem;
}

#contact .form-message {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  justify-content: center;
}

textarea {
  grid-column: span 2;
  padding-top: 10px;
  resize: none;
  width: 100%;
  height: 10rem;
}

.footer-nav {
  padding-top: 50px;
  clip-path: polygon(
    100% 100%,
    0% 100%,
    0% 1.21%,
    2% 2.05%,
    4% 2.99%,
    6% 3.97%,
    8% 4.9%,
    10% 5.71%,
    12% 6.33%,
    14% 6.7%,
    16% 6.8%,
    18% 6.61%,
    20% 6.16%,
    22% 5.49%,
    24% 4.63%,
    26% 3.68%,
    28% 2.7%,
    30% 1.78%,
    32% 1%,
    34% 0.41%,
    36% 0.07%,
    38% 0.01%,
    40% 0.23%,
    42% 0.71%,
    44% 1.42%,
    46% 2.29%,
    48% 3.25%,
    50% 4.22%,
    52% 5.13%,
    54% 5.89%,
    56% 6.45%,
    58% 6.75%,
    60% 6.78%,
    62% 6.52%,
    64% 6.01%,
    66% 5.28%,
    68% 4.39%,
    70% 3.42%,
    72% 2.45%,
    74% 1.56%,
    76% 0.82%,
    78% 0.3%,
    80% 0.03%,
    82% 0.04%,
    84% 0.33%,
    86% 0.88%,
    88% 1.63%,
    90% 2.53%,
    92% 3.5%,
    94% 4.47%,
    96% 5.34%,
    98% 6.06%,
    100% 6.55%
  );
}

footer .brand {
  width: 10rem;
  display: block;
}

footer .heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
}

footer i {
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.33) !important;
}

footer .btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: white;
  color: black;
  opacity: 0.8;
}

footer .btn:hover {
  opacity: 1;
  background-color: black;
  border-color: black;
  color: white;
}

footer .btn i,
footer .btn:hover i {
  border: none !important;
}

.welcome-pagination {
  position: absolute;

  display: flex;
  justify-content: center;
  z-index: 4;
}

.swiper-pagination-bullet {
  background-color: black !important;
  border: 2px solid white !important;
  width: 15px !important;
  height: 15px !important;
  transition: width 300ms ease-in-out;
}

.swiper-pagination-bullet-active {
  width: 40px !important;
  border-radius: 10px !important;
}

#insights {
  background-color: #fce8e8;
}

#insights .main-title {
  border-bottom: 4px solid #cc1010;
}

#insights .web-title {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.blog-box {
  padding: 0;
  background: #f9f9f9;
  box-shadow: 0px 4px 16px 2px rgba(0, 0, 0, 0.08);
  font-family: "Poppins", sans-serif;
  border-radius: 10px;
  max-width: 22rem;
}

.blog-box .blog-thumbnail {
  border-radius: 10px 10px 0 0;
}

.blog-container {
  display: flex;
  justify-content: center;
}

.blog-container .blog-thumbnail img {
  width: 100%;
  border-radius: inherit;
}

.blog-box .blog-content {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.blog-content .blog-heading {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.8125rem;
  letter-spacing: -0.01em;
  color: #333;
}

.blog-content .released-date span {
  color: #828282;
  font-size: 14px;
}

.blog-content .blog-text {
  line-height: 24px;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: #333;
}

.blog-content .btn-blog {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: white;
  border: 2px solid #cc1010 !important;
}

.btn-blog:hover {
  color: black;
}

.blog-details {
  font-family: "Open Sans", sans-serif;
  border-radius: 20px;
  background-color: transparent;
}

.blog-details .blog-parent {
  background: rgba(252, 232, 232, 0.92);
  border-radius: inherit;
  padding-bottom: 1.5rem;
}

.blog-details .headers {
  border-left: 30px solid #cc1010;
  padding: 1rem 2rem;
  border-radius: 20px 20px 0 0;
}

.blog-details .title {
  font-weight: 700;
  font-size: 3rem;
  color: #000000;
}

.blog-details .typo {
  padding: 0;
  font-weight: 700;
  font-size: 0.875rem;
  color: #ad0c0c;

  display: flex;
  gap: 0.5rem;
  padding-bottom: 10px;
}

.blog-details .blog-content {
  padding: 0.75rem calc(2rem + 20px);
  font-family: "Hind Vadodara", sans-serif;
  text-align: justify;
  letter-spacing: 0.05em;
  color: #000000;
}

.blog-details .featured-image,
.blog-details .featured-image img {
  border-radius: 20px;
  aspect-ratio: 16 / 8;
}

.blog-details .heading {
  font-weight: 600;
  font-size: 24px;
  margin: 1rem 0 !important;
}

.blog-content .blog-description {
  padding: 1rem 0;
}

/* Tingle CSS  */
.tingle-modal-box {
  background-color: transparent !important;
  width: min(85%, 65.625rem) !important;
}

.tingle-modal-box__footer {
  background-color: transparent !important;
  padding: 9px 20px !important;

  display: flex;
  justify-content: center;
  align-items: center;
}

.tingle-modal-box__content {
  padding: 0rem 0.5rem !important;
}

.tingle-btn {
  width: fit-content !important;
  height: fit-content !important;
  padding: 9px 20px !important;
  border-radius: 5px;
  margin: 0 !important;
}

.icons-container {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: center;
  margin-right: 52px;
}

.icons-container .print-container {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 36px;
  padding: 5px 15px;
  color: #c11212;
  cursor: pointer;
  transition: transform 0.25s ease-in;
}

.icons-container .print-container:hover {
  transform: scale(1.05);
  background-color: black;
  color: white;
}

.icons-container .social-icons i {
  color: rgba(252, 232, 232, 0.92);
}

.icons-container .social-icons a:hover {
  background-color: black;
}

.icons-container .social-icons a {
  display: inline-flex;
  background-color: #c11212;
  border-radius: 25px;
  width: 40px;
  height: 40px;
  margin-left: 0.5rem;
}

.ribbon {
  --d: 6px; /* folded part */
  --c: blue; /* color */
  --f: 16px; /* ribbon font-size */
/* 
  width: 200px;
  height: 180px;
  position: relative;
  display: inline-block;
  margin: 20px;
  background: lightblue; */
  margin-top: 10px;
  
}

.ribbon::before {
  content: attr(data-ribbon);
  position: absolute;
  font-size: var(--f);
  top: 0;
  right: 0;
  transform: translate(29.29%, -100%) rotate(45deg);
  color: #fff;
  text-align: center;
  border: 1px solid transparent;
  border-bottom: 0;
  transform-origin: bottom left;
  padding: 5px 35px calc(var(--d) + 5px);
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0 0) bottom/100% var(--d)
    no-repeat var(--c);
  background-clip: padding-box;
  clip-path: polygon(0 0,100% 0,100% 100%,calc(100% - var(--d)) calc(100% - var(--d)),var(--d) calc(100% - var(--d)),0 100%);
  -webkit-mask: linear-gradient(135deg,transparent calc(50% - var(--d) * 0.707),#fff 0) bottom left,
    linear-gradient(-135deg, transparent calc(50% - var(--d) * 0.707), #fff 0)bottom right;
  -webkit-mask-size: 300vmax 300vmax;
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}
.left::before {
  left: 0;
  right: auto;
  transform: translate(-29.29%, -100%) rotate(-45deg);
  transform-origin: bottom right;
}
.swiper {
  padding: 0 12px;
 }
 .swiper-slide {
  margin-top: 10px;
}
.swiper-welcome {
  padding: 0;
}