:root {
  --font: "Inter", sans-serif;
  --white: #ffffff;
  --blue: #312d89;
  --black: #000;
  --dark: #1a1a1a;
  --green: #106b41;
  --orange: #e66f1a;
  --light: #d6fbfd;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

body {
  font-family: var(--font) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  background-color: var(--white) !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1320px;
}

p {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--dark);
}

img {
  max-width: 100%;
}

.custom-btn {
  display: flex;
  min-width: 188px;
  min-height: 56px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: ease 0.5s;
  -moz-transition: ease 0.5s;
  -ms-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  transition: ease 0.5s;
}

.custom-btn:after {
  content: "";
  height: 0;
  width: 0;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  transition: ease 0.5s;
}

.custom-btn:hover:after {
  height: 500px;
  width: 500px;
}

.heading {
  color: var(--blue);
  font-family: var(--font);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

header {
  position: sticky;
  top: 0;
  z-index: 99;
}

.navbar {
  padding: 0;
  min-height: 90px;
  background: linear-gradient(90deg, #f3fff7 0%, #fffbf4 50%, #fff6ff 100%);
}

.navbar .navbar-brand {
  margin-right: 50px;
}

.navbar .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}

.navbar .navbar-nav .nav-item,
.navbar .nav-right ul .nav-item {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar .navbar-nav .dropdown .dropdown-menu {
  left: 0;
  top: 90px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #ddd;
}

.navbar .navbar-nav .dropdown .dropdown-menu li {
  border-bottom: 1px solid #ddd;
}

.navbar .navbar-nav .dropdown .dropdown-menu li:nth-last-child(1) {
  border-bottom: none;
}

.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  color: var(--blue);
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 10px;
}

.navbar .navbar-nav .dropdown .dropdown-menu li:hover .dropdown-item {
  background: #120e6c;
  color: #fff;
}

.navbar .navbar-nav .nav-item .nav-link,
.navbar .nav-right ul .nav-item .nav-link {
  color: var(--blue);
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0;
}

.navbar .nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}

.navbar .nav-right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar .nav-right .search-live {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  padding-left: 14px;
  margin-left: 14px;
}

.navbar .nav-right .search-live::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--dark);
  left: -14px;
}

.navbar .nav-right .search-live button {
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}

.navbar .nav-right .search-live a {
  border-radius: 45px;
  background: var(--light);
  padding: 12px 32px;
  color: var(--blue);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

.navbar .nav-right .search-live a:hover {
  background: var(--blue);
  color: var(--white);
}

footer {
  padding-top: 60px;
  background: var(--blue);
}

footer .head-logo-text {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  /* 175% */
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 2px solid var(--white);
}

footer ul {
  list-style: none;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  text-decoration: none;
}

footer .social {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
}

footer .social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: var(--white);
}

footer .head-list {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

footer .list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .list li a {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px;
}

footer .we-support {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

footer .we-support p {
  text-align: center;
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 15px;
}

footer .copyright {
  background: #120e6c;
  text-align: center;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

footer .copyright p,
footer .copyright a {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px;
  margin-bottom: 0;
  text-decoration: none;
}

#goTopBtn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 100;
  background-color: var(--blue);
  color: var(--white);
  border: none;
  padding: 10px 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(14, 1, 72, 0.3);
  transition: opacity 0.3s;
}

#goTopBtn:hover {
  border: 2px solid var(--light);
}

/* media query */
@media (max-width: 2500px) and (min-width: 992px) {
  .navbar .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
  }
  .navbar .navbar-nav .dropdown:hover .nav-link::after{
    transform: rotate(180deg);
    transition: ease 0.3s;
  }
}

@media (max-width: 1200px) {

  .navbar .navbar-nav,
  .navbar .nav-right ul,
  .navbar .nav-right .search-live {
    gap: 10px;
  }
}

@media (max-width: 991px) and (min-width: 280px) {
  .navbar {
    padding: 20px 0;
  }

  .navbar .navbar-toggler {
    border: 1px solid var(--blue);
  }

  .navbar .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar .navbar-nav,
  .navbar .nav-right ul {
    align-items: flex-start;
    margin-bottom: 20px !important;
  }

  .navbar .navbar-nav .nav-item,
  .navbar .nav-right ul .nav-item {
    min-height: auto;
  }

  .navbar .navbar-collapse {
    overflow: auto;
    max-height: 400px;
    padding: 20px 0;
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
  }

  .navbar .navbar-nav,
  .navbar .nav-right ul,
  .navbar .nav-right .search-live,
  .navbar .nav-right {
    gap: 20px;
    width: 100%;
    justify-content: flex-start;
  }

  .navbar .nav-right {
    justify-content: flex-start;
  }

  .navbar .navbar-nav .nav-item,
  .navbar .nav-right ul .nav-item {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar .navbar-nav .dropdown-menu {
    width: 100%;
    margin-top: 10px !important;
  }

  .navbar .nav-right .search-live::before {
    display: none;
  }

  .navbar .nav-right .search-live {
    margin-left: 0;
    padding-left: 0;
  }

  .navbar .nav-right .search-live {
    flex-direction: column;
  }

}

@media (max-width: 768px) {
  footer {
    text-align: center;
  }

  footer .head-logo-text {
    border: none;
  }

  footer ul {
    align-items: center;
  }

  footer .social {
    justify-content: center;
  }
}