@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Varela+Round&display=swap");

/*------------------------------------------------------------------
  [Table of contents]
  * To keep an overview of structure of your code, we make use of table of 
  * content. Table of content is use display the overall tree structure of your
  * Layout. 
  * (NOTE: Remove this commented code once you start developing the code.
  * Remove the following table of content and add your own as this is just and 
  * example to let you know)

  1. CSS Reset Code
    1.1. Eric Meyers Reset/HTML5 display-role reset for older browsers
    1.2. Clear Fix
    1.3. Font class declaration
  2. Body
  3. Header / .header
    2.1. Navigation / .navbar
  4. Content / .content
    4.1. Left column / .leftcolumn
    4.2. Right column / .rightcolumn
    4.3. Sidebar / .sidebar
      4.3.1. RSS / .rss
      4.3.2. Search / .search
      4.3.3. Boxes / .box
      4.3.4. Sideblog / .sideblog
      4.3.5. Advertisements / .ads
  5. Footer / .footer
  ------------------------------------------------------------------*/

/*------------------------------------------------------------------
  [Color codes]
  * Mention the color code you have used in your html document for the respective
  * elements given as follow. 
  * (NOTE: Remove this commented code once you start developing the code. 
  * Remove the following color code and add your own as this is just and 
  * example to let you know)

  Header nav: #e5e5df (Cararra)
  Header nav a (hover): #fff (white)
  Header nav a (active): #fff (white)
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
  [Typography]
  * Mention the Typography you have used in your html document for the respective
  * elements given as follow.
  * (NOTE: Remove this commented code once you start developing the code. 
  * Remove the following typography and add your own as this is just and 
  * example to let you know)

  Header nav a: 16px 'Futura Bold', 'Gill Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  View-register li a : 12px 'Futura Bold', 'Gill Sans', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  -------------------------------------------------------------------*/

/* ==========================================================================
   1. CSS Reset Code
   ========================================================================== */

/* 1.1. Eric Meyers Reset
   http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
   ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* Smooth scroll & Force scrollbar */
html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

/* Align radios and text inputs with their label */

input[type="radio"] {
  vertical-align: text-bottom;
}

/* Hand cursor on clickable input elements */
label,
input[type="button"],
input[type="submit"],
button {
  cursor: pointer;
}

strong {
  font-weight: bold;
  font-family: inherit;
  font-size: inherit;
}

em {
  font-style: italic;
}

img {
  border: 0;
  vertical-align: middle;
  width: 100%;
  pointer-events: none;
}

sub,
sup {
  vertical-align: baseline;
  position: relative;
  font-size: 55%;
  line-height: 0;
}

sup {
  top: -0.7em;
}

sub {
  bottom: -0.25em;
}

/* 1.2. Clear Fix
   ========================================================================== */

.cf:before,
.cf:after {
  display: table;
  content: " ";
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

/* 1.3. Font class declaration
   ========================================================================== */
/*
 * Mention the font property (eg: font-family, font-size, font-weight, font-style
 * etc) that have been commonly used in the html document. Make a class of it and
 * apply to the element wherever it is needed. If any single property in changed,
 * then override only that property in the particular class which is used for the
 * element.
 * (NOTE: Remove this commented code once you start 
 * developing the code. Remove the following font class and add your own
 * as this is just and example to let you know. If there is only one font family
 * followed throughout the site, then menstion the font property in body. No need
 * of creating an extra class for it) */

.futura-bold-font {
  font-family: "Futura Bold", "Gill Sans", Arial, "Helvetica Neue", Helvetica,
    sans-serif;
  font-style: normal;
  font-weight: bold;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.icon::before {
  font-family: "FontAwesome";
  transition: 0.5s;
}

body {
  background-color: #0f0f0f;
  color: #fff;
  /* line-height: 1.5; */
}

.icon {
  display: block;
}

.icon::after {
  font-family: "FontAwesome";
  transition: 0.5s;
}

.wrapper {
  width: 90%;
  max-width: 1360px;
  margin: 0 auto;
}

.bold-text {
  font-weight: 700;
}


@media only screen and (max-width: 480px) {
  .blog-container {
    flex-direction: column;
  } 

  .read-our-blogs {
    font-size: 20px !important;
  }

  .socialpage-button {

    width: 100%;
    padding: 5px 0;


    .icons {
      width: 60vw;
      bottom: -80%;
    }

  }

  .socialpage-button:hover .icons {
    transform: translateY(-130%);
    -webkit-transform: translateY(-130%);
    -moz-transform: translateY(-130%);
    -ms-transform: translateY(-130%);
    -o-transform: translateY(-130%);
  }


}

/* HEADER STYLING ENDS HERE */

/* GLOBAL STYLING STARTS HERE */

.wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

section {
  scroll-snap-align: start;
  padding: 5px 0;
  background-color: #000;
}

h1,
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

span,
p,
a {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

h1 {
  font-size: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.section-header {
  width: max-content;
  position: relative;
  text-decoration: none;
  margin: 1% auto;
  font-size: 2em;
  line-height: 2em;
  letter-spacing: 2px;
  color: transparent;
  -webkit-text-stroke: 1px #d6461e;
}

.section-header::before {
  content: attr(data-text);
  position: absolute;
  color: #d6461e;
  width: 0px;
  overflow: hidden;
  transition: 1s;
  border-right: 8px solid #d6461e;
}

.section-header.active::before {
  width: 100%;
  filter: drop-shadow(-10px -7px 40px #ff3700);
  -webkit-filter: drop-shadow(-10px -7px 40px #ff3700);
}

.capital {
  text-transform: uppercase;
}

.bold {
  font-weight: 900;
}

.icon {
  display: block;
}

.icon::after {
  font-family: "FontAwesome";
  transition: 0.5s;
}

/* Disable scrolling */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

.hide {
  display: none !important;
}

header {
  background-color: #333;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

header h1 {
  margin: 0;
}

/* RESPONSIVE STYLING STARTS HERE */

@media only screen and (max-width: 480px) {

  section {
    padding: 5px 0;
  }

  .section-header {
    margin: 4% auto;
    font-size: 2em;
    line-height: 1em;
    letter-spacing: 1px;
  }
  
  .section-header::before {
    border-right: 4px solid #d6461e;
  }

}

/* RESPONSIVE STYLING STARTS HERE */

/* GLOBAL STYLING ENDS HERE */

/* PRELOADER STYLING STARTS HERE */

.loader_bg {
  position: fixed;
  background: #000;
  width: 100vw;
  height: 100vh;
  z-index: 99999999;
}

.centerBike {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 26px;
  margin-left: -12px;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
}

.loader-container-hidden {
  display: none;
}

#loop {
  height: 105px;
  width: 105px;
  border: #ff7300 solid 4px;
  border-radius: 200px;
}

#loop:before {
  background: linear-gradient(
    to left,
    rgba(187, 95, 39, 0) 0%,
    #ff7300 30%,
    #ff7300 70%,
    rgba(187, 95, 39, 0) 100%
  );
  content: "";
  display: block;
  height: 4px;
  left: -100px;
  position: relative;
  top: 100px;
  width: 300px;
}

#bike-wrapper {
  height: 108px;
  width: 108px;
  animation: drive 3s linear infinite;
}

#bike {
  height: 24px;
  width: 25px;
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/133687/motorbike.png");
}

@keyframes drive {
  0% {
    margin-left: -364px;
    opacity: 0;
  }

  33.33% {
    transform: rotate(0deg);
    margin-left: -50px;
    opacity: 1;
  }

  66.66% {
    transform: rotate(-360deg);
    margin-left: -50px;
    opacity: 1;
  }

  100% {
    margin-left: 264px;
    transform: rotate(-360deg);
    opacity: 0;
  }
}

/* PRELOADER STYLING ENDS HERE */

/* HEADER STYLING STARTS HERE */

h1 img {
  height: 70px;
  width: 150px;
}

header {
  background-color: #000;
  color: #fff;
  padding: 0 0;
  z-index: 9999;
  position: sticky;
  top: 0;
}

header .wrapper {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
}

.btn-buy {
  display: flex;
  justify-content: center;
  margin: 20px auto 0 auto;
  padding: 12px 20px;
  width: 50%;
  border: none;
  border-radius: 30px;
  background: #ff7300;
  color: #000;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  transition: 0.5s;
}

.btn-buy:hover {
  color: #fff;
}

.call {
  font-size: 0;
  position: relative;
}

.call::after {
  content: "\f2a0";
  color: rgb(255, 98, 0);
  font-size: 30px;
}

.call::before {
  content: "";
  border: 3px solid rgb(255, 98, 0);
  border-radius: 50%;
  display: block;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.call:hover::before {
  animation: ripple 1.5s infinite;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }

  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
/* HEADER STYLING ENDS HERE */

/*BANNER STYLING STARTS HERE */

#banner {
  padding: 0;
}

#banner img {
  width: 100%;
  height: 50%;
  max-height: 100vh;
}

/*BANNER STYLING ENDS HERE */

/* PRODUCTS CARD STYLING STARTS HERE  */

section#products {
  /* solid background */
  background: rgb(0, 212, 255);

  /* gradient background*/
  background: linear-gradient(
    45deg,
    rgba(0, 212, 255, 1) 0%,
    rgba(11, 3, 45, 1) 100%
  );

  /* photo background */
  background-image: url(https://getwallpapers.com/wallpaper/full/a/0/8/1173641-motorcycle-wallpapers-2560x2048-for-full-hd.jpg);
  background-size: cover;

  background-position: center;
}

.product-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 1% 0 5%;
  align-content: stretch;
  flex-direction: row;
}

.product-card {
  flex-basis: 23%;
  height: 500px;
  /* max-height: 600px; */
  backdrop-filter: blur(15px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.25);
  /* border-radius: 12px; */
  border: 1px solid rgba(255, 255, 255, 0.125);
  padding: 1%;
  filter: drop-shadow(0 30px 10px rgba(0, 0, 0, 0.125));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  -webkit-filter: drop-shadow(0 30px 10px rgba(0, 0, 0, 0.125));
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
      transform: translateY(-6px);
      box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }
}

