/* ServiceManagement dropdown visual fixes */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:hover {
  background-color: #f5f6f7; /* subtle gray, avoids blue */
  color: inherit;
}

.dropdown-menu .dropdown-item:focus {
  background-color: #eef0f2;
  color: inherit;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Spinning animation for loading states */
.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
:root {
  --primary: #f9960d;
  --secondary: #005890;
  --dark: #525356;
--text: #070707;
  --white: #ffffff;
  --font1: Red Hat Text, sans-serif;
}

body {
  font-family: var(--font1);
  overflow-x: hidden;
}
ul,
ol {
  padding: 0;
  list-style: none;
  margin: 0;
}
li {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: var(--black);
}
img {
  max-width: 100%;
  object-fit: cover;
}
h1 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  font-family: var(--font1);
}
h2 {
  font-size: 49px;
  line-height: 72px;
  font-weight: 700;
}
h3 {
  font-size: 48px;
  line-height: 63px;
}
h4 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
}
h5 {
  font-size: 26px;
  line-height: 40px;
  font-weight: 700;
}
h6 {
  font-size: 22px;
  line-height: 22px;
  font-weight: 700;
}
h1 span {
  color: var(--secondary) !important;
}
section {
  padding: 70px 0;
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  font-family: var(--font1);
}
p {
  font-family: var(--font1);
  color: var(--text);
  font-weight: 600;
  font-size: 18px;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--primary);
}
::after,
::before {
  pointer-events: none;
}
.btn-primary {
  color: var(--white);
  font-size: 16px;
  background-color: var(--primary);
  border-color: var(--blue);
  border-radius: 40px;
  padding: 14px 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  text-transform: capitalize;
  width: fit-content;
  transition: 0.2s linear;
  max-width: 197px;
  width: 100%;
}
.btn-primary img,
.btn-secondary img,
.btn-white img {
  margin-right: 10px;
}
.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.btn-secondary {
  color: var(--white);
  font-size: 16px;
  background-color: var(--secondary);
  border-color: var(--dark);
  border-radius: 40px;
  padding: 21px 39px;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  width: fit-content;
  transition: 0.3s linear;
}
.btn-secondary .arrow-icon {
  transition: 0.3s ease;
}
.btn-secondary:hover .arrow-icon {
  content: url("/images/icons/black_arrow.svg");
}
.btn-secondary:hover {
  background: var(--white);
  border-color: var(--secondary);
  color: var(--text);
}
.btn-secondary:hover .btn-secondary img {
  fill: var(--text);
}
.btn-white {
  color: var(--text);
  font-size: 16px;
  background-color: var(--white);
  border-color: var(--white);
  border-radius: 40px;
  padding: 21px 39px;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  width: fit-content;
  transition: 0.3s linear;
}
.btn-white:hover .arrow-icon {
  content: url("/images/icons/right_arrow.svg");
}
.btn-white:hover {
  color: var(--white);
  background-color: var(--secondary);
  border-color: var(--white);
}

.btn-primary,
.btn-secondary,
.btn-white {
  width: fit-content;
  max-width: none; /* remove the 197px or similar limits */
  white-space: nowrap; /* optional: keeps text on one line */
}

header {
  position: relative;
  background: var(--white);
  z-index: 999999999999999;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0px 4px 26px 0px #00000040;
}
ul.top_right {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
}
ul.top_right li {
  display: inline-block;
  margin-right: 25px;
}
ul.top_right li:last-child {
  margin-right: 0;
}
ul.top_right li a {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}
#menu > ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
#menu ul li a {
  display: block;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.3s linear;
  font-size: 18px;
  transition: all 0.2s ease-in;
  padding: 5px 0px;
  color: var(--text);
  font-weight: 700;
}
#menu ul li a img {
  margin-left: 10px;
}

#menu li > .mega-menu {
  position: absolute;
  left: 0;
  top: 100px;
  z-index: -1;
  background: transparent;
}
#menu li > .mega-menu {
  transition: all linear 0.2s 0s;
  -webkit-transition: all linear 0.2s 0s;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  display: block;
  flex-direction: column;
  margin: 0;
  padding-top: 36px;
}
#menu li > .mega-menu .main-box {
  background: var(--white);
  width: 100%;
  box-shadow: 0px 15px 26px 0px #00000040;
  padding: 80px 0;
}
#menu li > .mega-menu .main-box.learn-box {
  padding: 30px 0 40px;
}
#menu li:hover > .mega-menu {
  visibility: visible;
  opacity: 1;
  display: block;
}
header #menu .mega-menu .main-box a.btn {
  padding: 14px 20px;
  color: var(--white);
}
header #menu .mega-menu .main-box a.btn:hover {
  color: var(--text);
}
header .mega-menu .top-description {
  border-right: 2px solid var(--primary);
  padding-right: 10px;
}
header .mega-menu .top-description p {
  font-size: 16px;
  line-height: 1.8;
}
#menu li > .mega-menu .link-box ul li {
  padding: 10px 0;
}
#menu li > .mega-menu li a {
  width: fit-content;
  font-weight: 500;
}
#menu li > .mega-menu li a:hover {
  color: var(--primary);
}
#menu li > .mega-menu .link-box {
  border-right: 2px solid #07070733;
  padding-right: 10px;
}
#menu li > .mega-menu .col-lg-3:nth-last-child(1) .link-box {
  border-right: none;
}
#menu li > .mega-menu h5 {
  margin-bottom: 30px;
  min-height: 40px;
}
#menu li > .mega-menu .learn-box .top-box h3 {
  font-size: 32px;
  font-weight: 700;
}
#menu li > .mega-menu .learn-box .top-box p {
  line-height: 1.3;
}
#menu li > .mega-menu .learn-box .top-box p:nth-last-of-type(1),
#menu li > .mega-menu .learn-box .top-box h3:nth-last-of-type(1) {
  margin-bottom: 0;
}
#menu li > .mega-menu .learn-box .top-box {
  padding-bottom: 20px;
  border-bottom: 1px solid #07070761;
  margin-bottom: 20px;
}
.mega-menu .sponserd-list h6 {
  text-align: center;
  font-size: 14px;
}
.mega-menu .sponserd-list .listbox ul {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.mega-menu .sponserd-list .listbox ul li {
  display: table-row;
}
.mega-menu .sponserd-list .listbox ul li span {
  display: table-cell;
  margin-bottom: 0;
  padding-bottom: 0.65rem;
  padding-right: 3rem;
}
.mega-menu .sponserd-list .listbox ul li .icon {
  display: table-cell;
  width: 50%;
  padding-left: 3rem;
  border-left: 1px solid #bac9d4;
}
.mega-menu .sponserd-list .listbox ul li .icon img {
  height: 27px;
}
.mega-menu .sponserd-list {
  justify-content: space-between;
}
#menu li > .mega-menu .sponserd-list h5 {
  margin-bottom: 10px;
}
header.sticky #menu li > .mega-menu {
  padding-top: 10px;
}
@keyframes menu_sticky {
  0% {
    margin-top: -240px;
  }
  50% {
    margin-top: -90px;
  }
  100% {
    margin-top: 0;
  }
}

