@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #30a358;
  --secondary: #0e4822;
  --white: #fff;
  --dark: #111;
}


body {
  margin: 0;
  padding: 0 !important;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  overflow: inherit !important;
  font-size: 14px;
  line-height: 1.6;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
  background: none;
  border: solid 1px #eee;
  color: #444;
  font-size: 14px;
  line-height: 1;
  margin: 0 0 15px;
  padding: 11px 20px;
  width: 100%;
  outline: 0;
  border-radius: 20px;
}

select,
input[type="date"] {
  padding: 14px 17px;
}

input[type="submit"] {
  color: var(--white);
  background: var(--primary);
  border: none;
  padding: 10px 20px;
  border: 0;
  letter-spacing: 0.5px;
  cursor: pointer;
  outline: none;
  font-weight: 500;
  border-radius: 20px;
  text-transform: uppercase;
}

input[type="submit"]:hover {
  background: var(--secondary);
  transition: 0.8s;
}

textarea {
  height: 100px;
  margin-bottom: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px 0;
  font-family: 'Poppins', sans-serif;
  color: #050A15;
  font-weight: 500;
  text-transform: inherit;
  line-height: 1.2;
}

h1 {
  font-size: 28px
}

h2 {
  font-size: 24px
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px
}

h6 {
  font-size: 16px
}

p {
  padding: 0;
  margin: 0 0 10px 0;
  color: #525252;
  line-height: 1.65;
}

ul,
li,
a {
  list-style-type: none;
  color: #222;
}

a:hover {
  transition: 0.8s;
  text-decoration: none;
}


.heading,
.leftheading {
  margin-bottom: 30px;
  font-size: 40px;
  position: relative;
  font-weight: 600;
  background: url(../images/heading-img.webp) no-repeat center bottom / contain;
  padding-bottom: 25px;
  background-size: 120px;
}

.leftheading {
  background-position: 0 bottom;
}

.heading {
  text-align: center;
}

.subheading {
  font-size: 16px;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.zoomeffect {
  overflow: hidden;
  position: relative;
}

.zoomeffect img {
  transition: transform 0.8s ease-in-out;
}

.zoomeffect:hover img {
  transform: scale(1.1);
}

.section-padding {
  padding: 60px 0;
}

.section-paddinglg {
  padding: 120px 0 80px;
}


/* TOPBAR SECTION CSS */

.topbar {
  background: var(--secondary);
  padding: 6px 0;
  position: relative;
}

.topbar:before,
.topbar:after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 0 0 50px 0;
  border-right: 10px solid var(--white);
  width: 70px;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.topbar:after {
  border-radius: 0 0 0 50px;
  border-left: 10px solid var(--white);
  border-right: none;
  left: auto;
  right: 0;
}

.topbar-info {
  background: var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
}

.topbar-info p:not(:last-child) {
  margin-right: 25px;
  padding-right: 25px;
  border-right: 3px solid #ffffff5e;
}

.topbar p,
.topbar p a {
  margin: 0;
  color: var(--white);
  line-height: 1;
}

.topbar p i {
  margin-right: 7px;
}

ul.smoicons {
  background: #ffffff14;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid #ffffff42;
}

ul.smoicons li a {
  color: var(--white);
}

/* HEADER SECTION CSS */

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 4;
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 3px 20px #0000000f;
}

.menubar img {
  height: 60px;
}


/* SLIDER SECTION CSS */


.mainslider {
  position: relative;
}

.carousel-caption-inner {
  max-width: 600px;
}

.carousel-caption-inner span {
  display: inline-block;
  padding: 10px 20px 9px;
  background: #0000001f;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1;
  border-radius: 30px;
  border: 1px solid #ffffff69;
  backdrop-filter: blur(5px);
}

.mainslider #carouselExampleFade img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 2;
}


.mainslider .carousel-caption h1 {
    font-size: 44px;
    margin-bottom: 0;
    font-weight: 600;
    display: block;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: 1px;
}

.mainslider .carousel-caption p {
  margin: 15px 0 22px;
  color: #d7d7d7;
  font-size: 17px;
}


