@font-face {
  font-family: "Manrope", sans-serif;
  src: url("../font/Manrope-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mulish", sans-serif;
  src: url("../font/Mulish-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto", sans-serif;
  src: url("../font/Roboto-VariableFont_wdth\,wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}


/* ---------- Root Variables ---------- */
:root {
  /* COLORS */
  --main-color: #33b6bb;
  --yellow-color: #d7ce34;
  --white-color: #fff;
  --black-color: #000;
  --red-color: red;
  --light-green-color: #25d366;
  --orange-color: #f79420;
  --golden-color: #cbaa6b;
  --blue-color: rgb(13 110 253);
  --heading-light-black: #828282;
  --heading-color: #000000;
  --para-graph-light-color: #3c4043;
  --para-color: #6e6e6e;
  --light-sky-blue-bg-color: #27bdbe;
  --bg-red-light-color: #f2dede;
  --bg-gray-color: #dddddd;
  --bg-gray-light-color: #f5f5f5;
  --bg-blue-light-color: #f4fbff;
  --bg-white: #fff;
  --bg-black: #000;
  --border-color-light: #ddd;

  /* transition */
  --transition-3: all 0.3s ease-in-out;
  --transition-5: all 0.5s ease-in-out;

  /* cursor */
  --cursor: pointer;

  /* box-shadow */
  --box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  --box-shadow-2: rgba(149, 157, 165, 0.2) 0 8px 24px;

  /* font-family */
  --font-family: "Manrope", sans-serif;
  --font-style: normal;

  /* TYPOGRAPHY font-size */
  --font-size-h1: 40px;
  --font-size-h2: 32px;
  --font-size-h3: 24px;
  --font-size-h4: 20px;
  --font-size-h5: 18px;
  --font-size-h6: 16px;
  --font-size-p: 16px;
  --paragraph-small: 15px;
  --x-small-font-size: 14px;
  --large-heading: 50px;

  /* font-weight */
  --font-weight-100: 100;
  --font-weight-200: 200;
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;
  --font-weight-900: 900;

  /* line-height */
  --line-height-1-1: 1.1;
  --line-height-1-2: 1.2;
  --line-height-1-3: 1.3;
  --line-height-1-4: 1.4;
  --line-height-1-5: 1.5;
  --line-height-1-6: 1.6;
  --line-height-1-7: 1.7;

  /* border-radius */
  --border-radius-10: 10px;
  --border-radius-20: 20px;
  --border-radius-30: 30px;
  --border-radius-40: 40px;
  --border-radius-50: 50px;

  /* border */
  --border-1: 1px solid var(--border-color-light);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  font-family: var(--font-family);
  font-style: var(--font-style);
}

body {
  font-size: var(--font-size-h6);
  line-height: var(--line-height-1-4);
}

a {
  text-decoration: none;
  color: var(--black-color);
}

ul,
figure {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Containers ---------- */
.container-sm,
.container-lg,
.container-x-lg,
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  max-width: 860px;
}

.container-m {
  max-width: 1280px;
}

.container {
  max-width: 1340px;
}

.container-lg {
  max-width: 1380px;
}

.container-full {
  width: 100%;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: var(--font-family);
  font-style: normal;
}

h1,
h2 {
  font-weight: var(--font-weight-800);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-700);
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-500);
}

h5 {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-600);
}

h6 {
  font-size: var(--font-size-h6);
  font-weight: var(--font-weight-500);
}

div p {
  font-size: var(--font-size-p);
  line-height: 1.6;
}

p a,
li p a {
  color: var(--main-color) !important;
  font-weight: var(--font-weight-600);
}

.para {
  font-size: var(--paragraph-small);
  color: var(--para-color);
  line-height: var(--line-height-1-6);
}

.large-heading {
  font-size: var(--large-heading);
  font-weight: var(--font-weight-800);
}

.small-heading {
  font-size: var(--font-size-h6);
  font-weight: var(--font-weight-900);
}

.small-text {
  font-size: var(--x-small-font-size);
  font-weight: normal;
}

/* common heading */
.common-heading {
  text-align: center;
  margin-bottom: 60px;
}

.common-heading span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 18px;
  text-transform: uppercase;
  color: #c11425;
}

.common-heading h2 {
  color: #0f1b24;
  font-size: 48px;
  line-height: 48px;
  margin: 5px 0 0;
}

/* ---------- Background helpers ---------- */
.relative,
.common-banner {
  position: relative;
}

