@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/* Fonts */
:root {
  --default-font: "Inter", sans-serif;
  ;
  --heading-font: "Inter", sans-serif;
  ;
  --nav-font: "Inter", sans-serif;
  --body-font: "Inter", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #17212b;
  --sub-heading-color: #2d465e;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0d83fd;
  /* 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. */
  --paragraph-color: #717171;
}

/* Nav Menu Colors */
:root {
  --nav-color: #212529;
  /* The default color of the main navmenu links */
  --nav-hover-color: #0d83fd;
  /* 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: #0d83fd;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets */
.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
}

/* Fonts Size Preset */
:root {
  --font-15px: 15px;
}

.dark-background {
  --background-color: #0d83fd;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}


/* Smooth scroll */
/*------Scroll Bar---------------------*/
::-webkit-scrollbar {
  width: 5px;
  height: 2px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: #525965;
  border: 0px none #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
  background: #525965;
}

::-webkit-scrollbar-thumb:active {
  background: #525965;
}

::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}

::-webkit-scrollbar-track:hover {
  background: transparent;
}

::-webkit-scrollbar-track:active {
  background: transparent;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

/*------------- Scroll Bar End --------------------*/

.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 5px;
  align-items: center;
  transition: 0.3s;
  border-color: var(--accent-color);
}

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
  border-color: var(--accent-color);
}

.btn-outline-primary {
  border-color: var(--accent-color);
  padding: 10px 20px;
  color: var(--accent-color);
}

.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 10px 24px;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}
p {
  line-height: 1.6;
  color: var(--paragraph-color);
  font-size: var(--font-15px);
}
b {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
}
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: var(--heading-font);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}
h1 {
  font-size: 48px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
  color: var(--sub-heading-color);
}
li {
  color: var(--paragraph-color);
  font-size: var(--font-15px);
}
li b {
  color: var(--default-color);
}
.btn-success {
  background-color: #007236;
  color: #ffffff;
  padding: 12px 30px;
  font-weight: 600;
  margin: 30px 0 0 0;
  font-size: 18px;
}

/*-------------------------------------------------------------- #Global Footer --------------------------------------------------------------*/
.main {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../image/bg-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;

}
.logo {
  padding: 0;
  margin: 0 0 30px 0;
 display: inline-block;


}
.logo img {
  max-height: 160px;
  margin: 0;
} 
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*-------------------------------------------------------------- # Contact Section --------------------------------------------------------------*/
.contact-form {
  background-color: #ffffff50;
  padding: 30px 24px;
  border-radius: 1rem;
  backdrop-filter: blur(10px); 
}
.special-id .form-control, .special-id .form-select {
  color: #000000;
  letter-spacing: 10px;
  font-size: 21px;
  font-weight: 600;
  text-align: center;
}
.form-control, .form-select {
  height: 50px;
  display: flex;
  align-items: center;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 5px;
  background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
  color: #000000; 
  font-size: 15px;
}
.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}
.form-control::placeholder,
.form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.special-id input::placeholder {
  font-size: 21px; 
  color: #000000;
  text-align: center;
  letter-spacing: 10px;
}
.modal-content {
   box-shadow: 0px 0px 7.7px 0px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    border: none;
}
.modal-backdrop.show {
    opacity: 0.8;
        background-color: #ffffff;
}

.btn-close { 
    position: relative;
    top: 24px;
    right: 24px;
    z-index: 999999;
}

label {
    font-weight: 700;
    margin: 10px 0 3px 0;
    font-size: 14px;
}

.thankyou h2 {
font-weight: 500;
font-size: 27px;
}
.thankyou h2 b {
  font-weight: 600;
font-size: 27px;
color: #000000;
}