@font-face {
  font-family: "Roboto-Light";
  src: url("/assets/fonts/Roboto-Light.woff2") format("woff2");
  font-display: optional; /* Non-critical font - optional prevents layout shift */
}

@font-face {
  font-family: "Roboto-Regular";
  src: url("/assets/fonts/Roboto-Regular.woff2") format("woff2");
  font-display: swap; /* Critical font - swap allows fallback */
}

@font-face {
  font-family: "Roboto-Medium";
  src: url("/assets/fonts/Roboto-Medium.woff2") format("woff2");
  font-display: swap; /* Critical font - swap allows fallback */
}

@font-face {
  font-family: "Roboto-SemiBold";
  src: url("/assets/fonts/Roboto-SemiBold.woff2") format("woff2");
  font-display: optional; /* Non-critical font - optional prevents layout shift */
}

@font-face {
  font-family: "Roboto-Bold";
  src: url("/assets/fonts/Roboto-Bold.woff2") format("woff2");
  font-display: swap; /* Critical font - swap allows fallback */
}

@font-face {
  font-family: "GentiumBookPlus-Bold";
  src: url("/assets/fonts/GentiumBookPlus-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "GentiumBookPlus-Regular";
  src: url("/assets/fonts/GentiumBookPlus-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Figtree-Bold;
  src: url("/assets/fonts/Figtree-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Figtree-Regular;
  src: url("/assets/fonts/Figtree-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Figtree-Medium;
  src: url("/assets/fonts/Figtree-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Figtree-SemiBold;
  src: url("/assets/fonts/Figtree-SemiBold.woff2") format("woff2");
  font-display: swap;
}

:root {
  --background: #ffffff;
  --foreground: #171717;
  --Roboto-light: "Roboto-Light";
  --Roboto-regular: "Roboto-Regular";
  --Roboto-medium: "Roboto-Medium";
  --Roboto-semi-bold: "Roboto-Semibold";
  --Roboto-bold: "Roboto-Bold";
  --roboto-light: "Roboto-Light";
  --roboto-regular: "Roboto-Regular";
  --roboto-medium: "Roboto-Medium";
  --roboto-semi-bold: "Roboto-SemiBold";
  --roboto-bold: "Roboto-Bold";
  --color-white: "#fffff";
  --color-black: "#000000";
  --color-dkGrey: "#121212";
  --color-primaryGreen: #18463e;
  --color-cream: "#f7f4ee";
  --color-lightCream: #f7e7ce;
  --color-yellow: #fed500;
  --font-weight400: 400;
  --font-weight500: 500;
  --font-weight600: 600;
  --font-weight700: 500;
  --font-cormo: "Cormorant Garamond", serif;
  --font-gentium-regular: "GentiumBookPlus-Regular";
  --font-gentium-bold: "GentiumBookPlus-Bold";
  --font-figtree-regular: "Figtree-Regular";
  --font-figtree-bold: "Figtree-Bold";
  --font-figtree-medium: "Figtree-Medium";
  --font-figtree-semi-bold: "Figtree-SemiBold";
  --font-DmSans-regular: "DM Sans-Regular", sans-serif;
  --font-DmSans-medium: "DM Sans-Medium", sans-serif;
  --font-DmSans-bold: "DM Sans-Bold", sans-serif;
  --font-DmSans-light: "DM Sans-Light", sans-serif;
  --font-DmSans-thin: "DM Sans-Thin", sans-serif;
  --font-DmSans-black: "DM Sans-Black", sans-serif;
  --font-DmSans-extra-bold: "DM Sans-ExtraBold", sans-serif;
  --font-DmSans-extra-light: "DM Sans-ExtraLight", sans-serif;
}

html,
body {
  max-width: 100vw;
  color: var(--foreground);
  font-family: var(--roboto-regular), Arial, sans-serif;
}

/* html {
/* html {
  background-color: #18463e !important;
} */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: var(--Roboto-regular);
  font-family: var(--roboto-regular);
  font-weight: var(--font-weight500);
  font-style: normal;
}

a {
  color: inherit;
  text-decoration: none !important;
}
ul {
  list-style: none;
}

h2 {
  font-family: var(--font-cormo);
  /* font-weight: var(--font-weight700); */
  font-weight: var(--font-weight700);
  line-height: 65.39px;
  letter-spacing: 0.01em;
}
.accordion-button::after {
  display: none;
}

@media (max-width: 991px) {
  h2 {
    font-size: 24px !important;
    text-decoration: none !important;
    line-height: normal;
  }
}

.CommonContainer {
  margin: 88px 108px 0px 108px;
}

@media (max-width: 960px) {
  .CommonContainer {
    margin: 88px 108px 0px 108px;
  }
}
@media (max-width: 760px) {
  .CommonContainer {
    margin: 88px 108px 0px 108px;
  }
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none !important;
  border: unset;
}
/* .pageContainer {
  display: flex;
  flex-direction: column;
  padding: 20px;
} */

.contentContainer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
}

.leftSection {
  height: 100%;
  width: 75%;
  max-width: 880px;
}

.rightSection {
  width: 25%;
}

.FormSection {
  position: sticky;
  top: 18%;
}
.accordion-item {
  border: none !important;
}
button {
  border: none;
  background: none;
}

/* Custom Pagination Dots */
.slick-dots {
  position: absolute;
  bottom: -30px; /* Adjust spacing from slider */
  display: flex !important;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.slick-dots li button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  /* background-color: #ccc; */
  border: none;
  margin: 0px;
  transition: background-color 0.3s ease;
}
.slick-dots li button:before {
  font-size: 12px !important;
}
.slick-dots li.slick-active button:before {
  color: #18463e !important;
}
.slick-dots li {
  margin: 0 2px !important;
}
/* .slick-dots li.slick-active button {
  background-color: #18463e; 
  line-height: 20px;
} */
@media (max-width: 1336px) {
  .leftSection {
    max-width: 780px;
  }
}

/* @media (max-width: 1200px) {
  .contentContainer {
    margin: 0px 40px;
  }
} */
@media (max-width: 1150px) {
  .rightSection {
    display: block;
    width: 100%;
    order: 1;
  }
  .FormSection {
    display: block;
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
  .leftSection {
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
    order: 2;
  }
  .ProgramNav {
    display: none;
  }
  .contentContainer {
    bottom: 0;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .leftSection {
    margin-top: 0px;
  }
  .contentContainer {
    margin: 0px;
  }
  .slick-dots {
    bottom: -30px !important;
  }
  .rightSection {
    order: 1;
  }
  .FormSection {
    margin-top: 0;
    margin-bottom: 20px;
  }
}

.more-content {
  overflow: hidden;
}
.more-content:hover {
  overflow-y: auto;
}

.next-error-h1 {
  font-size: 80px !important;
}

.PhoneInputInput:focus-visible {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
}

/* Apply form for programe pages */

.mobileApply {
  display: none;
}

.breadCrumbStyle {
  background-color: #f2f4f7;
}
.breadCrumbEvents {
  background-color: transparent;
  max-width: 1214px;
  margin: 0 auto;
}
.breadCrumbEvents a {
  color: #171717;
}
.paymentContainer {
  background-color: #fcfcfc;
}
.paymentContainer h4 {
  color: #18463e;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
  letter-spacing: 0.12px;
}
@media (max-width: 991px) {
  .mobileApply {
    display: flex;
    position: fixed;
    bottom: 0px;
    width: 100%;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    border-top: 1px solid #e3e8ee;
    padding: 1rem;
    background-color: #ffffff;
    z-index: 9999999999999;
  }

  .mobileApply p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-color: #18463e;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    padding: 1rem;
    max-width: 300px;
    width: 100%;
    text-align: center;
    height: 44px;
    cursor: pointer;
  }
}

@media (max-width: 576px) {
  /* .breadCrumbStyle {
    margin-top: 62px;
  } */
  .tawk-button {
    display: none !important;
  }
}

input:-webkit-autofill {
  appearance: none;
  background-color: transparent !important;
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
  box-shadow: 0 0 0px 1000px transparent inset !important;
}

input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background-color: transparent !important;
  color: inherit !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  box-shadow: 0 0 0px 1000px transparent inset !important;
}

.slick-slider,
.slick-list,
.slick-track {
  overflow: visible !important;
}

/* Swiper pagination styles */
.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 20px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #e3e8ee !important;
  opacity: 1 !important;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
  background: #18463e !important;
  width: 12px !important;
  height: 12px !important;
}

@media (max-width: 880px) {
  .modal-dialog {
    margin: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: auto;
  }
}

.PhoneInput {
  gap: 4px !important;
}