.bannerform {
  background-color: var(--secondary);
  background-image: repeating-linear-gradient(45deg, #ffffff0d 0, #ffffff00 2px, transparent 0, transparent 50%);
  background-size: 10px 10px;
  padding: 0 30px 30px;
  margin-top: -40px;
  position: relative;
  border-radius: 20px;
  border-top: 3px solid #38b664;
}
.bannerform-heading i {
    font-size: 30px;
    line-height: .5;
    margin-right: 15px;
}

.bannerform-heading {background: linear-gradient(0deg, #196835, #38b664);padding: 12px 25px;border-radius: 0 0 40px 40px;}

.bannerform label {
  color: var(--white);
  font-weight: 400;
  margin-bottom: 5px;
}

.bannerform input,
.bannerform select {
  width: 100%;
  background: #4370527d;
  border-radius: 30px;
  font-size: 14px;
  padding: 12px 18px;
  margin: 0;
  border: 1px solid #ffffff4d;
  color: #ffffffdb;
  outline: none;
  max-height: 45px;
  font-weight: 300;
}

.bannerform input::placeholder {
  color: #ffffffdb;
}

.bannerform input[type="submit"] {
  background: var(--primary);
  width: 100%;
  padding: 12px;
  border: none;
  color: var(--white);
  font-weight: 500;
}

span.wpcf7-spinner {
    position: absolute !important;
    margin: 10px 2px;
}

.bannerform form p {
  margin: 0;
}

/* BENEFITS SECTION CSS */

.benefits {
  margin-top: 60px;
  background: linear-gradient(0deg, #000000cc, #000000e0), url(../images/benefits-bg.jpg)no-repeat center center/cover;
  background-attachment: fixed;
  position: relative;
}

.benefits:before,
.benefits:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url(../images/white-divider.png)no-repeat center top/cover;
}

.benefits:after {
  top: 0;
  bottom: auto;
  transform: rotate(180deg);
}

.benefits .leftheading {
  color: var(--white);
}

.benefits figure img {
  width: 100%;
}

.benefitslist {
  background-color: #65e491;
  padding: 25px 0px 25px 20px;
  border-left: 5px solid var(--primary);
  border-right: 5px solid var(--primary);
  margin-left: auto;
  display: flex;
  align-items: center;
  border-radius: 20px;
}

.benefitslist:not(:last-child) {
  margin-bottom: 15px;
}

.benefitslist:nth-child(2) {
  width: 94%;
  background: #91f1b3;
}

.benefitslist p {
  margin: 0;
  color: #242424;
}

.benefitslist h3 {
  font-weight: 600;
  margin-bottom: 8px;
}

.benefitslist:nth-child(3) {
  width: 88%;
  background: #caffdd;
}

.benefitslist figure img {
  width: 44px;
  height: 44px;
  filter: invert(1);
}

.benefitslist figure {
  margin: 0;
  height: 90px;
  width: 90px;
  background: var(--secondary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.benefitslist-info {
  width: 75%;
  margin-left: 20px;
}


/* WHY CHOOSE US SECTION CSS */

.whychooseuslist {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.whychooseuslist figure img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/ 1.18;
}

.whychooseuslist-info {
    padding: 0 20px 25px;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    background: linear-gradient(0deg, #06200f, transparent);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}

.whychooseuslist-info h3 {
  margin-bottom: 0;
  color: var(--white);
}

.whychooseuslist-info p {
  margin: 0;
  color: var(--white);
  max-height: 0;
  overflow: hidden;
  transition: .5s;
  opacity: 0;
}

.whychooseuslist:hover p {
  max-height: 200px;
  opacity: 1;
}

/* HOMEABOUT SECTION CSS */

.homeabout {
  padding: 60px 0;
  overflow: hidden;
  background: #30a3580d url(../images/aboutus-bg.png) no-repeat center center / cover;
  background-attachment: fixed;
}

.homeabout .row {
  display: flex;
  align-items: center;
}

.homeabout-content .leftheading {
  font-size: 36px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.homeabout-content p strong {
  font-size: 20px;
  display: block;
  margin: 15px 0 22px;
  color: var(--secondary);
  letter-spacing: .5px;
}

.homeabout img {
  width: 100%;
  height: auto;
  animation: updown 2s linear alternate infinite;
}

@keyframes updown {
  from {
    transform: translatey(-10px);
  }

  to {
    transform: translatey(10px);
  }
}

.homeabout-content {
  background: var(--white);
  padding: 20px 30px 30px;
  border-radius: 20px;
  box-shadow: 5px 5px 25px #00000014;
  border-left: 3px solid var(--primary);
}

.homeabout-content ul {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.homeabout-content ul li {
  line-height: 35px;
  font-size: 16px;
  width: 50%;
  position: relative;
  padding-left: 24px;
  font-weight: 500;
}

.homeabout-content ul li:before {
  position: absolute;
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  left: 0;
  font-size: 14px;
  color: #234896;
}

.homeabout-content .btn-primary {
  margin-top: 10px;
}


.exclusivecar-inner {
    padding: 20px;
    background: #30a3580a;
    border-radius: 20px;
    border: 1px dashed #30a35840;
}

.exclusivecar-inner img {
    border-radius: 15px;
    object-fit: cover;
}

.exclusive-cars-content p:last-child {
    margin: 0;
}

/* SERVICES SECTION CSS CODE */


.services::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.feature-card {
  background: linear-gradient(45deg, var(--secondary), var(--primary));
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, 0.3);
}

.feature-card:hover::after {
  opacity: 1;
}

.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 22px;
  background: #ffffff2b;
}

.card-num {
  position: absolute;
  top: 30px;
  right: 30px;
  line-height: 1;
  font-size: 50px;
  color: transparent;
  font-weight: 800;
  letter-spacing: 1px;
  -webkit-text-stroke: 1px var(--white);
  opacity: .3;
}

.feature-card h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.feature-card p {
  margin: 0;
  color: #cfe1d5;
}

.divider-line {
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin: 20px 0 0;
  border-radius: 2px;
  transition: width 0.35s ease;
}

.feature-card:hover .divider-line {
  width: 70px;
}





/* COUNTER SECTION CSS */


.counter {
  background: linear-gradient(0deg, #092814, #004ab700), url(../images/counter-bg.png) no-repeat center center / cover;
}

.counter .col-lg-3:not(:last-child) .counterlist {
  border-right: 2px dashed #b0f1c62e;
}

.counterlist figure img {
  width: 50px;
  height: 50px;
  filter: invert(1);
}

.counterlist figure {
  height: 100px;
  width: 100px;
  background: var(--primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px dotted var(--white);
}

.counterlist h3 {
  margin: 18px 0 0;
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .5px;
}

.counterlist h3 span {
  display: block;
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 10px;
}

/* HOMEREVIEW SECTION CSS */

.reviews {
  background: linear-gradient(45deg, #ffffff, #ffffff47), url(../images/review-bg.png) no-repeat center top / cover;
}

.reviews .slick-track {
  padding: 12px 0
}

.reviewslist {
  padding: 35px 30px 30px;
  position: relative;
  overflow: hidden;
  background: var(--secondary);
  border-radius: 40px 0;
  transition: .5s;
}

.reviewslist:hover {
  border-radius: 0;
}

.reviewslist:before,
.reviewslist:after {
  position: absolute;
  content: '';
  height: 40px;
  width: 40px;
  right: 10px;
  top: 10px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--primary);
  opacity: .3;
  transition: .3s;
}

.reviewslist:before {
  border-top: 0;
  border-right: 0;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--white);
  left: 10px;
  bottom: 10px;
  right: auto;
  top: auto;
}

.reviewslist:hover:before,
.reviewslist:hover:after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.reviewlist-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  column-gap: 20px;
}

.reviews img {
  height: 52px !important;
  border-radius: 50%;
  outline: 2px dotted #45d176;
  outline-offset: 5px;
  margin-left: 5px;
}

.reviewslist h5 {
  line-height: 1;
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  color: var(--white);
}

.reviewslist h5 span {
  display: block;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 500;
  color: #45d176;
  line-height: 1;
}

.reviewslist .rating i {
  color: #f5a72d;
  font-size: 14px
}

.reviewslist p {
  font-style: italic;
  font-size: 16px;
  letter-spacing: .5px;
  font-weight: 300;
  margin: 0;
  line-height: 1.65;
  color: var(--white);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

.reviewslist i.fa.fa-quote-left {
  position: absolute;
  top: 37px;
  right: 30px;
  font-size: 60px;
  color: var(--white);
  opacity: .1;
}

.rating {
  margin: 22px 0 11px;
}


.whychoose .row {
  align-items: end;
}

.whychoose-content {
  background: var(--secondary);
  padding: 30px;
}

.whychoose-content h2 {
  color: var(--white);
  font-size: 35px;
  font-weight: 600;
}

.whychoose-content h4 {
  color: var(--primary);
  font-size: 20px;
  line-height: 28px;
}

.whychoose-content p {
  color: var(--white);
  font-size: 15px;
  text-align: justify;
  margin-bottom: 0;
}

.whychoose figure {
  padding-left: 40px;
}

.whychoose img {
  width: 100%;
  animation: sliding 2s linear infinite alternate;
  position: relative;
  visibility: visible;
  margin: 0 auto;
  display: block;
}

@keyframes sliding {
  from {
    transform: translateY(10px);
  }

  to {
    transform: translateY(-10px);
  }
}

.homeservices {
  background: var(--primary);
  padding: 115px 0 60px 0;
  margin-top: -70px;
}

.homeservices .col-sm-3 {
  padding: 0 5px;
}

.homeservices-item {
  background: #eef1f8;
  padding: 20px;
  transition: all ease-in-out .5s;
}

.homeservices-item:hover {
  background: var(--white);
  border-radius: 12px;
}

.homeservices-item figure {
  background: var(--primary);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.homeservices-item figure img {
  width: 70px;
}

.homeservices-item h3 {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -.5px;
  text-transform: capitalize;
  min-height: 60px;
  max-height: 60px;
  display: flex;
  align-items: center;
}

.homeservices-item:hover h3 {
  color: var(--secondary);
}

.homeservices-item p {
  margin: 0;
}

/* FOOTER SECTION CSS */


footer {
  position: relative;
  overflow: hidden
}

footer,
footer p,
footer a {
  color: #c5c5c5;
}

footer a:hover {
  color: var(--primary);
}

footer::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, .06) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  pointer-events: none
}

footer::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, .05) 0%, transparent 70%);
  bottom: 100px;
  right: -50px;
  pointer-events: none
}

.footer-cta {
  background: linear-gradient(135deg, #0f1f14 0%, #0a1a0e 100%);
  border-top: 1px solid #ffffff0f;
  border-bottom: 1px solid #ffffff0f;
  padding: 36px 0;
  position: relative
}

.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(34, 197, 94, .015) 80px, rgba(34, 197, 94, .015) 81px);
  pointer-events: none
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #22c55e1f;
  border: 1px solid rgba(34, 197, 94, .2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
}

.cta-heading {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--white);
}

.cta-heading span {
  color: var(--primary)
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-weight: 500;
  padding: 13px 26px;
  line-height: 1;
  border-radius: 50px;
  transition: all .25s;
  white-space: nowrap
}

.cta-btn:hover {
  background: #16a34a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, .25)
}

.cta-btn.ghost {
  background: transparent;
  border: 1px solid rgba(34, 197, 94, .3);
  color: var(--primary)
}

.cta-btn.ghost:hover {
  background: #22c55e1f;
}

.footer-body {
  background: #080d09;
  padding: 40px 0 30px;
}

.brand-name span {
  color: var(--primary)
}

.brand-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  margin-left: 3px;
  vertical-align: super;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.8)
  }
}