.product-card-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  flex-grow: 1;
}

.product-card-image {
  /* height: 300px; */
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.255);

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

.product-card-info {
  display: flex;
  width: 100%;
  flex-grow: 1;
  /* height: 150px; */
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  /* gap: 15px; */
}

.product-card-heading {
  color: rgba(255, 255, 255, 0.98);
  text-transform: uppercase;
  font-size: 24px;
  text-wrap: wrap;
  width: 100%;
  font-weight: 700;

  .firstName {
    font-size: 20px;
    font-weight: 500;
  }

  .secondName {
    font-size: 16px;
    font-weight: 300;
  }
}

.product-card-price {
  color: rgba(255, 255, 255, 0.98);
  font-size: 1.2rem;
  width: 100%;
}

.product-card-button-wrapper {
  margin-top: 3.5%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.product-card-btn {
  border: none;
  padding: 10px 15px;
  border-radius: 24px;
  font-size: 12px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  cursor: pointer;
}

.product-card-outline {
  background: transparent;
  color: rgba(0, 212, 255, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.6);
  transition: all 0.3s ease;
}

.product-card-outline:hover {
  transform: scale(1.125);
  color: rgba(0, 212, 255, 1);
  border-color: rgba(0, 212, 255, 1);
  transition: all 0.3s ease;
}

.product-card-fill {
  background: rgba(0, 212, 255, 0.9);
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0);
  font-weight: bold;
  transition: all 0.3s ease;
}

.product-card-fill:hover {
  transform: scale(1.125);
  border-color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 10px 5px rgba(0, 0, 0, 0.125));
  transition: all 0.3s ease;
}

/* RESPONSIVE STYLING STARTS HERE */

@media only screen and (max-width: 480px) {
  .product-list {
    gap: 10px;
  }

  .product-card {
    flex-basis: 100%;
    height: 100%;
    padding: 3%;
  }

  .product-card-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5px;
    justify-content: space-between;
    align-items: stretch;
  }

  .product-card-image {
    flex-basis: 50%;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;

    img {
      border-radius: 15px;
      -webkit-border-radius: 15px;
      -moz-border-radius: 15px;
      -ms-border-radius: 15px;
      -o-border-radius: 15px;
    }

  } 

  .product-card-heading {
    font-size: 18px;
    line-height: 1;
  
    .firstName {
      font-size: 16px;
      font-weight: 500;
    }
  
    .secondName {
      font-size: 12px;
      font-weight: 300;
    }
  }

  .product-card-price {
    font-size: 16px;
    line-height: 1;
    margin-top: 5%;
  }

  .product-card-btn {
    padding: 5px 10px;
    font-size: 12px;
    letter-spacing: 1px;
}

}

/* RESPONSIVE STYLING ENDS HERE */

/* PRODUCTS CARD STYLING ENDS HERE  */

/* VEHICLE STYLING STARTS HERE */

.vehicle-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: baseline;
  gap: 15px;
  align-content: center;
}

