/* Root Variables: Consolidated colors and gradients */
:root {
  /* Core Colors */
  --primary--color: #6fb22e; /* Main green */
  --secondary--color: #2a6545; /* Darker green */
  --dark-secondary-color: #2b4e38; /* Darkest green */
  --tertiary--color: #009688; /* Teal */
  --yellow--color: #fdbf14; /* Yellow */
  --color-light: #ffffff; /* Unified white */
  --color-dark: #000000; /* Unified black */
  --dark-grey: #313131; /* Dark grey */
  --light-grey: #ececec; /* Light grey */
  --medium-grey: #adadad; /* Medium grey */
  --light-clr: #f2f2f2; /* Light background color */
  --antiquewhite: antiquewhite; /* Antique white */
  --line--color: #12346b21; /* Semi-transparent line color */
  --purple: #4c4c4c; /* Purple for specific elements */
  --ff-red: #F44336; /* Florance Flora Red */

  /* Social Media Colors */
  --social-fb: #3b5998;
  --social-whatsapp: #25d366;
  --social-twitter: #000000;
  --social-google: #009fdd;
  --social-instagram: #d82f83;
  --social-linkedin: #0077b5;
  --social-threads: #000000;
  --social-tiktok: #69c9d0;
  --social-youtube: #ff0000;
  --social-snapchat: #fffc00;
  --social-quora: #b92b27;
  --social-pinterest: #e60023;
  --social-discord: #7289da;
  --social-dribbble: #ea4c89;
  --social-github: #181717;
  --social-telegram: #0088cc;
  --social-spotify: #1db954;
  --social-vimeo: #1ab7ea;

  /* Gradients */
  --primary-gradient: linear-gradient(to right, var(--dark-secondary-color), var(--dark-secondary-color), var(--secondary--color), var(--primary--color));
  --secondary-gradient: linear-gradient(90deg, rgba(59, 189, 173, 1) 0%, rgba(195, 216, 41, 1) 100%);
  --cross-pattern: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='40' height='40' patternTransform='scale(1) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(0, 0%, 100%, 0)'/><path d='M11 6a5 5 0 01-5 5 5 5 0 01-5-5 5 5 0 015-5 5 5 0 015 5' stroke-width='1' stroke='none' fill='hsla(259, 11%, 65%, 1)'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
}

/* Base */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: #fff;               /* plain base */
}

/* Create an isolated stacking context so ::before sits above base but behind content */
body {
  position: relative;
  isolation: isolate;             /* important */
}

/* Light gradient overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;                    /* behind all body content */
  background: conic-gradient(
    from 250deg at 0% 0%,
    #afc6ff,
    var(--yellow--color),
    var(--yellow--color),
    var(--yellow--color),
    var(--secondary--color),
    var(--secondary--color),
    var(--secondary--color)
  );
  opacity: 0.1;                  /* ← make it lighter/darker (try 0.05–0.15) */
  background-size: 150% 100%;
  animation: light-wave-gradient 10s ease-in-out infinite alternate;
}

@keyframes light-wave-gradient {
  0%   { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}




a {
  color: var(--primary--color);
  text-decoration: none !important;
}

a:hover {
  color: var(--primary--color);
}

/* Typography */
p {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
}

h1, h2, h3, h4 {
  letter-spacing: 0;
    font-family: "Noto Serif", serif;
}

h3 {
  font-size: 1.68rem;
}

b, strong {
  font-weight: 500 !important;
  font-family: inherit !important;
}

.title-font, .title__font-low, .title__font {
  font-family: "Noto Serif", serif;
  margin: 0;
  padding: 0;
}


.text-body, .font-smaller {
  font-size: 0.875rem !important;
}

.font-small {
  font-size: 0.9375rem;
}

.fs-small {
  font-size: small;
}

.fs-5 {
  font-size: 1rem !important;
}

.fs-6 {
  font-size: 0.8rem !important;
}

.fw-bold {
  font-weight: 500 !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-medium {
  font-weight: 400 !important;
}

.letter-spacing-5 {
  letter-spacing: 0.3125rem;
}

.line-height-1 {
  line-height: 1 !important;
}

.line-height-1-3 {
  line-height: 1.3 !important;
}

.lh-20 {
  line-height: 1.25rem;
}

.text-justify {
  text-align: justify;
}

.text-bold {
  font-weight: 500 !important;
}

.font-cursive {
  font-family: "Inter", sans-serif;
  font-style: italic;
}

.text-line {
  position: relative;
  text-align: left;
  z-index: 1;
  overflow: hidden;
}

.text-line:before, .text-line:after {
  position: absolute;
  top: 50%;
  overflow: hidden;
  width: 100%;
  height: 0.625rem;
  content: '\a0';
  background-color: var(--yellow--color);
  margin-left: 0.625rem;
}

.text-line:before {
  margin-left: -101%;
  text-align: right;
}

/* Font Sizes */
.font-1em { font-size: 1em !important; }
.font-1-2em { font-size: 1.2em !important; }
.font-1-5em { font-size: 1.5em !important; }
.font-1-8em { font-size: 1.8em !important; }
.font-2em { font-size: 2em !important; }
.font-3em { font-size: 3em !important; }
.font-6em { font-size: 6em !important; }
.font-7em { font-size: 7em !important; }
.big-font, .big-font-1 { font-size: 6em !important; line-height: 0.8; }
.font-sub { font-size: 4em !important; }
.f-60 { font-size: 3.2rem !important; line-height: 1.2; }
.f-50 { font-size: 2.1875rem; line-height: 1; }
.f-18 { font-size: 1.125rem !important; }
.f-12 { font-size: 0.75rem !important; }
.news-date { font-size: 1.8rem !important; line-height: 0.8; }

/* Text Colors */
.text-primary, .text-green, .text-base-color, .btn-products {
  color: var(--primary--color) !important;
}

.text-secondary, .tab-text-color, .powered, .icon_color, .footer-head {
  color: var(--secondary--color) !important;
}

.text-dark-secondary {
  color: var(--dark-secondary-color) !important;
}

.text-grey {
  color: var(--medium-grey) !important;
}

.text-yellow {
  color: var(--yellow--color) !important;
}

.text-white, .social-color li a, .head_hover, .head_hover:hover {
  color: var(--color-light) !important;
}

.text-white--75 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.text-purple {
  color: var(--purple);
}

/* Navigation */
.top-nav-bg {
  background-color: var(--color-light);
  border-bottom: 1px solid var(--light-grey);
}


#navbar {
  background-color: rgba(227, 243, 255, 0.32);
  position: fixed;
  top: -150px;
  width: 100%;
  transition: top 0.5s;
  z-index: 99999;
  backdrop-filter: blur(0.9375rem);
}

#navbar a {
  float: left;
  display: block;
  color: var(--color-light);
  text-align: center;
  text-decoration: none;
  font-size: 1em;
}

#navbar a:hover {
  color: var(--primary--color);
}

.navbar .dropdown-menu {
  max-height: inherit;
  overflow: visible;
  background-color: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  box-shadow: none;
}

.navbar .dropdown-menu::-webkit-scrollbar, .slided::-webkit-scrollbar, .why-choose::-webkit-scrollbar {
  display: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

.navbar-dark .navbar-toggler {
  border-color: var(--color-light);
  background-color: var(--color-light);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2847, 48, 141, 100%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-light .navbar-toggler {
  color: transparent;
  border-color: transparent;
}

.nav-item:hover .nav-link, .navtext:hover {
  transition: color 0.15s ease-in-out;
}

.nav-item .nav-link {
  color: var(--color-light);
  transition: color 0.15s ease-in-out;
  font-size: 1em;
  font-weight: 300;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: var(--secondary--color);
  border-color: 1px solid var(--secondary--color);
  background-color: transparent;
  font-weight: 300;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  color: var(--primary--color) !important;
  border-color: transparent !important;
  isolation: isolate;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: var(--color-light);
  background-color: var(--secondary--color);
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--primary--color);
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--secondary--color);
}

.nav--logo {
  width: 7.5rem;
  padding: 0.625rem;
  height: auto;
}

.dropdown-item {
  display: block;
  width: 100%;
  clear: both;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-bottom: 0.03125rem solid rgba(0, 0, 0, 0.22) !important;
  line-height: 2;
  min-width: 15.625rem;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: var(--secondary--color) !important;
  background-color: transparent;
}

.dropdown-menu li {
  position: relative !important;
}

.dropdown-menu .dropdown-submenu {
  position: absolute;
}

.dropdown-menu .dropdown-submenu-left {
  right: 100%;
  left: auto;
}

.dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
}

/* Sidebar */
.sidebar1 {
  position: fixed;
  bottom: 21.875rem;
  right: -10.25rem;
  height: 4.375rem;
  width: 17.1875rem;
  display: flex;
  justify-content: center;
  background: var(--primary-gradient);
  background-size: cover;
  color: var(--color-light);
  z-index: 1111;
  border-radius: 0.625rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border: 0;
  font-family: inherit;
}

