@font-face {
  font-family: 'MyCustomFont';
  src: url('../fonts/BrownLLWeb-Bold.woff2') format('woff');
  src: url('../fonts/BrownLLWeb-Light.woff2') format('woff');
  src: url('../fonts/BrownLLWeb-Medium.woff2') format('woff');
  src: url('../fonts/BrownLLWeb-Regular.woff2') format('woff');
  font-weight: normal;
  font-style: normal;
}


/* Fonts */
/* :root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
} */

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #AE9A66;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #143256;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;
  /* The default color of the main navmenu links */
  --nav-hover-color: #143256;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #143256;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1b1b1b;
  --default-color: #ffffff;
  --heading-color: #AE9A66;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'MyCustomFont', sans-serif;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

/* a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: 'MyCustomFont', sans-serif;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  /* max-height: 36px; */
  max-height: 63px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  /* font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s; */
  font-family: 'MyCustomFont', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  border-width: 0.125rem;
  border-style: solid;
  border-radius: 0.375rem;
  text-decoration: none;
  display: inline-block;
  margin-left: 1rem;
  transition: ease all 0.2s;
  cursor: pointer;
  padding: 0.938rem 2.188rem;

}

.register {
  color: var(--heading-color) !important;
  background: var(--background-color) !important;
}

@media (max-width:575px) {

  .register,
  .btn-getstarted {
    font-size: 11px !important;
    padding: 6px 11px !important;
  }
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: 'MyCustomFont', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    /* color: var(--nav-hover-color); */
    color: #143256;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: 'MyCustomFont', sans-serif;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  /* margin-bottom: 25px; */
}

.footer .footer-about .logo img {
  /* max-height: 40px; */
  max-height: 120px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: 'MyCustomFont', sans-serif;
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: 'MyCustomFont', sans-serif;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  /* color: var(--accent-color);
  border-color: var(--accent-color); */
  color: #ae9a66;
  border-color: #ae9a66;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #ae9a66
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: var(--alt-background-color);
  --default-color: #ffffff;
  --heading-color: #AE9A66;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  background-color: #061E42;
  padding: 40px 0 200px 0px;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width:575px) {
  .section {
    padding: 40px 0 40px 0px;
  }
}

.section-bg {
  background-color: transparent;
  padding: 160px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
  margin-bottom: 45px;
}

/* .section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
} */

.section-title p {
  margin-bottom: 0;
}

.section h3 {
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
  font-size: 36px;
  line-height: 2rem;
  margin-bottom: 1.438rem;
  font-weight: 700;
  color: #ffffff;
}





/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}


/* New */
.year-card {
  border: 0.5px solid #FFFFFF;
  padding: 19px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border-radius: 24px;
}

.col-lg-4:nth-child(2) .year-card {
    border: 0.5px solid #AE9A66;
    background: #031A3C;
}


/* .year-card:hover {
  border-color: #28a745;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
} */

.year-card.active {
  border-color: #28a745;
  background-color: #f0fff4;
}

.year-card h5 {
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
  line-height: 1;
  min-height: 50px;
}

.year-card ul {
  list-style: none;
  /* padding-left: 10px; */
  padding-left: 25px;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: start;
}

.year-card ul li::before {
  content: "\f044";
  font-family: "Font Awesome 5 Free";
  color: #AE9A66;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  margin-right: 10px;
}

.year-card .btn-select {
  width: 100%;
  font-weight: bold;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .col-md-4 {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 15px;
  }
}

/*  */
.provision-card {
  padding: 24px 53px;
  transition: 0.3s;
  position: relative;
  width: 495px;
  height: 352px;
  border-radius: 24px;
  background: #0C2A58;
  display: flex;

}

.provision-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-color: #0d6efd;
}

.provision-card h5 {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 31px;
    text-align: center;
    color: #AE9A66;
}


@media (max-width:576px) {
  .provision-card{
    width: 100%;
  }
  .term-card{
    width: 100% !important;
  }
}

.provision-card p {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.provision-card-box{
  width: 255px;
  margin: auto;
}

.btn-select {
  background-color: #1153a3;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 0;
  width: 100%;
  border: none;
  transition: 0.2s;
}

.btn-select:hover {
  background-color: #0d4691;
  color: white;
}

.info-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #11345e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

@media (max-width: 768px) {
  .col-md-6 {
    margin-bottom: 20px;
  }
}

/*  */
.term-card {
  padding: 24px 53px;
  transition: 0.3s;
  position: relative;
  width: 495px;
  height: 352px;
  border-radius: 24px;
  background: #0C2A58;
  display: flex;
}

/* .term-card:hover {
  border-color: #010408;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
} */

.term-card h6 {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 31px;
    text-align: center;
    color: #AE9A66;
}

.term-card p {
    font-size: 19px;
    margin: 0;
    color: #FFFFFF;
    font-weight: 400;
    margin-top: 20px;
}

@media (max-width: 768px) {
  .col-md-4 {
    margin-bottom: 20px;
  }
}

/*  */
.step-2,
.step-3,
.step-4 {
  display: none;
}

.year-card.active,
.provision-card.active,
.term-card.active {
  border: 2px solid #0d6efd;
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.3);
}