header.inner-header {
  position: absolute;
  background: transparent;
}
header.inner-header .botom-bar {
  backdrop-filter: blur(19px);
  box-shadow: 0px 4px 26px 0px #00000040;
  background: #ffffffba;
}
header.inner-header #menu li > .mega-menu {
  padding-top: 0;
  top: 97px;
}

header.sticky {
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  animation-name: menu_sticky;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  background: var(--white);
}
header.sticky .topbar {
  display: none;
}
header.sticky #menu > ul {
  margin-top: 15px;
  margin-bottom: 15px;
}
#menu > ul > li {
  padding: 0 23px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo {
  border-right: 2px solid #6d6e7161;
  padding-right: 24px;
  width: fit-content;
  margin: 12px 0;
}
header .logo img {
  max-width: 244px;
}
.topbar {
  background-color: var(--secondary);
}
.topbar ul li {
  display: inline-block;
  color: var(--white);
  position: relative;
  padding: 4px 20px;
  border-right: 1px solid var(--white);
  font-weight: 400;
  line-height: 16px;
}
.topbar ul li img {
  padding-right: 10px;
}
.topbar ul li:first-child {
  padding-left: 0;
}
.topbar ul li:last-child {
  border: 0;
  padding-right: 0;
}
.topbar ul li a {
  font-size: 18px;
}
.topbar ul {
  display: flex;
  margin-bottom: 0;
  justify-content: end;
  padding: 5px 0;
}
.topbar .social a:first-child {
  border-right: 1px solid var(--white);
}
.topbar .social a {
  display: inline-block;
  margin-bottom: 0;
}
header .search img {
  max-width: 34px;
}
header .search {
  margin: 0 23px 0 32px;
}
.botom-bar {
  padding: 12px 0;
  box-shadow: 0px 4px 26px 0px #00000040;
}
.banner-sec {
  position: relative;
  min-height: 870px;
  display: flex;
  align-items: center;
}

header .search {
  position: relative;
}
header .search .search-box {
  position: absolute;
  width: 480px;
  right: 100%;
  top: -20px;
  padding: 20px 0;
  background-color: var(--white);
}
header .search .search-box form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--text);
}
header .search .search-box form .form-control {
  border: none !important;
  background: transparent;
  padding: 5px;
  width: 100%;
  outline: none !important;
  box-shadow: none !important;
}
header .search .search-box form button[type="submit"] {
  background: transparent;
  border: none !important;
}
header .search .hide-search img {
  width: 23px;
}

header .web-list {
  position: absolute;
  top: 85%;
  background: var(--white);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: none;
}
header .web-list ul li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  transition: 0.2s linear;
}
header .web-list ul li a img {
  margin-right: 7px;
}
header .web-list ul li:nth-last-child(1) {
  border-bottom: none;
}
header .web-list ul li:hover {
  background: var(--primary);
}
header .web-list ul li:hover a {
  color: var(--white);
}

header .web-list.show {
  display: block;
}
header .web-toggle a.btn img {
  transition: 0.2s linear;
}
header .web-toggle.active a.btn img {
  transform: rotate(180deg);
}