.sidebar-text {
  float: left;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  margin: 0 auto;
  text-align: left;
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  margin-right: 3.25rem;
  writing-mode: vertical-rl;
  transform: rotate(90deg);
  text-orientation: mixed;
}

/* Buttons */
.header-button, .btn-border-dark {
  background: var(--primary-gradient);
  background-size: 200% 100%;
  font-weight: 500;
  color: var(--color-light) !important;
  border-radius: 15.625rem;
  background-position: 0% 0%;
  transition: background-position 1s ease;
  display: inline-block;
  padding: 0.6875rem 0;
}

.header-button:hover, .btn-border-dark:hover {
  background-position: 100% 0%;
}

.cta-button, .btn-border-light-outlined {
  background: transparent;
  border: 1px solid var(--dark-secondary-color);
  font-weight: 500;
  color: var(--dark-secondary-color) !important;
  border-radius: 15.625rem;
  transition: all 0.5s;
}

.cta-button:hover, .btn-border-light-outlined:hover {
  background: var(--dark-secondary-color);
  color: var(--color-light) !important;
  border: 1px solid var(--dark-secondary-color);
}

.btn-border-light {
  color: var(--color-light);
  font-size: 1em;
  padding: 0.625rem 2.5rem;
  border-radius: 15.625rem;
  border: 1px solid var(--color-light);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-border-light:hover {
  background: var(--color-light);
  color: var(--dark-secondary-color);
}

.btn-slider {
  color: var(--color-light);
  font-size: 1em;
  padding: 0.75rem 2.1875rem;
  border-radius: 15.625rem;
  border: 1px solid var(--color-light);
  backdrop-filter: saturate(140%) blur(0.3125rem);
}

.btn-slider:hover {
  background: var(--primary-gradient);
  background-size: 200% 100%;
  background-position: 100% 0%;
  color: var(--color-light) !important;
  transition: background-position 1s ease;
}

.btn-link-light {
  display: inline-block;
  line-height: 1.5;
  color: var(--primary--color);
  border: 1px solid var(--primary--color);
  background: var(--color-light);
  font-size: 2em !important;
  padding: 0.5rem;
  border-radius: 15.625rem;
}

.btn-link-light:hover {
  color: var(--color-light);
  border: 1px solid var(--color-light);
  background: var(--primary--color);
}

.btn-ff-red {
  color: var(--color-light);
  background: var(--ff-red);
  font-size: 1em;
  padding: 0.75rem 2.1875rem;
  border-radius: 15.625rem;
  backdrop-filter: saturate(140%) blur(0.3125rem);
}

.btn-ff-red:hover {
  color: var(--color-light);
  background: var(--primary--color);
  font-size: 1em;
  padding: 0.75rem 2.1875rem;
  border-radius: 15.625rem;
  backdrop-filter: saturate(140%) blur(0.3125rem);
}

.btn-link-categories, .btn-link-white-categories {
  display: inline-block;
  line-height: 1.5;
  color: var(--secondary--color);
  border: 1px solid var(--secondary--color);
  background: transparent;
  font-size: 2em !important;
  padding: 0.5rem;
  border-radius: 15.625rem;
  transition: all 0.3s ease;
}

.btn-link-categories:hover, .btn-link-white-categories:hover {
  color: var(--color-light);
  border: 1px solid var(--color-light);
  background: var(--primary--color);
  transform: rotate(45deg);
}

.btn-link-dark {
  display: inline-block;
  line-height: 1.5;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  font-size: 2em !important;
  padding: 0.3125rem;
  border-radius: 15.625rem;
}

.btn-link-dark:hover {
  color: var(--primary--color);
  border: 1px solid var(--primary--color);
}

.btn-link-dark.material-symbols-outlined {
  font-size: 1.25rem;
  color: #333;
  transition: color 0.3s ease;
  transform: translateZ(0);
}

.box-cat:hover .btn-link-dark.material-symbols-outlined {
  color: var(--color-light);
}

.btn-whatsapp {
  color: var(--color-light);
  background-color: var(--social-whatsapp) !important;
  font-size: 0.875rem;
  padding: 0.625rem;
  border: none;
}

.btn-whatsapp:hover {
  background-color: var(--social-whatsapp) !important;
  color: var(--color-light) !important;
}

.btn-success {
  background-color: var(--primary--color);
  border-color: var(--primary--color);
}

.btn-success:hover {
  background-color: var(--primary--color);
  border-color: var(--primary--color);
  color: var(--color-dark) !important;
}

.btn-outline-warning {
  color: var(--color-dark) !important;
  border-color: var(--secondary--color);
}

.btn-outline-warning:hover {
  color: var(--color-light) !important;
  background-color: var(--secondary--color);
  border-color: var(--secondary--color);
}

.btn-outline-warning:focus, .btn-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5) !important;
}

.btn-warning {
  border-color: var(--secondary--color);
  background-color: var(--secondary--color);
  color: var(--color-light);
}

.btn-warning:hover {
  color: var(--color-light) !important;
}

.btn-warning:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

.white-button {
  background-color: var(--color-light);
  font-weight: 500;
  color: var(--color-dark);
  border: 1px solid var(--color-light);
  transition: all 0.3s;
}

.white-button:hover {
  background-color: transparent;
  color: var(--color-light) !important;
  border: 1px solid var(--color-light);
}

.button_bt {
  color: var(--color-light);
  background-color: var(--secondary--color);
  border-radius: 2rem;
}

.btn-products:hover {
  background-color: var(--secondary--color) !important;
  color: var(--color-light) !important;
}

.btn-border {
  border: 1px solid var(--primary--color);
  background-color: transparent;
  transition: all 0.25s ease-in-out;
}

.btn-border:hover {
  border: 1px solid var(--secondary--color);
  background-color: var(--secondary--color);
}

.btn-web-primary {
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  padding-left: 1em;
  padding-right: 1em;
  border-right: 1px solid var(--light-clr);
}

.btn-web-primary:first-of-type {
  padding-left: 0;
}

.btn-light:hover {
  background-color: var(--secondary--color) !important;
  color: var(--color-light) !important;
}

.button_adjust {
  color: var(--color-dark);
  background-color: var(--light-clr);
  border-color: #e3e4e5;
}

.button_adjust:hover {
  color: var(--color-light);
  background-color: var(--primary--color);
}

.rtin-btn {
  margin-top: 3.1875rem;
  text-align: center;
}

.rtin-btn a {
  border: 1px solid var(--primary--color);
  color: var(--primary--color);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  padding: 0.875rem 2.1875rem;
  text-decoration: none;
}

.rtin-btn a:hover {
  background-color: var(--primary--color);
  color: var(--color-light);
}

.project-button {
  background: var(--primary--color) !important;
  color: var(--color-light) !important;
  font-size: 0.8125rem;
  border: 1px solid var(--primary--color);
  transition: all 0.5s;
}

.project-button:hover {
  background: var(--color-light) !important;
  color: var(--color-dark) !important;
  border: 1px solid var(--color-dark);
}

.arrow-hover-button {
  padding-right: 0 !important;
  transition: all 0.4s ease;
}

.arrow-hover-button:hover {
  padding-right: 4.0625rem !important;
}

.group-hover-trigger {
  transition: transform 0.3s ease;
}

.group-hover-trigger:hover .btn-border-light {
  background: var(--primary-gradient);
  border-color: var(--primary--color);
  color: var(--color-light);
}

.group-hover-trigger:hover .icon-circle, .group-hover-trigger:hover .icon-circle-dark {
  background-color: var(--primary--color);
  border: 1px solid var(--primary--color);
}