/*  */
.card-highlight {
  /* background-color: #ff6a00; */
  color: white;
}

.card-bg {
    border-radius: 8px;
    padding-top: 8px;
    padding-right: 60px;
    padding-bottom: 8px;
    padding-left: 60px;
    background: #02142F;
    text-align: center;
}

.price-tag {
  font-size: 36px;
  font-weight: 600;
}

.highlight-tag {
  background-color: #143256;
  color: #fff;
  padding: 2px 6px;
  font-weight: bold;
  font-size: 0.9rem;
  border-radius: 5px;
}

.course_descri{
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFF;

}

.get-started-btn {
  background-color: #ffdc00;
  font-weight: bold;
}
.accordion-button::after {
    filter: brightness(0) invert(1); /* Makes the default SVG white */
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.get-started-btn:hover {
  background-color: #ffdc00;
  font-weight: bold;
}

.edit_btn_switch {
  /* background-color: #D7E5F5;
  border-radius: 6px;
  color: #397CCF;
  font-size: 14px;
  padding: 5px 10px;
  opacity: 1;
  text-decoration: none !important; */
  width: 87px;
  height: 45px;
  border-radius: 99px;
  padding: 12px 30px;
  background: #061E42;
  border: 0.5px solid #FFFFFF;
  font-size: 16px;
  font-weight: 400;
  color: #FFF;


}

@media (max-width: 576px) {
  .mobile-package {
    display: flex;
    flex-direction: column;
  }
  .package-price h5 {
    font-size: 22px !important;
  }
  .packageprice-title{
    font-size: 25px !important;
  }
  .form-heading{
    font-size: 22px !important;
  }

}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: brightness(0) invert(1); /* সাদা করে দেবে */
}

/* ড্রপডাউন আইকনের জন্য */
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M1.5 5l6 6 6-6'/%3E%3C/svg%3E");
}


/* Switcher */
.form-check-input {
  width: 2rem;
  height: 1.5rem;
  cursor: pointer;
}
.form-check-input:checked {
    background-color: transparent !important; /* No background */
    border-color: #AE9A66 !important; /* Border color */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23AE9A66' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input{
  background-color: transparent !important; /* No background */
  border-color: #AE9A66 !important; /* Border color */
  background-color: none !important;

}
.form-switch .form-check-input {
  width: 60px;
  height: 32px;
}

.info-icon-one {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #11345e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

/*  */

.form-heading {
  font-weight: 600;
  letter-spacing: -.03125rem;
  line-height: 1.14;
  margin-bottom: 35px;
  font-size: 32px;
  text-align: center;
}


.btn-continue:disabled {
  background-color: #ccc;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  font-weight: 600;
  cursor: not-allowed;
  border-radius: 99px;
}

.btn-continue:not(:disabled) {
  background-color: #AE9A66;
  color: #fff;
  border: none;
  width: 100%;
  padding: 8px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 5px rgb(20 50 86);
  transition: background-color 0.3s ease;
  border-radius: 99px;
}

.btn-continue1:not(:disabled) {
  background-color: #af9b67;
  color: #fff;
  border: none;
  width: 100%;
  padding: 8px;
  font-weight: 600;
  cursor: pointer;
  /* box-shadow: 0 4px 5px rgb(137 133 124); */
  transition: background-color 0.3s ease;
  border-radius: 99px;
}

.form-select:focus,
.form-control:focus {
  -webkit-appearance: none !important;
  appearance: none !important;
  background-color: #183e77 !important;
  border: none !important;
  border-radius: 8px !important;
  color: #fff !important;
  height: 50px !important;
  letter-spacing: -.03125rem !important;
  padding: 12px 24px !important;
  width: 100% !important;
}


.form-select,
.form-control {
  -webkit-appearance: none !important;
  appearance: none !important;
  background-color: #183e77 !important;
  border: none !important;
  border-radius: 8px !important;
  color: #fff !important;
  height: 50px !important;
  letter-spacing: -.03125rem !important;
  padding: 12px 24px !important;
  width: 100% !important;
}

.form-control::placeholder {
    color: #3F69A7;  /* Light gray placeholder for inputs */
    opacity: 1;   /* Ensure it's fully visible */
}

.form-select {
    color: #3F69A7;  /* Change the default text color for selects */
}

.form-check-label {
  font-size: 0.9rem;
}

.form-check-input {
  height: 2rem !important;
  border-radius: 0px !important;
}

/* Info Box */
.info-box {
  background-color: #0c2a58;
  padding: 36px;
  border-radius: 24px;
}

.info-step {
  margin-bottom: 1.5rem;
}

.info-step span {
  display: inline-block;
  /* background: #f1f1f1;
  color: #333; */
  /* border-radius: 50%;
  width: 30px;
  height: 30px; */
  text-align: center;
  line-height: 30px;
  margin-right: 15px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 24px;
  font-weight: 400;
  color: #FFF;
}

.step_text_title{
  font-size: 20px;
  color: #AE9A66;
  font-weight: 500;
}
.step_text_desc{
  font-size: 16px;
  color: #FFF;
  font-weight: 300;
  line-height: 2;
}

.lets_start{
  font-size: 24px;font-weight:600;color: #FFF;
}
.step-text {
  flex: 1;
  line-height: 1.4;
}

.step-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
}