.brand-desc {
  margin-top: 20px;
}

a.footer-logo img {
  height: 75px;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .15);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .8rem;
  color: #a8bfb0;
  margin-top: 20px
}

.brand-badge i {
  color: var(--primary)
}

.col-label {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--white);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px
}

.col-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 197, 94, .3), transparent)
}

.menu a {
  padding: 6px 0 6px 20px;
  display: block;
  position: relative;
  transition: .5s;
}

.menu a:after {
  position: absolute;
  content: '\f192';
  font-family: "Font Awesome 5 Free";
  color: currentColor;
  left: 0;
  font-size: 11px;
  top: 11px;
  line-height: 1;
  opacity: .5;
}

.menu a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--primary);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width .25s
}

.menu a:hover {
  color: var(--primary);
}

.menu a:hover::before {
  width: 100%
}

.hour-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #ffffff0f;
}

.hour-row:nth-child(2) {
  padding-top: 8px;
}

.hour-time {
  font-size: .8rem;
  font-weight: 500;
  color: var(--white);
  text-align: right
}

.hour-time.closed {
  color: #f87171;
  background: rgba(248, 113, 113, .08);
  padding: 2px 10px;
  border-radius: 7px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 7px;
  background: #ffffff08;
  border: 1px solid #ffffff0f;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: all .25s;
}