.hero-banner {
  padding-bottom: 50px;
}
.hero-banner .banner-box {
  max-width: 1680px;
  width: 95%;
  margin: 50px auto;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  min-height: 710px;
  display: flex;
  align-items: center;
}
.hero-banner .banner-box::after {
  content: "";
  background: #00000066;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-banner .banner-box .bg-slider {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero-banner .owl-stage-outer,
.hero-banner .owl-stage,
.hero-banner .owl-item,
.hero-banner .item,
.hero-banner .item img,
.hero-banner .main-slider {
  height: 100% !important;
}
.hero-banner .banner-box .container {
  position: relative;
  z-index: 2;
}
.hero-banner .banner-box .banner-content h1,
.hero-banner .banner-box .banner-content p {
  color: var(--white);
}
.hero-banner .banner-box .banner-content h1 span {
  color: var(--primary) !important;
}
.hero-banner .find-box {
  background: var(--white);
  border-radius: 30px;
  padding: 50px 51px 52px 33px;
  right: 14px;
  bottom: 15px;
  position: relative;
}
.hero-banner .find-box .sip-box {
  display: flex;
  background-color: var(--white);
  border: 1px solid #07070747;
  border-radius: 10px;
  padding: 16px 0 16px 12px;
  margin-bottom: 22px;
  align-items: center;
}
.hero-banner .find-box .sip-box .form-control {
  background-color: transparent;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.hero-banner .find-box .btn {
  width: 100% !important;
  border-radius: 10px;
}
.hero-banner .find-box h4 {
  margin-bottom: 20px;
  text-align: center;
}
.hero-banner .find-box::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--secondary);
  position: absolute;
  z-index: 1;
  border-radius: 30px;
  top: 15px;
  left: 14px;
  z-index: -1;
}
.hero-banner .find-box .sip-box .form-control::placeholder {
  color: var(--text);
  font-weight: 600;
  opacity: 0.7;
}
.hero-banner .thumb-slider {
  max-width: 1680px;
  width: 95%;
  margin-inline: auto;
  border-radius: 30px;
  background: #ededed;
  padding: 20px;
}
.hero-banner .thumb-slider .thumb .img-box {
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.hero-banner .thumb-slider .thumb .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.hero-banner .thumb-slider .thumb {
  border: 8px solid transparent;
  border-radius: 20px;
}
.hero-banner .thumb-slider .active-thumb {
  border: 8px solid var(--secondary);
}
.hero-banner .thumb-slider .active-thumb::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 85px;
  height: 30px;
  margin-inline: auto;
  background: url("/images/icons/thumb-top.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.hero-banner .thumb-slider .thumb.active-thumb .img-box {
  border-radius: 11px;
}
.hero-banner .thumb-slider .thumb:hover img {
  transform: scale(1.05);
}
.hero-banner .thumb-slider .owl-stage-outer {
  overflow: visible !important;
  overflow-x: clip !important;
}

.banner-sec .banner-img {
  width: calc(50vw - 10px);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.banner-sec .banner-img img {
  min-height: 800px;
  height: 100%;
  width: 100%;
}
.banner-sec .main-content p {
  line-height: 30px;
  letter-spacing: 0.8px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 13px;
}
.banner-sec .btn-secondary {
  color: var(--white);
  font-size: 16px;
  background-color: var(--secondary);
  border-color: var(--dark);
  border-radius: 10px;
  padding: 21px 39px;
  font-weight: 400;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
  width: fit-content;
  transition: 0.3s linear;
}
.banner-sec .design {
  height: 3px;
  background-color: var(--primary);
  width: 100%;
}
.banner-sec .country-box {
  background-color: var(--white);
  box-shadow: 0px 4px 115px 0px #0000001f;
  border-radius: 20px;
  padding: 12px 14px;
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bdm {
  border-bottom: 1px solid #07070742;
}
.banner-sec .country-box .search-box {
  display: flex;
  align-items: center;
  padding: 23px 0 23px 12px;
  border: 1px solid #6d6e7147;
  gap: 6px;
  border-radius: 10px;
  justify-content: center;
  max-width: 470px;
  width: 100%;
}
.banner-sec .country-box .search-box .form-control {
  border: none;
  background: transparent;
  padding: 5px;
}
.banner-sec .country-box .search-box .form-control::placeholder {
  color: var(--text);
  font-size: 17px;
  font-weight: 400;
}
.eiditor-sec .eiditor-heading {
  text-align: center;
  margin-bottom: 57px;
}
.eiditor-card {
  background-color: #0058901a;
  padding: 13px 14px 27px;
  border-radius: 20px;
}
.eiditor-img img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 16/16;
  height: auto;
}
.eiditor-img {
  margin-bottom: 22px;
}
.eiditor-card .deatail h4 {
  font-size: 22px;
  line-height: 1.3;
}
.eiditor-card .deatail p {
  line-height: 37px;
  letter-spacing: 0.8px;
  font-weight: 100;
  font-size: 16px;
  line-height: 30px;
  font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.eiditor-sec .owl-carousel .owl-stage-outer {
  overflow: visible !important;
}
.owl-item {
  opacity: 0;
}
.active.owl-item + .owl-item,
.owl-item.active {
  opacity: 1;
}
.eiditor-sec .owl-stage {
  overflow-x: visible !important;
}
.eiditor-sec .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: -100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background-color: var(--primary);
  top: 50%;
  transition: all 0.3s ease-in-out;
}
.eiditor-sec .owl-carousel .owl-nav button.owl-prev:hover {
  background-color: var(--secondary);
}
.eiditor-sec .owl-carousel .owl-nav button.owl-next {
  display: none;
}
.eiditor-sec .owl-carousel .owl-nav.disabled {
  display: block;
}
.help-sec .help-img {
  width: 100%;
  height: 100%;
}
.help-sec .help-img img {
  width: 100%;
}
.help-sec .help-content {
  margin-bottom: 40px;
}
.help-sec .help-content p {
  font-size: 18px;
  line-height: 39px;
  letter-spacing: 1px;
  max-width: 577px;
  margin-bottom: 25px;
  font-weight: 600;
}
.resource-sec {
  background: linear-gradient(180deg, #333333 0%, #1e1e1e 100%);
}
.resource-sec .resource-info h3 {
  color: var(--white);
}

.resource-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 17px 17px 31px 29px;
  height: 100%;
  transition: all 0.2s linear;
}
.resource-card .card-img {
  margin-bottom: 16px;
}
.resource-card .card-img img {
  height: 65px;
  object-fit: contain;
}
.resource-card .btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 0;
  border: 2px solid var(--white);
}
.resource-card .btn img {
  margin-right: 0;
}
.resource-card .card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--secondary);
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.resource-card:hover .card-btn {
  border: 2px solid var(--white);
}
.resource-card:hover .resource-card .btn {
  border: 2px solid var(--text);
}
.resource-sec .resource-info h3 {
  font-size: 40px;
  font-weight: 700;
}
.resource-sec .resource-info p {
  color: var(--white);
  font-size: 16px;
  line-height: 31px;
  letter-spacing: 0.8px;
}
.resource-sec .row {
  row-gap: 27px;
}
.resource-card:hover {
  background-color: var(--secondary);
}
.resource-card:hover .card-img img {
  filter: brightness(0) invert(1);
}
.resource-card:hover .card-conttent,
.resource-card .card-conttent p {
  transition: all 0.2s linear;
}
.resource-card:hover .card-conttent h4,
.resource-card:hover .card-conttent p {
  color: var(--white);
}
.resource-card:hover .btn .arrow-icon {
  content: url("/images/icons/black_icon.svg");
}
.resource-card:hover .btn-secondary {
  background: var(--white);
  border-color: var(--secondary);
  color: var(--text);
}

.connect-sec .story-img {
  width: 100%;
  position: relative;
  box-shadow: 0px 4px 40px 0px #00000021;
  height: 100%;
  border-radius: 20px;
}
.connect-sec .story-img img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
}
.connect-sec .story-img .story {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  width: 90%;
  background-color: var(--white);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 25px;
}
.connect-sec .story-img .story h4 {
  font-weight: 700;
}
.connect-sec .story-img .story p {
  color: #525356;
  line-height: 35px;
  font-weight: 600;
}
.connect-sec .connect-box .service-box {
  border: 1px solid #6d6e7142;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 12px 26px 40px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 23px;
}
.explore-sec {
  padding: 18px 0;
}
.explore-sec .explore-img {
  width: 100%;
}
.explore-sec .explore-img img {
  width: 100%;
}
.explore-sec .content-box h2 {
  color: var(--white);
}
.explore-sec .content-box p {
  color: var(--white);
  line-height: 37px;
}