.group-hover-trigger:hover .arrow-icon, .group-hover-trigger:hover .arrow-icon-dark {
  color: var(--color-light);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.cta-name {
  display: block;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  line-height: 1.2;
  color: var(--medium-grey) !important;
  font-weight: 300;
  padding: 0.625rem 1rem !important;
  padding-bottom: 1.0625rem;
  transition: all 0.3s;
  width: fit-content;
}

.cta-name-two {
  display: block;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  line-height: 1.2;
  color: var(--medium-grey) !important;
  font-weight: 300;
  padding: 0 !important;
  padding-bottom: 1.0625rem;
  transition: all 0.3s;
  width: fit-content;
}

.link__btn {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.1;
  color: var(--primary--color) !important;
  font-weight: 300;
  padding: 0.4375rem 0 !important;
  transition: all 0.3s;
  font-family: "Inter", sans-serif;
  background: transparent;
  width: fit-content;
}

.link__btn:hover .link__btn i {
  transform: translateX(0.3125rem);
}

.icon-button {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.icon-circle, .icon-circle-dark {
  width: 2.8125rem;
  height: 2.8125rem;
  border-radius: 50%;
  border: 1px solid var(--color-light);
  transition: background-color 0.3s ease;
}

.icon-circle-dark {
  border: 1px solid var(--secondary--color);
}

.arrow-icon, .arrow-icon-dark {
  color: var(--color-light);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.arrow-icon-dark {
  color: var(--secondary--color);
}

.material-symbols-outlined {
  font-size: 2em !important;
}

/* SWIPER CSS */


/* Social Media Icons */
.social-icon-list li a .bi-facebook:hover { color: var(--social-fb) !important; }
.social-icon-list li a .bi-whatsapp:hover { color: var(--social-whatsapp) !important; }
.social-icon-list li a .bi-twitter-x:hover { color: var(--social-twitter) !important; }
.social-icon-list li a .bi-google:hover { color: var(--social-google) !important; }
.social-icon-list li a .bi-instagram:hover { color: var(--social-instagram) !important; }
.social-icon-list li a .bi-linkedin:hover { color: var(--social-linkedin) !important; }
.social-icon-list li a .bi-threads:hover { color: var(--social-threads) !important; }
.social-icon-list li a .bi-tiktok:hover { color: var(--social-tiktok) !important; }
.social-icon-list li a .bi-youtube:hover { color: var(--social-youtube) !important; }
.social-icon-list li a .bi-snapchat:hover { color: var(--social-snapchat) !important; }
.social-icon-list li a .bi-quora:hover { color: var(--social-quora) !important; }
.social-icon-list li a .bi-pinterest:hover { color: var(--social-pinterest) !important; }
.social-icon-list li a .bi-discord:hover { color: var(--social-discord) !important; }
.social-icon-list li a .bi-dribbble:hover { color: var(--social-dribbble) !important; }
.social-icon-list li a .bi-github:hover { color: var(--social-github) !important; }
.social-icon-list li a .bi-telegram:hover { color: var(--social-telegram) !important; }
.social-icon-list li a .bi-spotify:hover { color: var(--social-spotify) !important; }
.social-icon-list li a .bi-vimeo:hover { color: var(--social-vimeo) !important; }

/* Backgrounds and Overlays */
.bg-primary, .bg-red, .bg--blue, .table-bg {
  background: var(--primary--color) !important;
}

.bg-secondary {
  background-color: var(--secondary--color) !important;
}

.bg-dark-secondary {
  background-color: var(--dark-secondary-color);
}

.bg-dark-grey, .bg--blue-darker {
  background: var(--dark-grey) !important;
}

.bg-grey {
  background: var(--light-grey) !important;
}

.bg-antiquewhite {
  background: var(--antiquewhite);
}

.bg--light, .bg-primary-light {
  background: var(--light-clr) !important;
}

.bg-primary-gradient {
  background: linear-gradient(41deg, rgba(0, 95, 156, 1) 0%, rgba(137, 190, 64, 1) 100%);
}

.bg-secondary-gradient {
  background: var(--secondary-gradient);
}

.bg-tab {
  background-color: var(--secondary--color);
}

.background-strive {
  background: radial-gradient(circle, transparent 25%, var(--secondary--color) 26%), linear-gradient(45deg, transparent 46%, #274c3f 47%, #274c3f 52%, transparent 53%), linear-gradient(135deg, transparent 46%, #274c3f 47%, #274c3f 52%, transparent 53%);
  background-size: 1em 1em;
  background-color: var(--secondary--color);
  opacity: 1;
}

.bg-course {
  background-image: url(../img/banner-page.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--primary--color);
  height: 16.875rem !important;
}

.bg-rent {
  background-image: url('../img/rent-bg.jpg');
  height: 90%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-parallex {
  background-image: url("../img/footer-bg.png");
  background-color: #181818;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-parallex, .about-bg, .bg-test {
  background-image: url("../img/about-bg.png");
  background-color: var(--primary--color);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.placement-bg {
  background: transparent url(../img/placement.jpg) no-repeat center center;
  background-color: var(--primary--color);
  background-size: cover;
}

.bg-about {
  background-image: url('../img/about-bg.jpg');
  background-size: cover;
  background-position: center;
}

.bg-global-presence {
  background-image: url('../img/bg-global.jpg');
  background-size: cover;
  background-position: center;
}

.bg-leadership {
  background-image: url('../img/leadership-bg.jpg');
  background-size: cover;
  background-position: center;
}

.bg-contact, .contact-bg {
  background-image: url('../img/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-pages {
  background-image: url('../img/page-bg.jpg');
  background-size: cover;
  background-position: center;
}

.bg-gallery {
  background-image: url('../img/gallery-bg.jpg');
  background-size: cover;
  background-position: center;
}

.bg-blog {
  background-image: url('../img/blog-bg.jpg');
  background-size: cover;
  background-position: center;
}

.bg-cover-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testi-bg {
  background-image: url(../img/test-img.png);
  background-size: cover;
}

.bg_features {
  background-image: url(https://www.aecinstitute.com/images/info/6.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.culture-img {
  background-image: url(../img/work-culture@2x.png);
  background-repeat: no-repeat;
  background-size: 35%;
  background-position: right bottom;
}

.culture-img-2 {
  background-image: url(../img/alumni-culture.png);
  background-repeat: no-repeat;
  background-size: 35%;
  background-position: left bottom;
}

.section-lead-container {
  background-image: url(../img/lead-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  min-height: 12.5rem;
}

.grid-pattern, .news-bg {
  background-image: url(../img/grid.svg);
  background-size: auto;
  background-position: top left;
  background-repeat: repeat-x;
}

.design-pattern {
  background-image: url(../img/design-bg.jpg);
  background-size: auto;
  background-position: top left;
  background-repeat: repeat-x;
}

.overlaybrowes {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.67) 90%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3 !important;
  z-index: 1;
  background-color: var(--color-dark);
}

.bg-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  opacity: 0.4;
  background-color: var(--color-dark);
}

.gradient-overlay-white-slider, .gradient-overlay-white-section, .gradient-overlay-white-heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-light) 0%, var(--color-light) 30%, transparent 90%);
  pointer-events: none;
}

.gradient-wave-box-bg {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.gradient-wave-box-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: conic-gradient(
    from 360deg at 0% 0%,
    var(--dark-secondary-color),
    var(--dark-secondary-color),
    var(--primary--color),
    var(--primary--color)
  );
  background-size: 150% 100%;
  animation: wave-gradient 10s ease-in-out infinite alternate;
}


.gradient-wave-bg, .gradient-wave-short-bg {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.gradient-wave-bg::before, .gradient-wave-short-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: conic-gradient(
    from 270deg at 60% 240%,
    var(--dark-secondary-color),
    var(--dark-secondary-color),
    var(--primary--color),
    var(--primary--color)
  );
  background-size: 150% 100%;
  animation: wave-gradient 10s ease-in-out infinite alternate;
}

.gradient-wave-light-bg {
  position: relative;
  z-index: 1;
}

.gradient-wave-light-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: conic-gradient(
    from 250deg at 0% 0%,
    #afc6ff,
    var(--yellow--color),
    var(--yellow--color),
    var(--yellow--color),
    var(--secondary--color),
	var(--secondary--color),
   var(--secondary--color)
  );
  opacity: 0.1;
  background-size: 150% 100%;
  animation: light-wave-gradient 10s ease-in-out infinite alternate;
}

@keyframes wave-gradient {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}

@keyframes light-wave-gradient {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}

.text-gradient {
  background: conic-gradient(
    from 240deg at 80% 110%,
    var(--dark-secondary-color),
    var(--dark-secondary-color),
    var(--dark-secondary-color),
    var(--tertiary--color),
    var(--primary--color),
    var(--primary--color),
    var(--yellow--color),
    var(--yellow--color),
    var(--dark-secondary-color)
  );
  background-size: 150% 100%;
  animation: wave-gradient 10s ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-light {
  background: conic-gradient(
    from 240deg at 50% 120%,
    #afc6ff,
    var(--color-light),
    var(--color-light),
    var(--color-light),
    var(--yellow--color),
    var(--color-light),
    var(--color-light),
    var(--color-light),
    var(--primary--color)
  );
  background-size: 150% 100%;
  animation: wave-gradient 10s ease-in-out infinite alternate;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg--cross-pattern {
  background-image: var(--cross-pattern);
  background-repeat: no-repeat;
  background-size: 100% 20%;
  background-position: bottom;
}

.overlay-image {
  background-image: url(../img/home2.png), url(../img/home1.jpg);
  background-position: left 5em bottom, right top;
  background-size: 30%, 65% 100%;
  background-repeat: no-repeat, no-repeat;
}

.slider-static {
  background-color: var(--primary--color);
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #ce281c 0.9375rem), repeating-linear-gradient(var(--primary--color), #dc3a2e);
}

/* Modals */
.padding-top-modal {
  padding-top: 20vh !important;
}

/* Backdrop always below modal */
.modal-backdrop {
  z-index: -1 !important;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: saturate(1.8) blur(10px);
  -webkit-backdrop-filter: saturate(1.8) blur(10px);
}

/* Modal wrapper above backdrop */
.modal {
  z-index: 1100 !important;  /* higher than backdrop */
}

/* Modal dialog/content above backdrop */
.modal .modal-dialog,
.modal .modal-content {
  position: relative;
  z-index: 1110 !important;
}

/* ===== MODAL CONTENT (Frosted card) ===== */
.modal .modal-content.bg-modal {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: saturate(1.4) blur(6px);
  -webkit-backdrop-filter: saturate(1.4) blur(6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: modal-zoom 0.25s ease;
}

/* Zoom animation */
@keyframes modal-zoom {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}


@keyframes zoom {
  from { transform: scale(0); }
  to { transform: scale(1); }
}


.bg-counter, .box-design {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: saturate(1.8) blur(0.3125rem);
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.06);
}



.error-page-image {
  height: 30rem;
}

/* Cards and Courses */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-clip: border-box;
  border: none;
  box-shadow: none;
  border-radius: 0;
  transition: all 0.25s ease-in-out;
}

.course-card {
  /* background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.51); */
  border-radius: 0.5rem;
  padding: 0.9375rem;
}

.single-courses {
  box-shadow: 0 0 5.0625rem rgba(47, 47, 47, 0.1);
  transition: all 0.3s ease-in-out;
  margin-bottom: 2.4375rem;
  border-radius: 0.5rem;
  background-color: var(--light-clr);
}

#courses .card:hover, .hover--float-up:hover {
  transform: translateY(-0.7em);
  border-bottom: 0.3125rem solid var(--primary--color) !important;
  transition: all 0.15s ease-out;
}

#courses .card:hover .card-title {
  color: var(--primary--color) !important;
}

#courses .card:active {
  transform: translateY(0.1em);
  box-shadow: none;
  transition: all 0.15s ease-in-out;
}

.course-image {
  position: relative;
  width: 100%;
  min-height: 31.25rem;
  display: flex;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}

.course-image-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0.625rem;
  border-radius: 0.25rem;
  min-height: 160px;
}