/* .card:hover .product-image {
  transform: translate(-1.5rem, -3.5rem) rotate(-20deg);
  -webkit-transform: translate(-1.5rem, -3.5rem) rotate(-20deg);
  -moz-transform: translate(-1.5rem, -3.5rem) rotate(-20deg);
  -ms-transform: translate(-1.5rem, -3.5rem) rotate(-20deg);
  -o-transform: translate(-1.5rem, -3.5rem) rotate(-20deg);
} */

.fav {
  box-sizing: border-box;
  background: #fff;
  padding: 0.5rem 0.5rem;
  border: 1px solid#000;
  display: grid;
  place-items: center;
}

.svg {
  height: 25px;
  width: 25px;
  fill: #fff;
  transition: all 500ms ease;
}

.fav:hover .svg {
  fill: #000;
}

#view-more {
  appearance: none;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 15px;
  box-sizing: border-box;
  color: #3b3b3b;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 2% auto;
  min-width: 0;
  outline: none;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

#view-more:disabled {
  pointer-events: none;
}

#view-more:hover {
  color: #fff;
  background-color: #1a1a1a;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

#view-more:active {
  box-shadow: none;
  transform: translateY(0);
}

/* RESPONSIVE STYLING STARTS HERE */


@media (max-width: 480px) {
  .vehicle-list {
    gap: 10px;
  }

  /* .card:hover .product-image {
    transform: translate(-.75rem, -1.5rem) rotate(-20deg);
    -webkit-transform: translate(-.75rem, -1.5rem) rotate(-20deg);
    -moz-transform: translate(-.75rem, -1.5rem) rotate(-20deg);
    -ms-transform: translate(-.75rem, -1.5rem) rotate(-20deg);
    -o-transform: translate(-.75rem, -1.5rem) rotate(-20deg);
  } */

  #view-more {
    margin: 4% auto;
    font-size: 12px;
    padding: 8px 12px;
  }

}

/* RESPONSIVE STYLING ENDS HERE */

/* VEHICLE STYLING ENDS HERE */

/* ----------------------------- SKELETON LOADER STYLING STARTS FROM HERE(FAQ) ----------------------------- */
.faqs-skeleton {
  margin-top: 20px;
}

.faqs-skeleton .faqs-item {
  background: transparent;
  border-bottom: 1px solid #333;
  border-radius: 0;
  margin-bottom: 0;
  padding: 18px 20px;
  position: relative;
}

.faqs-skeleton-line {
  height: 18px;
  background: linear-gradient(90deg, #2b2b2b 25%, #3a3a3a 50%, #2b2b2b 75%);
  background-size: 200% 100%;
  animation: faqs-loading 1.4s infinite;
  border-radius: 4px;
  margin-bottom: 10px;
}

.faqs-skeleton-line.short {
  width: 60%;
  height: 14px;
}

@keyframes faqs-loading {
  0% {
      background-position: -200% 0;
  }

  100% {
      background-position: 200% 0;
  }
}

/* ----------------------------- SKELETON STYLING ENDS HERE ----------------------------- */


/* FAQ SECTION STARTS HERE */

.faq-wrapper {
  padding: 40px 0;
  padding-top: 1px !important;
  background: #000000;
}

.faq-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 20px;
  padding-top: 0px !important;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ff5e00;
}

.faq-item {
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid #333;
  margin-bottom: 0;
  overflow: hidden;
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
      transform: translateY(-2px);
  }

  .faq-question:hover {
      background-color: #1f1f1f;
  }
}

.faq-question {
  padding: 18px 20px;
  font-size: 1rem;
  /* font-weight: 549; */
  position: relative;
  cursor: pointer;
  background: #000000;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.faq-icon {
  font-size: 1.4rem;
  color: #ffffff;
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #000000;
  padding: 0 20px;
  font-size: 0.95rem;
  color: #ddd;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 15px 20px 20px;
}

.faq-item.open .faq-icon {
  transform: rotate(90deg);
}

@media (max-width: 600px) {
  .faq-question {
      font-size: 1rem;
  }

  .faq-answer {
      font-size: 0.9rem;
  }
}
/* FAQ SECTION ENDS HERE */

/* FOOTER SECTION STARTS HERE */

footer {
  padding: 3% 0;
  margin: 3% 5%;
  background: #121212;
  border: 1px solid #fff;
}

