:root {
  --color-primary: #6E2877;
  --color-secondary: #fdb736;
  --color-secondary-surface: #afbf36;
  --color-primary-border: #062337;
  --color-secondary-border: #c6d936;
  --color-text-dark: #07243d;
  --color-text-light: #ffffff;
  --color-light: #ffffff;
  --color-white: #ffffff;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
  background-color: #fffeff!important;
  font-size: 22px;
}

body.open-menu {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

.img-fluid img {
  max-width: 100%;
  height: auto;
}

.container {
  padding-left: 7.5rem;
  padding-right: 7.5rem;
  width: 100%;
  position: relative;
}

footer ul,
header ul {
  margin: 0;
  padding: 0;
}

footer li,
header li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--color-text-light);
  font-size: 20px;
  font-weight: 400;
}
a:hover{color:var(--color-secondary);}
p a{
	color:var(--color-primary);
	border-bottom: 1px solid;
}

.flex {
  display: flex;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

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

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

.mt-30 {
  margin-top: 32px !important;
}

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


.w-100 {
  width: 100%;
}

.mx-w-100 {
  max-width: 100%;
}

.row-width-100 {
  width: calc(100% + 30px);
}

.color-primary {
  color: var(--color-primary) !important;
}

.color-secondary {
  color: var(--color-secondary) !important;
}

.color-white {
  /* color: var(--color-white) !important; */
}
.color-dark{
	color:var(--color-text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 90px;
  line-height: 99px;
  color: var(--color-primary);
  margin-bottom: 24px;
  font-weight: 500;
  position: relative;
}
h1 > img{width:50px;margin-left: 15px;display:inline-block;position: absolute;margin-top:30px}


h1 strong,
h1 b {
  color: var(--color-white);
}

h2 {
  font-size: 64px;
  line-height: 72px;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 400;
  position: relative;
}
h2 > img{width:50px;margin-left: 15px;display:inline-block;position: absolute;bottom: 6px;}


h2 strong,
h2 b {
  color: var(--color-primary);
  font-weight: 800;
}

h3 {
  font-size: 42px;
  line-height: 50px;
  color: var(--color-text-dark);
  /* margin-bottom: 36px; */
  font-weight: 400;
}

h4 {
  font-size: 30px;
  line-height: 37px;
  color: var(--color-secondary);
  margin-bottom: 8px;
  font-weight: 700;
}

h4 strong,
h4 b {
  font-weight: 800;
}

h5 {
  color: var(--color-dark);
  font-size: 20px;
  margin-bottom: 16px;
}

h6 {
  font-size: 24px;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

p {
  color: var(--color-text-dark);
  font-size: 21px;
  line-height: 38px;
  margin-bottom: 20px;
}

p strong,
p b {
  font-weight: 900;
  color: var(--color-primary);
  font-size: 30px;
}

ol,
ul {
  margin-bottom: 32px;
}

li {
  color: var(--color-text-dark);
  font-size: 20px;
  line-height: 32px;
}

li>ul {
  margin-top: 10px;
}

.featured-list {
  margin-top: 42px;
}

.featured-list>li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.featured-list>li>.list-icon {
  width: 74px;
  height: 74px;
  display: block;
  flex: 0 0 auto;
  text-align: center;
}

.text-left {
  text-align: left !important;
}

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

.mb-32 {
  margin-bottom: 32px !important;
}

.my-98 {
  margin-top: 98px !important;
  margin-bottom: 98px !important;
}

.btn-text {
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-secondary);
}

.btn-primary {
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  color: #fff;
  background-color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  border: none;
  outline: none;
  display: flex;
  gap: 10px;
  padding: 10px 10px 10px 22px;
  font-size: 20px;
  line-height: 36px;
  border-radius: 43px;
}

.btn-primary:hover,
.btn-primary:focus {
  color: var(--color-primary);
  background: var(--color-secondary);
}

.btn-primary:hover img {
    content: url('https://infusioiv.org/wp-content/themes/infusio/assets/images/btn2.svg');
}

.btn-primary:active {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-primary:disabled,
.btn-primary.disabled {
  background-color: var(--color-secondary);
  opacity: 0.65;
  cursor: not-allowed;
}


/* secondaty btn */
.btn-secondary {
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  color: var(--color-primary);
  background-color: var(
  --color-secondary);
  transition: all 0.3s ease-in-out;
  border: none;
  outline: none;
  display: flex;
  gap: 10px;
  padding: 10px 10px 10px 22px;
  font-size: 20px;
  line-height: 36px;
  border-radius: 43px;
  border: 1px solid var(
  --color-secondary);
}

.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--color-primary);
  background: var(--color-light);
  border: 1px solid var(--color-secondary);
  border: 1px solid var(--color-light);
}

.btn-secondary:hover img {
    content: url('https://infusioiv.org/wp-content/themes/infusio/assets/images/btn3.svg');
}

.btn-secondary:active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-secondary:disabled,
.btn-secondary.disabled {
  background-color: var(--color-primary);
  opacity: 0.65;
  cursor: not-allowed;
}


.btn-group {
  display: flex;
  gap: 30px;
}

label {
  font-weight: 700;
  font-size: 15px;
  line-height: 36px;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

input,
textarea {
  font-size: 15px;
  border-radius: 9px;
  width: 100%;
  color: var(--color-text-dark);
  padding: 13px 22px;
  border: 0.5px solid var(--color-text-dark);
  outline: none;
}

.input-group {
  position: relative;
}

.input-group input {
  width: -webkit-fill-available;
}

.input-group button {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  border-radius: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 3px;
  margin-right: 3px;
  height: calc(100% - 6px);
}

blockquote p {
  font-style: italic;
  font-size: 25px;
  line-height: 30px;
  color: var(--color-secondary);
  margin: 0;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details>li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-details>li svg {
  fill: var(--color-secondary);
  max-width: 18px;
}

.contact-details>li a {
  font-size: 18px;
  color: var(--color-primary);
}

.info-box {
  padding: 58px 63px 56px;
}

.info-box p {
  margin-bottom: 0;
}

.col-span-xl-6 {
  width: 50%;
}

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

.text-container {
  width: 768px;
  margin: 0 auto;
}

small {
  color: red;
  font-size: 12px;
  margin: 3px 10px;
  position: absolute;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
  }

  h3 {
    font-size: 44px;
    margin-bottom: 28px;
  }

  h5 {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 40px;
  }

  p {
    font-size: 18px;
    line-height: 30px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
    line-height: 44px;
  }

  h3 {
    font-size: 32px;
    margin-bottom: 28px;
  }

  h4 {
    font-size: 26px;
  }

  h5 {
    font-size: 22px;
  }

  p,
  .btn-primary {
    font-size: 16px;
  }

  section.default {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* Table styles */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  max-width: 768px;
  margin: 25px 0 54px;
}

table,
th,
td {
  border: 1px solid var(--color-primary-border);
}

thead {
  background-color: var(--color-light);
}

thead td {
  font-weight: 700;
  color: var(--color-primary-border);
  font-size: 18px;
  line-height: 27px;
}

th,
td {
  padding: 29px 12px;
  text-align: center;
}

tbody tr:hover {
  background-color: #f9f9f9;
}

section.default {
  padding-top: 90px;
  padding-bottom: 90px;
}

.bg-grey {
  background-color: var(--color-light);
}


/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Base row */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* Default: extra small (xs) — mobile first */
[class*="col-"] {
  flex: 0 0 auto;
  padding: 0 15px;
}

/* XS Columns (mobile) */
.col-1 {
  flex-basis: 8.33%;
  max-width: 8.33%;
}

.col-2 {
  flex-basis: 16.66%;
  max-width: 16.66%;
}

.col-3 {
  flex-basis: 25%;
  max-width: 25%;
}

.col-4 {
  flex-basis: 33.33%;
  max-width: 33.33%;
}

.col-5 {
  flex-basis: 41.66%;
  max-width: 41.66%;
}

.col-6 {
  flex-basis: 50%;
  max-width: 50%;
}

.col-7 {
  flex-basis: 58.33%;
  max-width: 58.33%;
}

.col-8 {
  flex-basis: 66.66%;
  max-width: 66.66%;
}

.col-9 {
  flex-basis: 75%;
  max-width: 75%;
}

.col-10 {
  flex-basis: 83.33%;
  max-width: 83.33%;
}

.col-11 {
  flex-basis: 91.66%;
  max-width: 91.66%;
}

.col-12 {
  flex-basis: 100%;
  max-width: 100%;
}

/* SM ≥ 576px */
@media (min-width: 576px) {
  .col-sm-1 {
    flex-basis: 8.33%;
    max-width: 8.33%;
  }

  .col-sm-2 {
    flex-basis: 16.66%;
    max-width: 16.66%;
  }

  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex-basis: 33.33%;
    max-width: 33.33%;
  }

  .col-sm-5 {
    flex-basis: 41.66%;
    max-width: 41.66%;
  }

  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex-basis: 58.33%;
    max-width: 58.33%;
  }

  .col-sm-8 {
    flex-basis: 66.66%;
    max-width: 66.66%;
  }

  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex-basis: 83.33%;
    max-width: 83.33%;
  }

  .col-sm-11 {
    flex-basis: 91.66%;
    max-width: 91.66%;
  }

  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* MD ≥ 768px */
@media (min-width: 768px) {
  .col-md-1 {
    flex-basis: 8.33%;
    max-width: 8.33%;
  }

  .col-md-2 {
    flex-basis: 16.66%;
    max-width: 16.66%;
  }

  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex-basis: 33.33%;
    max-width: 33.33%;
  }

  .col-md-5 {
    flex-basis: 41.66%;
    max-width: 41.66%;
  }

  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex-basis: 58.33%;
    max-width: 58.33%;
  }

  .col-md-8 {
    flex-basis: 66.66%;
    max-width: 66.66%;
  }

  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex-basis: 83.33%;
    max-width: 83.33%;
  }

  .col-md-11 {
    flex-basis: 91.66%;
    max-width: 91.66%;
  }

  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* LG ≥ 992px */