footer {
  background-color: #f8f8f8;
  padding-top: 75px;
}
footer .info-box h6 {
  margin-bottom: 17px;
  font-size: 25px;
  letter-spacing: 0.6px;
}
footer .info-box .main-text {
  max-width: 381px;
}
footer .info-box p {
  color: var(--dark);
  line-height: 33px;
  font-weight: 600;
}
footer .info-box ul li {
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 600;
  font-size: 18px;
  position: relative;
  display: flex;
  align-items: center;
}
footer .info-box ul li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-image: url("/images/icons/footer_list_icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 8px;
}
footer .info-box .social-links ul {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
footer .info-box .social-links ul li {
  margin-bottom: 0;
}
footer .info-box .social-links ul li a {
  width: 40px;
  height: 40px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .info-box .social-links ul li img {
  max-width: 17px;
}
footer .info-box .social-links ul li::before {
  display: none;
}
footer .copyright-box {
  border-top: 3px solid var(--primary);
  padding: 25px 0 54px 0;
  margin-top: 67px;
}
footer .copyright-box p {
  font-size: 18px;
}
footer .info-box .btn-secondary {
  padding: 17px 28px;
}
footer .copyright-box ul {
  display: flex;
  align-items: center;
  gap: 10px 48px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
footer .copyright-box .copyright {
  text-align: end;
}

.community-sec .comunity-img {
  width: 100%;
  position: relative;
  height: 100%;
}
.community-sec .comunity-img img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 16/15;
  height: 100%;
}
.community-sec .comunity-img .img-content h4 {
  font-size: 21px;
  line-height: 37px;
}
.community-sec .comunity-img .img-content {
  background-color: var(--white);
  border-radius: 20px;
  backdrop-filter: blur(22px);
  position: absolute;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  bottom: 24px;
  left: 0;
  right: 0;
  padding: 14px 22px 14px 18px;
}
.community-sec .time {
  font-size: 20px;
  line-height: 40px;
  font-weight: 600;
}
.community-sec .area {
  color: var(--secondary);
  font-size: 23px;
  font-weight: 600;
}
.community-sec .date-box {
  background-color: var(--primary);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 17px;
  max-width: 137px;
  grid-area: 20px;
}
.community-sec .date-box span:first-child {
  border-bottom: 1px solid var(--white);
  padding-bottom: 8px;
}
.community-sec .date-box span {
  display: block;
  color: var(--white);
  font-size: 38px;
  line-height: 40px;
  max-width: 137px;
  width: 100%;
  font-size: 48px;
  line-height: 40px;
  font-weight: 700;
}
.community-sec .date-box span:last-child {
  padding-top: 8px;
}
.community-sec .comunity-img .date-box {
  position: absolute;
  top: 23px;
  right: 20px;
}
.community-sec .community-box {
  display: flex;
  align-items: center;
  gap: 22px;
  background-color: var(--white);
  box-shadow: 0px 4px 92px 0px #0000001f;
  border-radius: 30px;
  padding: 14px;
  margin-bottom: 58px;
}
.community-sec .col-lg-7 .community-box:last-child {
  margin-bottom: 0;
}
.community-sec .top {
  margin-bottom: 79px;
}
.provider-box {
  border-radius: 20px;
  text-align: center;
  padding: 76px 0 84px 0;
}
.provider-box h2 {
  color: var(--white);
}
.provider-box p {
  font-size: 20px;
  line-height: 43px;
  font-weight: 600;
  color: var(--white);
}
.connect-box .card-img {
  margin-bottom: 16px;
}
.connect-box.btn img {
  margin-right: 0;
}
.connect-box .card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--text);
  min-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.service-box:hover .card-btn {
  border: 2px solid var(--white);
}
.service-box:hover {
  background-color: var(--secondary);
}
.service-box:hover h5 {
  color: var(--white);
}
.service-box:hover .btn .arrow-icon {
  content: url("/images/icons/resource_btn.png");
}

/* .partner-sec{padding: 71px 0;} */
.partner-sec .partner-heading {
  border-right: 3px solid var(--secondary);
  max-width: 350px;
  padding: 30px 0;
}
.partner-sec .partner-logo {
  box-shadow: 0px 4px 19px 0px #00000040;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  height: 100px;
}
.partner-sec .partner-logo img {
  height: 100%;
  object-fit: contain;
}
.partner-sec .p-list {
  row-gap: 20px;
}
.partner-sec h2 {
  font-size: 34px;
  line-height: 48px;
}

.community-sec .comunity-img {
  width: 100%;
  position: relative;
  height: 100%;
}
.community-sec .comunity-img img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 16/15;
  height: 100%;
}
.community-sec .comunity-img .img-content h4 {
  font-size: 21px;
  line-height: 37px;
}
.community-sec .comunity-img .img-content {
  background-color: var(--white);
  border-radius: 20px;
  backdrop-filter: blur(22px);
  position: absolute;
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  bottom: 24px;
  left: 0;
  right: 0;
  padding: 14px 22px 14px 18px;
}
.community-sec .time {
  font-size: 20px;
  line-height: 40px;
  font-weight: 600;
}
.community-sec .area {
  color: var(--secondary);
  font-size: 23px;
  font-weight: 600;
}
.community-sec .date-box {
  background-color: var(--primary);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 17px;
  max-width: 137px;
  grid-area: 20px;
}
.community-sec .date-box span:first-child {
  border-bottom: 1px solid var(--white);
  padding-bottom: 8px;
}
.community-sec .date-box span {
  display: block;
  color: var(--white);
  font-size: 38px;
  line-height: 40px;
  max-width: 137px;
  width: 100%;
  font-size: 48px;
  line-height: 40px;
  font-weight: 700;
}
.community-sec .date-box span:last-child {
  padding-top: 8px;
}
.community-sec .comunity-img .date-box {
  position: absolute;
  top: 23px;
  right: 20px;
}
.community-sec .community-box {
  display: flex;
  align-items: center;
  gap: 22px;
  background-color: var(--white);
  box-shadow: 0px 4px 92px 0px #0000001f;
  border-radius: 30px;
  padding: 14px;
  margin-bottom: 58px;
}
.community-sec .col-lg-7 .community-box:last-child {
  margin-bottom: 0;
}
.community-sec .top {
  margin-bottom: 79px;
}
.provider-box {
  border-radius: 20px;
  text-align: center;
  padding: 76px 0 84px 0;
}
.provider-box h2 {
  color: var(--white);
}
.provider-box p {
  font-size: 20px;
  line-height: 43px;
  font-weight: 600;
  color: var(--white);
}
.connect-box .card-img {
  margin-bottom: 16px;
}
.connect-box.btn img {
  margin-right: 0;
}
.connect-box .card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--text);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.service-box:hover .card-btn {
  border: 2px solid var(--white);
}
.service-box:hover {
  background-color: var(--secondary);
}
.service-box:hover h5 {
  color: var(--white);
}
.service-box:hover .btn .arrow-icon {
  content: url("/images/icons/resource_btn.png");
}
.community-banner {
  padding: 0;
}
.community-banner {
  border: 40px solid var(--white);
}
.community-banner .banner-box {
  border-radius: 40px;
  overflow: hidden;
  min-height: 687px;
  background-clip: padding-box;
  display: flex;
  align-items: center;
  z-index: 9;
  position: relative;
}
.community-banner .banner-box .main-content h1 {
  color: var(--white);
}
.community-banner .banner-box .main-content p {
  color: var(--white);
  letter-spacing: 1.5px;
  line-height: 37px;
}
.community-banner .find-box {
  background: var(--white);
  border-radius: 30px;
  padding: 50px 51px 52px 33px;
  right: 14px;
  bottom: 15px;
  position: relative;
}
.community-banner .find-box .sip-box {
  display: flex;
  background-color: var(--white);
  border: 1px solid #07070747;
  border-radius: 10px;
  padding: 16px 0 16px 12px;
  margin-bottom: 22px;
  align-items: center;
}
.community-banner .find-box .sip-box .form-control {
  background-color: transparent;
  border: none;
}
.community-banner .find-box .btn {
  width: 100% !important;
  border-radius: 10px;
}
.community-banner .find-box h4 {
  margin-bottom: 20px;
  text-align: center;
}
.community-banner .find-box::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--secondary);
  position: absolute;
  z-index: 1;
  border-radius: 30px;
  top: 15px;
  left: 14px;
  z-index: -1;
}
.community-banner .find-box .sip-box .form-control::placeholder {
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
}
.loacl-sec .top-pagination {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.loacl-sec .top-pagination h4 {
  font-weight: 600;
}
.card-box {
  margin-bottom: 49px;
}
.card-box .local-desc h4 {
  font-weight: 600;
}
.local-card {
  background-color: var(--white);
  box-shadow: 0px 4px 50px 0px #00000040;
  border-radius: 30px;
  padding: 15px 25px 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.local-card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.local-card .col-lg-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
  padding-right: 15px;
}
.local-card .col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 15px;
}
.local-card .card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}
.local-card .card-content .card-location {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.local-card .card-content .btn {
  margin-bottom: 15px;
}
.local-card .card-content ul,
.loacl-sec .area-tab ul {
  margin-right: 30px;
}
.local-card .card-content ul li,
.loacl-sec .area-tab ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #07070742;
  padding: 12px 0 10px 0;
}
.local-card .card-content ul li span,
.loacl-sec .area-tab ul li span {
  font-size: 21px;
  font-weight: 600;
  color: var(--text);
  line-height: 21px;
}
.card-box .local-card .drect-tab {
  background: #0058902b;
  border-radius: 20px;
  padding: 15px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}
