@font-face {
  font-family: OutfitThin;
  src: url("../fonts/Outfit-Thin.ttf");
}

@font-face {
  font-family: OutfitExtraLight;
  src: url("../fonts/Outfit-ExtraLight.ttf");
}

@font-face {
  font-family: OutfitLight;
  src: url("../fonts/Outfit-Light.ttf");
}

@font-face {
  font-family: OutfitRegular;
  src: url("../fonts/Outfit-Regular.ttf");
}

@font-face {
  font-family: OutfitMedium;
  src: url("../fonts/Outfit-Medium.ttf");
}

@font-face {
  font-family: OutfitSemiBold;
  src: url("../fonts/Outfit-SemiBold.ttf");
}

@font-face {
  font-family: OutfitBold;
  src: url("../fonts/Outfit-Bold.ttf");
}

@font-face {
  font-family: OutfitExtraBold;
  src: url("../fonts/Outfit-ExtraBold.ttf");
}

@font-face {
  font-family: OutfitBlack;
  src: url("../fonts/Outfit-Black.ttf");
}
@font-face {
  font-family: GC-GRIND;
  src: url("../fonts/GC-GRIND.otf");
}

:root {
  --font-100: OutfitThin;
  --font-200: OutfitExtraLight;
  --font-300: OutfitLight;
  --font-400: OutfitRegular;
  --font-500: OutfitMedium;
  --font-600: OutfitSemiBold;
  --font-700: OutfitBold;
  --font-800: OutfitExtraBold;
  --font-900: OutfitBlack;
  --font-main: GC-GRIND;

  /* ========== COLORS ========== */
  --primary: #ea5312;
  --secondary: #71a2e3;
  --black: #282828;
  --white: #ffffff;
  --primary-radial: radial-gradient(
    233.07% 378.13% at 0% 0%,
    #ce3545 0%,
    #653560 43.49%,
    #113575 100%
  );

  /* ========== TRANSITIONS ========== */
  --transition-smooth: all 0.4s ease-in-out;
  --transition-fast: all 0.25s ease;

  /* ========== BORDER RADIUS ========== */
  --radius-sm: 13px;
  --radius-lg: 50px;

  /* ========== RESPONSIVE HEADING SIZE ========== */
  --hero-heading: clamp(38px, calc(1.9rem + 2vw), 87px);
  --main-heading-size: clamp(28px, calc(1.8rem + 2vw), 38px);
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: var(--font-400);
}

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

a {
  text-decoration: none;
  transition: 0.3s ease 0s;
  color: var(--bs-black);
}

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

input,
button,
textarea {
  outline: none;
  border: 0px;
  background: none;
}

.webkit {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.webkit_1 {
  -webkit-line-clamp: 1;
}

.webkit_2 {
  -webkit-line-clamp: 2;
}

.webkit_3 {
  -webkit-line-clamp: 3;
}

.webkit_4 {
  -webkit-line-clamp: 4;
}

.hide {
  display: none !important;
}

.show {
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.img-box {
  margin: 0px;
}

.img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.img-box-content img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

li.nav-item.dropdown.navdesktop ul {
  flex-direction: column;
  top: 100%;
  left: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  gap: 7px;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  background: #fff;
  font-family: var(--font-400);
  line-height: 1.5;
  color: #6a7382;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  color: var(--black);
  margin-top: 0;
  line-height: 1.5;
}

p {
  margin-bottom: 15px;
  color: #6a7382;
}

/* Navbar */

.navbar-nav li {
  bottom: 0;
}

.navbar-nav li a {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff !important;
  display: inline-block;
  position: relative;
}

.navbar-nav li a:hover {
  color: #ffffff !important;
}

.navbar-nav .nav-link.active {
  color: #ffffff !important;
}

.header.sticky li a {
  color: white !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav .nav-link::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--primary);
  transition:
    width 0.3s ease 0s,
    left 0.3s ease 0s;
  width: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

ul.dropdown-menu {
  padding: 0;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
  background: white !important;
  color: #000001 !important;
}

.navbar-nav li a {
  font-size: 1rem;
  font-weight: 400;
  color: #000001;
  border-radius: 5px;
}

.offcanvas {
  background-color: #000001;
}

.offcanvas .navbar-nav .dropdown-menu {
  margin-top: 10px;
  border-radius: 8px;
}

.offcanvas .navbar-nav .dropdown-menu li {
  padding: 10px 0;
}

.offcanvas .navbar-nav .dropdown-menu li:hover,
.offcanvas .navbar-nav .dropdown-menu li:hover a {
  border-radius: 8px;
}

.offcanvas .btn-close svg {
  fill: white;
}

.offcanvas-header > img {
  width: 15rem;
}

.dropdown-menu {
  background-color: var(--primary);
  border-radius: 0px;
}

.dropdown-item {
  background: none !important;
}

.dropdown-menu li {
  width: 100%;
  border-radius: 5px;
}

/* section */

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* header */
.header {
  padding: 15px 0 15px 0;
  z-index: 999;
  transition: 0.6s;
  padding: 0;
}

header.sticky {
  padding: 0px 0px;
  position: ];
  width: 100%;
  z-index: 999;
}

header.sticky #navbarNav {
  border-bottom: 0px !important;
}