.recommended-image-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0.625rem;
  border-radius: 0.25rem;
  max-width: 150px;
}

.course-image-wrapper img, .cat-image, .adjust_img, .adjust_card-img, .adjust_card-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.adjust_card-img {
  height: 13rem;
  margin: 0;
}

.course-title, .courses--card-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.3125rem;
  min-height: 3rem;
}

.course-subtitle {
  font-size: 0.9rem;
  color: var(--medium-grey);
}

.card-title {
  margin-bottom: 1.5rem;
}

.card-title span {
  position: relative;
  transition: all 0.3s ease-out;
  z-index: 1;
}

.card-title span img {
  position: absolute;
  left: 1.25rem;
  bottom: -0.8125rem;
  z-index: -1;
  width: 34%;
}

.card-title__min-h {
  min-height: 4rem;
}

.youtube-card {
  border-radius: 1.25em !important;
}

.single-intro-inner {
  padding: 1.875rem;
  transition: all 0.4s;
  margin-bottom: 1.25rem;
}

.single-intro-inner.style-two {
  box-shadow: 0 0 1.5625rem rgba(0, 0, 0, 0.05);
  background: var(--color-light);
}

.single-intro-inner:hover {
  box-shadow: 0 0 2.1875rem rgba(0, 0, 0, 0.15);
}

.single-intro-inner .thumb {
  margin-bottom: 0.9375rem;
  height: 3.125rem;
  width: 3.125rem;
  line-height: 3.125rem;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
}

.single-intro-inner.style-two .thumb {
  position: absolute;
  margin-top: -3.5625rem;
  margin-left: -1.75rem;
}

.single-intro-inner .details {
  margin-top: 0.5rem;
}

