:root {
  --primary-color: #2f89b0;
  --primary-light-color: #135776;
  --secondary-color: #17977e;
  --secondary-light-color: #046955;
  --lime-color: #17977e1a;
  --text-primary-color: #8a8a8a;
  --text-secondary-color: #828282;
  --white-color: #ffffff;
  --input-bg-color: #f6f6f6;
  --input-dark-bg-color: #e5e5e5;
  --input-bg-color: #f6f6f6;
  --input-dark-bg-color: #e5e5e5;
}

.josefin-sans-thin {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
.josefin-sans-extraLight {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}
.josefin-sans-light {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.josefin-sans-regular {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.josefin-sans-medium {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.josefin-sans-semibold {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.josefin-sans-bold {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.inter-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

body {
  font-family: "Josefin Sans", sans-serif;
}

p {
  margin-top: inherit !important;
  margin-bottom: inherit !important;
}

input::placeholder,
.form-control::placeholder {
  color: var(--text-primary-color);
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
.form-control:focus,
.form-check-input:checked,
.btn-close:focus,
.form-check-input:focus {
  outline: none;
  box-shadow: none;
}

/* text color utils class */
.primary-color {
  color: var(--primary-color) !important;
}

.primary-light-color {
  color: var(--primary-light-color) !important;
}

.secondary-color {
  color: var(--secondary-color) !important;
}

.secondary-light-color {
  color: var(--secondary-light-color) !important;
}

.text-primary-color {
  color: var(--text-primary-color) !important;
}

.text-secondary-color {
  color: var(--text-secondary-color) !important;
}
/* text color utils class */

/* background color utils class */
.bg-primary-color {
  background-color: var(--primary-color) !important;
}

.bg-primary-light-color {
  background-color: var(--primary-light-color) !important;
}

.bg-secondary-color {
  background-color: var(--secondary-color) !important;
}

.bg-secondary-light-color {
  background-color: var(--secondary-light-color) !important;
}

/* background color utils class */

/* additional utils class */
.font-size-24 {
  font-size: 24px;
}

.h-48 {
  height: 48px;
}
/* font size utils class */

/* bootstrap class overwrite */
.row {
  margin: 0 !important;
  padding: 0 !important;
}
/* bootstrap class overwrite */

/* Swiper Pagination */
.swiper-pagination {
  text-align: center;
  width: 100%;
  z-index: 10;
}

.swiper-pagination-bullet {
  background: var(--white-color) !important;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: var(--white-color) !important;
  width: 40px;
  border-radius: 10px;
}

/* common component css */

/* navbar section */
/* Navigation Bar Styles */
.navbar-brand {
  font-family: "Josefin Sans", sans-serif; /* More distinctive font */
  color: var(--primary-light-color); /* Brand color */
  font-weight: bold;
  font-size: 28px; /* Larger font size for better visibility */
  text-transform: uppercase; /* Make the brand name stand out */
  position: relative;
  display: inline-block;
}

.navbar-brand::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color); /* Decorative underline */
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-brand:hover::before {
  transform: scaleX(1);
}

/* Navigation Links */
.navbar-nav .nav-link {
  font-family: "Inter", sans-serif;
  color: var(--primary-light-color); /* Navigation link color */
  font-size: 18px; /* Slightly larger font size for readability */
  padding: 10px 15px; /* Add some padding */
  border-radius: 5px; /* Rounded corners for links */
  transition: color 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
}

.navbar-nav .nav-link:hover {
  background-color: var(--primary-color); /* Background color on hover */
  color: var(--white-color); /* Text color on hover */
  text-decoration: none; /* Remove underline on hover */
  border-radius: 30px;
  transform: scaleX(1.01);
}

.navbar-nav .nav-link:not(hover) {
  color: var(--primary-color); /* Text color on hover */
  text-decoration: none; /* Remove underline on hover */
  border-radius: 30px;
}

/* Button Link */
.navbar-nav .nav-link.btn-primary {
  background-color: var(--secondary-color); /* Button color */
  border: none;
  border-radius: 50px; /* Rounded button corners */
  width: 220px;
  height: 50px;
  color: var(--white-color); /* Button text color */
  font-weight: 500; /* Slightly lighter font weight for buttons */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.navbar-nav .nav-link.btn-primary:hover {
  background-color: var(--primary-light-color); /* Darker shade on hover */
  transform: scale(1.05); /* Slightly enlarge button on hover */
}

/* Additional Responsive Styles */
@media (max-width: 991px) {
  .navbar-brand {
    font-size: 24px; /* Smaller font size on smaller screens */
  }

  .navbar-nav .nav-link {
    font-size: 16px; /* Smaller font size on smaller screens */
  }
}
/* navbar section */

/* modal component */
.modal-header {
  border-bottom: none;
  display: flex;
  justify-content: center;
  position: relative;
}

.modal-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 55px;
  text-align: center;
  color: var(--primary-light-color);
}

.modal-header .btn-close {
  position: absolute;
  right: 1rem;
  top: 1.8rem;
  background: var(--input-bg-color);
  border: none;
  color: var(--text-primary-color);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  padding: 5px;
  transition: transform 1s;
}

.modal-header .btn-close:hover {
  background: var(--input-dark-bg-color);
  transform: rotate(360deg);
}

.modal-header .close {
  color: var(--primary-light-color);
}

.modal-body {
  padding: 2rem;
}
/* modal component */

/* common bootstrap */
.anchor-div {
  cursor: pointer;
}

.form-control {
  height: 3rem;
  font-size: 1rem;
  background-color: var(--input-bg-color);
  color: var(--text-primary-color);
  border: none;
}

.form-control:focus {
  background-color: var(--input-bg-color);
}

.form-check-input {
  border-radius: 0.25rem;
}

.form-check-label {
  font-size: 0.875rem;
  color: var(--text-primary-color);
}

.btn-primary {
  background-color: var(--primary-light-color); /* Primary button color */
  border: none;
  font-size: 1.125rem;
  padding: 0.75rem;
  border-radius: 8px; /* Border radius for button */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow for the button */
}

.btn-primary:hover {
  background-color: var(--primary-color);
}

.text-decoration-none {
  color: var(--secondary-color); /* Link color */
  text-decoration: none !important;
}

.text-decoration-none:hover {
  text-decoration: underline;
}

.text-center p {
  color: var(--text-primary-color); /* Gray color */
}

.login-btn {
  width: 500px;
  height: 108px;
  border-radius: 8px 0 0 0; /* Border radius for button */
  opacity: 1;
  margin-top: 30px; /* Add some margin-top if needed */
}

.mb-4 {
  margin-bottom: 1.5rem; /* Add some gap between fields */
}

.mb-4.d-flex .form-control {
  flex: 1;
}

.active {
  background-color: var(--primary-light-color) !important;
  color: var(--white-color) !important;
  border-radius: 30px !important;
  height: 40px !important;
  width: 40px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.page-link:focus,
.page-link:focus {
  outline: none !important;
  box-shadow: none !important;
}
/* common bootstrap */

/* Footer section styles */
.footer-bg {
  width: 300px !important;
}

/* Footer */
.footer-heading {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-light-color);
  margin-bottom: 15px;
}

/* Footer links styling */
.footer-links ul {
  padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #000000; /* Link color */
  text-decoration: none; /* Remove underline */
}

.footer-links a:hover {
  text-decoration: underline; /* Underline on hover */
}

/* New Footer Section */
.footer-image {
  max-width: 50%; /* Adjust size as needed */
  height: 200px;
}

.social-icon {
  margin: 0 10px;
  text-decoration: none;
}

.footer-email {
  color: #000000; /* Email text color */
  text-decoration: none; /* Remove underline */
}

.footer-email:hover {
  text-decoration: underline; /* Underline on hover */
}

.copyright {
  color: #000000; /* Copyright text color */
  font-size: 14px; /* Adjust size as needed */
}
/* Footer */

/* common component css */

/* mobile responsive css */

@media (min-width: 1201px) and (max-width: 1325px) {
  .navbar-brand img {
    height: 75px !important;
  }

  .nav-link {
    font-size: 1.2vw !important;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .navbar-brand img {
    height: 75px !important;
  }

  .nav-link {
    font-size: 1.3vw !important;
  }
}

@media (max-width: 767px) {
  .social-icons {
    display: flex;
    justify-content: center;
  }

  .social-icon {
    margin: 0 5px;
  }
}

/* mobile responsive css */