.common-banner {
  width: 100%;
  background: center / cover no-repeat;
}

.bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -1px;
  background: linear-gradient(90deg, #00000091 24.4%, #6660);
  border-radius: 10px;
}

.text-center {
  text-align: center;
}

/* ---------- Flex / Grid ---------- */
.grid {
  display: grid;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.no-wrap {
  flex-wrap: nowrap;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.space-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.space-end {
  justify-content: flex-end;
}

/* better grids */
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-8 {
  grid-template-columns: repeat(8, 1fr);
}

/* gaps */
.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

.gap-50 {
  gap: 50px;
}

.row-gap-10 {
  row-gap: 10px;
}

.row-gap-20 {
  row-gap: 20px;
}

.row-gap-30 {
  row-gap: 30px;
}

/* FIXED */
.row-gap-40 {
  row-gap: 40px;
}

.row-gap-50 {
  row-gap: 50px;
}

.column-gap-10 {
  column-gap: 10px;
}

.column-gap-20 {
  column-gap: 20px;
}

.column-gap-30 {
  column-gap: 30px;
}

/* FIXED */
.column-gap-40 {
  column-gap: 40px;
}

.column-gap-50 {
  column-gap: 50px;
}

/* ---------- Column widths ---------- */
.col-half,
.col-6 {
  width: 48%;
}

.col-2 {
  width: 20%;
}

.col-3 {
  width: 32%;
}

.col-4 {
  width: 24%;
}

.col-5 {
  width: 30%;
}

.col-7 {
  width: 68%;
}

.col-55 {
  width: 55%;
}

.col-45 {
  width: 43%;
}

/* ---------- Forms ---------- */
label {
  font-size: var(--x-small-font-size);
  margin-bottom: 6px;
  display: block;
}

.form-group {
  width: 100%;
  margin-bottom: 20px;
}

.form-btn {
  font-family: var(--font-family);
  font-size: 15px;
  gap: 22px;
  letter-spacing: 1.6px;
  outline: none !important;
  overflow: hidden;
  padding: 5px 4px 5px 24px;
  position: relative;
  transition: all .5s linear;
  vertical-align: middle;
  z-index: 1;
}

.form-control {
  width: 100%;
  font-size: 18px;
  height: 67px;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #787878;
  /* removed undefined var */
  display: block;
  font-weight: 400;
  outline: none;
  padding: 10px 20px;
}

input[type="date"] {
  width: 100%;
  display: block;
  font-family: var(--font-family);
}

select option {
  width: 100%;
  display: block;
  color: var(--black-color);
  font-family: var(--font-family);
}

button {
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}

/* ---------- Width helpers ---------- */
.w-100 {
  width: 100%;
}

.w-90 {
  width: 88%;
}

.w-70 {
  width: 68%;
}

.w-50 {
  width: 48%;
}

.w-32 {
  width: 32%;
}

.w-30 {
  width: 30%;
}

.w-25 {
  width: 24%;
}

.w-20 {
  width: 19%;
}

.w-15 {
  width: 15%;
}

/* ---------- Lists ---------- */
.bulit-list {
  padding-left: 30px;
  margin: 20px 0;
}

.bulit-list li {
  margin-bottom: 8px;
  list-style: disc;
  line-height: 1.6;
}

.bulit-list li:last-child {
  margin-bottom: 0;
}

.number-list li {
  list-style: unset;
}

.bulit-list li ol li {
  list-style: unset;
}

.number-list li ul li {
  list-style: disc;
}

/* ---------- Spacing utilities ---------- */
/* margin */
.mtb {
  margin: 100px 0;
}

.my {
  margin: 50px 0;
}

.my-20 {
  margin: 20px 0;
}

.mt-top-10 {
  margin-top: 10px;
}

.mt-top-20 {
  margin-top: 20px;
}

.mt-top-30 {
  margin-top: 30px;
}

.mt-top-40 {
  margin-top: 40px;
}

.mt-top-50 {
  margin-top: 50px;
}

/* FIXED */

.mb-bottom-10 {
  margin-bottom: 10px;
}

/* FIXED */
.mb-bottom-20 {
  margin-bottom: 20px;
}

.mb-bottom-30 {
  margin-bottom: 30px;
}

.mb-bottom-40 {
  margin-bottom: 40px;
}

.mb-bottom-50 {
  margin-bottom: 50px;
}

/* padding */
.ptb {
  padding: 100px 0;
}

.py {
  padding: 50px 0;
}

.py-20 {
  padding: 20px 0;
}

.px {
  padding: 0 20px;
}

.px-left {
  padding-left: 20px;
}

.px-right {
  padding-right: 20px;
}

.pt-top-10 {
  padding-top: 10px;
}

.pt-top-20 {
  padding-top: 20px;
}

.pt-top-30 {
  padding-top: 30px;
}

.pt-top-40 {
  padding-top: 40px;
}

.pt-top-50 {
  padding-top: 50px;
}

/* pb classes were wrong -> FIXED */
.pb-bottom-10 {
  padding-bottom: 10px;
}

.pb-bottom-20 {
  padding-bottom: 20px;
}

.pb-bottom-30 {
  padding-bottom: 30px;
}

.pb-bottom-40 {
  padding-bottom: 40px;
}

.pb-bottom-50 {
  padding-bottom: 50px;
}

/* ---------- Font-weight utilities ---------- */
.weight-100 {
  font-weight: var(--font-weight-100);
}

.weight-200 {
  font-weight: var(--font-weight-200);
}

.weight-300 {
  font-weight: var(--font-weight-300);
}

.weight-400 {
  font-weight: var(--font-weight-400);
}

.weight-500 {
  font-weight: var(--font-weight-500);
}

.weight-600 {
  font-weight: var(--font-weight-600);
}

.weight-700 {
  font-weight: var(--font-weight-700);
}

.weight-800 {
  font-weight: var(--font-weight-800);
}

/* ---------- Radius utilities ---------- */
.round-10 {
  border-radius: var(--border-radius-10);
}

.round-20 {
  border-radius: var(--border-radius-20);
}

.round-30 {
  border-radius: var(--border-radius-30);
}

.round-40 {
  border-radius: var(--border-radius-40);
}

.round-50 {
  border-radius: var(--border-radius-50);
}

/* ---------- Tables ---------- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.table-responsive .common-table {
  width: 100%;
  border-collapse: collapse;
}

.table-responsive .common-table tr th,
.table-responsive .common-table tr td {
  border: 1px solid #dddd;
  padding: 10px;
}

/* ---------- Text clamp ---------- */
.text-hide {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  background-color: #c11425;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  border-radius: 30px;
  overflow: hidden;
  padding: 6px 10px;
  transition: var(--transition-5);
  position: relative;
  z-index: 1;
}

.btn:hover::after {
  content: "";
  background-color: #0f1b24;
  height: 100%;
  left: -35%;
  position: absolute;
  top: 0;
  transform: skew(30deg);
  transform-origin: top left;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
  width: 0;
  z-index: -1;
}

.whatsapp-btn,
.call-btn {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  line-height: 22px;
  font-size: 15px;
  width: max-content;
  transition: var(--transition-5);
  cursor: pointer;
}

.whatsapp-btn {
  background: #46c756;
  border: 1px solid #09b31c;
}

.call-btn {
  background-color: #019af0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- Breadcrumb banner ---------- */
.braedcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.braedcrumb li,
.braedcrumb li a {
  color: var(--white-color);
}

.braedcrumb li:not(:last-child) {
  margin-right: 10px;
}

/* comman-heading FIX */
.comman-heading {
  margin: 20px 0;
}

.comman-heading h5 {
  color: #c11425;
}

/* ---------- Header ---------- */
header {
  width: 100%;
}

header .logo img {
  width: 180px;
}

nav ul li:not(:last-child) {
  margin-right: 20px;
}

nav ul li a {
  padding: 30px 0;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
}

header .btn-box {
  display: flex;
  align-items: center;
}

header .btn-box .btn {
  margin-right: 6px;
}

header .toggle-button {
  width: 30px;
  display: none;
  flex-wrap: wrap;
  cursor: pointer;
  margin-left: 10px;
  position: absolute;
  top: 45px;
  right: 20px;
  z-index: 11;
}

header .toggle-button span {
  width: 26px;
  height: 3px;
  background-color: #000000;
  margin-bottom: 4px;
  transition: var(--transition-5);
  z-index: 11;
}

/* ---------- Footer section ---------- */
.need-help-sec {
  margin-top: 50px;
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}

.support-now {
  background-image: url(../images/home/banner-img03.jpg);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}

.support-now::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(89.46deg, #c11425 49.9%, #5b091100 99.53%);
  z-index: 1;
}

.support-now .top-row-content {
  padding: 80px 40px;
  color: #fff;
  position: relative;
  z-index: 4;
}

.support-now .top-row-content .top-row-data {
  margin-top: 20px;
}

.support-now .top-row-content .top-row-data i {
  margin-right: 20px;
  border: 1px solid #fff;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  place-items: center;
  font-size: 22px;
  transition: var(--transition-3);
}

.support-now .top-row-content .top-row-data i:hover {
  transform: scale(1.2);
}

footer {
  width: 100%;
  background-color: #0f1b24;
  color: #fff;
  padding: 180px 0 0;
  position: relative;
}

footer .row .col {
  width: 24%;
}

footer .row .col:nth-of-type(1) {
  width: 28%;
  padding-right: 20px;
}

footer .row .col:nth-of-type(2) {
  width: 15%;
}

footer .flogo img {
  margin-bottom: 20px;
}

footer .address-detail {
  margin-top: 20px;
}

footer .address-detail li:not(:last-child) {
  margin-bottom: 14px;
}

footer .address-detail li a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

footer .address-detail li a p {
  width: 80%;
}

footer .address-detail li span {
  width: 40px;
  height: 40px;
  background-color: rgba(193, 20, 37, .1);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

footer .address-detail li span i {
  color: #c11425;
}

footer h4 {
  margin-bottom: 34px;
}

footer ul li {
  margin-bottom: 20px;
}

footer ul li a {
  color: #fff;
  transition: all .4s ease-in-out;
}

footer ul li a:hover {
  color: #c11425;
}

footer ul li:last-child {
  margin-bottom: 0;
}

footer form .form-group {
  position: relative;
  margin-top: 20px;
}

footer input {
  background-color: transparent;
  border: 1px solid #ccc3;
  border-radius: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  height: 60px;
  outline: none;
  padding-left: 20px;
  padding-right: 90px;
  width: 100%;
}

footer button {
  align-items: center;
  background-color: #c11425;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  bottom: 0;
  display: flex;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  transition: var(--transition-5);
  width: 77px;
}

footer button i {
  font-size: 30px;
  color: #fff;
  transform: rotate(-37deg);
}

.copy-right {
  text-align: center;
  border-top: 1px solid #ddd;
  padding: 10px 20px;
  margin-top: 50px;
}

.fooer-shape-img {
  position: absolute;
  bottom: 0;
  right: 0;
  animation: fooer-shape-img 2s linear infinite;
}

.fooer-shape-img img {
  opacity: .1;
  width: auto;
}

@keyframes fooer-shape-img {
  0% {
    transform: translateY(-20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(-20px);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  nav ul li:not(:last-child) {
    margin-right: 10px;
  }

  nav ul li a {
    font-size: 14px;
  }
}

@media (max-width: 850px) {
  nav ul li:not(:last-child) {
    margin-right: 16px;
  }

  header .btn-box {
    display: none;
  }
}

@media (max-width: 580px) {
  header nav {
    display: none;
  }

  header .toggle-button {
    display: flex;
    top: 24px;
    right: 35px;
  }

  header .toggle-button.active span {
    transform: rotate(45deg);
    margin: 5px 0 0 0;
  }

  header .toggle-button.active span:nth-of-type(2) {
    display: none;
  }

  header .toggle-button.active span:nth-last-of-type(1) {
    transform: rotate(-45deg);
    margin: -3px 0 0 0;
  }
}

@media (max-width: 1040px) {
  footer .flogo img {
    width: 320px;
    margin: 0 auto;
  }

  footer .row .col:nth-of-type(1) {
    width: 100%;
    text-align: center;
  }

  footer .address-detail {
    margin: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  footer .address-detail li {
    width: 33.33%;
  }

  footer .address-detail li:last-child a {
    justify-content: flex-end;
  }
}

@media (max-width: 1024px) {
  footer .address-detail li {
    width: 100%;
  }

  footer .address-detail li p {
    text-align: left;
  }

  footer .address-detail li:last-child a {
    justify-content: flex-start;
  }

  footer .row .col {
    width: 35%;
  }

  footer .row .col:nth-of-type(2) {
    width: 28%;
  }

  footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .support-now {
    background-image: none;
  }

  .support-now::after {
    background: linear-gradient(89.46deg, #c11425 49.9%, #5b0911 99.53%);
  }
}

@media (max-width: 580px) {
  .support-now .top-row-content {
    padding: 50px 20px;
  }

  footer .row {
    row-gap: 30px;
  }

  footer .row .col:nth-of-type(2) {
    width: 48% !important;
  }

  footer .row .col:nth-of-type(4) {
    width: 100% !important;
  }
}