header.sticky img {
  width: auto;
  transition: all 0.5s ease-in-out;
}

/* End */

/* partner */
.client {
  padding-top: 25px;
  padding-bottom: 24px;
  margin-top: -98px;
  background: white;
  backdrop-filter: blur(50px);
}

.client img {
  margin: auto;
}

/* end */

/* contact us */

.contact-us {
  padding-top: 60px;
  padding-bottom: 70px;
  background: url("../images/contact-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

/* end */

/* form */
/* Works for Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-control {
  resize: none;
  display: block;
  width: 100%;
  padding: 16px 15px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #1e1e1e42;
  color: #1e1e1e !important;
  background-color: transparent;
  background: rgba(217, 217, 217, 0.43);
  opacity: 0.4;
  border: 1px solid rgba(145, 145, 145, 0.7);
  border-radius: 7px;
}

.form-control:focus {
  background-color: transparent;
  border-color: var(--primary);
  box-shadow: none !important;
  outline: none !important;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #1e1e1e !important;
  font-weight: 400;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: white !important;
  font-weight: 400;
}

/* end */

/* Button */
.btn-theme {
  color: var(--white);
  padding: 16px 19px;
  padding-right: calc(47px + 18px);
  background: var(--black);
  border: 2px solid #fff;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
  z-index: 2;
  font-weight: 700;
  position: relative;
  border: 0px solid rgb(255 255 255 / 34%);
  overflow: hidden;
}

.btn-theme .icon {
  color: #fff;
  background: var(--secondary);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  font-size: 17px;
  right: 7px; /* initial left position */
  top: 50%;
  transform: translateY(-50%);
  transition:
    right 0.3s ease,
    width 0.3s ease 0.3s,
    height 0.3s ease 0.3s;
  /* left moves first, then width/height expand after 0.3s */
}
.btn-theme:hover .icon {
  /* right: 0; */ /* move to the left first */
  /* width: 101%; */ /* then expand after delay */
  /* height: 101%; */
}
.btn-theme span {
  font-weight: 700;
  color: var(--white);
  padding-left: 5px;
}
.btn-theme:hover {
  /* border: 4px solid rgba(255, 255, 255, 0.2); */
}
.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: none;
}
.btn-reverse {
  background: var(--secondary);
}

.btn-reverse .icon {
  background: var(--black);
}
.btn-primary {
  background: var(--primary) !important;
}
.btn-primary .icon {
  background: var(--black);
}
/* end */

/* footer */
.footer {
  padding-top: 35px;
  padding-bottom: 25px;
  background: #000001;
}

.footer-logo p {
  color: white;
  margin-top: 20px;
  font-size: 1rem;
}

.footer-links > h6 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0;
  margin-top: 20px;
}

.footer-links > p {
  color: white;
  font-size: 1rem;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-links > ul {
  padding-left: 18px;
}

.footer-links > ul > li {
  padding: 20px 0px 0 0px;
  list-style-type: disclosure-closed;
  color: white;
  transition: all ease-in-out 0.3s;
}

.footer-links > ul > li:hover {
  color: var(--primary);
}

.footer-links > ul > li > a {
  text-decoration: none;
  font-size: 1rem;
  color: white;
  font-weight: 400;
  transition: all ease-in-out 0.3s;
}

.footer-links > ul > li > a:hover {
  color: var(--primary);
}

.social > p > span {
  margin: 0;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

.social > p > a {
  color: var(--primary);
  margin: 0 5px;
  font-size: 1.2rem;
  transition: all ease-in-out 0.3s;
  background: white;
  padding: 10px 16px;
  border-radius: 30px;
}

.social > p > a:hover {
  color: #ffffff;
  background: var(--primary);
}

.footer-bootom-links > span {
  margin: 0;
  margin-right: 15px;
  color: white;
  font-size: 1rem;
  font-weight: 400;
}

/* end */

.animate-up {
  animation: up 3s ease-in-out infinite;
}

@keyframes up {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}

.animate-zoom {
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.9);
    transition: all 0.5s ease-in-out;
  }

  30% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1.2);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  100% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }
}

.footer-logo .trust-img {
  width: 10rem;
}

.navbar-dark .navbar-nav .nav-link {
  padding: 0;
  padding-bottom: 4px;
}

ul.navbar-nav {
  gap: 22px;
}

/* custum Css */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  /* background: var(--white); */
  /* backdrop-filter: blur(10px); */
  border-radius: 16px;
}
header.header {
  /* position: fixed; */
  width: 100%;
}