.contact-card:hover {
  background: rgba(34, 197, 94, .05);
  border-color: rgba(34, 197, 94, .2);
  transform: translateX(4px)
}

.c-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #22c55e1f;
  border: 1px solid rgba(34, 197, 94, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0
}

.c-label {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px
}

.c-value {
  color: var(--white);
}

.c-value a {
  color: var(--white);
}

.c-value a:hover {
  color: var(--primary)
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 28px
}

.soc {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff08;
  border: 1px solid #ffffff0f;
  color: var(--primary);
  transition: all .25s;
  position: relative;
  overflow: hidden
}

.soc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .25s
}

.soc i {
  position: relative;
  z-index: 1;
  transition: color .25s
}

.soc:hover::before {
  transform: scaleY(1)
}

.soc:hover i {
  color: var(--white)
}

.soc:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, .25)
}

.footer-bottom {
  background: #050d07;
  border-top: 1px solid #ffffff0f;
  padding: 20px 0
}

.pay-icon {
  height: 22px;
  opacity: .6;
  filter: grayscale(1) brightness(1.8);
  transition: all .2s
}

.pay-icon:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.08)
}

.qrcode img {
  max-width: 160px;
  border-radius: 8px;
}

.bankdetails {
  margin: 15px 0;
}

.bankdetails p {
  font-size: 13px;
  line-height: 1;
  padding: 9px 14px;
  background: #ffffff08;
  border: 1px solid #ffffff0f;
  border-radius: 8px;
  margin-bottom: 7px;
}

.bankdetails p strong {
  font-weight: 500;
  color: var(--white);
}


.footer-links-bottom a:hover {
  color: var(--primary)
}






#GoToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 99999999;
  padding: 0;
  background: var(--primary);
  width: 44px;
  height: 54px;
  cursor: pointer;
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
}

#whatsappbtn {
  cursor: pointer;
  position: fixed;
  bottom: 4%;
  left: 20px;
  z-index: 99999999;
  padding: 0 9px;
  background: #4fcc5d;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 32px;
  color: var(--white);
  z-index: 1;
  justify-content: center;
  align-items: center;
}

#whatsappbtn:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #4fcc5d;
  box-shadow: 0 0 10px #4fcc5d;
  animation: playbtn 3s linear infinite forwards;
  z-index: -3;
}

@keyframes playbtn {
  from {
    transform: scale(1.0);
    opacity: 1;
  }

  to {
    transform: scale(1.5);
    opacity: 0;
  }
}

#whatsappbtn img {
  width: 30px;
}


.breadcrumb {
  background: #162a1d;
  padding: 18px 0;
  margin: 0;
  border-radius: 0 0 50px 50px;
}

.breadcrumb .row {
  align-items: center;
  display: flex;
}

.breadcrumb h1 {
  margin: 0;
}

.breadcrumb p {
  text-align: right;
  margin: 0;
}

.breadcrumb p,
.breadcrumb span,
.breadcrumb p a {
  color: #eee;
  font-weight: 500;
}

.breadcrumb p a {
  padding-right: 18px;
  margin-right: 5px;
  position: relative;
}

.breadcrumb h1 span {
  font-size: 30px;
  font-weight: 500;
  color: var(--white);
  text-transform: capitalize;
  line-height: normal;
}

.breadcrumb h1 .breadcrumbs_last {
  font-size: 28px;
  margin: 0 0 15px;
  font-weight: 800;
}