@media (min-width: 992px) {
  .col-lg-1 {
    flex-basis: 8.33%;
    max-width: 8.33%;
  }

  .col-lg-2 {
    flex-basis: 16.66%;
    max-width: 16.66%;
  }

  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex-basis: 33.33%;
    max-width: 33.33%;
  }

  .col-lg-5 {
    flex-basis: 41.66%;
    max-width: 41.66%;
  }

  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex-basis: 58.33%;
    max-width: 58.33%;
  }

  .col-lg-8 {
    flex-basis: 66.66%;
    max-width: 66.66%;
  }

  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex-basis: 83.33%;
    max-width: 83.33%;
  }

  .col-lg-11 {
    flex-basis: 91.66%;
    max-width: 91.66%;
  }

  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}


/* Flexbox Utilities */

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

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

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

.justify-content-start {
  justify-content: flex-start;
}

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

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

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

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


/* Hide on all screens */
.col-hide {
  display: none !important;
}

/* Extra Small (Phones <576px) */
@media (max-width: 575.98px) {
  .col-xs-hide {
    display: none !important;
  }
}

/* Small (≥576px and <768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .col-sm-hide {
    display: none !important;
  }
}

/* Medium (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .col-md-hide {
    display: none !important;
  }
}

/* Large (≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .col-lg-hide {
    display: none !important;
  }
}

/* Extra Large (≥1200px) */
@media (min-width: 1200px) {
  .col-xl-hide {
    display: none !important;
  }
}



