/* webfonts */
@font-face {
  font-family: "ITC Avant Garde Std Md";
  src: url("../fonts/ITCAvantGardeStd-Bold.woff2") format("woff2"),
    url("../fonts/ITCAvantGardeStd-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Unicase";
  src: url("../fonts/CormorantUnicase-Regular.woff2") format("woff2"),
    url("../fonts/CormorantUnicase-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Unicase";
  src: url("../fonts/CormorantUnicase-Regular.woff2") format("woff2"),
    url("../fonts/CormorantUnicase-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Avant Garde Std Bk";
  src: url("../fonts/ITCAvantGardeStd-Bk.woff2") format("woff2"),
    url("../fonts/ITCAvantGardeStd-Bk.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Avant Garde Std Bk";
  src: url("../fonts/ITCAvantGardeStd-Bk.woff2") format("woff2"),
    url("../fonts/ITCAvantGardeStd-Bk.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Avant Garde Std Bk";
  src: url("../fonts/ITCAvantGardeStd-Demi.woff2") format("woff2"),
    url("../fonts/ITCAvantGardeStd-Demi.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Avant Garde Std Bk";
  src: url("../fonts/ITCAvantGardeStd-Demi.woff2") format("woff2"),
    url("../fonts/ITCAvantGardeStd-Demi.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Avant Garde Std Md";
  src: url("../fonts/ITCAvantGardeStd-Bold.woff2") format("woff2"),
    url("../fonts/ITCAvantGardeStd-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Avant Garde Std Md";
  src: url("../fonts/ITCAvantGardeStd-Md.woff2") format("woff2"),
    url("../fonts/ITCAvantGardeStd-Md.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ITC Avant Garde Std Md";
  src: url("../fonts/ITCAvantGardeStd-Md.woff2") format("woff2"),
    url("../fonts/ITCAvantGardeStd-Md.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* webfonts end */

:root {
  --primary-color: #4f23b6;
  --secondary-color: #ff6b4d;
  --teritory-color: #00e5ff;
  --dark-indigo: #15002b;
  --mauve-text: #f2e9fb;
  --border-color: #c3c3c3;
  --text-color: #2a2a2a;
  --border-color: #15002b;
  --heading-color: #ff6b4d;
  --font: "ITC Avant Garde Std Bk";
}

html {
  margin: 0;
}

body {
  font-family: var(--font);
  overflow-x: hidden;
  color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  white-space: normal;
  word-break: break-word;
  font-family: var(--font);
  line-height: 1.1;
  color: var(--heading-color);
}

h1 {
  font-size: 60px;
}
h2 {
  font-size: 45px;
}

h3,
.h3 {
  font-size: 42px;
}

h4,
.h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}

.font-medium {
  font-family: var(--font);
}
.font-semibold {
  font-family: var(--font);
}
a,
p,
button,
span {
  white-space: normal;
  word-break: break-word;
}

a {
  text-decoration: none !important;
  color: var(--primary-color);
  display: inline-block;
}
a:hover{
  color: var(--secondary-color);
}
a:focus-visible {
  outline: transparent;
}
.page-link:focus {
  box-shadow: none;
}
.file > input[type="file"] {
  display: none;
}
p {
  font-size: 18px;
  margin: 0;
  /* color: var(--text-color); */
}
header {
  position: sticky;
  top: 0;
  z-index: 999;
}
.large-font {
  font-size: 18px;
  line-height: 25px;
}

.small-font {
  font-size: 12px;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

button {
  transition: all 0.5s;
  transition: background 0.3s ease;
}

button:focus {
  box-shadow: none !important;
  outline: transparent;
}
.form-control:focus,
input {
  outline: 0;
  box-shadow: none !important;
  color: var(--dark-indigo);
  border-color: var(--secondary-color);
}
.upload-btn {
  border: 2px dashed #324dc7;
  font-family: var(--font);
  border-radius: 0;
  color: var(--primary-color);
}
input[type="checkbox"]:checked ~ label:before {
  background: var(--secondary-color) no-repeat center;
}
.formfield {
  position: relative;
  width: 100%;
}
.form-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.form-group label {
  font-size: 14px;
  line-height: 23px;
  color: var(--light-color);
  pointer-events: none;
  transition: 0.3s;
  margin-bottom: 6px;
}
.checkbox-form-group label {
  margin-bottom: 15px;
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--heading-color);
  cursor: pointer;
}
input[type="checkbox"] {
  width: 22px;
  height: 22px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group:last-child {
  margin-bottom: 10px !important;
}
.form-icon {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  color: #c8c9d8;
}
.button {
  transition: all 0.5s;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 60px;
  font-size: 18px;
  border-radius: 0;
  font-family: var(--font);
  padding: 16px 20px;
}

.primary-btn {
  text-transform: capitalize;
  display: inline-flex;
  text-align: center;
  align-items: center;
  gap: 10px;
  transition: all 0.5s;
  min-width: 160px;
  justify-content: center;
  border: 1px solid;
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}
.secondary-btn {
  border: 1px solid #9aacff;
  background: #e8ecff;
  color: #324dc7;
  font-family: var(--font);
  font-size: 18px;
}
.light-btn {
  background: #f2f2f2;
  color: #727272;
  border: 1.81px solid #e8e8e8;
}
.small-btn {
  min-height: 50px;
  padding: 11px 20px;
}

.full-btn {
  width: 100%;
  min-width: auto;
}
.form-control {
  border: 1px solid var(--border-color);
  padding: 17px 25px;
  font-size: 16px;
  border-radius: 0;
  padding-right: 48px;
}
img {
  max-width: 100%;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: #cecece;
}
::-webkit-scrollbar-track {
  background: #f7f7f7;
  border-radius: 100px;
}
.container {
  max-width: 1560px;
  padding: 0 20px;
}
.navbar-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--secondary-color);
  transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.navbar-toggler[aria-expanded="true"] span:first-of-type {
  transform: rotate(45deg) translate(6px, 6px);
}

/* hide second span */
.navbar-toggler[aria-expanded="true"] span:nth-of-type(2) {
  opacity: 0;
}

/* rotate third span */
.navbar-toggler[aria-expanded="true"] span:last-of-type {
  transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-toggler[aria-expanded="false"] span {
  transform: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-logo-section .logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .social-icons {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px; /* Space between icons */
    margin-top: 15px;
    flex-wrap: wrap;
  }

  .social-icons a img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
  }
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
  }
}