.breadcrumb h1 p {
  float: left;
}

.breadcrumb h1 span a {
  display: none;
}

.breadcrumb a:after {
  position: absolute;
  content: '\f101' !important;
  font-size: 10px !important;
  font-weight: 600;
  font-family: 'Font Awesome 5 Free' !important;
  color: var(--primary);
  top: 6.5px;
  right: 0;
  line-height: 1;
}


/* CONTACT US PAGE CSS */


.contactus .hero-contact {
  background: #0d2818;
}

.contactus .hero-contact::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(34, 160, 94, .08);
  pointer-events: none
}

.contactus .hero-contact h1 {
  font-size: clamp(3.5rem, 5vw, 3.2rem);
  color: var(--white);
  font-weight: 600;
  line-height: 1.1;
}

.contactus .hero-contact p {
  color: #c5c5c5;
  max-width: 520px;
  margin-bottom: 20px;
}

.contactus .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #22c55e1f;
  border: 1px solid rgba(34, 197, 94, .2);
  border-radius: 100px;
  padding: 6px 16px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
}

.contactus .info-card {
  border: 1.5px dashed #c8e6d5;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: .5s;
  height: 100%
}

.contactus .info-card:hover {
  border-color: #22a05e;
  transform: translateY(-4px)
}

.contactus .icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--white);
}

.contactus .contact-form-card {
  border-radius: 15px;
  padding: 20px 25px 25px;
}

.contactus .contact-form-card input[type="submit"] {
  border: none;
  margin-top: 10px;
  width: 100%;
  background: var(--primary);
}

.contactus .info-card p {
  margin: 0
}

.contactus .contact-form-card input,
.contactus .contact-form-card textarea {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  outline: none;
  resize: none;
}

.contactus .contact-form-card input::placeholder,
.contactus .contact-form-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.623)
}

.contactus .contact-form-card input:focus,
.contactus .contact-form-card textarea:focus {
  background: rgba(255, 255, 255, .12);
}

.map-section iframe {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #ddeee5;
  aspect-ratio: 3 / 1;
}



/* FAQ PAGE CSS */


.faq-section .img-col {
  position: relative;
  height: 100%;
}

.faq-section .img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.faq-section .badge-pill {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  letter-spacing: .4px;
}


.faq-section .accordion-item {
  border: none;
  border-bottom: 1px solid #e8e4df;
  background: transparent;
  border-radius: 0 !important;
}

.faq-section .accordion-button {
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark);
  background: transparent;
  padding: 15px 0;
  box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: transparent;
}

.faq-section .accordion-button::after {
  filter: brightness(0);
}

.faq-section .accordion-body {
  padding: 0 0 18px;
  color: #525252;
}



/* FRANCHISE SECTION CSS */



.franchise .hero {
  background: linear-gradient(135deg, #0d3b22 60%, #1a6b3c);
  position: relative;
  overflow: hidden
}

.franchise .hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(40, 199, 111, .08);
  pointer-events: none
}

.franchise .hero h1 {
  color: var(--white);
}

.franchise .hero p {
  color: #c5c5c5;
}

.franchise .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #22c55e1f;
  border: 1px solid rgba(34, 197, 94, .2);
  border-radius: 100px;
  padding: 6px 16px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
}

.franchise .form-card {
  background: var(--white);
  border-radius: 15px;
  padding: 25px 30px 30px;
  box-shadow: 0 8px 40px rgba(13, 59, 34, .1);
  margin-top: -300px;
  position: relative;
}

.franchise .form-card label {
  display: block;
  width: 100%;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--dark);
  line-height: 1;
}

.franchise .form-control {
  border: 1.5px solid #e0e8e4;
  border-radius: 8px;
  padding: 10px 15px;
  transition: .5s;
  font-size: 13px;
  margin: 5px 0 15px 0;
  background: #0d3b2208;
}

.franchise .form-control:focus {
  box-shadow: none !important;
}

.franchise .form-control::placeholder {
  color: #797979;
}

.franchise .btn-apply {
  background: linear-gradient(135deg, #1a6b3c, #28c76f);
  border: none;
  border-radius: 8px;
  padding: 11px;
  font-weight: 500;
  letter-spacing: .3px;
  width: 100%;
  transition: opacity .2s;
  text-transform: capitalize;
}

.franchise .btn-apply:hover {
  opacity: .9;
}

.franchise .info-card {
  background: var(--white);
  border-radius: 14px;
  padding: 40px 60px;
  box-shadow: 0 4px 20px rgba(13, 59, 34, .08);
  text-align: center
}

.franchise .info-card .icon {
  width: 60px;
  height: 60px;
  background: rgba(40, 199, 111, .12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 2.5rem;
}

.franchise .info-card h6 {
  color: #0d3b22;
  font-weight: 600;
  margin-bottom: 9px;
}

.franchise .info-card p {
  margin: 0
}


/* TARIFF PAGE CSS */


.tariff .tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 2px solid #dde8de;
  margin-bottom: 0;
}

.tariff .tab-btn {
  padding: 15px 34px 12px;
  font-size: 1.1em;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.6px;
  text-transform: capitalize;
  background: #dde8de;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  color: var(--dark);
  transition: .5s;
}

.tariff .tab-btn.active,
.tariff .tab-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-bottom-color: var(--secondary);
}