/* Simple Spacing Utilities */
.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.offset-4 {
  margin-left: 33.33%;
}


/* Small Container Padding for Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}



header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 112px;
  background-color: transparent;
  transition: background-color 0.3s ease;
  box-shadow: 0px 3px 6px #00000029;
  padding: 0 5%;
}

header.scrolled {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

header.scrolled>div img {
  /* margin-top: 12px; */
}

header .menu-button {
  display: flex;
}

header .mobile-menu.open {
  width: 100%;
}

header .logo>a {
  display: block;
}


header>div img {
  max-width: 100%;
}


header nav.scrolled {
  background-color: #fff;
}

header nav ul {
  display: flex;
  gap: 36px;
}

header nav ul li {
  cursor: pointer;
}

header nav ul li>a {
  color: var(--color-text-dark);
  font-weight: 500;
  font-size: 18px;
  line-height: 31px;
  transition: all 0.3s ease-in-out;
}

header nav ul li>a:hover{
  color: var(--color-primary);
  font-weight:900;
}

header nav ul li:hover>a,
header nav ul li.current-menu-item>a {
  color: var(--color-primary);
  font-weight:900;
}

header .menu-button {
  width: 28px;
  height: 21px;
  position: relative;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  z-index: 99999;
  display: none;
}

header .bar {
  width: 100%;
  height: 3px;
  margin-bottom: 6px;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
}

header .open .bar:nth-child(1) {
  transform: rotate(45deg) translate(8px, 5px);
}