section.hero {
  padding-top: 160px;
  background: #ffd27d;
  background-image: url(../images/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.hero-content {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hero-content p {
  color: var(--black);
  font-size: 17px;
}
.hero-content h1 {
  font-family: var(--font-main);
  text-transform: uppercase;
  font-size: 86px;
  line-height: 1.1;
  color: var(--black);
}

.hero-content > img {
  margin-bottom: -40px;
  position: relative;
}

.hero-content > * {
  margin: 0;
}
.hero-form-container {
  max-width: 500px;
  margin-left: auto;
  background: white;
  padding: 13px;
  border-radius: 5px;
  box-shadow: 10px 4px 48px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  position: relative;
}

form.contact-form {
  padding: 21px;
  border: 1px solid #000000;
  border-radius: 12px;
}

form.contact-form h4 {
  text-align: center;
  font-family: var(--font-main);
  font-size: 42px;
  text-transform: uppercase;
}
.hero-form-main {
  position: relative;
}

.hero-form-main > img {
  position: absolute;
  left: -140px;
  top: 50%;
  transform: translateY(-50%);
}
section.sec-02 .row {
  /* align-items: center; */
}

.main-heading {
  font-family: var(--font-main);
  font-size: 70px;
  line-height: 1;
  text-transform: uppercase;
}
p {
  font-size: 16px;
  color: var(--black);
}

.sec-02-bottom {
  /* background: #ffffff; */
  /* box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.1); */
  border-radius: 16px;
  padding: 21px;
  position: relative;
  margin-top: -50px;
}

.sec-02-bottom-card span {
  /* width: 100%; */
  text-align: center;
  display: block;
  margin-bottom: 20px;
  /* background: var(--primary); */
  color: white;
  padding: 10px 29px;
  border-radius: 8px;
  font-family: var(--font-600);
}

.sec-02-bottom-card {
  padding: 19px;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
}

.sec-02-bottom-card p {
  font-size: 16px;
  color: var(--black);
}

section.sec-01 {
  background: #f7f7f7;
}
section.sec-01 .row {
  align-items: center;
}

.sec-01 .img-box-content {
  height: 530px;
}

.sec-03-top {
  flex-direction: column;
  display: flex;
  align-items: center;
}

.sec-03-top .main-heading {
  max-width: 610px;
  text-align: center;
}

.sec-03-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 850px;
  margin-top: 10px;
  background: #f7f7f7;
  padding: 14px 22px;
  border-radius: 16px;
}
.sec-03-tabs button {
  border: 1.5px solid rgba(34, 35, 35, 0.2);
  border-radius: 8px;
  padding: 13px 39px;
  color: var(--black);
  transition: 0.3s all cubic-bezier(0, 0.51, 0.87, 1.17);
  font-family: var(--font-600);
}

.sec-03-tabs button:hover,
.sec-03-tabs button.active {
  background: var(--primary);
  color: white;
}
.sec-tabs-card-content h3 {
  font-family: var(--font-main);
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
}

.tabs-content-ul-main ul {
  list-style: none;
  padding: 0;
  flex-direction: column;
  display: flex;
  gap: 12px;
  margin: 0;
}

.tabs-content-ul-main {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 10px 0 !important;
}

.sec-tabs-card-content > * {
  margin: 0;
}

.sec-tabs-card-content {
  flex-direction: column;
  display: flex;
  gap: 17px;
  align-items: flex-start;
}

.tabs-content-ul-main ul li {
  color: black;
  font-family: var(--font-600);
}

.sec-03-tabs-content {
  margin-top: 50px;
}

.btn-main {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.sec-03-tabs-content .tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.sec-03-tabs-content .tab-panel.active {
  display: block;
  animation: fadeUp 0.5s ease forwards;
}

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

.sec-03-tabs button {
  cursor: pointer;
  transition: all 0.3s ease;
}
.sec-03-tabs-content .row {
  align-items: center;
}
.orange-main {
  background: var(--primary);
  padding: 40px 0;
  margin-top: 190px;
}

section.sec-04 {
  padding: 45px;
  background: white;
  border-radius: 40px;
  margin-top: -240px;
}

.sec-04-container {
  padding: 21px 22px;
  background: #020000;
  border-radius: 24px;
}

.sec-04-content .main-heading {
  color: white;
  font-size: 57px;
}

.sec-04-container .img-box-content {
  transform: translateY(-70px);
}
.sec-05-content {
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
}

.sec-05-content {
  max-width: 820px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.sec-05-content .main-heading {
  color: white;
}

.sec-05-content p {
  color: #dfd8d8;
}
.sec-05 {
  padding-bottom: 0;
  padding-top: 70px;
}
/* Base container style */
.sec-05-grid {
  display: grid;
  /* Gap between the grid items */
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;

  /* Desktop Default: 5 equal columns */
  grid-template-columns: repeat(5, 1fr);
}

/* Individual item wrapping the image */
.sec-05-grid-item {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

/* Hover effect just to make it dynamic */
.sec-05-grid-item:hover {
  transform: translateY(-5px);
}

/* Image behavior */
.sec-05-grid-item img {
  width: 100%;
  height: 100%;
  /* Forces images to fill the box neatly without stretching horizontally */
  object-fit: cover;
  /* Maintains a typical book cover vertical aspect ratio (2:3) */
  aspect-ratio: 2 / 3;
  display: block;
}

/* --- Responsive Breakpoints --- */

/* Tablets / Medium Screens (Show 3 items per row) */
@media (max-width: 1024px) {
  .sec-05-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

/* Small Tablets / Large Phones (Show 2 items per row) */
@media (max-width: 768px) {
  .sec-05-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Phones (Show 1 item per row to keep text legible) */
@media (max-width: 480px) {
  .sec-05-grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 10px;
  }
}
@font-face {
  font-family: OutfitThin;
  src: url("../fonts/Outfit-Thin.ttf");
}

@font-face {
  font-family: OutfitExtraLight;
  src: url("../fonts/Outfit-ExtraLight.ttf");
}

@font-face {
  font-family: OutfitLight;
  src: url("../fonts/Outfit-Light.ttf");
}

@font-face {
  font-family: OutfitRegular;
  src: url("../fonts/Outfit-Regular.ttf");
}

@font-face {
  font-family: OutfitMedium;
  src: url("../fonts/Outfit-Medium.ttf");
}

@font-face {
  font-family: OutfitSemiBold;
  src: url("../fonts/Outfit-SemiBold.ttf");
}

@font-face {
  font-family: OutfitBold;
  src: url("../fonts/Outfit-Bold.ttf");
}

@font-face {
  font-family: OutfitExtraBold;
  src: url("../fonts/Outfit-ExtraBold.ttf");
}

@font-face {
  font-family: OutfitBlack;
  src: url("../fonts/Outfit-Black.ttf");
}
@font-face {
  font-family: GC-GRIND;
  src: url("../fonts/GC-GRIND.ttf");
}

:root {
  --font-100: OutfitThin;
  --font-200: OutfitExtraLight;
  --font-300: OutfitLight;
  --font-400: OutfitRegular;
  --font-500: OutfitMedium;
  --font-600: OutfitSemiBold;
  --font-700: OutfitBold;
  --font-800: OutfitExtraBold;
  --font-900: OutfitBlack;
  --font-main: GC-GRIND;

  /* ========== COLORS ========== */
  --primary: #ea5312;
  --secondary: #71a2e3;
  --black: #282828;
  --white: #ffffff;
  --primary-radial: radial-gradient(
    233.07% 378.13% at 0% 0%,
    #ce3545 0%,
    #653560 43.49%,
    #113575 100%
  );

  /* ========== TRANSITIONS ========== */
  --transition-smooth: all 0.4s ease-in-out;
  --transition-fast: all 0.25s ease;

  /* ========== BORDER RADIUS ========== */
  --radius-sm: 13px;
  --radius-lg: 50px;

  /* ========== RESPONSIVE HEADING SIZE ========== */
  --hero-heading: clamp(38px, calc(1.9rem + 2vw), 87px);
  --main-heading-size: clamp(28px, calc(1.8rem + 2vw), 38px);
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: var(--font-400);
}

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

a {
  text-decoration: none;
  transition: 0.3s ease 0s;
  color: var(--bs-black);
}

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

input,
button,
textarea {
  outline: none;
  border: 0px;
  background: none;
}

.webkit {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.webkit_1 {
  -webkit-line-clamp: 1;
}

.webkit_2 {
  -webkit-line-clamp: 2;
}

.webkit_3 {
  -webkit-line-clamp: 3;
}

.webkit_4 {
  -webkit-line-clamp: 4;
}

.hide {
  display: none !important;
}

.show {
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.img-box {
  margin: 0px;
}

.img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.img-box-content img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

li.nav-item.dropdown.navdesktop ul {
  flex-direction: column;
  top: 100%;
  left: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  gap: 7px;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

body {
  margin: 0;
  padding: 0;
  font-size: 15px;
  background: #fff;
  font-family: var(--font-400);
  line-height: 1.5;
  color: #6a7382;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 15px;
  color: var(--black);
  margin-top: 0;
  line-height: 1.5;
}

p {
  margin-bottom: 15px;
  color: #6a7382;
}

/* Navbar */

.navbar-nav li {
  bottom: 0;
}

.navbar-nav li a {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff !important;
  display: inline-block;
  position: relative;
}

.navbar-nav li a:hover {
  color: #ffffff !important;
}

.navbar-nav .nav-link.active {
  color: #ffffff !important;
}

.header.sticky li a {
  color: white !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav .nav-link::after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: var(--primary);
  transition:
    width 0.3s ease 0s,
    left 0.3s ease 0s;
  width: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
  left: 0;
}

ul.dropdown-menu {
  padding: 0;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
  background: white !important;
  color: #000001 !important;
}

.navbar-brand img {
 width: 250px;
  transition: 0.6s;
}

.navbar-nav li a {
  font-size: 1rem;
  font-weight: 400;
  color: #000001;
  border-radius: 5px;
}

.offcanvas {
  background-color: #000001;
}

.offcanvas .navbar-nav .dropdown-menu {
  margin-top: 10px;
  border-radius: 8px;
}

.offcanvas .navbar-nav .dropdown-menu li {
  padding: 10px 0;
}

.offcanvas .navbar-nav .dropdown-menu li:hover,
.offcanvas .navbar-nav .dropdown-menu li:hover a {
  border-radius: 8px;
}

.offcanvas .btn-close svg {
  fill: white;
}

.offcanvas-header > img {
  width: 15rem;
}

.dropdown-menu {
  background-color: var(--primary);
  border-radius: 0px;
}

.dropdown-item {
  background: none !important;
}

.dropdown-menu li {
  width: 100%;
  border-radius: 5px;
}

/* section */

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* header */
.header {
  padding: 15px 0 15px 0;
  z-index: 999;
  transition: 0.6s;
  padding: 0;
}

header.sticky {
  padding: 0px 0px;
  /* position: fixed; */
  width: 100%;
  z-index: 999;
}

header.sticky #navbarNav {
  border-bottom: 0px !important;
}

header.sticky img {
  width: 250px;
  transition: all 0.5s ease-in-out;
}

/* End */

/* partner */
.client {
  padding-top: 25px;
  padding-bottom: 24px;
  margin-top: -98px;
  background: white;
  backdrop-filter: blur(50px);
}

.client img {
  margin: auto;
}

/* end */

/* contact us */

.contact-us {
  padding-top: 60px;
  padding-bottom: 70px;
  background: url("../images/contact-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

/* end */

/* form */
/* Works for Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-control {
  resize: none;
  display: block;
  width: 100%;
  padding: 16px 15px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #1e1e1e42;
  color: #1e1e1e !important;
  background-color: transparent;
  background: rgba(217, 217, 217, 0.43);
  opacity: 0.4;
  border: 1px solid rgba(145, 145, 145, 0.7);
  border-radius: 7px;
}

.form-control:focus {
  background-color: transparent;
  border-color: var(--primary);
  box-shadow: none !important;
  outline: none !important;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #1e1e1e !important;
  font-weight: 400;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #1e1e1e !important;
  font-weight: 400;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: white !important;
  font-weight: 400;
}

/* end */

/* Button */
.btn-theme {
  color: var(--white);
  padding: 16px 19px;
  padding-right: calc(47px + 18px);
  background: var(--black);
  border: 2px solid #fff;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
  z-index: 2;
  font-weight: 700;
  position: relative;
  border: 0px solid rgb(255 255 255 / 34%);
  overflow: hidden;
}

.btn-theme .icon {
  color: #fff;
  background: white;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 40px !important;
  height: 40px;
  display: flex;
  position: absolute;
  font-size: 17px;
  right: 7px; /* initial left position */
  top: 50%;
  transform: translateY(-50%);
  transition:
    right 0.3s ease,
    width 0.3s ease 0.3s,
    height 0.3s ease 0.3s;
  /* left moves first, then width/height expand after 0.3s */
}
.btn-theme:hover .icon {
  /* right: 0; */ /* move to the left first */
  /* width: 101%; */ /* then expand after delay */
  /* height: 101%; */
}
.btn-theme span {
  font-weight: 700;
  color: var(--white);
  padding-left: 5px;
}
.btn-theme:hover {
  /* border: 4px solid rgba(255, 255, 255, 0.2); */
  /* box-shadow: 8px 4px 3px #a3a3a354; */
  background: #df4300;
}
.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: none;
}
.btn-reverse {
  background: var(--primary);
}

.btn-reverse .icon {
  background: var(--black);
}
.btn-primary {
  background: var(--primary) !important;
}
.btn-primary .icon {
  background: var(--black);
}
/* end */

/* footer */
.footer {
  padding-top: 35px;
  background: none;
  padding-bottom: 25px;
}

.footer-logo p {
  color: white;
  margin-top: 20px;
  font-size: 1rem;
}

.footer-links > h6 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0;
  margin-top: 20px;
}

.footer-links > p {
  color: white;
  font-size: 1rem;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-links > ul {
  padding-left: 18px;
}

.footer-links > ul > li {
  padding: 20px 0px 0 0px;
  list-style-type: disclosure-closed;
  color: white;
  transition: all ease-in-out 0.3s;
}

.footer-links > ul > li:hover {
  color: var(--primary);
}

.footer-links > ul > li > a {
  text-decoration: none;
  font-size: 1rem;
  color: white;
  font-weight: 400;
  transition: all ease-in-out 0.3s;
}

.footer-links > ul > li > a:hover {
  color: var(--primary);
}

.social > p > span {
  margin: 0;
  margin-right: 15px;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

.social > p > a {
  color: var(--primary);
  margin: 0 5px;
  font-size: 1.2rem;
  transition: all ease-in-out 0.3s;
  background: white;
  padding: 10px 16px;
  border-radius: 30px;
}

.social > p > a:hover {
  color: #ffffff;
  background: var(--primary);
}

.footer-bootom-links > span {
  margin: 0;
  margin-right: 15px;
  color: white;
  font-size: 1rem;
  font-weight: 400;
}

/* end */

.animate-up {
  animation: up 3s ease-in-out infinite;
}

@keyframes up {
  0% {
    transform: translateY(0);
  }

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

  100% {
    transform: translateY(0);
  }
}

.animate-zoom {
  animation: zoom-in-zoom-out 3s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(0.9);
    transition: all 0.5s ease-in-out;
  }

  30% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1.2);
    transition: all 0.7s ease-in-out;
  }

  50% {
    transform: scale(1);
    transition: all 0.7s ease-in-out;
  }

  100% {
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
  }
}

.footer-logo .trust-img {
  width: 10rem;
}

.navbar-dark .navbar-nav .nav-link {
  padding: 0;
  padding-bottom: 4px;
}

ul.navbar-nav {
  gap: 22px;
}

/* custum Css */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  /* background: var(--white); */
  /* backdrop-filter: blur(10px); */
  border-radius: 16px;
  padding: 0;
}
header.header {
  width: 100%;
}

section.hero {
  padding-top: 140px;
  background: #ffd27d;
  background-image: url(../images/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.hero-content {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hero-content p {
  color: var(--black);
  font-size: 17px;
}
.hero-content h1 {
  font-family: var(--font-main);
  text-transform: uppercase;
  font-size: 69px;
  line-height: 1.1;
  color: var(--black);
  /* letter-spacing: -1.1px; */
  /* word-spacing: -10px; */
  line-height: 1;
}

.hero-content > img {
  margin-bottom: -40px;
  position: relative;
}

.hero-content > * {
  margin: 0;
}
.hero-form-container {
  max-width: 500px;
  margin-left: auto;
  background: white;
  padding: 13px;
  border-radius: 5px;
  box-shadow: 10px 4px 48px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  position: relative;
}

form.contact-form {
  padding: 8px;
  border: 1px solid #000000;
  border-radius: 12px;
}

form.contact-form h4 {
  text-align: center;
  font-family: var(--font-main);
  font-size: 32px;
  text-transform: uppercase;
}
.hero-form-main {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
}

.hero-form-main > img {
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 440px;
}
section.sec-02 .row {
  /* align-items: center; */
}

.main-heading {
  font-family: var(--font-main);
  font-size: 60px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  word-spacing: -1px;
  line-height: 1.1;
}
p {
  font-size: 16px;
  color: var(--black);
}

.sec-02-bottom {
  /* background: #ffffff; */
  /* box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.1); */
  border-radius: 16px;
  padding: 21px;
  position: relative;
  margin-top: 20px;
}

.sec-02-bottom-card span {
  /* width: 100%; */
  text-align: center;
  display: block;
  margin-bottom: 20px;
  /* background: var(--primary); */
  color: white;
  padding: 10px 29px;
  border-radius: 8px;
  font-family: var(--font-600);
  color: var(--primary);
  padding: 0;
  font-size: 22px;
  font-family: var(--font-700);
}

.sec-02-bottom-card {
  padding: 19px;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 100%;
  border-bottom: 5px solid var(--primary);
}

.sec-02-bottom-card p {
  font-size: 16px;
  color: var(--black);
}

section.sec-01 {
  background: #f7f7f7;
}
section.sec-01 .row {
  align-items: center;
}

.sec-01 .img-box-content {
  height: 530px;
}

.sec-03-top {
  flex-direction: column;
  display: flex;
  align-items: center;
}

.sec-03-top .main-heading {
  max-width: 610px;
  text-align: center;
}

.sec-03-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 850px;
  margin-top: 10px;
  background: #f7f7f7;
  padding: 14px 22px;
  border-radius: 16px;
}
.sec-03-tabs button {
  border: 1.5px solid rgba(34, 35, 35, 0.2);
  border-radius: 8px;
  padding: 13px 39px;
  color: var(--black);
  transition: 0.3s all cubic-bezier(0, 0.51, 0.87, 1.17);
  font-family: var(--font-600);
}

.sec-03-tabs button:hover,
.sec-03-tabs button.active {
  background: var(--primary);
  color: white;
}
.sec-tabs-card-content h3 {
  font-family: var(--font-main);
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
}

.tabs-content-ul-main ul {
  list-style: none;
  padding: 0;
  flex-direction: column;
  display: flex;
  gap: 12px;
  margin: 0;
}

.tabs-content-ul-main {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  margin: 10px 0 !important;
}

.sec-tabs-card-content > * {
  margin: 0;
}

.sec-tabs-card-content {
  flex-direction: column;
  display: flex;
  gap: 17px;
  align-items: flex-start;
}

.tabs-content-ul-main ul li {
  color: black;
  font-family: var(--font-600);
}

.sec-03-tabs-content {
  margin-top: 50px;
}

.btn-main {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.sec-03-tabs-content .tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.sec-03-tabs-content .tab-panel.active {
  display: block;
  animation: fadeUp 0.5s ease forwards;
}

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

.sec-03-tabs button {
  cursor: pointer;
  transition: all 0.3s ease;
}
.sec-03-tabs-content .row {
  align-items: center;
}
.orange-main {
  background: var(--primary);
  padding: 40px 0;
  margin-top: 220px;
  /* margin: 0; */
}

section.sec-04 {
  padding: 45px;
  background: white;
  border-radius: 40px;
  margin-top: -240px;
  z-index: 3;
  position: relative;
}

.sec-04-container {
  padding: 21px 22px;
  background: #020000;
  border-radius: 24px;
}

.sec-04-content .main-heading {
  color: white;
  font-size: 57px;
}

.sec-04-container .img-box-content {
  transform: translateY(-70px);
}
.sec-05-content {
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
}

.sec-05-content {
  max-width: 820px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.sec-05-content .main-heading {
  color: white;
}

.sec-05-content p {
  color: #dfd8d8;
}
.sec-05 {
  padding-bottom: 0;
  padding-top: 70px;
}
/* Base container style */
.sec-05-grid {
  display: grid;
  /* Gap between the grid items */
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;

  /* Desktop Default: 5 equal columns */
  grid-template-columns: repeat(5, 1fr);
}

/* Individual item wrapping the image */
.sec-05-grid-item {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

/* Hover effect just to make it dynamic */
.sec-05-grid-item:hover {
  transform: translateY(-5px);
}

/* Image behavior */
.sec-05-grid-item img {
  width: 100%;
  height: 100%;
  /* Forces images to fill the box neatly without stretching horizontally */
  object-fit: cover;
  /* Maintains a typical book cover vertical aspect ratio (2:3) */
  aspect-ratio: 2 / 3;
  display: block;
}

/* --- Responsive Breakpoints --- */

/* Tablets / Medium Screens (Show 3 items per row) */
@media (max-width: 1024px) {
  .sec-05-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

/* Small Tablets / Large Phones (Show 2 items per row) */
@media (max-width: 768px) {
  .sec-05-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Phones (Show 1 item per row to keep text legible) */
@media (max-width: 480px) {
  .sec-05-grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 10px;
  }
}
.sec-06-content {
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
  /* max-width: 610px; */
  margin: 0 auto;
  margin-bottom: 40px;
}

.sec-06-content .main-heading {
  max-width: 610px;
}

.sec-06-content p {
  max-width: 760px;
}

.sec-06-card {
  flex-direction: column;
  gap: 5px;
  display: flex;
}

.sec-06-card > * {
  margin: 0;
}

.sec-06-card h4 {
  font-size: 17px;
  font-family: var(--font-600);
}

.sec-06-card strong {
  font-size: 49px;
  font-family: var(--font-main);
  color: var(--primary);
}

.sec-06-card p {
  font-size: 14px;
}

.sec-06-img {
  margin-top: 53px;
  /* scale: 1.2; */
}

.sec-06-main {
  flex-direction: column;
  display: flex;
  gap: 19px;
}

.sec-06-main.sec-06-main-reverse .sec-06-card {
  align-items: flex-end;
  text-align: right;
}

/* Container Layout */
.testimonial-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 0;
  overflow: hidden;
  width: 100%;
}

/* Ensure slides width adapt naturally to layout specifications */
.swiper-slide {
  width: auto !important;
  display: flex;
  justify-content: center;
}

/* CRITICAL: Forces continuous linear movement instead of standard easing */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Your original Card Styling remains perfect */
.testi-card {
  /* width: 420px; */
  background-color: #f6f6f9;
  border: 1px solid #e8eaf0;
  border-radius: 24px;
  padding: 24px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  background: none;
  border: none;
  flex-wrap: wrap;
}
.profile-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar-container {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  /* background-color: #4e82f7; */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-info {
  display: flex;
  flex-direction: column;
}
.user-name {
  color: #0d0d0d;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.user-role {
  color: #595959;
  font-size: 14px;
  font-weight: 500;
  margin: 2px 0 0 0;
  line-height: 1.2;
}
.star-rating {
  display: flex;
  gap: 2px;
  color: #ffb11a;
  font-size: 20px;
}
.divider {
  width: 100%;
  height: 1px;
  background-color: #e2e5ed;
  margin-bottom: 20px;
}
.testimonial-text {
  color: #333333;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.005em;
}

.ready-content {
  flex-direction: column;
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.ready-content .main-heading {
  color: white;
}

.ready-content p {
  color: #dfd8d8;
  max-width: 640px;
}

.ready-card {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)), #201c1b;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 17px;
  height: 100%;
  gap: 15px;
}

.two-section {
  background: #201c1b;
  padding: 40px;
  border-radius: 40px 40px 0 0;
}

.orange-main:has(.sec-07) {
  padding-bottom: 0;
}

.ready-card .icon {
  background: red;
  height: 50px;
  width: 50px;
  background: #ffd27d;
  flex: 0 0 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--black);
}

.ready-card-content {
  flex-direction: column;
  display: flex;
}

.ready-card-content strong {
  color: white;
  text-transform: capitalize;
}

.faq-container {
  max-width: 800px;
  /* margin: 60px auto; */
  padding-right: 20px;
  color: #111111;
  position: relative;
  z-index: 5;
}

.faq-wrapper {
  /* border-top: 1px solid #b5b5b5; */
}

.faq-item {
  border-bottom: 1px solid #b5b5b5;
}

/* FAQ Trigger Button */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  border-top: 0;
}

/* Custom CSS Animated Plus Icon */
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: #111111;
  transition: transform 0.3s ease;
}

/* Horizontal line */
.faq-icon::before {
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 100%;
}

/* Smooth Accordion Height Engine */
.faq-answer-container {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 24px;
  color: #767676;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  max-width: 90%;
}

.faq-item.active .faq-answer-container {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-item.active .faq-icon::before {
  transform: rotate(180deg);
}
.faqs {
  position: relative;
}

.faqs:after {
  content: "";
  position: absolute;
  left: -40px;
  background: #ffff;
  height: 100%;
  width: 67%;
  z-index: 4;
  top: 0;
  border-radius: 0 15px 15px 0;
}

section.faqs .hero-form-container {
  z-index: 5;
  position: relative;
}
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffffab;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.25s ease;
  width: fit-content;
}

.contact-icon {
  font-size: 1.25rem;
  color: #111111;
  transition: transform 0.25s ease;
}

.contact-link:hover {
  color: #555555;
}

.contact-link:hover .contact-icon {
  transform: scale(1.1);
}
.footer--main {
  padding: 15px 0;
  border-top: 1px solid #ffd27d;
  border-bottom: 1px solid #ffd27d;
}

.footer .img-box-content {
  height: 70px;
  width: 210px;
}

.footer--main .row {
  align-items: center;
}

.contact-link i {
  color: #ffd27d;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 17px;
  justify-content: flex-end;
}

.social-links a {
  font-size: 24px;
  color: white;
}

.social-links a:hover {
  color: #ffd27d;
}
footer.footer > span {
  text-align: center;
  width: 100%;
  display: block;
  margin-top: 20px;
}
.offcanvas-body {
  flex-direction: column;
  display: flex;
}
.modal .btn-close {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  width: 25px;
  z-index: 3;
  top: 16px !important;
  right: 13px !important;
  border-radius: 50%;
  color: white;
  font-size: 20px;
}

.modal-content {
  background: no-repeat;
  border: inherit;
}

.resp-row {
  display: none;
}
.sec-03-tabs-content .tab-panel img {
  width: 100%;
}
.ready-card-content a {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  word-break: break-word;
  -webkit-line-clamp: 1;
}

body,
html {
  overflow-x: hidden;
}
html:has(.offcanvas-start.show) {
  overflow: hidden;
}
html:has(.modal.show) {
  overflow: hidden;
}
section.img-sec {
  background: #f4f4f4;
}
/* Base Layout Configurations */
.img-sec {
  padding: 60px 0;
}
.sec-06-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.sec-06-content p {
  font-size: 1rem;
  color: #666;
  line-line-height: 1.6;
}

/* Initially hide mobile grid on desktop layouts */
.marketing-grid-content {
  display: none;
}

/* Stack into a single column on extra small screens */
.marketing-card:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  height: 100px;
  width: 160px;
  top: 0;
  border-radius: 0 0px 400px 400px;
}

.marketing-card > * {
  position: relative;
  z-index: 4;
}
form.contact-form > span {
  /* Rectangle 34624761 */
  /* box-sizing: border-box; */
  background: #f7f6f9;
  border: 1px solid #000000;
  padding: 12px 25px;
  color: var(--primary);
  font-size: 25px;
  font-family: var(--font-main);
  text-transform: uppercase;
  border-radius: 0 12px 12px 0;
  transform: translateX(-40px);
  display: inline-block;
  margin-bottom: 27px;
  line-height: 1.2;
  border-left: 0;
  font-size: 17px;
}

form.contact-form > span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  background: red;
  height: 10px;
  width: 20px;
  clip-path: polygon(100% 2%, 0 0, 100% 100%);
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #d9d9d9;
}
section.hero.thank-you-hero .hero-content {
    align-items: center;
    gap: 7px;
}

section.hero.thank-you-hero .hero-content h1 {
    font-size: 90px;
}

section.hero.thank-you-hero {background-image: none;height: 100vh;justify-content: center;display: flex;justify-content: center;align-items: center;}
.thank-you-footer footer {
    display: none;
}

.thank-you-header {}

.thank-you-header header .header-top {
    background: transparent;
}

.thank-you-header header .header-top div#navbarNav {display: none !important;}

.thank-you-icon {
    margin: 0 !important;
    line-height: 1;
}
section.hero.thank-you-hero .hero-content p {
    margin: 0 !important;
}
.offcanvas-header > a img{
    width:250px;
}
nav.navbar.navbar-expand-xl.navbar-dark.stroke.bg-transparent {}

header.header {
    background: white;
    position: absolute;
    background: transparent;
}
.row.desktop-row {
    align-items: center;
}
.footer-color{
    background: #201c1b;
    padding: 0;
    margin: 0;
}
.terms {
    background: #ffeae1 !important;
    padding-top: 120px;
}

.terms h2 {
    font-size: 26px;
    font-family: var(--font-700);
    color: var(--secondary);
}
.btn-reverse .icon {
    background: black;
    color: white !important;
}

.btn-theme .icon {
    color: black;
}

.btn-reverse .i {}

button.btn-theme.btn-primary.submitBtn .icon {
    color: white;
}
.sec-02-content h3 {
    font-size: 26px;
    font-family: var(--font-main);
    text-transform: uppercase;
    margin-top: 23px;
}

.sec-02-content .tabs-content-ul-main ul {
    list-style: disc;
    list-style-position: outside;
}

.sec-02-content .tabs-content-ul-main {
    padding-left: 20px;
}
.btn-white{
    background:white;
}
.btn-white span{
    color:black;
}