.footer-up {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.footer-heading {
  padding-left: 10px;
  border-left: 3px solid #eeeeee;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  color: #fff;
  padding-bottom: 6px;
  margin-bottom: 15px;
  color: #ff7300;
  font-size: 24px;
}

.footer-list {
  padding: 0 10px 0 0;
}

.footer-list li {
  margin-bottom: 7%;
}

.footer-link {
  display: flex;
  align-items: center;
  color: #fff;
  transition: .5s;
  margin-right: 10px;
  font-size: 16px;
  padding: 5px 0;
}

.footer-link:hover {
  padding-left: 10px;
  margin-right: 0;
  color: #ff7300;
}

.footer-down {
  margin: 30px 0;
}

.footer-socials-list {
  display: flex;
  justify-content: space-evenly;
}

.footer-social {
  font-size: 24px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  padding: 10px;
  border: 1px solid #fff;
  width: 50px;
  height: 50px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.footer-social::before {
  font-family: "FontAwesome";
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.facebook::before {
  content: "\f39e";
  color: #1877f2;
}

.whatsapp::before {
  content: "\f232";
  color: #4ac959;
}

.instagram::before {
  content: "\f16d";
  color: #c13584;
}

.youtube::before {
  content: "\f167";
  color: #ff0000;
}

.linkedIn::before {
  content: "\f0e1";
  color: #0077b5;
}

.facebook:hover {
  background-color: #1877f2;
}

.facebook:hover::before {
  color: #fff;
}

.linkedIn:hover {
  background-color: #0077b5;
}

.linkedIn:hover::before {
  color: #fff;
}

.youtube:hover {
  background-color: #ff0000;
}

.youtube:hover::before {
  color: #fff;
}

.instagram:hover {
  background-color: #c13584;
}

.instagram:hover::before {
  color: #fff;
}

.whatsapp:hover {
  background-color: #4ac959;
}

.whatsapp:hover::before {
  color: #fff;
}

.footer-last {
  color: #fff;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-last-links {
  display: flex;
  margin-top: 10px;
  width: 100%;
  align-items: center;
  justify-content: space-around;
}

.footer-last-links a {
  text-decoration: underline;
}

.footer-last span {
  display: block;
}
/* FOOTER SECTION ENDS HERE */

/* FOOTER MOBILE STYLES START HERE */

@media (max-width: 768px) {
  footer {
    padding: 50px 20px;
  }

  .footer-heading {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footer-list li {
    margin-bottom: 15px;
  }

  .footer-link {
    font-size: 14px;
    padding: 6px 0;
  }

  .footer-up {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
  }

  .footer-linkbox {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-socials-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .footer-social {
    font-size: 20px;
    width: 40px;
    height: 40px;
    padding: 10px;
    text-align: center;
  }

  .footer-social:hover {
    transform: scale(1.1);
  }

  .footer-last {
    margin-top: 20px;
    text-align: center;
  }

  .footer-last span {
    display: block;
    margin-bottom: 10px;
  }

  .footer-last-links {
    display: block;
    margin-top: 10px;
  }

  .footer-last-links a {
    font-size: 14px;
    display: inline-block;
    margin: 5px 10px;
    text-decoration: underline;
  }
}

@media (max-width: 480px) {
  .footer-heading {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-link {
    font-size: 13px;
  }

  .footer-linkbox {
    padding: 0 10px;
    margin: 3% 0;
  }

  .footer-social {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .footer-last-links a {
    font-size: 12px;
  }

  .footer-last span {
    font-size: 14px;
  }
}

/* FOOTER MOBILE STYLES END HERE */

/* RESPONSIVE STYLING STARTS HERE */

@media only screen and (max-width: 810px) {
  .footer-up {
    margin-top: 0;
  }

  .footer-down {
    margin-bottom: 0;
  }

}

@media only screen and (max-width: 767px) {
  .footer-up {
    flex-direction: column;
  }

  .footer-linkbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff;
    margin-top: 3%;
  }

  .footer-list {
    width: 50%;
  }

  h1 img {
    width: 100px;
    height: 50px;
  }

  .search-bar {
    font-size: 14px;
    padding: 7px 10px;
  }

  .search-btn-text::after {
    font-size: 26px;
  }
}

@media only screen and (max-width:640px) {
  .social ul li:focus {
    transform: translate(110px, 0);
    background: #ff73007b;
  }

  .social ul li:focus a {
    color: #000;
  }

  .social ul li:focus i {
    color: #fff;
    background: rgba(0, 0, 0, 0.36);
    transform: rotate(360deg);
    transition: all 1s;
  }

}

@media only screen and (max-width:640px) {

  .footer-heading {
    font-size: 20px;
  }

  .footer-list {
    padding: 0;
  }

  .footer-list li {
    margin-bottom: 5%;
    font-size: 14px;
  }

}

@media only screen and (max-width: 480px) {

  .call::after {
    font-size: 26px;
  }

  .footer-list li {
    border-bottom: 1px solid #fff;
  }

  .footer-socials-list {
    justify-content: space-between;
  }

  .footer-last {
    margin-top: 10px;
    text-align: center;
  }

  .footer-last-links {
    justify-content: space-between;
  }

  .category-links a {
    font-size: 14px;
  }

  .footer-link {
    font-size: 12px;
  }

  .footer-heading {
    font-size: 14px;
  }

  .footer-social {
    height: 15px;
    width: 15px;
    padding: 15px;
  }

  .footer-social::before {
    font-size: 20px;
  }

  .footer-last {
    font-size: 14px;
  }

  .footer-down {
    margin: 20px 0 20px;
}

}

/* RESPONSIVE STYLING ENDS HERE */

/* SKELETON LOADER STYLING STARTS HERE */

.skeleton-loader {
  background: linear-gradient(90deg, #e0e0e0 25%, #f2f2f2 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.banner-skeleton {
  height: 90vh;
}
.vehicle-skeleton, .product-skeleton, .blog-skeleton, .faq-skeleton {
  height: 100px;
  margin: 10px 0;
}

.vehicle-skeleton {
  flex-basis: 32%;
  height: 400px;
  border-radius: 0.9rem;
}

.product-skeleton {
  flex-basis: 23%;
  height: 550px;
}
/* SKELETON LOADER STYLING ENDS HERE */


/* ----------------------------- BLOG CARDS STYLING STARTS FROM HERE ----------------------------- */
.highlights-remove {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.blog-section-container {
  background: #000;
  padding: 1px 0;
}

.blog-section {
  /* padding: 40px; */
  padding-top: 1px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.blog-card {
  background: #ffffff;
  /* border-radius: 8px; */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .blog-card:hover {
      transform: translateY(-5px);
  }
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #333;
}

.tags {
  font-size: 0.75rem;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tags span {
  background: transparent;
  border: 1px solid #ff4400;
  padding: 2px;
  border-radius: 3px;
  text-transform: uppercase;
  color: #ffffff;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.tags span:hover {
  background: #ff4400;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff5e00;
  margin-bottom: 10px;
}

.blog-desc {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 10px;
  display: -webkit-box;             
  -webkit-line-clamp: 3;             
  -webkit-box-orient: vertical;     
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #ffffff;
  border-top: 1px solid #ffffff;
  padding-top: 10px;
  margin-top: auto;
}

.blog-meta span {
  display: inline-block;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .blog-section {
      flex-direction: column;
      align-items: center;
      padding: 0px;
      padding-bottom: 25px;
  }

  .blog-card {
      width: 97%;
  }
}
/* ----------------------------- BLOG CARDS STYLING ENDS HERE ----------------------------- */

/* ----------------------------- SKELETON STYLING STARTS FROM HERE (BLOG) ----------------------------- */
.blog-skeletons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.blog-skeleton-card {
  width: 380px;
  background: #333;
  /* border-radius: 8px; */
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.3s ease-in-out;
}

.skeleton-img {
  width: 100%;
  height: 210px;
  background: #4d4c4c;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skeleton-tags {
  display: flex;
  gap: 8px;
}

.skeleton-tag {
  width: 60px;
  height: 14px;
  border-radius: 7px;
  background: #4d4c4c;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-tag.short {
  width: 40px;
}

.skeleton-title {
  width: 80%;
  height: 18px;
  border-radius: 4px;
  background: #4d4c4c;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-desc {
  width: 100%;
  height: 14px;
  border-radius: 4px;
  background: #4d4c4c;
  animation: shimmer 1.5s infinite linear;
}

.skeleton-desc.short {
  width: 70%;
}

.skeleton-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.skeleton-meta-line {
  width: 30%;
  height: 12px;
  border-radius: 4px;
  background: #4d4c4c;
  animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
  0% {
      background-position: -200% 0;
  }

  100% {
      background-position: 200% 0;
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: scale(0.98);
  }

  to {
      opacity: 1;
      transform: scale(1);
  }
}
/* ----------------------------- SKELETON STYLING ENDS HERE (BLOG) ----------------------------- */


/* -----------------------------VEHICLE MODEL SECTION STYLING STARTS FROM HERE ----------------------------- */
.vehicles-section {
  background-color: #000;
  padding: 60px;
  padding-top: 0px !important;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden;
}

.section-heading {
  font-size: 23px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  position: relative;
}

.section-heading::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #e54c00;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

.vehicles-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 0 10px;
}

.card {
  background: #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: 0.3s ease;
  max-width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
      transform: translateY(-6px);
  }
}

.card-header {
  position: relative;
  background: #fff;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--highlight-color);
  border-radius: 20px;
  font-weight: 600;
  color: #fff;
}

.name-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: black;
  /* background: var(--highlight-color); */
  border-radius: 3px;
  font-weight: 600;
  color: #fff;
}

.brand-tag,
.name-tag {
  font-size: 11px;
  padding: 4px 12px;
}

/* === IMAGE === */
.imgBx {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px 0;
}

.imgBx img {
  width: auto;
  max-width: 100%;
  height: 160px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover .imgBx img {
      transform: scale(1.1);
  }
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 12px 10px;
  gap: 10px;
}

.card-body h2 {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-top: 0px;
}

.specs {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  gap: 3px;
  width: 100%;
  justify-content: center;
}

.spec h4 {
  text-align: left;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 4px;
}

.sizes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.sizes a {
  background: #fff;
  color: #000;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.explore-btn {
  margin: 10px auto 0 auto;
  margin-top: auto;
  padding: 6px 12px;
  background: linear-gradient(135deg, #ff5e00, #ff9500);
  color: #fff;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
  cursor: pointer;
}

/* .explore-btn::after {
  content: "→";
  font-size: 16px;
  transition: transform 0.3s ease;
} */

@media (min-width: 1024px) {
  .vehicles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .vehicleSkeleton-card {
    flex: 1 1 calc(25% - 24px);
    max-width: calc(25% - 24px);
    box-sizing: border-box;
  }

  .vehicles-container > .card {
    flex: 1 1 calc(25% - 24px); /* 4 cards per row, accounting for gap */
    max-width: calc(25% - 24px);
    box-sizing: border-box;
  }
}

@media (hover: hover) and (pointer: fine) {
  .explore-btn:hover {
      background-color: #e54c00;
      background: linear-gradient(135deg, #e85700, #ff6f00);
      transform: translateY(-2px);
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 768px) {
  .vehicles-section {
      padding: 40px 16px;
  }

  .vehicles-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      justify-content: center;
  }

  .sizes a {
      width: 100%;
      text-align: center;
  }

  .imgBx img {
      height: 110px;
  }

  .card-body {
      padding: 14px;
      gap: 10px;
  }

  .card-body h2 {
      font-size: 15px;
  }

  .explore-btn {
      padding: 7px 14px;
      font-size: 12px;
  }
}

/* ----------------------------- VEHICLE MODEL SECTION STYLING ENDS HERE  ----------------------------- */


  /* ----------------------------- SKELETON STYLING STARTS FROM HERE(VEHICLE MODEL) ----------------------------- */
  .vehicleSkeleton-card {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    animation: vehicleSkeleton-pulse 1.6s infinite ease-in-out;
}

@keyframes vehicleSkeleton-pulse {
    0% {
        background-color: #2a2a2a;
    }

    50% {
        background-color: #3a3a3a;
    }

    100% {
        background-color: #2a2a2a;
    }
}

.vehicleSkeleton-header {
    padding: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1e1e1e;
}

.vehicleSkeleton-brandTag,
.vehicleSkeleton-nameTag {
    height: 16px;
    width: 60px;
    border-radius: 20px;
    background-color: #444;
    position: absolute;
}

.vehicleSkeleton-brandTag {
    top: 10px;
    left: 10px;
}

.vehicleSkeleton-nameTag {
    top: 10px;
    right: 10px;
}

.vehicleSkeleton-imgBox {
    height: 160px;
    width: 100%;
    background-color: #444;
    border-radius: 8px;
    margin-top: 20px;
}

.vehicleSkeleton-body {
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.vehicleSkeleton-specLine {
    height: 12px;
    width: 80%;
    background-color: #444;
    border-radius: 6px;
}

.vehicleSkeleton-specLine.short {
    width: 60%;
}

.vehicleSkeleton-button {
    height: 36px;
    width: 130px;
    background-color: #444;
    border-radius: 30px;
}

/* ----------------------------- SKELETON STYLING ENDS HERE ----------------------------- */


/* NAVBAR STYLING STARTS FROM HERE */

:root {
  --primary-color: #ff5e00; /* Orange */
  --dark-color: #333; /* Dark Gray */
  --black-color: #000; /* Black */
  --white-color: #fff; /* White */
}

.navbar {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1a1a1a;
  color: white;
  /* padding: 4px 10px; */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex-wrap: 0;
}

.navbar-logo {
  font-size: 1.8em;
  font-weight: 600;
  color: #ff5e00;
  margin-right: 20px;
  cursor: pointer;
}

.navbar-search {
  display: flex;
  align-items: center;
  flex-grow: 1;
  max-width: 500px;
  background-color: #333;
  border-radius: 5px;
  padding: 5px;
  position: relative;
  margin: 0 20px;
}

.navbar-search input[type="text"] {
  padding: 10px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  flex-grow: 1;
  background-color: transparent;
  color: white;
  outline: none;
}

.navbar-search button {
  background-color: #ff5e00;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 16px;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #282828; /* New background color */
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000;
  max-height: 400px;
  list-style: none;
  overflow-y: auto;
  overflow-x: hidden;
}

.search-suggestions.active {
  display: block;
}

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

.search-suggestions li {
  padding: 10px 15px;
  border-bottom: 1px solid #444; /* Lighter border color */
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.2s ease;
}

.search-suggestions li:hover {
  background-color: #444; /* Lighter hover effect */
}

.search-suggestions li:last-child {
  border-bottom: none;
}

.search-suggestions li .product-search-image {
  margin-right: 15px;
  border-radius: 5px;
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

.search-suggestions li .product-search-details {
  display: flex;
  flex-direction: column;
}

.search-suggestions li .product-search-name {
  font-size: 16px;
  font-weight: bold;
  color: #fff; /* Text color changed to white for better contrast */
}

.search-suggestions li .product-search-price {
  font-size: 14px;
  color: #ccc; /* Lighter color for price */
  margin-top: 5px;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar-nav li {
  margin: 0 15px;
  position: relative;
}

.navbar-nav a {
  color: #808080;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 10px 0;
}

.navbar-nav a:hover {
  color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #1a1a1a;
  min-width: 200px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1000;
  list-style: none;
  padding: 0;
  left: 0;
}

.dropdown-content li {
  margin: 0;
  padding: 10px 15px;
  border-bottom: 1px solid #333;
}

.dropdown-content li:last-child {
  border-bottom: none;
}

.navbar-nav li:hover .dropdown-content {
  display: block;
}

.brand-dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
}

.brand-dropdown::-webkit-scrollbar {
  width: 8px;
}

.brand-dropdown::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.menu-icon {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

.cart-dropdown, .search-suggestions::-webkit-scrollbar {
  width: 8px;
}

.cart-dropdown, .search-suggestions::-webkit-scrollbar-track {
  background: #222;
  border-radius: 10px;
}

.cart-dropdown, .search-suggestions::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 10px;
  border: 2px solid #222;
}

.cart-dropdown, .search-suggestions::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}

.nav-logo {
  height: 45px;
  width: 90px;
}

.navbar-left {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-right: auto;
}

.cart-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 24px;
    z-index: 9999;
}

.cart-icon i {
    font-size: 20px;
    color: var(--white-color);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  height: 100%;
  background-color: #1a1a1a;
  box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu .close-menu {
  position: absolute;
  top: 15px;
  -webkit-tap-highlight-color: transparent;
  right: 15px;
  background: #ff5e00;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.mobile-menu .close-menu:hover {
  background-color: #ff7300;
  transform: scale(1.1);
}

.mobile-menu .navbar-nav {
  display: block;
  padding: 0;
  margin-top: 40px;
}

.mobile-menu .navbar-nav li {
  margin: 10px 0;
  padding: 12px 10px;
  border-bottom: 1px solid #333;
  text-align: left;
  transition: background-color 0.3s ease;
  position: relative; 
}

.mobile-menu .navbar-nav li:hover {
  background-color: #282828;
}

.mobile-menu .navbar-nav li:last-child {
  border-bottom: none;
}

.mobile-menu .navbar-nav a {
  color: #808080;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease;
  font-size: 16px;
}

.mobile-menu .navbar-nav a:hover,
.mobile-menu .navbar-nav a.active {
  color: white;
}

.mobile-menu .dropdown-content {
  position: relative;
  display: none;
  width: 100%;
  box-shadow: none;
  background-color: #282828;
  padding-left: 20px;
  margin-top: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.mobile-menu .navbar-nav li.active .dropdown-content {
  display: block;
  animation: slideDown 0.3s ease;
}

.mobile-menu .dropdown-content li {
  padding: 10px 0;
  border-bottom: 1px solid #444;
}

.mobile-menu .dropdown-content li:last-child {
  border-bottom: none;
}

.mobile-menu .brand-dropdown {
  max-height: 40vh;
  overflow-y: auto;
}

@keyframes slideDown {
  from {
      transform: translateY(-20px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

/* +- button styling */
.mobile-menu .navbar-nav li .dropdown-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  cursor: pointer;
  color: #808080;
  transition: color 0.3s ease;
}

.mobile-menu .navbar-nav li .dropdown-toggle:hover {
  color: white;
}

.mobile-menu::-webkit-scrollbar {
  width: 8px;
}

.mobile-menu::-webkit-scrollbar-track {
  background: #222;
  border-radius: 10px;
}

.mobile-menu::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 10px;
  border: 2px solid #222;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}

.clear-btn {
  display: none;
  margin-right: 6px;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
  border: none;
}

.clear-btn:hover {
  color: #ff5e00;
}

@media (max-width: 768px) {
  .navbar-left {
      flex-basis: 100%;
      justify-content: space-between;
      align-items: center;
      display: flex;
      flex-wrap: wrap;
  }

  .navbar-logo {
      margin-right: auto;
  }

  .navbar-search {
      order: 2;
      width: 100%;
      margin: 10px 0;
      max-width: 100%;
  }

  .navbar-nav {
      display: none;
      flex-direction: column;
      position: relative;
      top: 60px;
      right: 0;
      width: 100%;
      background-color: #1a1a1a;
      text-align: center;
      z-index: 10;
  }

  .navbar-nav.active {
      display: flex;
  }

  .navbar-nav li {
      margin: 0;
      padding-bottom: 15px;
      width: 100%;
      border-bottom: 1px solid #333;
  }

  .navbar-nav li:last-child {
      border-bottom: none;
  }

  .dropdown-content {
      position: absolute;
      display: none;
      width: 100%;
      box-shadow: none;
  }

  .navbar-nav li:hover .dropdown-content {
      display: none;
  }

  .navbar-nav li.active .dropdown-content{
      display: block;
  }

  .menu-icon {
    display: block;
    margin-left: 15px;
    margin-top: 9px;
  }

  .cart-dropdown {
      right: auto;
      left: 0;
      min-width: 90%;
      max-width: 95%;
      top: 60px;
  }
}

@media (max-width: 480px) {
  .navbar-search {
      width: calc(100% - 40px);
      max-width: 80%;
  }

  .cart-icon {
      margin-left: 10px;
      -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 768px) {
    .cart-dropdown {
        width: 100%;
        padding: 15px;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-img {
        width: 60px;
        height: 60px;
    }

    .cart-item-name {
        font-size: 14px;
    }

    .cart-dropdown-total {
        font-size: 16px;
    }

    .checkout-btn {
        padding: 8px 16px;
    }

    .close-cart {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
  .cart-dropdown {
      width: 100%;
      padding: 10px;
  }

  .cart-item-img {
      width: 50px;
      height: 50px;
  }

  .cart-dropdown-total {
      font-size: 14px;
  }

  .checkout-btn {
      width: 100%;
      padding: 12px 0;
  }

  .close-cart {
      font-size: 18px;
  }
}

@media (max-width: 768px) {
  .navbar-left {
      flex-basis: 100%;
      justify-content: space-between;
      align-items: center;
      display: flex;
      flex-wrap: wrap;
  }

  .navbar-logo {
      margin-right: auto;
  }

  .navbar-search {
      order: 1;
      width: calc(100% - 40px);  
      margin: 10px 0;
      display: inline-flex; 
  }

  .cart-icon {
      order: 2;
      margin-left: 10px;  
      display: inline-flex;
      align-items: center;
      -webkit-tap-highlight-color: transparent;
  }

  .navbar-nav {
      display: none;
      flex-direction: column;
      position: relative;
      top: 60px;
      right: 0;
      width: 100%;
      background-color: #1a1a1a;
      text-align: center;
      z-index: 10;
  }

  .navbar-nav.active {
      display: flex;
  }

  .navbar-nav li {
      margin: 0;
      padding-bottom: 15px;
      width: 100%;
      border-bottom: 1px solid #333;
  }

  .navbar-nav li:last-child {
      border-bottom: none;
  }

  .dropdown-content {
      position: absolute;
      display: none;
      width: 100%;
      box-shadow: none;
  }

  .navbar-nav li:hover .dropdown-content {
      display: none;
      padding: 0;
  }

  .navbar-nav li.active .dropdown-content{
      display: block;
  }

  .menu-icon {
      display: block;
      -webkit-tap-highlight-color: transparent;
  }

  .cart-dropdown {
      right: auto;
      left: 0;
      min-width: 90%;
      max-width: 95%;
      top: 60px;
  }
}

@media (max-width: 480px) {
  .navbar-search {
      width: calc(100% - 40px);
      max-width: 100%;
  }

  .cart-icon {
      margin: 0px;
      margin-left: 10px;
      margin-top: 15.5px;
  }
  input, textarea, select {
    font-size: 16px; 
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 8px 10px;
    align-items: flex-start;
  }

  .navbar-left {
    order: 1;
    flex: 1;
    justify-content: space-between;
  }

  .menu-icon {
    order: 3;
    display: block;
    -webkit-tap-highlight-color: transparent;
  }

  .cart-icon {
    order: 2;
    margin-left: 15px;
    margin-top: 13px;
    margin-right: 0;
  }

  .navbar-search {
    order: 4;
    width: 100%;
    margin: 5px 0 0;
  }

  .navbar-nav {
    display: none;
  }
}

/* NAVBAR STYLING ENDS HERE */

/* HEADER STYLING STARTS HERE */
h2 img {
  height: 70px;
  width: 150px;
}

.active {
  color: rgb(255, 98, 0);
}

header {
  top: 0;
  background-color: #0f0f0f;
  color: #fff;
  /* padding: 10px 0; */
  /* margin-bottom: 20px; */
  z-index: 99;
  position: sticky;
}

header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.renderCartData {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  max-width: 400px;
  padding: 20px;
  z-index: 999;
  background: #0f0f0f;
  box-shadow: -2px 0 4px #ff7300;
  transition: 0.5s;
  overflow-y: auto;
}

.renderCartData::-webkit-scrollbar-track {
  border: 3px solid rgb(0, 0, 0);
  /* // border color does not support transparent on scrollbar */
  /* // border-color: transparent; */
  background-color: rgb(147, 149, 152);
}

.renderCartData::-webkit-scrollbar {
  width: 7px;
  background-color: #dfe6e9;
}

.renderCartData::-webkit-scrollbar-thumb {
  background-color: #ff7300;
  border-radius: 10px;
}

.cartProductDetail {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  width: 50%;
}

.cartProductDetail h6 {
  font-size: 14px;
  margin-bottom: 8px;
}

.cart-styling {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ff7300;
}

.cartImageElement {
  width: 15%;
  max-height: 20%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: #555454 0px 0px 10px 5px;
}

.renderCartData.active {
  right: 0;
  transition: 0.5s;
}

.trash {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 3.5px;
  transition: 0.5s;
  cursor: pointer;
}

.trash:hover .lid,
.trash:hover .lidcap {
  transform: rotate(15deg);
  margin-bottom: 10.5px;
  background: red;
}

.trash:hover .lidcap {
  transform: translate(-1px, -2px) rotate(20deg);
}

.trash:hover .lid {
  transform-origin: bottom right;
}

.trash:hover .bin {
  border-top: 15px solid red;
}

.lidcap,
.lid,
.bin {
  position: absolute;
  transition: 0.5s;
}

.lidcap,
.lid {
  border-top-left-radius: 2.8px;
  border-top-right-radius: 2.8px;
  background: #fff;
}

.lidcap {
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 5px;
}

.lid {
  top: 2px;
  left: 0;
  width: 100%;
  height: 3px;
}

.bin {
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 15px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.cart-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

#totalPrice {
  font-size: 20px;
}

.cross {
  color: red;
  font-size: 0;
  text-align: right;
}

.cross::after {
  content: "❌";
  font-size: 28px;
  cursor: pointer;
}

.cart-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}

.total {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  border-top: 1px solid #ff7300;
}

.total-title {
  font-size: 18px;
  font-size: 600;
  margin-top: 16px;
}

.total-price {
  font-size: 16px;
  margin: 16px 0 0 14px;
}

.call {
  font-size: 0;
  position: relative;
}

.call::after {
  content: "\f2a0";
  color: rgb(255, 98, 0);
  font-size: 30px;
}

.call::before {
  content: "";
  border: 3px solid rgb(255, 98, 0);
  border-radius: 50%;
  display: block;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.call:hover::before {
  animation: ripple 1.5s infinite;
}

/* NAV STYLING STARTS HERE */
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: fixed;
  left: -9999px;
}
/* NAV STYLING ENDS HERE */

/* HEADER STYLING ENDS HERE */


/* SEARCH STYLING STARTS HERE */
.cart-checkout-btn {
  padding: 15px;
  background-color: #444;
  border-radius: 15px;
  transition: 0.5s;
}

.cart-checkout-btn:hover {
  background-color: #fff;
  color: #0f0f0f;
}

.search-products-list::-webkit-scrollbar {
  display: none;
}

.search-product {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}

.search-product img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
}

.s-p-heading,
.s-p-price {
  font-size: 20px;
  color: #1d1d1d;
}

/* SEARCH STYLING ENDS HERE */

/* POPUP STYLING STARTS HERE */

.popup-container {
  display: none;
  position: fixed;
  top: 16%;
  right: 0%;
  transform: translate(-10%, -50%);
  z-index: 9999;
  overflow: hidden;
}

.popup-box {
  width: 25px;
  height: 25px;
  padding: 10px;
  border-radius: 50%;
  background-color: black;
  border: 1px solid #ff7300;
  box-sizing: content-box;
  display: flex;
  flex-direction: row;
  color: white;
  animation: popup-animation 1.5s ease-in-out 1.5s forwards;
  align-content: center;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.exclamation {
  font-size: 30px;
  font-weight: 900;
  margin: 0 15px;
  color: red;
  animation: rotate-animation 1.5s ease-in-out forwards;
}

.message {
  text-align: center;
  /* display: none; */
  /* Initially hidden */
  transition: 0.5s;
}

.message.show {
  display: block;
}

.reverse-animation {
  animation: reverse-popup-animation 1.5s ease-in-out;
}

@keyframes reverse-popup-animation {
  0% {
    width: 200px;
    flex-wrap: nowrap;
    border-radius: 15px;
  }

  100% {
    width: 30px;
    text-decoration: none;
  }
}

@keyframes popup-animation {
  0% {
    width: 30px;
    text-decoration: none;
  }

  30% {
    border-radius: 15px;
  }

  100% {
    width: 200px;
    flex-wrap: nowrap;
    border-radius: 15px;
  }
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* POPUP STYLING ENDS HERE */

/* -----------------------------ADD TO CART NOTIFICATION STYLING STARTS FROM HERE ----------------------------- */
.notification {
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: rgb(255, 94, 0);
  color: #fff;
  padding: 16px 20px 22px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  max-width: 90vw;
  font-size: 16px;
  z-index: 9999;
  overflow: hidden;
  gap: 10px;
}

.notification.show {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.close-btn-for-notification {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 5px;
}

.close-btn-for-notification:active {
  opacity: 0.7;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: white;
  width: 0%;
  animation: progress 3s linear forwards;
}

@keyframes progress {
  from {
      width: 0%;
  }

  to {
      width: 100%;
  }
}

@media (max-width: 480px) {
  .notification {
      right: 10px;
      left: 10px;
      max-width: unset;
      font-size: 14px;
      padding: 14px 16px 20px;
  }
}
/* ----------------------------- ADD TO CART NOTIFICATION STYLING ENDS HERE ----------------------------- */

@media only screen and (max-width: 480px) {
  .renderCartData {
      width: 80%;
  }

  .cartImageElement {
    /* height: 150px; */
    width: 70px !important;
  }

  .cart-checkout-btn {
    padding: 10px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 480px) {

  h1 img {
    width: 80px;
    height: 40px;
  }

  #totalPrice {
    font-size: 16px;
  }

  footer {
    padding: 30px 0;
  }

  .footer-social::before {
    font-size: 16px;
  }

  .s-p-heading,
  .s-p-price {
    font-size: 14px;
  }
}

/* ---------------------------- CHAT BOT STYLING STARTS FROM HERE ---------------------------- */
.chat-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #e74c3c;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  -webkit-tap-highlight-color: transparent;
  font-family: "Montserrat", sans-serif;
}

.chat-button:hover {
  transform: scale(1.1);
  background: #c0392b;
}

/* Chat Container */
.chat-container {
  position: fixed;
  max-height: 80%;
  bottom: 100px;
  right: 30px;
  width: 350px;
  max-width: 90%;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  font-family: "Montserrat", sans-serif;
}

.chat-header {
  background: #e74c3c;
  color: white;
  padding: 15px;
  font-size: 1.2em;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.chat-body {
  padding: 15px;
  height: 400px;
  overflow-y: auto;
  background: #f9f9f9;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Scrollbar */
.chat-body::-webkit-scrollbar {
  width: 8px;
}

.chat-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Input Section */
.input-section {
  padding: 15px;
  background: white;
  border-top: 1px solid #eee;
}

.quick-options {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between;  */
  gap: 8px; 
  margin-bottom: 10px;
  -webkit-tap-highlight-color: transparent;
}

.quick-option {
  background: #f1f1f1;
  color: #333;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  white-space: nowrap;
}

.quick-option:hover {
  background: #e74c3c;
  color: white;
}

.quick-option .fa-headset,
.quick-option .fa-whatsapp {
    margin-right: 8px;
}

.chat-quick-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; 
  gap: 8px; 
  margin-bottom: 10px;
}

.chat-quick-option {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between; 
  gap: 10px; 
  background: #e74c3c;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 10px;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: bolder;
  white-space: nowrap;
  width: 100%;
}

.chat-quick-option:hover {
  background: #f1f1f1;
  color: #333;
}

.input-row {
  display: flex;
  gap: 10px;
}

.chat-input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.chat-input::placeholder {
  color: #5c5b5b;;
  opacity: 1;
}

.send-btn {
  background: #e74c3c;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.send-btn:hover {
  background: #c0392b;
}

.send-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* Messages */
.chatbot-message {
  max-width: 80%;
  padding: 12px 18px;
  border-radius: 20px;
  word-wrap: break-word;
  font-size: 13px;
  color: black;
}

.bot-message {
  background: white;
  border: 1px solid #eee;
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

.user-message {
  background: #e74c3c;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

.typing-indicator {
  display: inline-flex;
  padding: 12px 18px;
  background: #eee;
  border-radius: 20px;
  align-self: flex-start;
}

.dot {
  width: 8px;
  height: 8px;
  margin: 0 3px;
  background: #999;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.enquiry-form-container {
  width: 100%;
  margin: 0;
  background: #ffffff;
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
  overflow: visible;

  .chat-body {
    width: 100%;
  }
}

.navbar-search input::placeholder {
  color: #ff7300;
  opacity: .5;
}

.form-header {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 10px;
  text-align: center;
  position: relative;
}

.form-header h2 {
  margin: 0;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.enquiry-form {
  padding: 15px;
  background: #f9f9f9;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
  text-align: start;
}

.form-label i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #e74c3c;
  font-size: 18px;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: white;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #e74c3c;
  box-shadow: 0 3px 15px rgba(231, 76, 60, 0.1);
  outline: none;
}

.form-input:disabled {
  background: #f8f9fa;
  color: #666;
}

.form-textarea {
  height: 100px;
  resize: vertical;
  width: 100%;
}

.form-textarea::placeholder {
  color: #5c5b5b;
  opacity: 1;
}

.enquire-now-btn {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.enquire-now-btn:hover {
  background: linear-gradient(135deg, #f31d06, #f13e2b);
  /* background: linear-gradient(135deg, #44e279, #39e022); */
}

.deactivated-enquire-now-btn {
  cursor: not-allowed;
  background: #333;
}

.deactivated-start-chat-btn {
  cursor: not-allowed;
  opacity: .5;
}

.quick-options .fa-whatsapp {
  color: #333;
}

.quick-options .fa-whatsapp:hover {
  color: white;
  background: transparent;
}

@media (max-width: 480px) {
  .chat-container {
      width: 87%;
      right: 2.5%;
      bottom: 85px;
      height: 69%;
  }
  
  .chat-body {
      height: 60vh;
  }
  
  .chat-button {
      bottom: 20px;
      right: 20px;
  }

  .chat-input, .form-input {
    font-size: 16px;
  }
  
  .quick-options {
      gap: 5px;
  }

  .quick-option:hover {
    background: #f1f1f1;
    color: #333;
  }

  .quick-option:active {
    background: #e74c3c;
    color: white;
  }
  
  .quick-option {
      padding: 6px 10px;
      font-size: 11px;
  }

  .enquire-now-btn:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
  }

  .deactivated-enquire-now-btn:hover {
    cursor: not-allowed;
    background: #333;
  }

  .enquiry-form {
    padding: 15px;
}
}
/* ---------------------------- CHAT BOT STYLING ENDS HERE ---------------------------- */