.card-box .local-card .drect-tab .direct-logo {
  margin-bottom: 15px;
}
.card-box .local-card .drect-tab p {
  font-size: 16px;
  line-height: 30px;
}
.local-card::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--secondary);
  position: absolute;
  z-index: 1;
  border-radius: 30px;
  top: 15px;
  left: 14px;
  z-index: -1;
}
.loacl-sec .chose-tab {
  box-shadow: 0px 4px 50px 0px #00000040;
  background-color: var(--white);
  border-radius: 30px;
  padding: 40px 20px 35px 27px;
  position: relative;
  margin-bottom: 32px;
}
.loacl-sec .btn {
  font-size: 16px;
}
.loacl-sec .chose-tab h5 {
  font-weight: 700;
}
.loacl-sec .chose-tab li {
  margin-bottom: 39px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.loacl-sec .chose-tab li label {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}
.loacl-sec .chose-tab li input[type="checkbox"] {
  width: 38px;
  height: 38px;
  min-width: 38px;
  accent-color: var(--secondary);
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  border: 1px solid #5253568c;
}
.loacl-sec .chose-tab h5 {
  margin-bottom: 28px;
}
.loacl-sec .chose-tab .btn {
  margin-bottom: 24px;
}
.loacl-sec .chose-tab::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--secondary);
  position: absolute;
  z-index: 1;
  border-radius: 30px;
  top: 15px;
  left: 14px;
  z-index: -1;
}
.loacl-sec .area-tab {
  box-shadow: 0px 4px 50px 0px #00000040;
  background-color: var(--white);
  border-radius: 30px;
  padding: 40px 20px 35px 27px;
  position: relative;
  margin-bottom: 32px;
}
.loacl-sec .area-tab::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--secondary);
  position: absolute;
  z-index: 1;
  border-radius: 30px;
  top: 15px;
  left: 14px;
  z-index: -1;
}
.loacl-sec .area-tab span {
  font-size: 18px;
  color: var(--secondary);
  font-weight: 700;
}
.pagination-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background-color: var(--white);
  box-shadow: 0px 4px 50px 0px #00000029;
  border-radius: 20px;
  padding: 21px 21px 21px 41px;
  margin-top: 49px;
}
.pagination-bar p {
  font-size: 23px;
}
.pagination .page-item .page-link {
  color: var(--text);
  border: 1px solid #0707071f;
  border-radius: 9px;
  padding: 16px 23px;
  transition: 0.3s;
  font-size: 29px;
  line-height: 24px;
  font-weight: 700;
  margin-right: 16px;
}
.pagination .next-btn .single,
.pagination .next-btn .double {
  font-size: 29px;
}
.pagination .page-item.active .page-link {
  color: var(--white);
  background-color: var(--primary);
}