header .open .bar:nth-child(2) {
  opacity: 0;
}

header .open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -5px);
}

header .mobile-menu {
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 0;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

header .mobile-menu .img-wrapper {
  padding: 30px 40px;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .mobile-menu .img-wrapper>div>a {
  display: inline-block;
  margin-bottom: 45%;
}

header .mobile-menu>div {
  flex: 0 0 auto;
  width: 50%;
  height: 100%;
}

header .mobile-menu .contact-content {
  padding: 0;
  margin: 0;
  list-style: none;
}

header .mobile-menu .contact-content>li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

header .mobile-menu .contact-content svg {
  fill: #333;
  max-width: 18px;
}

header .mobile-menu .contact-content a {
  font-size: 15px;
  line-height: 1;
  color: #333;
  font-weight: 700;
}

header .mobile-menu .nav-wrapper {
  min-height: 400px;
  overflow-y: auto;
}

header .mobile-menu .nav-wrapper>div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

header .mobile-menu .nav-wrapper ul {
  padding: 0;
  text-align: right;
  width: 92%;
}

header .mobile-menu .nav-wrapper ul .dropdown-menu {
  width: 100%;
}

header .mobile-menu .nav-wrapper ul li {
  margin-bottom: 25px;
  width: 100%;
}

header .mobile-menu .nav-wrapper ul li:last-child {
  margin-bottom: 0;
}

header .mobile-menu .nav-wrapper ul li a {
  font-size: 25px;
  line-height: 30px;
  color: #333;
  font-weight: 700;
}

header .mobile-menu .nav-wrapper ul li a:hover {
  color: var(--color-secondary);
}

header .mobile-menu .nav-wrapper ul li ul {
  padding: 0;
  margin-top: 0;
}

header .mobile-menu .nav-wrapper ul li ul li {
  margin-bottom: 0;
}

header .mobile-menu .nav-wrapper ul li ul li a {
  font-size: 15px;
  line-height: 25px;
}

header .mobile-menu .nav-wrapper ul li.active>a {
  color: var(--color-secondary);
}



/* Responsive Styles */


@media (max-width: 1060px) {
  header .main-menu-desk {
    display: none;
  }

  header .menu-button {
    display: block;
  }

  header {
    align-items: center;
    padding: 0 60px;
  }

  header>div img {
    margin-left: 0;
  }

  header nav {
    display: none;
  }
}

@media (max-width: 768px) {
  header .main-menu-desk {
    display: none;
  }

  header .menu-button {
    display: block;
  }

  header {
    padding: 0 24px;
  }

  header>div {
    width: 75%;
  }

  header>div.logo {
    z-index: 99999;
  }

  .logo {
    text-align: left;
  }

  .logo img {
    max-width: 75%;
  }

  .mobile-menu .img-wrapper {
    display: none !important;
  }

  .mobile-menu>div {
    flex: 0 0 auto;
    width: 100% !important;
    height: 100%;
  }

  .mobile-menu .nav-wrapper>div {
    justify-content: flex-end !important;
    height: 100% !important;
    margin-right: 80px;
  }
}


.main-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0 146px;
  background: #ffffff;
}

.main-section.hero-banner::before {
  content: '';
  /* content: ""; */
  position: absolute;
  top: 0px;
  right: 0;
  width: 100%;
  /* adjust size */
  height: 100%;
  /* full height of banner */
  background-image: url("../images/bgimg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  pointer-events: none;
  /* z-index: -1; */
}

.main-section .bannerimg {

position: absolute;

bottom: -225px;

/* left: 0; */

right: 0px;

/* height: 100%; */

width: auto;

object-fit: cover;

z-index: -1;
}
 /* stays behind content */
.what

img.what-bg {
    position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

object-fit: cover;

z-index: -1; /* stays behind content */

}

.main-section .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.main-section .container {
  position: relative;
  z-index: 1;
  color: white;
}

.main-section .feature-banner p {
  color: var(--color-text-dark);
  font-weight: 500;
}

.main-section .feature-banner .btn-primary-lg {
  font-weight: 500;
}

/* ======= Section: Why Choose ======= */
.section-why-choose {
  position: relative;
}

.section-why-choose::after {
  content: '';
  width: 418px;
  height: 862px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url('/images/mask-why-choose-bg.png');
  background-repeat: no-repeat;
  z-index: -1;
}

/* ======= Content Section ======= */
.content-section {
  padding-top: 100px;
  padding-bottom: 150px;
  position: relative;
}

.content-section::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url('//shape-right.png') no-repeat;
  width: 157px;
  height: 658px;
}

/* ======= Responsive ======= */
@media (min-width: 992px) and (max-width: 1190px) {
  .content-section img {
    margin-left: 0 !important;
  }
}

@media (max-width: 992px) {
  .main-section {
    position: relative;
  }

  .content-section {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .feature-banner p {
    margin-right: 0;
  }

  .content-section img {
    max-width: 60%;
  }

  .main-section {
    padding: 0 0 60px;
    min-height: 485px;
  }

  .main-section .feature-banner p {
    margin-right: 10%;
  }

  .btn-group {
    gap: 16px;
  }

  .section-why-choose::after {
    content: none;
  }
}

@media (max-width: 576px) {
  .main-section .feature-banner p {
    margin-right: 0;
  }
}

@media (max-width: 490px) {
  /* Commented SCSS code skipped as it was inactive */
}

@media (max-width: 420px) {
  /* Commented SCSS code skipped as it was inactive */
}


/* Featured List */
.featured-list li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.featured-list .list-icon {
  width: 74px;
  height: 74px;
  text-align: center;
}

/* Text & Layout Helpers */
.text-left {
  text-align: left;
}

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

.w-100 {
  width: 100%;
}

.mx-w-100 {
  max-width: 100%;
}

.color-secondary {
  color: #333 !important;
}



.mb-32 {
  margin-bottom: 32px !important;
}

.my-98 {
  margin-top: 98px !important;
  margin-bottom: 98px !important;
}

/* Info & Contact */
.info-box {
  padding: 58px 63px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.contact-details a {
  color: #007bff;
  font-size: 18px;
  text-decoration: none;
}

/* Tabs */
.tab-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tab-header button {
  font-size: 15px;
  line-height: 21px;
  padding: 0px 0px 4px;
  border: none;
  cursor: pointer;
  color: #295073;
  background: transparent;
  border-bottom: 2px solid transparent;
}

.tab-header button.active {
  border-bottom: 2px solid #333;
}

.tab-content {
  padding-top: 36px;
}

/* Table */
.table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0 54px;
  color: #333;
}

.table th,
.table td {
  border: 1px solid #ddd;
  padding: 20px 12px;
  text-align: center;
}

.table thead {
  background: #f5f5f5;
}

/* Section */
section.default {
  padding: 90px 0;
}


.rel {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}

.abs {
  position: absolute;
}

.what {
    position: relative;
    width: 100%;
    min-height: 670px; /* REQUIRED so image can show */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image */
.what img.what-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* stays behind content */
}



.what .feature-banner {
  right: 0;
  left: 0;
  width: 85%;
  margin: 0 auto;
}


/* Responsive */
@media (max-width: 992px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
  }

  h2 {
    font-size: 48px;
    line-height: 56px;
  }

  h3 {
    font-size: 36px;
  }

  p {
    font-size: 17px;
  }

  .info-box {
    padding: 32px;
  }

  .container {
    padding: 0 3rem;
  }

  .what .feature-banner {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 50px;
    line-height: 44px;
    margin-top: 60px;
  }

  h2 {
    font-size: 36px;
    line-height: 44px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  p,
  .btn-primary {
    font-size: 16px;
  }

  section.default {
    padding: 60px 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .what .feature-banner {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .featured-list .list-icon {
    width: 44px;
    height: 44px;
  }
}

footer {
  padding: 74px 5% 10px;
  background-color: var(--color-primary);
  /* Replace with your actual $color-primary */
  opacity: 1;
}

.footer-menu-desk {
  display: flex;
  gap: 36px;
}

.footer-menu-desk li a {
  color: var(--color-light);
  font-weight: 300;
}

.footer-menu-desk li a:hover {
  color: var(--color-secondary);
}

.footer-logo {}

.footer-logo a {
  display: block;
}

.footer-content {
  max-width: 670px;
  margin-right: 78px;
}

.footer-content h4 {
  color: #fff;
}

.footer-content p {
  font-size: 18px;
  line-height: 27px;
  color: #fff;
}

.copyright-text {
  color: #fff;
  /* Replace with $color-light */
  font-size: 16px;
  text-align: left;
  margin-top: 18px;
  opacity: 0.6;
}

.copyright-text2 {
  color: #fff;
  font-size: 16px;
  text-align: right;
  margin-top: 18px;
  opacity: 1;
  display: flex;
  justify-content: end;
  gap: 10px;
}

.copyright-text2 a{color:var(--color-light); font-size:16px; border:0px;}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-container {
    width: calc(100% - 30px);
  }
}

@media (max-width: 768px) {
  .copyright-text {
    font-size: 16px;
	  text-align:center;
  }
	.copyright-text2{
		text-align:center;
		display:block;
	}

  .row {
    margin-right: auto;
    margin-left: auto;
  }

  footer {
    padding-left: 24px;
    padding-right: 24px;
  }
footer ul {
    margin: 0;
    padding: 0;
    display: block !important;
    text-align: center;
}
	.footer_copy{display:block!important; text-align:center;}
}

@media (min-width: 1170px) and (max-width: 1280px) {
  .footer-logo {
    margin-left: 0;
  }
}

@media (max-width: 1169px) {
  .footer-container {
    text-align: center;
  }

  .footer-container .row {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .footer-content {
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
  }

  .footer-logo {
    margin-left: 0;
  }
}

.contact-form {
  padding: 31px 63px;
  background-color: #f5f6e7;
  border-radius: 14px;
}

.contact-form p {
  margin-bottom: 0px;
}

a.back-to-top {
  color: #98a729;
  text-decoration: underline;
  font-size: 15px;
  line-height: 31px;
  font-weight: 400;
}
.hr{
  border-top: 1px solid var(--color-light);
  opacity: 0.6;
}
.inner-bg{
  background: var(--color-primary);
}
.btn-bg{
  background: var(--color-secondary);
}
.main-section.inner-bg  .feature-banner p{color:var(--color-light);max-width: 465px;}
.main-section.inner-bg  .feature-banner p strong{color:var(--color-secondary);font-weight: 900;font-size: 20px;}
.inner-sec{
  background-color: var(--color-light);
  padding: 120px 0px;
}

.inner-sec ul {
  margin: 0;
  padding: 0;
}

.inner-sec ul li {
  list-style: none;
  position: relative;
  padding-left: 30px; /* space for the icon */
  margin-bottom: 10px;
}

.inner-sec ul li::before {
  content: ''; /* required for ::before to show */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* vertically center */
  width: 20px; /* adjust to your icon size */
  height: 20px; /* adjust to your icon size */
  background-image: url(../images/path76.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.inner-sec .contact {
    background-color: var(--color-light);
    text-align: center;
    border-radius: 10px;
    border: 0.5px solid lightgray;
    padding: 30px 20px;
    min-height: 300px;
    margin-bottom: 10px;

    display: flex;
    flex-direction: column; /* stack items vertically */
    justify-content: center; /* center vertically */
    align-items: center; /* center horizontally */
    gap: 12px; /* spacing between items */
}
.inner-sec .contact p {
	margin-bottom: 0;
}


/* Center the UL */
.side {
    margin: 0 auto;
    padding: 0;
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px 25px; /* row-gap column-gap */
    margin-left: 3%;
}

/* Base: Desktop - 3 columns */
.side li {
    list-style: none;
    position: relative;
    padding-left: 30px;
    color: var(--color-light);
    text-align: left;
    flex: 0 0 calc(25.333% - 21px); /* 3 columns */
    box-sizing: border-box;
}

/* Tablet & Mobile: 2 columns */
@media (max-width: 991px) {
    .side li {
        flex: 0 0 calc(50% - 20px); /* 2 cols */
    }
}

/* Small Mobile: 1 column */
@media (max-width: 575px) {
	.side {margin-left:0%}
    .side li {
        flex: 0 0 calc(50% - 20px);
		font-size:13px;
    }
}

/* Icon styling */
.side li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background-image: url(../images/path76.png);
    background-size: contain;
    background-repeat: no-repeat;
}

/* DEFAULT: Mobile first — image first, text second */
.custom-img  { order: 1; }
.custom-text { order: 2; }

/* Desktop (>= 992px) — restore alternating layout */
@media (min-width: 992px) {
	.row-odd{padding: 120px 0px;}
  /* Even rows: text left, image right */
  .row-even .custom-text { order: 1; }
  .row-even .custom-img  {order: 2;text-align: right;}

  /* Odd rows: image left, text right */
  .row-odd .custom-text { order: 2; }
  .row-odd .custom-img  {order: 1;text-align: left;}
}