.bg-red .cat-thumb { background: #d96030; }
.bg-blue .cat-thumb { background: #3b6fd9; }
.bg-base .cat-thumb { background: #01bda6; }
.bg-purple .cat-thumb { background: var(--purple); }

.offer-item-footer {
  display: inline-flex;
  justify-content: start;
}

.offer-item-footer:hover .cta-name {
  color: #212529;
}

.carding {
  border: none !important;
}

.bordered {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.bordered_adjust {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border: 1px solid #e5e5e5;
}



/* Category Images */
.category_1__img, .category_2__img, .category_3__img, .category_4__img, .category_5__img, .category_6__img, .category_7__img {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  align-items: flex-end;
  position: relative;
  height: 15rem;
}

.category_1__img {
  background-image: url('../img/category_img/a1.jpg');
  padding-right: 0;
}

.category_2__img { background-image: url('../img/category_img/a2.jpg'); }
.category_3__img { background-image: url('../img/category_img/a3.jpg'); }
.category_4__img { background-image: url('../img/category_img/a4.jpg'); }
.category_5__img { background-image: url('../img/category_img/a5.jpg'); }
.category_6__img, .category_7__img { background-image: url('../img/category_img/a6.jpg'); }

.category-img-right {
  padding-right: 0.3125rem !important;
}

.cat-image-wrapper {
  height: 15.625rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  background-color: white;
}

.cat-title {
  top: 35%;
}

.category-tile {
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  color: var(--secondary--color);
}

.category-tile:hover {
  color: var(--color-light);
}

.btn-hover-group:hover .btn-link-categories {
  color: var(--color-light);
  background-color: var(--primary--color);
  transition: all 0.3s ease;
  transform: rotate(45deg);
}


/* Hide icon by default */
.cat-icon {
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: inherit; /* stays same color as title */
}

/* Show icon on hover */
.category-tile:hover .cat-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Smooth image zoom */
.cat-image {
  transition: transform 0.5s ease;
}
.category-tile:hover .cat-image {
  transform: scale(1.08);
}

/* Timeline */
.vtl {
  position: relative;
  padding: 0.625rem 0.625rem 0.625rem 3.125rem;
  max-width: 25rem;
}

.vtl, .vtl * {
  box-sizing: border-box;
}

.vtl::before {
  content: "";
  width: 0.1875rem;
  background-color: #d0d0d0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.9375rem;
}

div.event {
  position: relative;
  border-radius: 0.375rem;
  margin-bottom: 0.625rem;
}

div.event::after {
  content: "";
  background: var(--primary--color);
  border: 0.25rem solid var(--color-light);
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 50%;
  position: absolute;
  top: 20%;
  left: -2.8125rem;
}

p.date {
  font-size: 1.1em;
  font-weight: 300;
  color: var(--color-dark);
}

p.txt {
  margin: 0;
  color: #222;
}

/* Map and Global Presence */
.map-container, .map-container svg {
  width: 100% !important;
}

/* base hidden state */
.reveal-card, .reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

/* shown state */
.reveal-show {
  opacity: 1;
  transform: translateY(0);
}

/* subtle hover lift */
.reveal-card.reveal-show:hover {
  transform: translateY(-4px);
  transition-duration: .35s;
}

/* respects reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-card, .reveal-up {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.global-presence-section {
  position: relative;
  padding: 0rem 0;
  background-color: var(--color-light);
  overflow: hidden;
}

.global-presence-bg-text {
  font-size: 8rem;
  color: var(--secondary--color);
  z-index: 9;
  pointer-events: none;
  font-weight: 500;
}

.box-design {
  color: var(--color-dark);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: saturate(1.8) blur(0.3125rem);
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.06);
}

.box-design::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: conic-gradient(
    from 240deg at 60% 240%,
    var(--tertiary--color),
    var(--dark-secondary-color),
    var(--tertiary--color),
    var(--tertiary--color),
    var(--primary--color),
    var(--primary--color),
    var(--yellow--color),
    var(--yellow--color),
    var(--dark-secondary-color)
  );
  background-size: 150% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.625rem;
  box-shadow: 0 0.625rem 1.5625rem rgba(10, 66, 98, 0.3);
}

.box-design:hover::before {
  opacity: 1;
  animation: moveGradient 10s linear infinite;
}

.box-design:hover {
  color: var(--color-light);
}

@keyframes moveGradient {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 0%; }
}

.radar-pin {
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
  background: transparent;
  border-radius: 50%;
  z-index: 1;
}

.radar-pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  border: 0.125rem solid var(--primary--color);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  animation: popupEffect 5s infinite;
  animation-delay: var(--popup-delay);
}

.ihotspot_pulse p, .ihotspot_pulse-default p {
  animation: popupEffect 5s infinite;
  animation-delay: var(--popup-delay);
}

@keyframes popupEffect {
  0%, 40%, 100% { opacity: 0; }
  45%, 75% { opacity: 1; }
}

.pin-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.drag_element {
  position: absolute;
  transform: translate(-50%, -50%);
  --popup-delay: 0s;
}

.pins_image {
  transition: transform 0.3s ease;
}

.pins_image:hover {
  transform: scale(1.1);
}

.place-name, .place-name-base {
  font-size: 0.8rem;
  font-weight: 500;
}


/* TESTIMONIAL */
/* ---- BIG quotes ---- */
.testimonial-card::before,
.testimonial-card::after {
  position: absolute;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 1;
  color: var(--primary--color);
  pointer-events: none;
  user-select: none;
  content: "";
}
.testimonial-card::before {
  font-size: 25rem;
    content: "“";
    top: -8px;
    left: 12px;
    font-family: 'Noto Serif';
    z-index: -1;
    opacity: 0.2;
    color: var(--color-light);
}
.testimonial-card::after {
 content: "”";
    right: 25%;
    bottom: -35%;
    font-family: 'Noto Serif';
    font-size: 25rem;
    z-index: 1;
}

/* ---- Photo + glow ---- */
.testimonial-photo-wrap {
  position: relative;
  z-index: 1;
}

.testimonial-photo-wrap::before {
  content: "";
  position: absolute;
  left: 50%; top: 40%;
  width: clamp(200px, 40vw, 400px);
  height: clamp(200px, 40vw, 500px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.28), rgba(255,255,255,0) 70%),
    radial-gradient(closest-side, rgba(111,178,46,.35), rgba(111,178,46,0) 70%);
  filter: blur(14px);
  opacity: .8;
  z-index: -1;
  animation: blobPulse 5.5s ease-in-out infinite alternate;
}
@keyframes blobPulse {
  0%   { transform: translate(-50%,-50%) scale(0.96); opacity:.75; }
  100% { transform: translate(-50%,-50%) scale(1.04); opacity:.9; }
}

/* ---- Reveal animation ---- */
.reveal { 
  opacity: 0; 
  transform: translateY(14px); 
}
.reveal.is-visible { 
  opacity: 1; 
  transform: translateY(0); 
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1); 
}

/* Motion safety */
@media (prefers-reduced-motion: reduce){
  .testimonial-card,
  .testimonial-photo-wrap::before,
  .reveal.is-visible { transition:none; animation:none; }
  .reveal { opacity:1; transform:none; }
}
/* TESTIMONIAL */

/* Carousel */
.carousel-control-prev, .carousel-control-next {
  position: static !important;
  display: inline-block;
  margin: 0 0.3125rem;
  z-index: 999;
}

.carousel-buttons {
  position: absolute;
  bottom: 2.8125rem;
  right: 2.5rem;
  z-index: 999;
}

.carousel-caption {
  position: absolute;
  right: 0;
  bottom: -20rem;
  left: 0;
  padding: 0 0px;
  color: var(--color-light);
  z-index: 99;
  text-align: left;
}

.padding-20-percent {
  padding: 0 20% !important;
}

.padding-top-15-percent {
  padding-top: 17% !important;
}

.carousel-caption a, .carousel-caption .text-left img {
  position: relative;
  z-index: 2;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-button-slider {
  border-radius: 15.625rem;
    padding: 0.2rem;
    transition: all 0.3s;
    border: 1px solid #FFF;
}

.carousel-button-slider:hover {
  background-color: #fff;
  color: var(--secondary--color);
}

.carousel-multi-item .controls-top {
  margin-bottom: 1.88rem;
  text-align: center;
}

.carousel-multi-item .controls-top .btn-floating {
  background: var(--primary--color);
}

.btn-floating {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0;
  margin: 0.625rem;
  overflow: hidden;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 0.3125rem 0.6875rem rgba(0, 0, 0, 0.18), 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.15);
  width: 2.9375rem;
  height: 2.9375rem;
  transition: all 0.2s ease-in-out;
}

.btn-floating i {
  display: inline-block;
  width: inherit;
  color: var(--color-light);
  text-align: center;
  font-size: 1.25rem;
  line-height: 2.9375rem;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: #3b3b3b !important;
  text-transform: uppercase;
  padding: 0.5625rem 0.75rem;
  background-color: var(--color-light) !important;
  border: 1px solid rgba(199, 199, 199, 0.5) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.15s ease, border 0.3s ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}

/* Images */
.img-responsive, .w-slider-responsive, .w-custom-80 {
  width: 100%;
}

.adjust_img, .adjust_card-img, .adjust_card-img-inner {
  object-fit: cover;
  object-position: center;
}

.adjust_card-img {
  width: 100%;
  height: 13rem;
  margin: 0;
}

.adjust_card-img-inner {
  width: 100%;
  margin: 0;
}

.placement-logo {
  height: 17.5rem;
  padding: 0.625rem;
  width: 100%;
}

.product-image {
  max-height: 35rem;
  overflow: hidden;
  border-radius: 1.5625rem;
}

.testimonial-img {
  object-fit: cover;
  min-height: 31.25rem;
  z-index: -1;
}

.about-img {
  height: 23.75rem;
  margin-top: -3.25rem;
}

.user-img {
  width: 6.25rem;
  position: relative;
}

.user-img--lg {
  width: 12.5rem;
  border: 2px solid var(--light-grey);
  border-radius: 50%;
}

.blog-list__img {
  margin: 0 !important;
  padding: 0 !important;
  height: 3.75rem;
}

.blog-user__img {
  width: 3.125rem;
}

.image_adjust {
  width: 5.1875rem;
  border-radius: 50%;
}

.round_img {
  margin-left: 6.6875rem;
}

.on--top--img {
  margin-top: -45%;
  margin-left: 3%;
}

/* Layout and Spacing */
.pl-2 { padding-left: 1em !important; }
.pr-2 { padding-right: 1em !important; }
.pr-3 { padding-right: 3em; }
.pl-3 { padding-left: 3em; }
.pr-1 { padding-right: 1.25rem; }
.pr-0 { padding-right: 0.75rem !important; }
.custom-pe-3 { padding-right: 0.5rem !important; }
.margin-left-50 { margin-left: 3.125rem !important; }
.custom_margin { margin-left: 5em !important; }
.header-margin { margin-left: 3em !important; }
.header-padding { padding-left: 3em !important; }
.margin-top-n60 { margin-top: -7.5rem; }
.margin-top-70-negative { margin-top: -4.375rem; }
.margin-negative { margin-top: -2.5rem !important; }
.margin-top-negative-3 { margin-top: -3%; }
.mt-slider { margin-top: -11%; }
.mt-slider-pages { margin-top: -8%; }
.mt-minus-10-percent { margin-top: -10%; }
.top-20 { top: -17%; }
.w-20 { width: 20%; }
.w-30 { width: 30%; }
.w-40 { width: 40%; }
.w-50 { width: 50%; }
.w-50-form { width: 50%; }
.w-96 { width: 96% !important; }
.h--custom { height: 15rem; }
.h-110 { height: 110%; }
.h-120 { height: 7.5rem; }
.h-200 { height: 12.5rem; }
.h-300 { height: 18.75rem; }
.h-320 { height: 20rem !important; }
.h-500 { height: 33.75rem !important; }
.page-heading-bg-100 { height: 6.25rem; }
.page-heading-bg-400 { height: 25rem; }
.slider-height { height: 100vh; }
.w--fit-content { width: fit-content; }
.position-absolute { position: absolute !important; z-index: 99; }
.z-index-top { z-index: 999999 !important; }
.z-index-2 { z-index: 2 !important; }
.background-grey { background-color: #ebebeb; }
.border--primary { border-color: var(--primary--color) !important; }
.border-secondary { border-color: var(--light-grey) !important; }
.border-one { border: 1px solid #dfdfdf; }
.border-top { border-top: 1px solid #ddd !important; }
.border-left { border-left: 1px solid #ddd !important; }
.border-right { border-right: 1px solid rgba(221, 221, 221, 0.36) !important; }
.border-none { border: none !important; }
.border-left-yellow { border-left: 0.3125rem solid var(--yellow--color) !important; padding-left: 0.9375rem; }
.b-r { border-radius: 1.125rem; }
.rounded--4, .rounded--5 { border-radius: 0.5rem; }
.custom-border { border: 0.01em solid #e1e1e1; }
.border-header { border-left: 1px solid rgba(0, 0, 0, 0.15); }
.project-container { padding-right: 3rem !important; }
.pl-testimonial { padding-left: 1.25rem !important; }
.padding-mob { padding: 0 !important; }
.ml-2 { margin-left: 0.625rem !important; }
.navbar-margin { margin-top: 1rem; }
.mobile-bg { min-height: 23.75rem !important; width: 100%; margin-top: 0.75rem; }
.position--sm-relative { position: relative !important; }
.sm--push-down { margin-top: 15rem !important; }
.float-company-name { float: left !important; }
.w--sm-50 { width: 50% !important; }
.w--sm-95 { width: 95% !important; }
.w--sm-100 { width: 100% !important; }
.p--sm-0 { padding: 0 !important; }
.ps--sm-0 { padding-left: 0 !important; }
.pb--sm-0 { padding-bottom: 0 !important; }
.my--sm-1 { margin-top: 0.1em !important; margin-bottom: 0.1em !important; }
.mt--sm-1 { margin-top: 1em !important; }
.mt--sm-2 { margin-top: 1.7em !important; }
.mt--sm-0 { margin-top: 0 !important; }
.mx--sm-auto { margin-left: auto !important; margin-right: auto !important; }
.mb--sm-0 { margin-bottom: 0 !important; }
.mb--sm-1 { margin-bottom: 2.5em !important; }
.ms--sm-1 { margin-left: 0 !important; }
.ms--sm-6 { margin-left: 6em !important; }
.mx--sm-1 { margin-left: 0.5em !important; margin-right: 0.5em !important; }
.ms--sm-3 { margin-left: 5em !important; }
.me--sm-1 { margin-left: 0.15em !important; }
.me--sm-0 { margin-left: 0 !important; }
.px--sm-0 { padding-right: 0 !important; padding-left: 0 !important; }
.px--sm-1 { padding-right: 0.5em !important; padding-left: 0.5em !important; }
.px--sm-2 { padding-right: 1.7em !important; padding-left: 1.7em !important; }
.text--sm-align-center { display: flex; align-items: center; }

/* Forms */
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.5em;
  color: #212529;
  background-color: var(--color-light);
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 3rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 0.875rem !important;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 0.875rem !important;
  border-radius: 3rem;
  line-height: 2.5;
}

.request-call-box {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 1em;
  padding: 2em 1em;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: saturate(180%) blur(1.25rem);
  transition: background-color 0.3s ease;
  box-shadow: 0.625rem 0.625rem 3.125rem rgba(11, 127, 66, 0.16);
}

.radio-box-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.radio-box-container input[type="radio"] {
  display: none;
}

.radio-box-container label {
  border: 1px solid #ccc;
  padding: 0.5rem 1.5rem;
  border-radius: 3em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
  min-width: 7.5rem;
  color: var(--medium-grey);
}

.radio-box-container label:hover {
  border-color: var(--primary--color);
  background: rgba(111, 178, 46, 0.22);
  color: var(--primary--color);
}

.radio-box-container input[type="radio"]:checked + label {
  background-color: var(--primary--color);
  color: var(--color-light);
  border-color: var(--primary--color);
}

.contact-name-box {
  border: 1px solid var(--primary--color);
  border-radius: 5px;
  padding: 0;
  backdrop-filter: saturate(180%) blur(1.25rem);
  transition: background-color 0.3s ease;
}

/* Miscellaneous */
.accordion-button:not(.collapsed) {
  color: var(--color-light);
  background-color: var(--secondary--color);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.13);
}

.scroll-move {
  position: relative;
  max-width: 100%;
  min-height: 18vh;
  margin: auto;
  color: var(--color-light);
}

.scroll-move.bg-static {
  background-position: center;
  bottom: 0;
  background-size: cover;
}

.topper:hover {
  background-color: #e51921 !important;
}

.topper:hover h5 {
  color: var(--color-light) !important;
}

.purchase_price {
  position: absolute;
  text-align: right;
  right: 0;
  width: 100%;
}

.purchase_price a {
  background: #e51921;
  font-weight: 500;
  border-radius: 0;
  color: var(--light-clr);
  font-family: "Hind", sans-serif;
  display: inline-block;
  font-size: 1.125rem;
  padding: 0.3125rem;
  text-decoration: none;
}

.footer-work {
  border-radius: 10px !important;
  background: hsla(141, 81%, 87%, 1);

background: linear-gradient(130deg, hsla(141, 81%, 87%, 1) 0%, hsla(41, 88%, 75%, 1) 51%,  #F44336 100%);

background: -moz-linear-gradient(130deg, hsla(141, 81%, 87%, 1) 0%, hsla(41, 88%, 75%, 1) 51%,  #F44336 100%);

background: -webkit-linear-gradient(130deg, hsla(141, 81%, 87%, 1) 0%, hsla(41, 88%, 75%, 1) 51%,  #F44336 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#c5f9d7", endColorstr="#f7d486", GradientType=1 );
  backdrop-filter: blur(0.625rem);
  position: relative;
}

.footer-expert-img {
position: absolute;
    right: 60px;
    bottom: 0px;
    width: 350px;
    max-width: 40%;
    z-index: 2;
    pointer-events: none;
}

.bann-hour {
  width: 32%;
  margin-top: -16.4375rem;
  z-index: 5;
  position: relative;
  background-color: var(--color-light);
  padding: 1.0625rem 0.5625rem 1.9375rem 1.125rem;
}

.slider--text {
  transform: translateY(25%);
  margin-top: 0;
}

#testimonial .card-text {
  min-height: 13rem !important;
}

.custom {
  width: 50%;
}

.block--ellipsis, .ellipsis--2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.block--ellipsis {
  -webkit-line-clamp: 3;
}

.ellipsis--2 {
  -webkit-line-clamp: 2;
}

.dynamic-content {
  line-height: 1.7;
  color: var(--color-dark);
  font-size: 1rem;
}

.dynamic-content table {
  width: 100% !important;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
}

.dynamic-content thead, tbody, tr, th, td {
  border: 1px solid #2a654521;
  padding: 0.375rem;
  padding-left: 20px;
}

.dynamic-content th {
  background-color: var(--secondary--color);
  color: var(--color-light);
}

.dynamic-content table p {
  margin: 0.5rem 0.3rem !important;
}

.dynamic-content p.blank-space {
  margin-bottom: 0;
}

.news-text p {
  margin-bottom: 0;
}

.shadow {
  box-shadow: none !important;
  border: 1px solid #dfdfdf;
}

.masked {
  background-color: transparent;
  background-image: url(../img/yellow-bg.svg);
  background-repeat: no-repeat;
  background-position: left top 1.3em;
  padding-bottom: 0.5rem;
}

@keyframes section-animation-2 {
  0% { width: 0; height: 1.25rem; }
  20% { width: 15.625rem; height: 1.25rem; }
  100% { width: 15.625rem; height: 1.25rem; }
}

.head_about {
  margin-top: -2.6875rem;
}

.iti {
  position: relative;
  display: inline-block;
  width: 100%;
}

.iti--allow-dropdown .iti__flag-container, .iti--show-selected-dial-code .iti__flag-container {
  right: auto;
  left: 1.25rem !important;
}

.iti__flag-box, .iti__country-name {
  margin-right: 0.5rem;
  color: var(--color-dark) !important;
}

.section-heading {
  margin-bottom: 1.875rem;
  font-weight: 300;
  color: #b3b3b3;
}

.section__title {
  font-size: 2.5rem;
  color: var(--secondary--color);
  text-transform: capitalize;
  z-index: 1;
  margin-bottom: 0.1875rem;
  font-weight: 900;
}

.section__title span {
  position: relative;
  transition: all 0.3s ease-out;
  z-index: 1;
}

.section__title span img {
  position: absolute;
  left: -0.875rem;
  bottom: 0.75rem;
  z-index: -1;
}

.icon_about {
  margin-left: -0.75rem;
}

/* BOTTOM NAVBAR */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: var(--secondary--color); /* glass */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 9999;
}

.bottom-nav a {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.bottom-nav a i {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
}

.bottom-nav a.active {
  color: #82b83b; /* highlight color */
}

.bottom-nav a:hover {
  color: #caed59;
}
/* BOTTOM NAVBAR */

/* ABOUT US PARTNERS */

 .trust-card{
  background: #fff;
  border: 1px solid #e5e7eb;
}

.trust-divider{
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: #e5e7eb;
}

/* Responsive logo grid */
.logo-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 32px; /* row x column */
}

@media (max-width: 992px){
  .logo-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 576px){
  .logo-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Logo sizing + hover */
.logo-item{
  height: 50px;                 /* consistent rows */
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-item img{
  max-height: 100px;             /* adjust if your logos are thinner/taller */
  max-width: 140px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: .85;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}
.logo-item img:hover{
  filter: none;
  opacity: 1;
  transform: translateY(-1px);
}

/* ABOUT US PARTNERS */

.badge-subtext {
background: #ffffff2e;
    border-radius: 5em;
    color: var(--color-light);
    /* padding: 0.625rem 1.25rem; */
    font-weight: 400;
    font-size: 0.8em;
    white-space: normal !important;
    word-break: break-word;
    line-height: 1.35;
}

.badge-subtext-green {
background: #0761321f;
    border-radius: 5em;
    color: var(--secondary--color);
    /* padding: 0.625rem 1.25rem; */
    font-weight: 500;
    font-size: 0.8em;
    white-space: normal !important;
    word-break: break-word;
    line-height: 1.35;
}

.badge-category {
  background: var(--secondary--color);
  padding: 0.4375rem;
  border: 1px solid #ebe3b9;
  font-size: 0.625rem;
  color: var(--color-light);
  font-weight: 300;
}

.decor-scope { position: relative; }

.decor-left {
position: absolute;
    left: -10px;
    top: 30%;
    width: 330px;
    z-index: 1;
    pointer-events: none;
}

.decor-right {
  position: absolute;
  right: -50px;
  bottom: 70px; 
  width: 400px;
  z-index: -1;
  transform: scaleX(-1);
  pointer-events: none;
}

  .parallax-hero{
      position: relative;
      /* use the Blade-provided image */
      background-image: var(--hero);
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;

      /* parallax effect on desktop */
      background-attachment: fixed;

      /* spacing so content breathes over the image */
  }

  /* subtle brand-tinted overlay (uses your #edf0ea) */
  .parallax-tint{
     position: absolute;
    inset: 0;
    background: #00000073;
    /* opacity: .65; */
    pointer-events: none;
}

  .parallax-hero .container{
      position: relative;
      z-index: 1; /* content above overlay */
  }

  /* Mobile/tablet: disable fixed-attachment for smoother scrolling */
  @media (max-width: 992px){
      .parallax-hero{
          background-attachment: scroll;
      }
  }

  .rounded { border-radius: 10px !important; }

/* Card container */
.ff-card{
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: transparent;
  height: 400px;              /* adjust height to taste */
  transition: transform .28s ease, box-shadow .28s ease;
  outline: none;
}

/* Existing gradient overlay (keep yours); ensure it covers bottom area */
.ff-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000000 0%, rgba(0,0,0,0.0) 45%);
  pointer-events: none;
}

/* Bottom info panel */
.ff-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  /* start compact; we’ll expand on hover to make room for the button */
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;

  transition: padding 0.28s ease;
}


/* The full-screen overlay */
.ff-preloader{
  position: fixed; inset: 0; z-index: 999999;
  display: grid; place-items: center;

  /* <<< blur must be here for many mobile browsers */
  backdrop-filter: blur(10px) saturate(100%);
  -webkit-backdrop-filter: blur(10px) saturate(100%);

  /* MUST be semi-transparent, not fully opaque */
  background-color: rgba(10,20,15,.35);
}

/* Keep your gradients on a child layer if you like */
.ff-preloader__backdrop{
  position: absolute; inset: 0;
  
}

/* Card */
.ff-preloader__card{
  position: relative;
  width: min(92vw, 380px);
  border-radius: 12px;
  padding: 28px 24px 24px;
  background: rgb(255 255 255 / 75%);
  border: 1px solid var(--ff-border);
  color: var(--color-light);
  text-align: center;
}
.ff-preloader__card::before{
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(to bottom right, rgba(255,255,255,.20), rgba(255,255,255,0) 60%);
  mix-blend-mode: screen; opacity: .6; pointer-events: none;
}
.ff-preloader__logo{ width: 120px; display:block; margin: 0 auto 16px; }

.ff-preloader__text{ font-size: .95rem; opacity: .95; margin-top: 10px; }

/* Progress */
.ff-preloader__progress{ position: relative; margin: 8px auto 4px; width: 100%; max-width: 300px; height: 5px; }

.ff-progress__track{
  position: absolute; inset: 0; border-radius: 999px;
  background: rgba(255,255,255,.16);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.28);
}

.ff-progress__bar{
  height: 100%; border-radius: 999px; width: 0%;
  background-image: linear-gradient(90deg, var(--primary--color), var(--secondary--color));
  box-shadow: 0 0 12px rgba(130,184,59,.6);
  position: relative; overflow: hidden;
}
.ff-progress__bar::after{
  /* shimmer */
  content:""; position:absolute; top:0; bottom:0; left:-40%;
  width:40%; transform:skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  animation: ff-shimmer 1.2s linear infinite;
}
@keyframes ff-shimmer{
  0%{ left:-40%; } 100%{ left:110%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .ff-preloader, .ff-preloader *{ animation: none !important; transition: none !important; }
}

/* Title + subtext wrapper: we’ll nudge it up on hover */
.ff-text {
  transition: transform 0.28s ease;
}

/* Button container: hidden by height, revealed on hover */
.ff-btn-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, margin-top 0.28s ease, opacity 0.28s ease;
  opacity: 0;
}

/* Button look */
.ff-btn-wrap .btn {
  border-radius: 22px;
}

/* Hover / focus behavior */
.ff-card:hover .ff-info,
.ff-card:focus-within .ff-info {
  /* add bottom padding to create space for the button */
  padding-bottom: 48px;
}

.ff-card:hover .ff-text,
.ff-card:focus-within .ff-text {
  /* slight slide-up effect */
  transform: translateY(-6px);
}

.ff-card:hover .ff-btn-wrap,
.ff-card:focus-within .ff-btn-wrap {
  max-height: 44px;   /* enough to fully show the btn */
  margin-top: 6px;
  opacity: 1;
}

/* Accessibility: make entire card keyboard-focusable on Safari/iOS if needed */
.ff-card {
  outline: none;
}
.ff-card:focus-visible .ff-info {
  padding-bottom: 48px;
}
.ff-card:focus-visible .ff-text {
  transform: translateY(-6px);
}
.ff-card:focus-visible .ff-btn-wrap {
  max-height: 44px;
  margin-top: 6px;
  opacity: 1;
}

/* Ensure slides size nicely */
.mySwiperCourses .swiper-slide{ height: auto; }


hr {
    margin: 1rem 0;
    color: inherit;
    background-color: rgb(0 0 0 / 30%);
    border: 0;
    opacity: .25;
}

.font_footer, .font_footer a {
  color: var(--color-dark);
  font-weight: 300;
}

.link-list li:hover a, .link-list li .bi {
  color: var(--primary--color);
}

.zoomicon {
  transition: all 0.5s ease;
  transform: translateY(0) scale(1);
}

.zoomicon:hover {
  box-shadow: 0 0.875rem 1.5rem rgba(62, 57, 107, 0.2);
  transform: translateY(-0.5rem) scale(1);
}

.items {
  width: 90%;
  margin: 0 auto;
  margin-top: 6.25rem;
}

.slick-slide {
  margin: 0.625rem;
}

.slick-slide img {
  width: 100%;
  border: 0 solid var(--color-light);
}

.lazy {
  width: 100%;
  margin: 0 auto;
}

.slick-list {
  overflow: visible;
}

.slide-footer {
  width: 8.4375rem !important;
  height: auto !important;
}

.bottom-left {
  position: absolute;
  bottom: 0.625rem;
}

.page-heading {
  padding-top: 11%;
  z-index: 999;
}

.profile-pic {
  max-width: 3.75rem;
  border-radius: 100%;
}

.c-wrapper {
  overflow: visible;
  min-height: 100vh;
}

.slided {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.news-scroll marquee {
  height: 17.1875rem;
  overflow: hidden;
  border: 1px solid #eee;
  padding: 0.3125rem 0.625rem;
}

.marquee {
  will-change: transform;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

/* Additional Styles */
.trusted-text {
  margin-left: 2.5rem;
}

.adjusting {
  margin-bottom: 0.125rem;
  margin-top: 0;
}

.paragraph {
  margin-bottom: 0.5625rem;
}

.list-style-none {
  list-style: none !important;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 0.875rem !important;
  border-radius: 0;
}

.mt-slider.position-relative, .slider-height.position-relative {
  position: relative;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.overlay-content {
  position: relative;
  z-index: 2;
}

.dynamic-content .accordion {
  display: block !important;
}

.stretched-link::after {
  content: none !important;
}

.text-second:nth-last-child() {
  color: var(--color-light);
}

.head_hover[title] {
  text-transform: capitalize;
}

.color {
  height: 0.625rem;
  margin: -1.0625rem -1.0625rem 0 -1.0625rem;
}

.color-theme1 {
  background: var(--primary--color);
}

.bg-base {
  border-top: 0.25rem solid #01bda6;
}

.bg-blue {
  border-top: 0.25rem solid #3b6fd9;
}

.gradient--btn {
  background: var(--primary--color);
  border: none;
}

.footer-text-mob {
  font-size: 0.6875rem !important;
}

.mob-padding {
  padding: 1.5rem !important;
}

.f-18 {
  font-size: 1.125rem !important;
}

.navbar-style {
  box-shadow: none !important;
  height: auto !important;
}

.d-none-sm {
  display: none;
}

.bann-hour {
  width: 100% !important;
}

.request-call-bg {
  background-image: none !important;
  background-size: cover;
  background-position: top left;
  background-repeat: repeat-x;
}

.margin-45 {
  margin-top: 2.8125rem !important;
}

/* Media Queries */
@media screen and (max-width: 344px) {
.carousel-caption {
        margin-left: 0;
        top: 10rem;
}
  
}

@media screen and (max-width: 390px) {
  .carousel-caption {
        margin-left: 0;
        top: 15rem !important;
}
.slider-height {
    height: 85vh;
  }
}

@media screen and (max-width: 450px) {
  .slider-height {
    height: 85vh;
  }
  .nav--logo {
    width: 6.5rem;
    padding: 0.625rem;
    height: auto;
}

.font-sub-slider{
    font-size: 1rem !important;
}
  .f-60 {
    font-size: 2rem !important;
    line-height: 1.2;
  }
}

@media screen and (max-width: 478px) {
  .h-120 {
    height: 100px !important;
  }

}


@media screen and (max-width: 768px) {
  .global-presence-bg-text {
    font-size: 4rem;
    line-height: 1;
  }

  .decor-left {
    position: absolute;
    left: -10px;
    top: 40%;
    width: 250px;
    z-index: 1;
    pointer-events: none;
}

  .carousel-buttons
 {
    position: absolute;
    bottom: 6rem;
    right: -1.5rem;
    z-index: 999;
}

  .slider__image {
    height: 50vh;
  }
  .page-heading-bg-400 {
    height: 18.75rem !important;
  }
  .chatbox {
    margin-top: -40% !important;
    min-height: 40vh !important;
  }
  .slider-height {
    height: 100vh;
  }
  .product-image {
    overflow: hidden;
    border-radius: 1rem;
  }
  .margin-left-50 {
    margin-left: 0 !important;
  }

  .boxes-position {
    padding-top: 45%;
    position: relative !important;
  }
  .w-slider-responsive {
    width: 250%;
  }
  .testimonial-img {
    object-fit: cover;
    min-height: 18.75rem;
    z-index: -1;
  }
  .font-7em {
    font-size: 4em !important;
    line-height: 1;
  }
  .contact-bg, .request-call-bg {
    background-image: none !important;
  }
  .bg-rent {
    height: 110%;
  }
  .w-50-form {
    width: 80%;
  }
  .mt-sm-header {
    margin-top: 2em;
  }
  .h-500 {
    height: 15.625rem !important;
  }
  .font-sub {
    font-size: 2.5em !important;
  }
  .page-heading {
    padding-top: 40% !important;
    z-index: 999;
  }
  .mobile-bg {
    min-height: 23.75rem !important;
    width: 100%;
    margin-top: 0.75rem;
  }
  .mt-slider {
    margin-top: -22%;
  }
  .mt-slider-pages {
    margin-top: -25%;
  }
  .header-padding {
    padding-left: 1em !important;
  }
  .big-font, .big-font-1 {
    font-size: 4em !important;
    line-height: 0.8;
  }
  .footer-text-mob {
    font-size: 0.6875rem !important;
  }
  .mob-padding {
    padding: 1.5rem !important;
  }
  .error-page-image {
    height: 19.5625rem;
  }
  .f-60 {
    font-size: 2.1875rem;
    line-height: 1.2;
  }
  .font-1-5em {
font-size: 1em !important;
}
  .f-50 {
    font-size: 2.1875rem !important;
    line-height: 1;
  }
  .f-12 {
    font-size: 0.75rem !important;
  }
  .navbar-margin {
    margin-top: 1rem;
  }
  .font-3em {
    font-size: 3em !important;
  }
  .padding-mob {
    padding: 0 !important;
  }
  .ml-2 {
    margin-left: 0.625rem !important;
  }
  .cta-name {
    color: var(--color-light) !important;
  }
  .navbar-style {
    box-shadow: none !important;
    height: auto !important;
  }
  .dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0 !important;
    font-size: 1rem;
    color: var(--color-dark);
    text-align: left;
    list-style: none;
    background-color: rgba(0, 0, 0, 0.24) !important;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    box-shadow: none;
  }
  .nav-item .nav-link {
    color: var(--color-light);
    transition: color 0.15s ease-in-out;
  }
  .tab-text-color {
    color: var(--secondary--color) !important;
    font-weight: 400 !important;
  }
  .custom-pe-3 {
    padding-right: 0 !important;
  }
  .d-none-sm {
    display: none;
  }
  .testi-bg {
    background-image: url(../img/test-img-mob.png);
    background-size: cover;
  }
  .bg--navbar {
    background-color: var(--primary--color);
  }
  .bann-hour {
    width: 100% !important;
  }
  .position--sm-relative {
    position: relative !important;
  }
  .sm--push-down {
    margin-top: 15rem !important;
  }
  .float-company-name {
    float: left !important;
  }
  .project-container {
    padding-right: 0 !important;
  }
  .adjust_img {
    height: auto;
  }
  .adjust_card-img-inner {
    width: 100%;
    margin: 0;
  }
  .dynamic-content {
    overflow: hidden;
  }
  .dynamic-content table {
    display: block;
    overflow: scroll;
  }
  .dynamic-content div {
    width: 100% !important;
  }
  .dynamic-content p {
    margin-bottom: 0 !important;
  }
  .h--sm-100 {
    height: 100% !important;
  }
  .w--sm-50 {
    width: 50% !important;
  }
  .w--sm-95 {
    width: 95% !important;
  }
  .w--sm-100 {
    width: 100% !important;
  }
  .p--sm-0 {
    padding: 0 !important;
  }
  .ps--sm-0 {
    padding-left: 0 !important;
  }
  .pb--sm-0 {
    padding-bottom: 0 !important;
  }
  .my--sm-1 {
    margin-top: 0.1em !important;
    margin-bottom: 0.1em !important;
  }
  .mt--sm-1 {
    margin-top: 1em !important;
  }
  .mt--sm-2 {
    margin-top: 1.7em !important;
  }
  .mt--sm-0 {
    margin-top: 0 !important;
  }
  .mx--sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .mb--sm-0 {
    margin-bottom: 0 !important;
  }
  .mb--sm-1 {
    margin-bottom: 2.5em !important;
  }
  .ms--sm-1 {
    margin-left: 0 !important;
  }
  .ms--sm-6 {
    margin-left: 6em !important;
  }
  .request-call-bg {
    background-image: none !important;
  }
  .trusted-text {
    margin-left: 0;
  }
  .margin-45 {
    margin-top: 2.8125rem !important;
  }
  .mx--sm-1 {
    margin-left: 0.5em !important;
    margin-right: 0.5em !important;
  }
  .ms--sm-3 {
    margin-left: 5em !important;
  }
  .me--sm-1 {
    margin-left: 0.15em !important;
  }
  .me--sm-0 {
    margin-left: 0 !important;
  }
  .px--sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px--sm-1 {
    padding-right: 0.5em !important;
    padding-left: 0.5em !important;
  }
  .px--sm-2 {
    padding-right: 1.7em !important;
    padding-left: 1.7em !important;
  }
  .text--sm-align-center {
    display: flex;
    align-items: center;
  }
  .carousel-inner {
    max-height: 50rem !important;
  }
  .w-custom-80 {
    width: 500% !important;
  }
  .slider--text {
    transform: translateX(0.625rem);
    margin-top: 5rem !important;
  }
}

@media screen and (max-width: 850px) {
  .slider-height {
    height: 85vh;
  }
  .w-custom-80 {
    width: 200% !important;
  }
.carousel-buttons
 {
    position: absolute;
        bottom: 1.5rem;
        right: 0.5rem;
        z-index: 999;
}
}

@media screen and (max-width: 900px) {
  .dropdown-menu, .dropdown-menu .dropdown-submenu {
    width: 100%;
  }
  .dropdown-menu .dropdown-item {
    line-height: 1;
    border-bottom: 0 !important;
    padding: 1em;
  }
  .carousel-caption {
    margin-left: 0;
    top: 18rem;
  }
}

@media screen and (max-width: 992px) {
  .modal-lg, .modal-xl {
    max-width: 62rem;
  }
}

@media screen and (max-width: 1024px) {
  .f-60 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .font-sub {
    font-size: 3em !important;
  }
  .global-presence-bg-text {
    font-size: 4rem;
  }
  .font-7em {
    font-size: 6em !important;
  }
  .font-6em {
    font-size: 5em !important;
  }
  .testimonial-img {
    min-height: 25rem;
  }
  .font-3em {
    font-size: 2em !important;
  }
}

@media screen and (max-width: 1440px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 90rem;
  }
  .web__display--none {
    display: block !important;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 87.5rem;
  }
}

@media (min-width: 768px) {
  .sticky-cta {
    position: sticky;
    top: 20%;
    z-index: 1030;
  }
}