/* Info Box */


/* Range Desgin */
.range {
  width: 100%;
  max-width: 405px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555;
  margin: 0 auto;
}

.range p {
  margin: 0;
  margin-bottom: 8px;
  font-size: 24px;
    font-weight: 500;
    color: #FFF;
}

@media (max-width:576px) {
  .range p{
    font-size: 22px;
  }
}
.form-label{
  color: #FFF;
}

.progress-bar-wrapper {
  width: 100%;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background-color: #AE9A66;
  border-radius: 2px;
  transition: width 0.3s ease-in-out;
}

.progress-percent {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(120%, -50%);
  color: #143256;
  font-size: 13px;
  white-space: nowrap;
  font-weight: bold;
}

@media (max-width: 991.98px) {
  .range-wrapper {
    display: block !important;
    text-align: center !important;
  }
}


.range-logo img {
  width: 100px;
}
.time_table_name_title{
  font-size: 32px;
  font-weight: 600;
}
@media (max-width:576px) {
  .time_table_name_title{
    font-size: 24px;
  }
}
/* Time Table */
.timetable-option {
  border-radius: 24px;
  padding: 24px 53px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #0c2a58;
  text-align: center;
  position: relative;
}

.timetable-option h5{
  font-size: 28px;
  font-weight: 600;
}

.timetable-option-another{
  border-radius: 24px;
  padding: 36px 53px;
  cursor: pointer;
}


.timetable-title{
  font-weight: 600;
  color: #AE9A66;
  font-size: 32px;
  letter-spacing: -.0125rem;
  line-height: 1.3125rem;
  margin-top: 25px !important;
  text-align: center;

}

.timetable-option .checkmark {
  width: 36px;
  height: 36px;
  margin: auto;
  border-radius: 0; /* No circle → rectangle */
  border: 2px solid #AE9A66; /* Border color */
  background-color: transparent; /* No background */
  color: transparent; /* Hide checkmark until active */
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.timetable-option-another .checkmark {
  width: 25px !important;
  height: 25px !important;
  line-height: 25px !important;
}

.timetable-option.active {
  border-color: #AE9A66;

}

.timetable-option.active .checkmark {
  background-color: transparent; /* No background */
  border-color: #AE9A66;
  color: #AE9A66; /* Checkmark color */
}


.note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 20px;
}

.time_table .btn-continue {
  width: 30% !important;
}

@media (max-width:575px) {
  .time_table .btn-continue {
    width: 100% !important;
  }
}

/* Time Table */


/* Students Icon */
.icon {
  width: 40px;
  height: 40px;
  background-color: #e0e0ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #003;
  border: 2px solid #005;
}

@media screen and (max-width: 576px) {
  /* .controls {
                flex-direction: column;
            } */

  /* .controls button {
                width: 100px;
            }

            .number-box {
                margin: 10px 0;
            }

            .student-icons {
                flex-wrap: wrap;
            } */
}

.student-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 20px; */
  gap: 10px;
}

.icon {
  width: 40px;
  height: 40px;
  border: 2px solid #005;
  border-radius: 50%;
  background-color: #e0e0ff;
}

.plus-icon {
  font-size: 24px;
  font-weight: bold;
  background-color: #d0ffd0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.controls button {
  background-color: transparent;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #ae9a66;
  color: #ae9a66;
}

.number-box {
  font-size: 20px;
  padding: 10px;
  min-width: 50px;
  text-align: center;
  border: 1px solid #ae9a66;
  border-radius: 5px;
  background: #ae9a66;
  color: #FFF;
}
.continue-btn {
    background-color: #143256;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #fbb707;
}

.back {
    margin-top: 10px;
    color: gray;
    cursor: pointer;
    display: inline-block;
}
/* Students Icon */

/* Modal Button */
@media (max-width:575px) {
  .modalbutton a{
    font-size: 18px;
  }
}

.package-price{
    height: 197px;
    padding: 36px 45px;
    background: #0B264E;
    border-radius: 24px;
}
.package-price h5{
  font-size: 24px;
  font-weight: 600;
}