.tariff .tab-content {
  display: none;
  padding: 25px 0 0;
}

.tariff .tab-content.active {
  display: block;
}


.tariff .table-card {
  background: var(--white);
  box-shadow: 2px 2px 18px rgba(14, 72, 34, 0.08);
}

.tariff table {
  min-width: 1296px;
  border-collapse: collapse;
}

.tariff .main-title td {
  background: var(--secondary);
  color: var(--white);
  font-size: 1.05rem;
  padding: 12px 18px;
  text-align: center;
}

.tariff tr.section-head th {
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 18px;
  text-align: center;
}

.tariff tr.col-head th {
  background: #eaf3eb;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid #dde8de;
  white-space: nowrap;
  text-align: left;
  line-height: 1;
}

.tariff tr.col-head th:not(:first-child) {
  text-align: right;
}

.tariff tbody tr.data-row {
  border-bottom: 1px solid #edf2ed;
  transition: background 0.12s;
}

.tariff tbody tr.data-row:hover {
  background: #f6fbf6;
}

.tariff tbody tr.data-row td {
  padding: 10px 18px;
  color: var(--dark);
}

.tariff tbody tr.data-row td:first-child {
  font-weight: 500;
  color: var(--dark);
}

.tariff tbody tr.data-row td:not(:first-child) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.tariff td.dash {
  color: #ccc !important;
  text-align: right !important;
}

.tariff tr.note-row td {
  background: #fffbec;
  color: #8a6200;
  font-size: 0.77rem;
  font-weight: 500;
  padding: 9px 18px;
  border-top: 1px solid #f0e4b8;
  font-style: italic;
}

.tariff tr.spacer td {
  height: 2px;
  background: #f2f5f2;
  padding: 0;
  border: none;
}

.tariff small.sub {
  display: block;
  color: #5c5c5c;
  font-size: 0.72rem;
  font-weight: 400;
  margin-top: 1px;
}

.tariff .tab-details h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.tariff .tab-details ul li {
  padding-left: 24px;
  position: relative;
}

.tariff .tab-details ul li:not(:last-child), .tariff .tab-details ol li:not(:last-child) {
  margin-bottom: 8px;
}

.tariff .tab-details ul li:before {
  position: absolute;
  content: '\f0a4';
  font-family: 'Font Awesome 5 Free';
  top: -1px;
  left: 0;
  padding: 3px;
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
}
.tab-details ol, .tab-details ol li {
    list-style: number;
}

.tab-details ol {
    padding-left: 15px;
}


@media only screen and (max-width: 991px) {
  .tariff table {
    min-width: 886px;
    overflow-x: scroll;
  }
}

@media (max-width: 680px) {
  .tariff .tab-btn {
    padding: 9px 16px;
  }

  .tariff tbody tr.data-row td,
  .tariff tr.col-head th {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .tariff tr.section-head th {
    padding: 9px 10px;
  }

  .tariff .main-title td {
    padding: 13px 12px;
    font-size: 0.95rem;
  }
}



/* VIDEOS SECTION CSS */


.videos .video-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 3px 3px 18px rgba(0, 0, 0, .07);
  transition: transform .2s, box-shadow .2s;
  border: none
}

.videos .video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .12)
}

.videos .thumb-wrap {
  position: relative;
  overflow: hidden;
  background: #111;
  aspect-ratio: 16/9;
  cursor: pointer
}

.videos .thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
  display: block
}

.videos .video-card:hover .thumb-wrap img {
  transform: scale(1.04)
}

.videos .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  transition: opacity .2s
}

.videos .video-card:hover .play-btn {
  opacity: 1
}

.videos .play-btn span {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s
}

.videos .play-btn span:hover {
  transform: scale(1.12)
}

.videos .play-btn span svg {
  fill: var(--white);
  margin-left: 3px
}

.videos .badge-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  line-height: 1;
  padding: 8px 15px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.videos .card-body {
  padding: 20px
}

.videos .card-body h5 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.videos .card-body p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.videos .watch-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  border: 1.5px solid var(--primary);
  padding: 7px 14px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  cursor: pointer;
  background: none
}

.videos .watch-btn:hover {
  background: var(--primary);
  color: var(--white)
}

.videos .watch-btn svg {
  fill: currentColor
}

.videos .divider {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 10px
}

/* Modal */
.videos .video-modal .modal-content {
  background: var(--white);
  border: none;
  border-radius: 14px;
  overflow: hidden
}

.videos .video-modal .modal-header {
  background: var(--primary);
  padding: 14px 20px;
  border: none;
}

.videos .video-modal .modal-title {
  color: var(--white);
  font-size: 1rem
}

.videos .video-modal .btn-close {
  filter: invert(1);
  opacity: .6
}

.videos .video-modal .btn-close:hover {
  opacity: 1
}

.videos .video-modal .modal-body {
  padding: 0;
  background: var(--white)
}

.videos .video-modal .modal-footer {
  background: var(--white);
  padding: 7px 20px;
}