.calendar-banner h1 {
  font-size: 60px;
}
.calendar-banner .share-links {
  display: flex;
  align-items: center;
  margin-top: 24px;
}
.calendar-banner .share-links span {
  padding-inline: 16px;
  border-right: 1px solid #ffffff40;
}
.calendar-banner .share-links span:nth-child(1) {
  padding-left: 0;
}
.calendar-banner .share-links span:nth-last-child(1) {
  padding-right: 0;
  border-right: none;
}
.calendar-banner .share-links span a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary);
  border-radius: 50%;
  width: 55px;
  aspect-ratio: 1/1;
}
.calendar-banner .find-box form .form-select,
.calendar-banner .find-box form .form-control {
  border: none !important;
  background-color: transparent;
  box-shadow: none !important;
  outline: none !important;
  font-weight: 600;
}
.calendar-banner .find-box form input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  accent-color: var(--secondary);
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #5253568c;
}
.calendar-banner .find-box form .check label {
  opacity: 0.7;
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.calendar-banner .find-box form .check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.calendar-banner .find-box form .check label img {
  margin-left: 10px;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  aspect-ratio: 1/1;
}

.calender-sec .row {
  row-gap: 30px;
}
.calender-box .img-box {
  position: relative;
  box-shadow: 0px 4px 16px 0px #00000040;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/13;
}
.calender-box .img-box a {
  width: 100%;
}
.calender-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.calender-box .img-box .date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 20px;
  padding: 12px;
}
.calender-box .img-box .date span {
  display: block;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 28px;
}
.calender-box .img-box .date span:nth-child(1) {
  border-bottom: 1px solid var(--white);
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.calender-box .group-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 9px 0;
  justify-content: space-between;
}
.calender-box .group-box .title {
  font-size: 20px;
  font-weight: 700;
}
.calender-box .group-box .supporters {
  display: inline-flex;
  gap: 10px 20px;
}
.calender-box .text-box h4 {
  font-size: 24px;
  line-height: 32px;
}
.calender-box .text-box .detail-box {
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 17px;
  row-gap: 15px;
  margin-top: 15px;
}
.calender-box .text-box .detail-box .box {
  flex: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.calender-box .text-box .detail-box .box img {
  min-width: 20px;
  width: 20px;
}

.side-bar {
  box-shadow: 0px 4px 50px 0px #00000040;
  background: var(--white);
  border-radius: 30px;
  padding: 40px 20px;
  position: relative;
  min-height: 900px;
}
.side-bar::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--secondary);
  position: absolute;
  border-radius: 30px;
  top: 15px;
  left: 14px;
  z-index: -1;
}
.side-bar h4 {
  margin-bottom: 20px;
}
.side-bar ul li {
  margin-bottom: 20px;
}
.side-bar ul li:nth-last-child(1) {
  margin-bottom: 0;
}
.side-bar ul li img {
  filter: brightness(0) saturate(100%) invert(53%) sepia(73%) saturate(574%)
    hue-rotate(354deg) brightness(106%) contrast(95%);
}
.side-bar ul li a {
  box-shadow: 0px 4px 92px 0px #0000001f;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 20px;
  transition: 0.2s linear;
  font-size: 20px;
  font-weight: 700;
}
.side-bar ul li a::after {
  content: "";
  line-height: 0;
  background: url("/images/icons/arrow-right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 40px;
}
.side-bar ul li a.active img,
.side-bar ul li a:hover img {
  filter: none;
}
.side-bar ul li a.active,
.side-bar ul li a:hover {
  background: var(--primary);
  color: var(--white);
}
.side-bar ul li a.active::after,
.side-bar ul li a:hover::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(0%)
    hue-rotate(29deg) brightness(105%) contrast(101%);
}

.dashboard-sec .main-box {
  box-shadow: 0px 4px 50px 0px #00000040;
  background: var(--white);
  border-radius: 30px;
  padding: 40px 30px;
  position: relative;
}
.dashboard-sec .main-box::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--secondary);
  position: absolute;
  border-radius: 30px;
  top: 15px;
  left: 14px;
  z-index: -1;
}
.dashboard-sec .main-box .head h1 {
  font-size: 38px;
  line-height: 50px;
}
.dashboard-sec .main-box .head {
  margin-bottom: 20px;
}
.dashboard-sec .main-box .head h5 {
  color: var(--primary);
}
.dashboard-sec .main-box form .btn-primary {
  width: fit-content;
  max-width: none;
}
.dashboard-sec .main-box form label,
.contact-sec .from-box form label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.dashboard-sec .main-box form .form-control,
.contact-sec .from-box form .form-control {
  border: 1px solid #07070747;
  box-shadow: none !important;
  outline: none !important;
  background: var(--white);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.dashboard-sec .main-box form h5 {
  color: var(--primary);
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 0;
}

.dashboard-sec .main-box #calendar {
  background: #fff;
  border-radius: 16px;
  width: 100%;
}
.dashboard-sec .main-box #calendar table,
.dashboard-sec .main-box #calendar tbody,
.dashboard-sec .main-box #calendar .fc-daygrid-body {
  width: 100% !important;
}
.dashboard-sec .main-box .fc-toolbar {
  display: none !important;
}
.dashboard-sec .main-box .fc-daygrid-day-frame {
  padding: 8px;
  position: relative;
}
.dashboard-sec .main-box .fc-daygrid-day-number {
  font-weight: 500;
  color: #555;
  font-size: 14px;
  text-align: right;
  margin-right: 5px;
}
.dashboard-sec .main-box .fc-day-today {
  background: #f6f7fb !important;
}
.dashboard-sec .main-box .fc-event {
  background: #f7941d !important;
  border: none !important;
  color: #fff !important;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 4px;
  font-weight: 500;
  text-align: center;
}
.dashboard-sec .main-box .fc-theme-standard td,
.dashboard-sec .main-box .fc-theme-standard th {
  border-color: #e6e6e6;
  width: 100% !important;
}
.dashboard-sec .main-box .fc-scrollgrid {
  border-radius: 10px;
  overflow: hidden;
}
.dashboard-sec .main-box .fc-col-header-cell {
  background: #f9f9f9;
  font-weight: 600;
  color: #444;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
}
.dashboard-sec .main-box .fc-col-header-cell-cushion {
  color: #444 !important;
  text-transform: capitalize;
  font-size: 14px;
}
.dashboard-sec .main-box .fc-daygrid-day {
  height: 110px;
}
.dashboard-sec .main-box .fc-day-other {
  background: #ffffff99 !important;
}
.dashboard-sec .main-box .fc-event-title {
  white-space: wrap;
  color: var(--text);
}
.dashboard-sec .main-box .fc-h-event {
  width: 100%;
}
.dashboard-sec .main-box .fc .fc-daygrid-day-top {
  justify-content: center;
  flex-direction: unset;
}