.videos .video-frame-wrap iframe {
  margin-bottom: -7px;
  aspect-ratio: 2 / 1;
}

.videos .player-overlay {
  position: relative;
  z-index: 2;
  text-align: center
}

.videos .big-play {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  cursor: pointer;
  transition: transform .2s;
  box-shadow: 0 0 36px rgba(200, 135, 58, .45)
}

.videos .big-play:hover {
  transform: scale(1.1)
}

.videos .big-play svg {
  fill: var(--white);
  margin-left: 5px
}

.videos .player-overlay h6 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.05rem;
  margin: 0 0 6px
}

.videos .player-overlay .vtag {
  background: var(--primary);
  color: var(--white);
  font-size: .7rem;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.videos .modal.fade .modal-dialog {
  transform: scale(.95) translateY(20px);
  transition: transform .25s ease
}

.videos .modal.show .modal-dialog {
  transform: scale(1) translateY(0)
}




/* OUR CAB PAGE CSS */


.ourcabs .category-label {
  font-size: 1.35rem;
  position: relative;
  margin-bottom: 25px;
  background: var(--primary);
  padding: 13px 20px;
  color: var(--white);
  border-radius: 11px;
  text-align: center;
}

.ourcabs .category-label::after {}

.ourcabs .cab-card {
  background: #30a3580d;
  border-radius: 16px;
  border: 1px solid #30a35830;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ourcabs .cab-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26, 26, 46, 0.12);
}

.ourcabs .cab-img-wrap {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #cfe9d8;
}

.ourcabs .cab-img-wrap img {
  aspect-ratio: 2 / 1.3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ourcabs .cab-card:hover .cab-img-wrap img {
  transform: scale(1.05);
}

.ourcabs .cab-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
}

.ourcabs .cab-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ourcabs .cab-type {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.ourcabs .cab-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.ourcabs .cab-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.ourcabs .spec-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
}

.ourcabs .spec-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #eaeffd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.ourcabs .spec-label {
  font-weight: 600;
  display: block;
  font-size: 0.85rem;
}

.ourcabs .spec-value {
  color: #646464;
  font-size: 0.75rem;
}

/* ---- Notice strip ---- */
.ourcabs .notice-strip {
  background: #30a3580f;
  border: 1px solid #30a3582e;
  border-radius: 12px;
  padding: 16px 22px;
}

.ourcabs .notice-strip ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ourcabs .notice-strip li {
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1;
  padding-left: 24px;
  position: relative;
}

.ourcabs .notice-strip li:last-child {
  margin-bottom: 0;
}

.ourcabs .notice-strip li::before {
  position: absolute;
  content: '\f0a4';
  font-family: 'Font Awesome 5 Free';
  top: -2px;
  left: 0;
  padding: 3px;
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
}

/* POLICY PAGE CSS */


.policy-content {
  border: 2px dashed #162a1d;
  background: #fcfffd;
  padding: 28px;
  border-radius: 15px;
}

.policy-content h4 {
    margin: 18px 0 10px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 17px;
}
.policy-content h4:first-child {
  margin-top: 0;
}

.policy-content ul li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 18px;
  position: relative;
  color: #484848;
  flex-wrap: wrap;
}

.policy-content ul li strong {
  font-weight: 500;
}

.policy-content ul li:before {
  position: absolute;
  content: '\f245';
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  color: var(--primary);
  transform: rotate(65deg);
  left: 0;
  top: 5px;
  font-size: 12px;
}

.policy-content p:last-child {
  margin: 0;
}


/* CAREER PAGE CSS CODE */

.perk-card {
  border-radius: 10px;
  padding: 30px;
  border: 1.5px solid #ddeee5;
  transition: .2s
}

.perk-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(48, 163, 88, .1)
}

.perk-icon {
  width: 60px;
  height: 60px;
  background: #e8f5ee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem
}

.perk-icon i {
  color: var(--primary);
  font-size: 1.5rem;
}

.join {
  background: var(--secondary);
}

.join p,
.join li {
  color: #c5c5c5;
}

.join li {
  margin-bottom: .6rem;
}

.join li i {
  color: var(--primary);
  margin-right: 8px
}

.apply-box {
  background: #ffffff0f;
  border: 1.5px solid #ffffff24;
  border-radius: 12px;
  padding: 28px;
}

.apply-box label {
  color: #ffffffb3;
  margin-bottom: 5px;
  display: block
}

.apply-box .form-control,
.apply-box .form-select {
  background: #ffffff14;
  border: 1.5px solid #ffffff26;
  color: var(--white);
  border-radius: 7px;
  padding: 10px 14px;
  font-size: 14px;
  margin-bottom: 0;
}

.apply-box .form-control::placeholder {
  color: rgba(255, 255, 255, .3)
}

.apply-box .form-control:focus,
.apply-box .form-select:focus {
  background: rgba(255, 255, 255, .12);
  border-color: var(--primary);
  box-shadow: none;
  color: #fff
}

.apply-box .form-select option {
  background: #0e4822
}

.btn-submit {
    border-radius: 7px !important;
    width: 100%;
    transition: .2s;
}

.btn-submit:hover {
  background: #27915e
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgb(255 255 255 / 52%);
  margin: 18px 0;
  font-weight: 300;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .12)
}