.dashboard-sec .main-box .head-flex {
  display: flex;
  justify-content: space-between;
}
.dashboard-sec .main-box .head-flex .btn {
  padding: 10px 20px;
}
.dashboard-sec .main-box .head-flex .btn img {
  margin: 0;
}
.dashboard-sec .main-box .btn-secondary:hover img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(97%) saturate(2336%)
    hue-rotate(187deg) brightness(88%) contrast(101%);
}
.dashboard-sec .main-box .accordion-item {
  box-shadow: 0px 4px 42px 0px #00000021;
  background: #f7f7f7;
  border-radius: 15px;
  border: none;
  margin-bottom: 20px;
}
.dashboard-sec .main-box .accordion-item:nth-last-child(1) {
  margin-bottom: 0;
}
.dashboard-sec .main-box .accordion-item .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border: none;
  font-size: 20px;
  line-height: 28px;
}
.dashboard-sec .main-box .accordion-item .accordion-header span {
  color: var(--text);
}
.dashboard-sec .main-box .accordion-item .accordion-header .btn {
  padding: 10px 20px;
  width: fit-content;
  max-width: none;
}
.dashboard-sec .main-box .accordion-item .accordion-header .inner-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.upload-field {
  position: relative;
  display: flex;
  align-items: center;
}
.upload-field input[type="text"] {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
}
.upload-field .upload-btn {
  position: absolute;
  right: 4px;
  margin-bottom: 0 !important;
  background-color: #f9a825;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease;
}
.upload-field .upload-btn:hover {
  background-color: #f57f17;
}
.upload-field input[type="file"] {
  display: none;
}
.dashboard-sec .main-box #addServiceForm {
  margin-bottom: 20px;
}

.signup-box label {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 15px;
}
.signup-box label span {
  display: inline-block;
  color: red;
  font-size: 18px;
}
.signup-box {
  background-color: var(--white);
  box-shadow: 0px 4px 50px 0px #00000040;
  border-radius: 30px;
  padding: 33px 44px 40px 54px;
  position: relative;
}
.signup-box h2 {
  text-align: center;
}
.signup-box::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--secondary);
  position: absolute;
  z-index: 1;
  border-radius: 30px;
  top: 15px;
  left: 14px;
  z-index: -1;
}
.signup-box form {
  margin-top: 19px;
}
.signup-box .form-control {
  border: 1px solid #07070747;
  border-radius: 10px;
  height: 60px;
  margin-bottom: 10px;
}
.signup-box .form-control:focus {
  box-shadow: none !important;
  outline: none !important;
  border-color: inherit !important;
}
.signup-box .des-text p {
  font-size: 18px;
  line-height: 37px;
  color: var(--text);
  opacity: 0.7;
  font-weight: 600;
}
.signup-box form .row {
  row-gap: 10px;
}
.signup-box form .btn {
  max-width: 285px;
  width: fit-content;
  gap: 0;
}
.login-sec .btn-primary {
  max-width: 175px !important;
}
.login-sec form .reset a {
  text-decoration: underline;
  font-weight: 600;
  font-size: 18px;
}
.login-sec .signup-box {
  margin-bottom: 50px;
}
.reset-password-sec .signup-box form .btn {
  max-width: 175px;
}
.signup-box .check-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.signup-box .check-group label {
  margin-bottom: 0;
}
.signup-box .check-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--secondary);
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  border: 1px solid #5253568c;
}
.signup-box .note p {
  font-size: 16px;
  line-height: 24px;
}

.banner-sec .sponser span {
  font-size: 21px;
  font-weight: 700;
}
.banner-sec .sponser {
  display: flex;
  align-items: center;
  margin-top: 21px;
  gap: 18px;
}
.banner-sec .sponser img {
  width: 100%;
  max-width: 175px;
}
.banner-sec .main-content {
  margin-top: 100px;
}
.resource-sec .resource-heading h2 {
  text-align: center;
  color: var(--white);
  margin-bottom: 50px;
}
#care-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 42px;
}
#care-accordion .accordion-item {
  border: none;
  box-shadow: 0px 4px 50px 0px #00000029;
  background: none;
  border-radius: 20px;
  padding: 31px 21px 31px 60px;
}
#care-accordion .accordion-button {
  background: none;
  box-shadow: none;
  outline: none;
  border: none;
  font-weight: 600;
  font-size: 27px;
  color: #000;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 0;
  position: relative;
}
#care-accordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
}
#care-accordion .accordion-button::after {
  content: "+";
  font-size: 64px;
  font-weight: 100;
  transform: none;
  background-image: none !important;
  height: 100%;
  color: var(--secondary);
}
#care-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
  height: 100%;
}
#care-accordion .accordion-collapse {
  border: none;
  box-shadow: none;
  background: none;
}
#care-accordion .accordion-body {
  padding: 20px 20px 0;
}
#care-accordion .accordion-button::before {
  content: "";
  background: url(/images/icons/question_icon.svg);
  display: inline-block;
  position: absolute;
  width: 43px;
  height: 43px;
  margin-right: 30px;
  left: -30px;
  background-repeat: no-repeat;
  background-size: contain;
}
#care-accordion .service-details {
  font-size: 18px;
  font-weight: 600;
  line-height: 33px;
}
.faq-sec .faq-heading h2 {
  text-align: center;
}
#care-accordion .accordion-button {
  font-size: 24px;
  line-height: 28px;
}
#care-accordion .accordion-button {
  padding: 0px 0 0 20px;
}
.banner-sec h1 {
  font-size: 58px;
  line-height: 66px;
}

.serv-sec h1 {
  font-size: 48px;
}
.social-link {
  display: flex;
  justify-content: end;
  gap: 24px;
  margin-bottom: 24px;
}
.social-link a {
  background-color: var(--secondary);
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.social-link a img {
  width: 22px;
  object-fit: contain;
}
.social-link a + a::before {
  content: "";
  background: #ededed;
  position: absolute;
  left: -12px;
  height: 100%;
  width: 1px;
}
.map-box iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  height: unset;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.serv-sec .drect-tab {
  background: #0058902b;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  margin-top: 24px;
}
.service-details .card-location {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin: 20px 0;
}
.service-details .card-location p {
  margin-bottom: 0;
}
.service-details .card-location img {
  min-width: 24px;
  object-fit: contain;
  transform: translateY(6px);
}
.service-details .list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  align-items: center;
  padding: 12px 0;
}
.service-details .list li p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
.service-details .list li label {
  font-size: 20px;
  font-weight: 600;
}
.service-details .list + .btn-secondary {
  margin-top: 24px;
  padding: 14px 24px;
}
.service-details {
  margin-bottom: 24px;
}
.serv-sec h3 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
}
#service-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 42px;
}
#service-accordion .accordion-item {
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: none;
  border-radius: 12px;
}
#service-accordion .accordion-button {
  background: none;
  box-shadow: none;
  outline: none;
  border: none;
  font-weight: 600;
  font-size: 28px;
  color: #000;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 0;
}
#service-accordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
}
#service-accordion .accordion-button::after {
  content: "+";
  font-size: 64px;
  font-weight: 100;
  transform: none;
  background-image: none !important;
  height: 100%;
  color: var(--secondary);
}
#service-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: none;
  height: 100%;
}
#service-accordion .accordion-collapse {
  border: none;
  box-shadow: none;
  background: none;
}
#service-accordion .accordion-body {
  padding: 0 20px 10px;
}
.flayer-sec h1 {
  font-size: 38px;
  line-height: 1.3;
}
.flayer-sec .title-track {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 40px;
}
.flayer-sec .title-track h3 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  line-height: 1.3;
}
.flayer-sec .title-track span {
  width: 100%;
  border-bottom: 1px solid;
  font-size: 16px;
}
.flyer-box {
  margin-top: 40px;
}