.email-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, .18);
  color: var(--white);
  background: var(--secondary);
  border-radius: 7px;
  padding: 10px;
  text-decoration: none;
  transition: .2s
}

.email-link:hover {
  border-color: var(--primary);
  color: var(--white)
}

.email-link i {
  color: var(--primary)
}



/* RESPONSIVENESS CODE */


@media only screen and (max-width: 1349px) {
  nav.menucontainer a.btn.btn-primary {
    display: none;
  }

  .mainslider #carouselExampleFade img {
    aspect-ratio: 5 / 3;
  }
 .tariff .tab-content .table-card {
    overflow-x: scroll;
}
}

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

  .topbar:before,
  .topbar:after {
    display: none;
  }
  
  .menubar img {
    height: 50px;
  }
  .benefitslist {
    width: 100% !important;
}

.franchise .form-card {
    padding: 20px 25px 25px;
    margin-top: 40px;
}
}

@media only screen and (max-width: 767px) {
.heading, .leftheading {
    font-size: 26px;
    padding-bottom: 20px;
    background-size: 80px;
    margin-bottom: 20px;
}
.homeabout-content .leftheading {
    font-size: 26px;
}




ul.smoicons {
    padding: 5px 16px;
    gap: 18px !important;
}


.mainslider #carouselExampleFade img {
    aspect-ratio: 5 / 4;
  }
  .carousel-caption-inner span {
    margin-bottom: 12px;
    font-size: 13px;
    padding: 8px 16px;
}
  .mainslider .carousel-caption h1 {
    font-size: 30px;
}
.mainslider .carousel-caption p {
    margin: 10px 0 15px;
    font-size: 15px;
}
.carousel-indicators {
    right: 12px;
    gap: 10px;
}
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
}


.section-paddinglg {
    padding: 60px 0;
}
.section-padding {
    padding: 40px 0;
}


.bannerform {
    margin-top: 40px;
    padding: 0 25px 25px;
}
.benefits {
    margin-top: 40px;
}
.benefits:before, .benefits:after {
    height: 40px;
}

.homeabout-content {
    padding: 20px;
}


.services::before {
    display: none;
}
.counter .col-lg-3:not(:last-child) .counterlist {
  border: none;
}
.counterlist h3 span {
    font-size: 28px;
    margin-bottom: 6px;
}
.reviewslist i.fa.fa-quote-left {
    top: 30px;
    right: 30px;
    font-size: 48px;
}
.reviewslist h5 {
    font-size: 17px;
}
.reviewslist p {
    font-size: 14px;
}

.cta-pill {
    padding: 8px 16px;
    line-height: 1;
}
.cta-heading {
    font-size: 1.6rem;
}

.breadcrumb p {
    text-align: center !important;
    float: inherit !important;
}
.breadcrumb h1 span {
    font-size: 24px;
}
.breadcrumb p, .breadcrumb span, .breadcrumb p a {
    font-size: 13px;
}
.breadcrumb a:after {
    top: 5px;
}


.contactus .hero-contact h1 {
    font-size: 26px;
}
.contactus .hero-contact h1 br {
    display: none;
}

}


@media only screen and (max-width: 580px) {
.topbar-info {
    padding: 10px;
}
.topbar a, .topbar p {
    font-size: 11px !important;
}
.topbar p i {
    margin-right: 5px;
}
.topbar-info p:not(:last-child) {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 2px solid #ffffff5e;
}
ul.smoicons {
    padding: 3px 12px;
}
.menubar img {
    height: 42px;
}
.mainslider #carouselExampleFade img {
    aspect-ratio: 1;
}
.carousel-indicators {
    right: 15px;
    top: auto;
    bottom: 5px;
    flex-direction: row;
}
.bannerform {
    padding: 0 20px 25px;
}
.bannerform-heading {
    padding: 10px;
    border-radius: 0 0 20px 20px;
}
.bannerform-heading i {
    font-size: 20px;
    margin-right: 8px;
}
.bannerform-heading h2 {
    font-size: 17px;
}
.bannerform label {
    font-size: 13px;
}
.bannerform input, .bannerform select {
    font-size: 13px;
    padding: 8px 16px;
}
.bannerform input[type="submit"] {
    padding: 13px;
    line-height: 1;
}
.benefitslist {
    padding: 15px 0px 15px 12px;
}
.benefitslist figure {
    height: 70px;
    width: 70px;
}
.benefitslist figure img {
    width: 34px;
    height: 34px;
}
.benefitslist-info {
    margin-left: 12px;
}
.benefitslist h3 {
    margin-bottom: 6px;
    font-size: 18px;
}
.benefitslist p {
    font-size: 13px;
}

.whychooseuslist-info h3 {
    font-size: 20px;
}



.feature-card {
    padding: 30px 25px;
}
.icon-wrap {
    margin-bottom: 18px;
}
.feature-card h4 {
    margin-bottom: 10px;
}

.cta-heading {
    font-size: 1.4rem;
}

.map-section iframe {
    aspect-ratio: 5/3.2;
}
.perk-card {
    padding: 20px;
}
.perk-card h4 {
    margin-bottom: 10px;
}
}