.cover-box {
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  border-radius: 24px;
  background-color: var(--white);
}
.cover-box::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -12px;
  background-color: var(--secondary);
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 24px;
}
.select-time {
  padding: 14px 18px;
  border: 1px solid #b8b1b1;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
}
.select-time img {
  margin-right: 12px;
}
.label2 {
  font-size: 24px;
  font-weight: 700;
}
.card-new .list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  align-items: center;
  padding: 12px 0;
}
.card-new .list li p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
.card-new .list li label {
  font-size: 20px;
  font-weight: 600;
}
.list2 .colapse li {
  border-bottom: none;
  padding: 4px 0;
}
.list2 .colapse {
  margin-top: 16px;
}
.list2 .colapse li p {
  font-size: 16px;
}
.upcoming-event .main {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-top: 20px;
}
.upcoming-event .main .event-box {
  display: flex;
  gap: 12px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 16px;
  align-items: center;
}
.main .event-box .date-box {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  justify-content: center;
  min-width: 80px;
}
.main .event-box .date-box span {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 10px;
}
.main .event-box .date-box span:nth-last-child(1) {
  font-size: 24px;
  font-weight: 700;
  text-decoration: unset;
}
.upcoming-event .main .event-box .content h6 {
  font-size: 20px;
  margin-bottom: 18px;
}
.upcoming-event .main .event-box .content span {
  font-size: 14 px;
  color: var(--secondary);
}
.cover-box {
  margin: 20px 0;
}
.organization-sec .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.organization-sec .heading h1 {
  font-size: 38px;
}
.organization-sec .heading .title {
  display: flex;
  gap: 16px;
  align-items: center;
}
.organization-sec .heading a {
  height: fit-content;
}
.organization-sec .heading .title img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.dash-intro h2 {
  font-size: 38px;
}
.mini-heading {
  display: flex;
  gap: 8px;
}
.mini-heading img {
  min-width: 20px;
  width: 20px;
  object-fit: contain;
}
.mini-heading h4 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 0;
}
.bulit-list {
  list-style: inside disc;
  margin: 20px 0 0;
}
.bulit-list ::marker {
  color: var(--secondary);
}
.bulit-list li {
  font-size: 20px;
  font-weight: 600;
}
.bulit-list li + li {
  margin-top: 10px;
}
.addres-list {
  margin: 10px 0 40px;
}
.addres-list li {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  font-weight: 600;
  font-size: 20px;
}
.addres-list li img {
  min-width: 20px;
  width: 20px;
  object-fit: contain;
}
.time-list {
  margin: 20px 0;
}
.time-list li {
  display: flex;
  justify-content: space-between;
}
.time-list li + li {
  margin-top: 16px;
}
.time-list li span {
  font-weight: 600;
  font-size: 20px;
}
.organization-sec .btn-primary {
  max-width: fit-content;
}
.organization-sec .btn-secondary {
  padding: 14px 16px;
}

.operating-hours .day-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 10px;
}
.operating-hours .day-name {
  width: 100px;
  font-weight: 600;
  color: #333;
}
.operating-hours .status {
  margin-left: 8px;
  font-weight: 500;
  color: #333;
}
.operating-hours .time-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.operating-hours .time-inputs input {
  width: 110px;
  height: 36px;
  text-align: center;
}
.operating-hours .time-label {
  font-weight: 600;
  color: #333;
}
.operating-hours .switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
  margin-left: 10px;
}
.operating-hours .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.operating-hours .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.operating-hours .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  background-image: url(/images/icons/streamline_check-remix.png);
  transition: 0.4s;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 9px;
  background-position: center;
}
.operating-hours input:checked + .slider {
  background-color: #f9a825;
}
.operating-hours input:checked + .slider:before {
  transform: translateX(22px);
}
.gap-30 {
  height: 30px;
}

.contact-sec .from-box {
  position: relative;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0px 4px 50px 0px #00000040;
  padding: 33px 44px 40px 36px;
}
.contact-sec .from-box::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--secondary);
  position: absolute;
  z-index: 1;
  border-radius: 30px;
  top: 15px;
  left: 14px;
  z-index: -1;
}
.contact-sec .from-box h2 {
  text-align: center;
  margin-bottom: 20px;
}
.contact-sec .contact-box h6 {
  color: var(--primary);
}
.contact-sec .contact-box ul li {
  display: flex;
  margin-bottom: 10px;
  align-items: flex-start;
}
.contact-sec .contact-box ul li .icon {
  background: var(--secondary);
  border-radius: 50%;
  width: 30px;
  min-width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
}
.contact-sec .contact-box h1 {
  margin-bottom: 20px;
  font-size: 52px;
}
.contact-sec .contact-box ul li a:hover {
  color: var(--primary);
}
.contact-sec > .container > .row {
  row-gap: 40px;
}

.local-card .row {
  align-items: flex-start;
}


.local-card {
  position: relative;
  background: var(--secondary, #1d4e89); /* blue front card */
  border-radius: 30px;
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.25);
  padding: 26px 28px 45px 13px;
  margin-bottom: 32px;
  z-index: 2;
  overflow: visible;
}

/* white layer behind, offset top-left */
.local-card::before {
  content: "";
  position: absolute;
  top: -15px;     /* shift up */
  left: -14px;    /* shift left */
  width: 100%;
  height: 100%;
  background: #fff; /* white background */
  border-radius: 30px;
  z-index: 1;     /* behind blue card */
}

/* ensure card content appears above everything */
.local-card * {
  position: relative;
  z-index: 3;
}
