@charset "UTF-8";
/*Start Media Mixins*/
/*End Media Mixins*/
/*overlay Mixin*/
/*Prefixes Mixin*/
/*Animation Prefixes Mixin*/
ul {
  margin-bottom: 0;
  padding-left: 0;
}

html {
  scroll-behavior: smooth !important;
}

* {
  margin: 0;
  padding: 0;
}

/*Convert Pixel to rem*/
/* mixin input-placeholder */
/*---------------------*/
/* minxin truncateText  */
/*-----------------------*/
/* mixin button */
/*-------------------*/
/*-------------------*/
/*Start Media Mixins*/
/* SCSS */
/* ===== Usage ===== */
@media (min-width: 1600px) {
  .container {
    padding-left: 250px;
    padding-right: 250px;
    max-width: 100%;
  }
}
@media (min-width: 1500px) {
  .container {
    padding-left: 120px;
    padding-right: 120px;
    max-width: 100%;
  }
}
ul {
  margin-bottom: 0px;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
}
html:lang(ar) body {
  text-align: right;
  direction: rtl;
}

.phone-num {
  direction: ltr;
}

a {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0px;
}

.container.home-page {
  max-width: 100%;
  padding-inline-start: 64px;
  padding-inline-end: 64px;
}
@media (max-width: 1199.98px) {
  .container.home-page {
    padding-inline-start: 30px;
    padding-inline-end: 30px;
  }
}
@media (max-width: 575.98px) {
  .container.home-page {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
  }
}

.container-right {
  max-width: 100%;
  padding-inline-start: 64px;
}
@media (max-width: 1199.98px) {
  .container-right {
    padding-inline-start: 30px;
  }
}

.slick-arrow {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
html:lang(ar) .slick-arrow img {
  transform: scaleX(-1);
}

.border-background {
  position: relative;
  padding-inline-start: 40px;
}
@media (max-width: 991.98px) {
  .border-background {
    padding-inline-start: 0;
  }
}
.border-background:after {
  background-image: url("../img/icons/Line 2.svg");
  /* Path to your image */
  background-size: auto;
  /* Or 'contain', depending on your needs */
  background-repeat: no-repeat;
  z-index: 9;
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  min-height: 354px;
  content: "";
}
@media (max-width: 991.98px) {
  .border-background:after {
    display: none;
  }
}

.btn.btn-primary {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  width: 180px;
  border-radius: 100px;
  height: 44px;
  color: #004784;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #004784;
  text-transform: capitalize;
}
.btn.btn-primary:hover {
  background-color: #004784;
  color: #fff;
  border: 1px solid #fff;
}
@media (max-width: 991.98px) {
  .btn.btn-primary {
    font-size: 17px;
    height: 46px;
    width: 170px;
  }
}

.over-none {
  overflow: hidden;
}

.phone-num {
  direction: ltr;
  display: inline-block;
}

a:focus {
  outline: 2px solid #fff;
}

.new__nav .nav__menu > ul > li.nav__menu--list a:focus {
  outline: 2px solid #004784;
}

.services-section .cards .card .card-body .btn.read-more:focus {
  outline: 2px solid #004784;
}

.authority-section .auth-desc button:focus,
.btn.btn-primary:focus {
  outline: 2px solid #004784 !important;
}

.services-section .cards .card .card-body .btn.read-more {
  width: fit-content;
}

.media-section .card a:focus {
  outline: 2px solid #000 !important;
}

.lang-select__box:focus {
  outline: 2px solid #fff !important;
}

.first-section.home-page-first-section .slick-arrows .next:focus,
.first-section.home-page-first-section .slick-arrows .prev:focus {
  outline: 2px solid #fff !important;
}

.accordion-button::after {
  display: none;
}

.accordion-item {
  border: 0;
  border-radius: 12px;
  background: var(--light-blue-bg, #F5FAFC);
  margin-bottom: 20px;
}
.accordion-item .accordion-button {
  color: #004784;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  background-color: transparent;
  padding: 18px;
  /* show plus when collapsed */
  /* show minus when expanded */
}
.accordion-item .accordion-button .acc-icon {
  margin-left: auto;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: #004784;
  font-size: 35px;
  transition: transform 0.15s ease, color 0.15s ease;
}
.accordion-item .accordion-button.collapsed {
  color: #000 !important;
}
.accordion-item .accordion-button.collapsed .acc-icon::before {
  content: "+";
  transform: rotate(0deg);
  color: #000;
  font-size: 35px;
}
.accordion-item .accordion-button:not(.collapsed) .acc-icon::before {
  content: "−";
  transform: rotate(0deg);
}

/* optional: spacing for accordion body content */
.accordion-body {
  padding: 0 18px 18px;
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .accordion-body {
    font-size: 16px;
  }
}
.accordion-body a {
  color: #004784 !important;
}
.accordion-body a:hover {
  text-decoration: underline;
}

.new__nav {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 8;
}
.new__nav.nav-inner {
  position: static;
  background-color: #2e2e2e;
  padding-block: 20px;
}
@media (max-width: 991.98px) {
  .new__nav.nav-inner {
    padding-block: 0;
  }
}
.new__nav.nav-inner.fixed-mobile {
  background-color: rgba(46, 46, 46, 0.7) !important;
}
.new__nav.nav-inner .nav__container .nav__content .nav__control ul li a:hover {
  color: #004784;
}
.new__nav.nav-inner .nav__container .nav__content .nav__control ul li a:hover svg path {
  stroke: #004784;
}
.new__nav.nav-inner .nav__menu > ul {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.new__nav.nav-inner .nav__menu > ul > li a svg {
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .new__nav.nav-inner .nav__menu > ul > li a svg.home-icon {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .new__nav.nav-inner .nav__menu > ul > li a svg path {
    stroke: #004784;
  }
}
.new__nav.nav-inner .nav__menu > ul > li a:hover {
  color: #004784 !important;
}
@media (max-width: 991.98px) {
  .new__nav.nav-inner .nav__menu > ul > li a:hover {
    color: #000 !important;
  }
}
.new__nav.nav-inner .nav__menu > ul > li a:hover svg.home-icon path {
  fill: #004784;
}
.new__nav.nav-inner .nav__menu > ul > li a:hover svg path {
  stroke: #004784;
}
@media (max-width: 991.98px) {
  .new__nav.nav-inner .nav__menu > ul > li a:hover svg path {
    stroke: #000 !important;
  }
}
.new__nav.nav-inner .nav__container {
  background-image: none;
}
.new__nav.nav-inner.fixed {
  background-color: rgba(46, 46, 46, 0.7) !important;
}
.new__nav.nav-inner.fixed .new__nav .nav__menu > ul {
  border-top: 0 !important;
}
.new__nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}
.new__nav.fixed .nav__container .nav__menu {
  margin: 0;
  border-top: 0;
}
.new__nav.fixed .nav__container .nav__menu li a svg {
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .new__nav.fixed .nav__container .nav__menu li a svg.home-icon path {
    fill: #004784;
  }
}
@media (max-width: 991.98px) {
  .new__nav.fixed .nav__container .nav__menu li a svg path {
    stroke: #004784;
  }
}
.new__nav.fixed-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background-color: rgba(203, 160, 82, 0.04);
  backdrop-filter: blur(12px);
}
.new__nav.fixed-mobile .nav__menu.show {
  height: 100vh;
}
.new__nav.fixed-mobile .nav__header {
  margin-bottom: 0;
}
.new__nav a:focus {
  border: none;
  outline: 2px solid #fff;
}
.new__nav .nav__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding-block: 16px;
  background-color: #ab8b7c;
}
.new__nav .nav__header::after, .new__nav .nav__header::before {
  position: absolute;
  content: url("../img/new-header/mask-right.svg");
  top: 0;
}
@media (max-width: 991.98px) {
  .new__nav .nav__header::after, .new__nav .nav__header::before {
    display: none;
  }
}
.new__nav .nav__header::before {
  left: 0;
}
.new__nav .nav__header::after {
  right: 0;
}
@media (max-width: 991.98px) {
  .new__nav .nav__header {
    padding-block: 9px;
    justify-content: center;
    margin-bottom: 10px;
    background-image: url("../img/new-header/Mask.svg");
    background-size: cover;
    background-color: transparent;
  }
}
.new__nav .nav__header ul {
  display: flex;
  position: relative;
  z-index: 5;
}
@media (max-width: 991.98px) {
  .new__nav .nav__header ul {
    display: none;
  }
}
.new__nav .nav__header ul li {
  font-size: 17.5px;
}
.new__nav .nav__header ul li:first-child {
  position: relative;
  padding-inline-end: 50px;
}
@media (max-width: 991.98px) {
  .new__nav .nav__header ul li:first-child {
    padding-inline-end: 32px;
  }
}
.new__nav .nav__header ul li:first-child::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 9px;
  width: 1.2px;
  height: 13px;
  background-color: #fff;
}
html:lang(ar) .new__nav .nav__header ul li:first-child::after {
  left: 20px;
  right: unset;
}
@media (max-width: 991.98px) {
  .new__nav .nav__header ul li:first-child::after {
    top: 3px;
  }
}
@media (max-width: 991.98px) {
  .new__nav .nav__header ul li {
    font-size: 14px;
  }
}
.new__nav .nav__header ul li a {
  font-weight: 600;
  color: #fff;
}
.new__nav .nav__header div {
  display: flex;
  position: relative;
  z-index: 99;
}
@media (max-width: 991.98px) {
  .new__nav .nav__header div img {
    width: 20px;
  }
}
.new__nav .nav__header div p {
  margin-inline-start: 16px;
  margin-bottom: 0;
  font-size: 17.5px;
}
@media (max-width: 991.98px) {
  .new__nav .nav__header div p {
    font-size: 14px;
  }
}
.new__nav .nav__container {
  background-image: url(../img/icons/Navbar.png);
  background-size: cover;
  width: 100%;
  z-index: -1;
}
.new__nav .nav__container .nav__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #004784;
  color: #fff;
}
@media (max-width: 1199.98px) {
  .new__nav .nav__container .nav__content .nav_icon {
    cursor: pointer;
    width: 35px;
    position: relative;
    z-index: 665;
  }
}
.new__nav .nav__container .nav__content .nav_icon img {
  width: 100%;
}
@media (max-width: 332px) {
  .new__nav .nav__container .nav__content .nav_icon {
    width: 40px;
  }
}
@media (min-width: 1200px) {
  .new__nav .nav__container .nav__content .nav_icon {
    display: none;
  }
}
.new__nav .nav__container .nav__content .nav_icon img {
  filter: brightness(0) invert(1);
}
.new__nav .nav__container .nav__content .nav__logo2 {
  text-align: center;
}
@media (max-width: 991.98px) {
  .new__nav .nav__container .nav__content .nav__logo2 {
    margin-top: 15px;
    width: 100%;
    order: 3;
    overflow: hidden;
  }
}
.new__nav .nav__container .nav__content .nav__logo2 img {
  position: relative;
  margin-top: -15px;
  z-index: -1;
}
@media (max-width: 1400px) {
  .new__nav .nav__container .nav__content .nav__logo2 img {
    width: 80%;
  }
}
@media (min-width: 1400px) {
  .new__nav .nav__container .nav__content .nav__logo2 img {
    margin-top: -56px;
  }
}
@media (max-width: 991.98px) {
  .new__nav .nav__container .nav__content .nav__logo2 img {
    width: 100%;
    margin-top: -37px;
  }
}
.new__nav .nav__container .nav__content .nav__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .new__nav .nav__container .nav__content .nav__control {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
}
.new__nav .nav__container .nav__content .nav__control ul {
  display: flex;
  margin-bottom: 0;
  list-style: none;
  align-items: center;
  gap: 0;
}
@media (max-width: 991.98px) {
  .new__nav .nav__container .nav__content .nav__control ul {
    margin-bottom: 0;
    align-items: normal;
  }
}
.new__nav .nav__container .nav__content .nav__control ul.info-list {
  gap: 48px;
}
.new__nav .nav__container .nav__content .nav__control ul:last-of-type li {
  display: inline-block;
}
.new__nav .nav__container .nav__content .nav__control ul:last-of-type li:first-child {
  margin-inline-end: 35px;
  position: relative;
}
.new__nav .nav__container .nav__content .nav__control ul:last-of-type li:first-child::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 10px;
  height: 12px;
  width: 1px;
  background-color: #fff;
}
html:lang(ar) .new__nav .nav__container .nav__content .nav__control ul:last-of-type li:first-child::after {
  left: -20px;
  right: unset;
}
@media (max-width: 991.98px) {
  .new__nav .nav__container .nav__content .nav__control ul:last-of-type li:first-child {
    top: 8px;
  }
}
.new__nav .nav__container .nav__content .nav__control ul:last-of-type a {
  font-size: 20px;
  color: #fff;
}
.new__nav .nav__container .nav__content .nav__control ul:last-of-type a svg {
  transition: all 0.3s ease-in-out;
}
.new__nav .nav__container .nav__content .nav__control ul:last-of-type a:hover {
  color: #000;
}
.new__nav .nav__container .nav__content .nav__control ul:last-of-type a:hover svg path {
  stroke: #000;
}
@media (max-width: 991.98px) {
  .new__nav .nav__container .nav__content .nav__control ul:last-of-type a {
    font-size: 14px;
  }
}
.new__nav .nav__container .nav__content .nav__control ul:last-of-type a.active {
  color: #004784;
}
@media (min-width: 768px) {
  .new__nav .nav__container .nav__content .nav__control div {
    position: relative;
  }
}
.new__nav .nav__container .nav__content .nav__control div input {
  width: 100%;
  padding: 10px 23px;
  border: 1px solid #979797;
}
@media (max-width: 991.98px) {
  .new__nav .nav__container .nav__content .nav__control div input {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 95px;
    width: 80%;
    z-index: 999;
  }
}
.new__nav .nav__container .nav__content .nav__control div img {
  cursor: pointer;
}
.new__nav .nav__menu {
  background-color: #fff;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .new__nav .nav__menu {
    padding: 0 80px;
  }
}
@media (min-width: 1600px) {
  .new__nav .nav__menu {
    padding: 0px 250px;
  }
}
@media (min-width: 1500px) {
  .new__nav .nav__menu {
    padding: 0px 120px;
  }
}
@media (max-width: 1199.98px) {
  .new__nav .nav__menu {
    left: -750px;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-inline-start: 0;
  }
  html:lang(ar) .new__nav .nav__menu {
    left: unset;
    right: -750px;
  }
  .new__nav .nav__menu.show {
    left: 0;
  }
  html:lang(ar) .new__nav .nav__menu.show {
    left: unset;
    right: 0;
  }
}
.new__nav .nav__menu > svg {
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .new__nav .nav__menu > svg {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .new__nav .nav__menu > svg {
    cursor: pointer;
    position: absolute;
    right: 11px;
    top: 17px;
  }
  html:lang(ar) .new__nav .nav__menu > svg {
    left: 11px;
    right: unset;
  }
  .new__nav .nav__menu > svg:hover {
    filter: brightness(0%);
  }
}
@media (max-width: 1199.98px) {
  .new__nav .nav__menu {
    position: fixed;
    bottom: 0;
    top: 0;
    height: 100%;
    background-color: #fff;
    z-index: 556565;
    margin: 0;
  }
}
@media (max-width: 575.98px) {
  .new__nav .nav__menu {
    width: 100%;
  }
}
.new__nav .nav__menu > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 0;
}
@media (max-width: 1199.98px) {
  .new__nav .nav__menu > ul {
    text-align: center;
  }
}
@media (max-width: 1199.98px) {
  .new__nav .nav__menu > ul {
    flex-direction: column;
    justify-content: center;
    height: 100vh;
  }
}
@media (max-width: 991.98px) {
  .new__nav .nav__menu > ul > li {
    padding: 20px 0;
    margin-bottom: 0;
    width: 100%;
  }
}
.new__nav .nav__menu > ul > li:not(:last-child) {
  margin-inline-end: 40px;
}
@media (max-width: 1399.98px) {
  .new__nav .nav__menu > ul > li:not(:last-child) {
    margin-inline-end: 20px;
  }
}
@media (max-width: 991.98px) {
  .new__nav .nav__menu > ul > li:not(:last-child) {
    margin-inline-end: 20px;
  }
}
@media (max-width: 991.98px) {
  .new__nav .nav__menu > ul > li {
    margin-bottom: 0;
  }
}
.new__nav .nav__menu > ul > li a {
  color: #000;
  font-size: 16px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding: 0;
  font-weight: 600;
}
@media (max-width: 1399.98px) {
  .new__nav .nav__menu > ul > li a {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .new__nav .nav__menu > ul > li a {
    justify-content: center;
    color: #004784;
    padding-inline-start: 20px;
  }
}
.new__nav .nav__menu > ul > li a img {
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199.98px) {
  .new__nav .nav__menu > ul > li a img {
    display: none;
  }
}
.new__nav .nav__menu > ul > li a:hover {
  text-decoration: none;
  color: #000 !important;
}
.new__nav .nav__menu > ul > li.nav__menu--list {
  position: relative;
}
.new__nav .nav__menu > ul > li.nav__menu--list:hover img {
  filter: brightness(0%);
}
.new__nav .nav__menu > ul > li.nav__menu--list li a {
  color: #000;
  transition: all 0.3s ease-in-out;
}
.new__nav .nav__menu > ul > li.nav__menu--list li a:hover {
  color: #004784;
}
@media (max-width: 1199.98px) {
  .new__nav .nav__menu > ul > li.nav__menu--list li a {
    color: #004784;
    padding-inline-start: 10px;
  }
  .new__nav .nav__menu > ul > li.nav__menu--list li a:hover {
    color: #000;
  }
}
.new__nav .nav__menu > ul > li.nav__menu--list img {
  width: 10px;
  position: absolute;
  right: -22px;
  top: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
html:lang(ar) .new__nav .nav__menu > ul > li.nav__menu--list img {
  left: -22px;
  right: unset;
}
@media (max-width: 991.98px) {
  .new__nav .nav__menu > ul > li.nav__menu--list img {
    top: 29px;
    right: 22px;
    filter: brightness(0%);
  }
  html:lang(ar) .new__nav .nav__menu > ul > li.nav__menu--list img {
    left: 22px;
    right: unset;
  }
}
.new__nav .nav__menu > ul > li.nav__menu--list ul {
  display: none;
}
@media (min-width: 992px) {
  .new__nav .nav__menu > ul > li.nav__menu--list ul {
    position: absolute;
    top: 43px;
    background-color: #fff;
    overflow-y: auto;
    z-index: 55555;
    width: 150px;
    height: fit-content;
    height: -moz-fit-content;
    border-radius: 8px;
    padding: 0 10px;
  }
}
.new__nav .nav__menu > ul > li.nav__menu--list ul li {
  display: block;
  padding: 10px;
  text-align: center;
}
.new__nav .nav__menu > ul > li.nav__menu--list ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.modal-search .modal-dialog {
  max-width: 900px;
  margin-top: 107px;
  padding-inline: 10px;
}
.modal-search .modal-dialog .modal-content {
  border-radius: 12px;
}
.modal-search .btn-close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -55px;
  right: 0;
  opacity: 1;
  background-image: unset;
}
html:lang(ar) .modal-search .btn-close {
  left: 0;
  right: unset;
}
.modal-search .btn-close svg {
  width: 45px;
  height: 45px;
}
@media (max-width: 575.98px) {
  .modal-search .modal-body {
    flex-wrap: wrap;
  }
}
.modal-search .modal-body input {
  height: 45px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
html:lang(ar) .modal-search .modal-body input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}
@media (max-width: 575.98px) {
  .modal-search .modal-body input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-radius: 0 !important;
  }
}
.modal-search .modal-body input:is(:focus, :hover) {
  border-color: #bbb;
}
.modal-search .modal-body button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 45px;
  border-radius: 0;
  gap: 10px;
  border: 1px solid #004784;
  background: #004784;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  margin-inline-start: auto;
  transition: all 0.3s ease-in-out;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}
html:lang(ar) .modal-search .modal-body button {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media (max-width: 575.98px) {
  .modal-search .modal-body button {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  html:lang(ar) .modal-search .modal-body button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.modal-search .modal-body button:hover {
  color: #000;
  background-color: #fff;
}

@media (max-width: 991.98px) {
  .nav__logo {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .nav__logo {
    width: 150px;
    position: relative;
  }
  .nav__logo::after {
    display: none;
  }
}

.lang-select {
  display: flex;
  align-items: center;
}

.nice-select.lang-select__box {
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  padding: 0 24px 0 10px;
}
@media (max-width: 1199.98px) {
  .nice-select.lang-select__box {
    padding: 0 20px 0 2px;
  }
}
.nice-select.lang-select__box:after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.nice-select.lang-select__box .list {
  flex-direction: column;
  z-index: 9;
  color: #004784;
}
@media (max-width: 991.98px) {
  .nice-select.lang-select__box .list {
    left: -35px;
  }
}
.nice-select.lang-select__box .list li {
  margin-inline-end: 0 !important;
  width: 100%;
  padding: 0;
  text-align: center;
  min-width: 100px;
}

.info-list.mobile {
  display: none;
}
@media (max-width: 1199.98px) {
  .info-list.mobile {
    display: block !important;
  }
  .info-list.mobile li {
    color: #004784;
  }
}

@media (max-width: 1199.98px) {
  .info-list {
    display: none !important;
  }
}

.mobile-logo {
  display: none;
}
@media (max-width: 1199.98px) {
  .mobile-logo {
    display: block !important;
  }
}
.mobile-logo img {
  width: 150px;
  height: 50px;
}

@media (max-width: 1199.98px) {
  .nav__logo {
    display: none !important;
  }
}

.fa.fa-close {
  font-size: 20px;
  color: #004784;
}
.fa.fa-close:hover {
  color: #000;
}

.close-icon {
  display: none;
  position: absolute;
  right: 20px;
}
@media (max-width: 1199.98px) {
  .close-icon {
    display: block;
  }
}

.footer-main {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  background-position: center;
  background-image: url(../img/home/footer.png);
}
.footer-main:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.95;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, #0072B2 0%, #00263B 100%), linear-gradient(180deg, #0072B2 0%, rgba(0, 38, 59, 0) 100%);
  z-index: -1;
}
.footer-main .social-list {
  display: flex;
  gap: 13px;
  list-style: none;
}
.footer-main .footer-list {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
@media (max-width: 1199.98px) {
  .footer-main .footer-list {
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  .footer-main .footer-list {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
@media (max-width: 991.98px) {
  .footer-main .footer-list {
    padding: 30px 0;
  }
}
@media (max-width: 575.98px) {
  .footer-main .footer-list {
    flex-direction: column;
  }
}
.footer-main .footer-list .important-links {
  padding-bottom: 32px;
  padding-top: 52px;
}
@media (max-width: 991.98px) {
  .footer-main .footer-list .important-links {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.footer-main .footer-list .important-links .last-link {
  padding-bottom: 24px;
}
@media (max-width: 991.98px) {
  .footer-main .footer-list .important-links .last-link {
    padding-bottom: 12px;
  }
}
@media (max-width: 991.98px) {
  .footer-main .footer-list .important-links br {
    display: none;
  }
}
.footer-main .footer-list .main-logo ul {
  list-style: none !important;
}
.footer-main .footer-list .main-logo ul li {
  display: flex;
  gap: 5px;
}
.footer-main .footer-list .main-logo ul li span {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  padding-bottom: 0;
}
.footer-main .footer-list ul {
  list-style: none;
}
.footer-main .footer-list ul.social-list {
  padding-top: 18px;
  display: flex;
  align-items: baseline;
}
@media (max-width: 991.98px) {
  .footer-main .footer-list ul.social-list {
    padding-top: 0;
  }
}
.footer-main .footer-list ul.social-list li a {
  transition: all 0.3s ease-in-out;
}
.footer-main .footer-list ul.social-list li a:hover {
  filter: brightness(0%);
}
.footer-main .footer-list ul.social-list h4 {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}
.footer-main .footer-list ul li {
  padding-bottom: 12px;
}
.footer-main .footer-list ul li::marker {
  color: #004784;
}
.footer-main .footer-list ul li h2 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}
.footer-main .footer-list ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.footer-main .footer-list ul li a:hover {
  color: #1E1E1E;
}
.footer-main .footer-bottom {
  height: 56px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .footer-main .footer-bottom {
    height: 110px;
  }
}
.footer-main .footer-bottom .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767.98px) {
  .footer-main .footer-bottom .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-main .footer-bottom .footer-content p {
  font-size: 14px;
  color: #fff;
}
.footer-main .footer-bottom .footer-content ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.footer-main .footer-bottom .footer-content ul li:first-of-type {
  position: relative;
}
.footer-main .footer-bottom .footer-content ul li:first-of-type:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 6px;
  height: 12px;
  width: 1.2px;
  background-color: #fff;
  opacity: 0.5;
}
html:lang(ar) .footer-main .footer-bottom .footer-content ul li:first-of-type:after {
  left: -10px;
  right: unset;
}
.footer-main .footer-bottom .footer-content ul li a {
  font-size: 14px;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.footer-main .footer-bottom .footer-content ul li a:hover {
  color: #000;
}

*,
*::before,
*::after {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

:any-link {
  text-decoration: none;
  text-underline-offset: 0.05em;
}
body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Sora", sans-serif;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
address,
figure,
ul {
  margin-bottom: 0;
}

ul,
ol {
  padding-left: 0;
}

button,
input,
select,
textarea {
  border: none;
  outline: none !important;
  background-color: transparent;
  box-shadow: none !important;
}

.breadcrumb {
  color: var(--dark-gray, #3F3F3F);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 155.556% */
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .breadcrumb {
    font-size: 16px;
  }
}

.about-overlay h1 {
  color: var(--black, #000);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  /* 150% */
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .about-overlay h1 {
    font-size: 30px;
  }
}

.first-section.home-page-first-section {
  position: relative;
}
.first-section.home-page-first-section .first-desc {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 991.98px) {
  .first-section.home-page-first-section .first-desc {
    align-items: flex-end;
  }
}

.first-section.home-page-first-section .slick-arrows .prev {
  background-color: transparent;
  width: 55px;
  height: 55px;
  transition: all 0.4s ease-in-out;
}
html:lang(ar) .first-section.home-page-first-section .slick-arrows .prev {
  transform: scaleX(-1);
}
@media (max-width: 991.98px) {
  .first-section.home-page-first-section .slick-arrows .prev {
    width: 30px;
    height: 30px;
  }
  .first-section.home-page-first-section .slick-arrows .prev img {
    width: 30px;
    height: 30px;
  }
}

.first-section.home-page-first-section .slick-arrows .prev:hover,
.first-section.home-page-first-section .slick-arrows .next:hover {
  opacity: 0.3;
}

.first-section.home-page-first-section .slick-arrow:before {
  display: none;
}

.first-section.home-page-first-section .slick-arrows .next {
  background-color: transparent;
  width: 55px;
  height: 55px;
  transition: all 0.4s ease-in-out;
}
html:lang(ar) .first-section.home-page-first-section .slick-arrows .next {
  transform: scaleX(-1);
}
@media (max-width: 991.98px) {
  .first-section.home-page-first-section .slick-arrows .next {
    width: 30px;
    height: 30px;
  }
  .first-section.home-page-first-section .slick-arrows .next img {
    width: 30px;
    height: 30px;
  }
}

.main-slider .slick-dots {
  display: none;
}

.first-section.home-page-first-section {
  position: relative;
}
.first-section.home-page-first-section .num {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 9;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
html:lang(ar) .first-section.home-page-first-section .num {
  left: 30px;
  right: unset;
}
@media (max-width: 991.98px) {
  .first-section.home-page-first-section .num {
    font-size: 16px;
  }
}
.first-section.home-page-first-section .num .slick-arrows {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
.first-section.home-page-first-section .num .current-slide {
  font-size: 30px !important;
  font-weight: 800;
  color: #fff !important;
}
@media (max-width: 991.98px) {
  .first-section.home-page-first-section .num .current-slide {
    font-size: 20px;
  }
}

.first-section.home-page-first-section .slick-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  height: 730px;
}
.first-section.home-page-first-section .slick-slide:after {
  background: linear-gradient(180deg, rgba(11, 20, 29, 0.24) 0%, rgba(6, 11, 17, 0.24) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0) 45.03%, rgba(0, 0, 0, 0.64) 100%), linear-gradient(180deg, rgba(0, 114, 178, 0) 0%, rgba(0, 114, 178, 0.32) 100%);
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .first-section.home-page-first-section .slick-slide {
    height: 530px;
  }
}

.banner-nav #navbar_top .navbar-nav .nav-link,
.banner-nav #navbar_top .right-list li a.ar-btn {
  color: #fff;
}

.banner-nav #navbar_top .navbar-brand img,
.banner-nav #searchIcon svg {
  filter: brightness(100);
}

.banner-nav #navbar_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
}

.banner-nav #navbar_top .main-nav {
  background-color: transparent;
}

@media (max-width: 1200px) {
  .first-section.home-page-first-section {
    padding: 0;
  }

  header .navigation nav, .menu-icon span {
    background-color: #031937;
  }

  .first-section.home-page-first-section .slick-arrows #next,
.first-section.home-page-first-section .slick-arrows #prev {
    display: none;
  }

  #accordion > div {
    padding-bottom: 10px;
    padding-top: 0;
  }

  .collapse-head {
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 24px;
    width: 200px;
  }

  /* .collapse-head ul li{
    border-bottom: 1px solid $WhiteColor;
  } */
  header .navigation nav ul li a {
    font-size: 16px;
  }

  header .navigation nav ul li:not(:last-child) {
    margin-right: 0;
  }

  header .navigation nav ul li.has-submenu:before {
    right: -20px;
  }

  header .navigation nav ul li.has-submenu::before {
    filter: brightness(0) invert(1);
  }

  header .navigation .login ul li:not(:last-child) {
    margin-right: 0;
  }

  .banner__div.main-slider .slick-dots li {
    width: 15px !important;
  }

  header .navigation .login ul {
    gap: 7px;
  }

  header .navigation .login {
    padding-left: 0;
    margin-right: 6px;
    padding-right: 0;
  }
}
.main-slider {
  margin-bottom: 0px !important;
}
.main-slider .slide-title {
  padding-top: 370px;
  width: 50%;
  color: #fff;
}
@media (max-width: 991.98px) {
  .main-slider .slide-title {
    width: 100%;
    padding-top: 130px;
  }
}
.main-slider .slide-title h1 {
  font-size: 96px;
  font-weight: 900;
  color: #fff;
  z-index: 7;
  position: relative;
}
@media (max-width: 991.98px) {
  .main-slider .slide-title h1 {
    font-size: 45px;
  }
}
.main-slider .slide-title h1 span {
  font-size: 80px;
  font-weight: 400;
  display: block;
  padding-top: 32px;
}
@media (max-width: 991.98px) {
  .main-slider .slide-title h1 span {
    font-size: 40px;
  }
}
.main-slider .slide-title p {
  padding: 32px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  z-index: 8;
  position: relative;
}
@media (max-width: 991.98px) {
  .main-slider .slide-title p {
    font-size: 14px;
    padding: 10px 0;
    width: 65%;
  }
}

.main-slider .slick-dots {
  display: none !important;
}

header.sticky:before {
  display: none;
}

@media (max-width: 992px) {
  .slide-title {
    flex-direction: column;
  }

  .footer-wrapper .footer ul {
    align-items: center;
    flex-direction: column;
  }

  .footer-wrapper .footer h6 {
    text-align: center;
  }

  .banner-slide, .banner-slide:before {
    height: 600px;
  }

  .slide-title h1 {
    width: 100%;
  }

  .slide-title {
    padding-top: 30px;
    gap: 20px;
  }
}
.menu-icon span:nth-child(3) {
  width: 100%;
  right: 0;
}

header .menu-icon {
  right: 0;
}

.login {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 1200px) {
  .main-slider .slick-dots li {
    width: 90px;
  }
}
.services-section {
  background-color: #F5FAFC;
  padding-block: 72px;
}
@media (max-width: 991.98px) {
  .services-section {
    padding-block: 40px;
  }
}
.services-section h1 {
  color: #1E1E1E;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 24px;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .services-section h1 {
    font-size: 28px;
  }
}
.services-section .title-header h1 {
  font-size: 32px;
  color: #000;
}
@media (max-width: 991.98px) {
  .services-section .title-header h1 {
    font-size: 28px;
  }
}
.services-section .office-desc {
  font-size: 18px;
  padding: 64px 0;
  color: #3F3F3F;
}
@media (max-width: 991.98px) {
  .services-section .office-desc {
    font-size: 16px;
    padding: 24px 0;
  }
}
.services-section .cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 991.98px) {
  .services-section .cards {
    flex-wrap: wrap;
    align-items: center;
  }
}
.services-section .cards .card {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  border: 1.5px solid #004784;
}
.services-section .cards .card .card-header {
  font-size: 27px;
  color: #000;
  padding-top: 20px;
  border-bottom: 0;
  z-index: 1;
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
  padding: 20px 20px 0;
}
@media (max-width: 991.98px) {
  .services-section .cards .card .card-header {
    font-size: 18px;
  }
}
.services-section .cards .card .card-header h2 {
  padding: 14px 0 0;
}
.services-section .cards .card ul {
  list-style: none;
}
.services-section .cards .card ul li {
  padding-bottom: 10px;
}
.services-section .cards .card ul li a span {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.services-section .cards .card .card-body {
  padding: 0 0px;
  z-index: 1;
}
.services-section .cards .card .card-body .card-img {
  width: 100%;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.services-section .cards .card .card-body p {
  font-size: 16px;
  color: #3F3F3F;
  font-weight: 400;
  padding: 14px 20px;
}
@media (max-width: 991.98px) {
  .services-section .cards .card .card-body p {
    font-size: 15px;
  }
}
.services-section .cards .card .card-body .btn.read-more {
  color: #004784;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
  text-align: start;
  transition: all 0.3s ease-in-out;
  margin: 0 20px 20px 0;
}
.services-section .cards .card .card-body .btn.read-more img {
  transition: all 0.3s ease-in-out;
}
html:lang(ar) .services-section .cards .card .card-body .btn.read-more img {
  transform: scaleX(-1);
}
.services-section .cards .card .card-body .btn.read-more:hover {
  color: #000;
}
.services-section .cards .card .card-body .btn.read-more:hover img {
  filter: brightness(0);
}

.statistics-section {
  background-image: url(../img/home/statistics.png);
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  background-repeat: no-repeat;
  position: relative;
  padding: 72px 0;
}
@media (max-width: 991.98px) {
  .statistics-section {
    padding: 40px 0;
  }
}
.statistics-section:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.95;
  transform: translate(-50%, -50%);
  background: var(--blue, #004784);
  opacity: 0.9;
  z-index: -1;
}
.statistics-section h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .statistics-section h1 {
    font-size: 28px;
  }
}
.statistics-section span {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.statistics-section p {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 56px 0;
  width: 85%;
}

.media-section {
  padding: 72px 0;
}
@media (max-width: 991.98px) {
  .media-section {
    padding: 40px 0;
  }
}
.media-section h1 {
  text-align: center;
  font-size: 40px;
  color: #1E1E1E;
  font-weight: 600;
  text-transform: capitalize;
  font-weight: 600;
  padding-bottom: 24px;
}
@media (max-width: 991.98px) {
  .media-section h1 {
    font-size: 28px;
  }
}
.media-section p {
  color: #3F3F3F;
  font-size: 16px;
}
.media-section .card {
  border: 0;
}
@media (max-width: 991.98px) {
  .media-section .card {
    margin-bottom: 30px;
  }
}
.media-section .card h5 {
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 0;
}
.media-section .card p {
  color: #3F3F3F;
  font-size: 16px;
}
.media-section .card span {
  color: #004784;
  font-size: 16px;
  padding: 14px 0;
  display: inline-block;
}
.media-section .card a {
  font-size: 16px;
  display: flex;
  gap: 16px;
  color: #1E1E1E;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
}
.media-section .card a img {
  transition: all 0.3s ease-in-out;
}
html:lang(ar) .media-section .card a img {
  transform: scaleX(-1);
}
.media-section .card a:hover {
  color: #004784;
}
.media-section .card a:hover img {
  filter: invert(12%) sepia(69%) saturate(1742%) hue-rotate(187deg) brightness(96%) contrast(103%);
}
.media-section .btn.btn-primary {
  margin: 56px auto 0;
}

/****section2****/
.authority-section {
  position: relative;
  padding: 72px 0;
}
@media (max-width: 991.98px) {
  .authority-section {
    padding: 40px 0;
  }
}
@media (max-width: 1199.98px) {
  .authority-section {
    padding-top: 24px;
  }
}
.authority-section h1 {
  color: #1E1E1E;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  padding-bottom: 24px;
}
@media (max-width: 991.98px) {
  .authority-section h1 {
    font-size: 28px;
  }
}
.authority-section .auth-desc {
  color: #000;
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .authority-section .auth-desc {
    padding: 24px 15px;
  }
}
.authority-section .auth-desc button {
  margin-top: 32px;
}
.authority-section p {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 24px;
}
@media (max-width: 1600px) {
  .authority-section p {
    font-size: 14px;
    margin-bottom: 14px;
  }
}

.bg-video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0;
  left: 0;
}

.global-desc {
  text-align: center;
  color: #3F3F3F !important;
  font-size: 16px !important;
  padding-bottom: 56px !important;
  margin-bottom: 0;
  margin-top: 0 !important;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .global-desc {
    padding-bottom: 20px !important;
  }
}

.scene {
  position: relative;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  margin: auto;
}

/* Donut/pie base: 9 equal slices around the center */
.pie {
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  position: relative;
  /* 9 equal slices via conic-gradient */
  background: conic-gradient(#4e79a7 0deg 40deg, #4e79a7 40deg 80deg, #4e79a7 80deg 120deg, #4e79a7 120deg 160deg, #4e79a7 160deg 200deg, #4e79a7 200deg 240deg, #4e79a7 240deg 280deg, #4e79a7 280deg 320deg, #4e79a7 320deg 360deg);
  /* inner hole to resemble donut (optional) */
  mask: radial-gradient(circle at center, transparent 70%, black 40%);
  /* A thin white outline to separate slices (optional) */
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease-in-out;
}

/* Subtle centerpiece logo placeholder (you can replace with actual image) */
.center {
  position: absolute;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 2;
  /* optional faint border */
  /* box-shadow: 0 0 0 2px rgba(0,0,0,.05); */
}

.center img {
  width: 70%;
  height: auto;
  display: block;
}

/* Labels around the circle (outside the donut) */
.scene .label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

/* Thin connector lines from edge to labels (optional) */
.scene .label::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: rgba(255, 255, 255, 0.6);
  left: calc(-50% + 50px);
  top: 50%;
  transform: translateY(-50%);
}

/* Responsiveness: scale down on small screens */
@media (max-width: 900px) {
  :root {
    --size: 420px;
    --label-offset: 270px;
  }
}
@media (max-width: 700px) {
  :root {
    --size: 320px;
    --label-offset: 230px;
  }

  .scene .label {
    font-size: 14px;
  }
}
.lines {
  position: absolute;
  width: var(--size);
  height: var(--size);
  top: 0;
  left: 0;
  pointer-events: none;
}

:root {
  --size: 540px;
  /* overall canvas size (circle diameter) */
  --radius: calc(var(--size) / 2);
  --slice-angle: 40deg;
  /* 360/9 = 40 degrees per slice */
  --label-offset: 310px;
  /* distance from center to label baseline (outside ring) */
}

.line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  /* slightly thicker for visibility */
  height: var(--radius);
  background: rgba(255, 255, 255, 0.2);
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(var(--angle));
  transition: all 0.3s ease-in-out;
}

.scene:hover .line {
  background: white;
}

.scene:hover .pie {
  box-shadow: inset 0 0 0 1px white;
}

@media (max-width: 900px) {
  :root {
    --size: 420px!important;
    /* scale down for tablets/phones */
    --radius: calc(var(--size) / 2);
    --label-offset: 270px;
  }
}
@media (max-width: 700px) {
  :root {
    --size: 320px!important;
    --radius: calc(var(--size) / 2);
    --label-offset: 180px;
  }

  .label {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  :root {
    --size: 320px!important;
    --radius: calc(var(--size) / 2);
    --label-offset: 160px;
  }

  .scene .label {
    font-size: 12px;
  }
}
/* Top controls layout (adjust as needed) */
.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
  align-items: center;
}

.info-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

[aria-label="Main menu"] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
}

/* Accessible focus styles */
[role=menuitem]:focus {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}

[role=menu] {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  padding: 8px;
  min-width: 180px;
}

[aria-expanded=true] > [role=menu] {
  display: block;
}

/* Simple responsive tweak (optional) */
@media (max-width: 800px) {
  [role=menubar] {
    flex-direction: column;
  }

  [role=menu] {
    position: static;
    border: none;
    box-shadow: none;
    padding: 0;
  }
}
@media (max-width: 600px) {
  :root {
    --mid-offset-subtract: 50px;
  }

  /* same value, adjust if desired */
}
.about-hero-wrap.services-bg {
  background-image: url(../img/pada/PADA\ service.png);
}

.about-hero-wrap {
  background-image: url("../img/home/media 2.png");
  background-size: 100% 100%;
  height: 510px;
  background-repeat: no-repeat;
}
@media (max-width: 991.98px) {
  .about-hero-wrap {
    background-size: cover;
  }
}
.about-hero-wrap.vision-hero {
  background-image: url("../img/pada/mission&vision.png");
}
.about-hero-wrap .about-card {
  position: absolute;
  bottom: -1px;
  border-radius: 0 80px 0 0;
  background: var(--white, #FFF);
  display: flex;
  padding: 20px 120px 20px 120px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .about-hero-wrap .about-card {
    padding: 20px 80px 20px 80px;
  }
}
@media (max-width: 575.98px) {
  .about-hero-wrap .about-card {
    padding: 20px 60px 20px 10px;
  }
}
.about-hero-wrap .about-card h1 {
  color: var(--black, #000);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  /* 150% */
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .about-hero-wrap .about-card h1 {
    font-size: 28px;
    line-height: 42px;
  }
}

.about-main {
  padding: 38px 0 50px 0;
}
.about-main img {
  width: 100%;
  padding-bottom: 38px;
}
.about-main h3 {
  padding-bottom: 24px;
  color: var(--dark-blue-80, #004784);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 166.667% */
  text-transform: capitalize;
}
.about-main p {
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 200% */
  letter-spacing: -0.64px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .about-main p {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

/* Login section styles (from Figma node 137:2802) */
.login-section {
  background-image: url(../img/home/Log\ in.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 85px 0 85px 100px;
  height: 100%;
  min-height: 100vh;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .login-section {
    padding: 85px 10px;
  }
}
@media (max-width: 991.98px) {
  .login-section {
    padding: 85px 10px;
  }
}
.login-section:after {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background-image: linear-gradient(180deg, rgba(0, 114, 178, 0) 0%, rgba(0, 114, 178, 0.2) 100%), linear-gradient(90deg, rgba(11, 20, 29, 0.24) 0%, rgba(11, 20, 29, 0.24) 100%);
  background-size: cover;
  z-index: 0;
  content: "";
  width: 100%;
  height: 100%;
}

.login-card {
  background: transparent;
  border-radius: 24px;
  position: relative;
}

.login-content {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 24px;
  width: 40%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 800px;
  padding: 42px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .login-content {
    height: fit-content;
    width: 50%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .login-content {
    width: 100% !important;
    height: fit-content !important;
  }
}
@media (max-width: 991.98px) {
  .login-content {
    width: 100% !important;
    height: fit-content !important;
  }
}

.login-top .logo-mark img {
  width: 250px;
  height: auto;
}

.login-back .icon-sm {
  width: 24px;
}

.login-title {
  font-size: 40px;
  line-height: 60px;
  color: #1e1e1e;
  font-weight: 600;
  padding-bottom: 20px;
}

.login-sub {
  color: #3f3f3f;
  margin: 0 0 28px 0;
}

.input-pill {
  background: #fff;
  border: 1px solid rgba(63, 63, 63, 0.12);
  border-radius: 25px;
  padding: 8px 12px 8px 35px;
  position: relative;
}

.input-pill .form-control {
  border: none;
  background: transparent;
  padding-left: 8px;
}

.input-icon img {
  width: 20px;
  height: 20px;
}

.btn-icon {
  border: none;
  background: transparent;
  padding: 6px;
}

.btn-outline {
  display: flex;
  width: 77px;
  height: 54px;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  border: 1px solid var(--blue, #004784);
}

.login-foot {
  font-size: 16px;
  color: #3f3f3f;
}

@media (max-width: 767.98px) {
  .login-content {
    padding: 20px;
  }

  .login-title {
    font-size: 28px;
  }
}
.login-form .btn.btn-primary {
  display: flex;
  width: calc(100% - 77px);
  height: 55px;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--blue, #004784);
  color: var(--white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  text-transform: capitalize;
  border: 1px solid #004784;
}
.login-form .btn.btn-primary:hover {
  background-color: transparent;
  color: #004784;
}

.login-btns {
  margin-top: 40px;
}

.text-primary {
  color: #004784 !important;
}
.text-primary:hover {
  text-decoration: underline;
}

a.text-danger:hover {
  text-decoration: underline;
}

.login-back a:hover {
  text-decoration: underline;
}

.login-btns .btn.btn-outline {
  border-color: #004784 !important;
}

.login-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991.98px) {
  .login-top {
    flex-wrap: wrap;
    gap: 16px;
  }
}

.privacy-section {
  padding: 48px 0 80px 0;
}
.privacy-section .privacy-block {
  padding-bottom: 42px;
}
@media (max-width: 991.98px) {
  .privacy-section .privacy-block {
    padding-bottom: 30px;
  }
}
.privacy-section .privacy-block .privacy-title {
  color: var(--black, #000);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 166.667% */
  text-transform: capitalize;
}
.privacy-section .privacy-block .privacy-desc {
  color: var(--dark-gray, #3F3F3F);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 200% */
  letter-spacing: -0.64px;
  width: 90%;
}
@media (max-width: 991.98px) {
  .privacy-section .privacy-block .privacy-desc {
    width: 100%;
  }
}

.about-hero-wrap.privacy-bg {
  background-image: url(../img/pada/Privacy\ policy.png);
}

.about-hero-wrap.e-service {
  background-image: url(../img/pada/e-services.png);
}
.about-hero-wrap.edu-service {
  background-image: url(../img/pada/Educational\ Services.png);
}
.about-hero-wrap.med-service {
  background-image: url(../img/pada/medical\ services.png);
}
.about-hero-wrap.details-service {
  background-image: url(../img/pada/service\ details.png);
}

.e-service-section {
  padding-bottom: 80px;
  padding-top: 48px;
}
.e-service-section .services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 40px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .e-service-section .services-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .e-service-section .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991.98px) {
  .e-service-section .services-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 15px;
  }
}
.e-service-section .services-list .service-item {
  border-radius: 12px;
  background: var(--light-blue-bg, #f5fafc);
  display: flex;
  height: 310px;
  padding: 20px 20px 24px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-inline-end: 25px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  .e-service-section .services-list .service-item {
    height: 280px;
  }
}
.e-service-section .services-list .service-item:hover {
  outline: 1px solid #004784;
}
.e-service-section .services-list .service-item:hover h3 {
  color: #004784;
}
@media (max-width: 991.98px) {
  .e-service-section .services-list .service-item img {
    height: 60px;
    width: 60px;
  }
}
.e-service-section .services-list h3 {
  color: var(--black, #000);
  transition: all 0.3s ease-in-out;
  padding-top: 48px;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 166.667% */
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .e-service-section .services-list h3 {
    padding-top: 14px;
    font-size: 20px;
    line-height: 28px;
  }
}

/* === Service Details section (appended from Figma 224:6307) === */
.service-details-section {
  padding: 64px 0;
}

.service-details-card {
  border-radius: 12px;
  background: var(--light-blue-bg, #f5fafc);
  display: flex;
  padding: 37px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.service-details-title {
  color: var(--blue, #004784);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 166.667% */
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-details-title img {
  width: 40px;
  height: 40px;
}

.service-details-desc {
  color: #3f3f3f;
  font-size: 18px;
  margin-bottom: 18px;
}

.service-features {
  list-style-type: square;
  padding-left: 20px;
  margin-bottom: 18px;
}
.service-features li {
  color: var(--dark-gray, #3f3f3f);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 200% */
  letter-spacing: -0.64px;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .service-features li {
    font-size: 18px;
  }
}

.service-details-media img {
  max-width: 100%;
  border-radius: 8px;
}

@media (max-width: 991.98px) {
  .service-details-section {
    padding: 32px 0;
  }
}
.about-hero-wrap.contact-hero {
  background-image: url("../img/pada/contact.png");
  background-size: cover;
  height: 410px;
  background-position: center;
}

/* Branches detailed panel styles */
.branches-details .branches-panel {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.branches-tabs {
  gap: 16px;
  padding: 8px;
}

.branch-tab {
  background: transparent;
  border: none;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  cursor: pointer;
}

.branch-tab .tab-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.branch-tab.active {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-bottom: 2px solid #004784;
}

.branch-summary .summary-title,
.branch-details .summary-title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: #1e1e1e;
}

.work-time li,
.comm-list li {
  margin-bottom: 12px;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #1e1e1e;
}

.branch-details a.text-primary {
  color: #004784;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .branches-tabs {
    display: flex;
    gap: 12px;
    padding: 6px;
  }

  .branch-summary,
.branch-details {
    margin-bottom: 18px;
  }
}
/* === Pager styles (Figma 229:8329) === */
.pager-section {
  padding: 40px 0;
}

.pager-list {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
}

.pager-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1e1e1e;
  text-decoration: none;
}

.pager-item.active a {
  background: #004784;
  color: #fff;
  border-color: #004784;
}

.pager-item.prev a, .pager-item.next a {
  font-weight: 600;
}

/* Pager hero background */
.about-hero-wrap.pager-bg {
  background-image: url("../img/pada/pager-bg.png");
  background-size: cover;
  height: 360px;
  background-position: center;
}

/* === Offers page styles (Figma 229:8328) === */
.about-hero-wrap.offers-bg {
  background-image: url("../img/pada/discounts & offers.png");
  background-size: cover;
  height: 340px;
  background-position: center;
}

.offers-section {
  padding: 48px 0 80px 0;
}

.offers-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 16px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 56px;
  gap: 20px;
}

.offer-card {
  background: #fff;
  border-radius: 12px;
}
.offer-card .img-content {
  position: relative;
}
.offer-card .img-content .offer-badge {
  position: absolute;
  right: 0;
  border-radius: 0 12px;
  background: var(--blue, #004784);
  display: flex;
  width: 83px;
  height: 47px;
  padding: 16px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--white, #FFF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  text-transform: capitalize;
}
.offer-card .offer-content {
  text-align: center;
  background-color: #f5f5f5;
  padding-top: 12px;
}
.offer-card .offer-content h3 {
  color: var(--black, #1E1E1E);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 155.556% */
  text-transform: capitalize;
  margin: 0;
  padding-bottom: 12px;
}
.offer-card .offer-content p .price-black {
  color: var(--black, #000);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 166.667% */
  text-transform: capitalize;
}
.offer-card .offer-content p .price-blue {
  color: var(--dark-blue-80, #004784);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: line-through;
}
.offer-card .offer-content p .currency-blue {
  color: var(--dark-blue-80, #004784);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.offer-card .offer-content p .currency-black {
  color: var(--black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  text-transform: capitalize;
}

.offer-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px 8px 0 0px;
}

.offer-title {
  font-size: 20px;
  margin: 12px 0;
}

.offer-desc {
  color: #3f3f3f;
  padding-bottom: 12px;
}

@media (max-width: 991.98px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .offers-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.search-filter {
  display: flex;
  gap: 18px;
}
.search-filter .search-field {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(87, 87, 87, 0.2);
  background: var(--white, #FFF);
  display: flex;
  height: 56px;
  padding: 32px 16px;
  justify-content: space-between;
  align-items: center;
}
.search-filter .btn {
  position: absolute;
  border-radius: 100px;
  background: var(--blue, #004784);
  display: flex;
  height: 44px;
  padding: 8px 28px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  right: 16px;
  top: 25px;
}

/* === Branches / Contact controls section styles === */
.branches-section {
  padding-top: 24px;
  padding-bottom: 42px;
}

.branches-details {
  padding-bottom: 80px;
}

.branches-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.contact-pills.nav.nav-pills .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 48px;
  border-radius: 80px;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 200% */
  letter-spacing: -0.64px;
  text-transform: capitalize;
  min-width: 329px;
  height: 56px;
}
.contact-pills.nav.nav-pills .pill-outline {
  background: transparent;
  border: 1px solid rgba(87, 87, 87, 0.2);
  color: #1e1e1e;
}
.contact-pills.nav.nav-pills .pill-filled {
  background: #004784;
  color: #ffffff;
}

.branches-header {
  margin: 48px 0;
}
@media (max-width: 991.98px) {
  .branches-header {
    margin: 32px 0;
  }
}

.contact-pills {
  padding-top: 56px;
}

.contact-form {
  padding-bottom: 80px !important;
}

.branches-title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  color: #1e1e1e;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .branches-title {
    font-size: 30px;
  }
}

.branches-desc {
  font-family: "Sora", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3f3f3f;
  margin-top: 8px;
}

.about-hero-wrap.contact-hero {
  background-image: url("../img/pada/contact.png");
  background-size: cover;
  height: 410px;
  background-position: center;
}

/* Branches detailed panel styles */
.branches-details .branches-panel {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.branches-tabs {
  gap: 16px;
  padding: 8px;
}

.branch-tab {
  background: transparent;
  border: none;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  cursor: pointer;
}

.branch-tab .tab-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.branch-tab.active {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-bottom: 2px solid #004784;
}

.branch-summary .summary-title,
.branch-details .summary-title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  color: #1e1e1e;
  margin-bottom: 32px;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .branch-summary .summary-title,
.branch-details .summary-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
}

.work-time li,
.comm-list li, .address-details {
  margin-bottom: 24px;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  line-height: 24px;
  align-items: center;
  gap: 8px;
  display: flex;
  color: #1e1e1e;
}
@media (max-width: 991.98px) {
  .work-time li,
.comm-list li, .address-details {
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }
}

.branch-details a.text-primary {
  color: #004784 !important;
  font-weight: 600 !important;
}
.branch-details a.text-primary:hover {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .branches-tabs {
    display: flex;
    gap: 12px;
    padding: 6px;
    flex-wrap: wrap;
  }

  .branch-summary,
.branch-details {
    margin-bottom: 18px;
  }
}
.branches-panel.card {
  border-radius: 24px;
  background: var(--light-blue-bg, #F5FAFC);
  border: 0;
  display: flex;
  justify-content: space-between;
}

.contact-form {
  background-image: url(../img/pada/sta.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.branches-tabs .nav-tabs {
  border-bottom: 0;
}
.branches-tabs .nav-tabs .nav-link {
  border: 0;
  color: var(--dark-gray, #3F3F3F);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 155.556% */
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .branches-tabs .nav-tabs .nav-link {
    text-align: start;
  }
}
.branches-tabs .nav-tabs .nav-link span {
  position: relative;
}
.branches-tabs .nav-tabs .nav-link span:after {
  content: "";
  height: 3px;
  width: 100%;
  bottom: -10px;
  left: 0;
  display: block;
  position: absolute;
  opacity: 0;
}
.branches-tabs .nav-tabs .nav-link.active {
  color: #004784;
}
.branches-tabs .nav-tabs .nav-link.active span:after {
  background: #004784;
  opacity: 1;
}
@media (max-width: 991.98px) {
  .branches-tabs .nav-tabs .nav-link.active span:after {
    opacity: 0;
  }
}
.branches-tabs nav {
  border-radius: 12px;
  background: var(--white, #FFF);
  width: 50%;
  height: fit-content;
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .branches-tabs nav {
    width: 100%;
    height: auto;
  }
}

.map-main {
  position: relative;
}

.map-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100px;
}
@media (max-width: 991.98px) {
  .map-container {
    position: static;
  }
}

.map-container iframe {
  width: 100%;
  height: calc(100% + 100px);
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .map-container iframe {
    height: auto;
  }
}

/* Contact form - Figma inspired inputs */
.contact-form-card,
.contact-form {
  background: transparent;
}

.contact-form .input-box {
  margin-bottom: 0;
}

.input-with-icon {
  position: relative;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

.input-with-icon .country-flag {
  width: 28px;
  height: 28px;
}

.rounded-input {
  width: 100%;
  height: 50px;
  padding: 12px 18px 12px 52px;
  /* leave space for icon */
  border: 1px solid rgba(63, 63, 63, 0.2);
  border-radius: 25px;
  background: transparent;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: var(--dark-gray, #3f3f3f);
}

.textarea-wrap .input-icon.align-top {
  top: 35px;
}

.textarea-input {
  min-height: 151px;
  padding-top: 22px;
  padding-bottom: 22px;
  resize: vertical;
}

.custom-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
}

.select-wrap {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  opacity: 0.9;
  display: none;
}

.contact-form .nice-select:after {
  width: 10px;
  height: 10px;
  right: 25px;
}

/* small responsive tweaks to keep inputs stacked nicely */
@media (max-width: 767.98px) {
  .input-with-icon .input-icon {
    left: 12px;
  }

  .rounded-input {
    padding-left: 48px;
  }
}
.contact-form-section {
  border: 1px solid var(--white, #FFF);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.7) 100%, rgba(0, 114, 178, 0.3) 100%);
  background-blend-mode: hard-light;
  position: relative;
}
.contact-form-section:after {
  background-image: url(../img/pada/sta.png);
  background-size: cover;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-blend-mode: hard-light;
  z-index: -1;
}

.submit-contact {
  display: flex;
  width: 140px;
  height: 45px;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
  border-radius: 100px;
  background: var(--blue, #004784) !important;
  color: var(--white, #FFF) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  text-transform: capitalize;
  margin: auto;
  border: 1px solid #004784 !important;
}
.submit-contact:hover {
  background-color: transparent !important;
  color: #004784 !important;
}

.contact-form .nice-select.open .list {
  width: 100%;
}

.input-with-icon.select-wrap .input-icon {
  top: 25px;
}

.contact-form .nice-select {
  line-height: 28px;
}

@media (max-width: 991.98px) {
  .branches-controls {
    flex-wrap: wrap;
  }
}

@media (max-width: 991.98px) {
  .contact-form .me-3.flex-fill {
    margin-right: 0 !important;
  }
}

@media (max-width: 991.98px) {
  .contact-form .flex-wrap {
    gap: 15px;
  }
}

.mission-vision-values {
  padding: 48px 0 80px 0;
}
.mission-vision-values .mission-row {
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .mission-vision-values .mission-row {
    gap: 24px;
  }
}
.mission-vision-values .mission-item {
  border-radius: 12px;
  background: var(--light-blue-bg, #F5FAFC);
  display: flex;
  padding: 28px;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.mission-vision-values .mission-item ul {
  list-style-type: square;
}
.mission-vision-values .mission-item h3 {
  color: var(--dark-blue-80, #004784);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 166.667% */
  text-transform: capitalize;
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 40px;
}
@media (max-width: 991.98px) {
  .mission-vision-values .mission-item h3 {
    padding-bottom: 20px;
  }
}
.mission-vision-values .mission-item p {
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 155.556% */
  text-transform: capitalize;
}
.mission-vision-values .value-img {
  border-radius: 12px;
  height: 348px;
}
@media (max-width: 991.98px) {
  .mission-vision-values .value-img {
    margin-top: 24px;
  }
}

.about-hero-wrap.faq-bg {
  background-image: url(../img/pada/faq.png);
}

.faq-main {
  padding: 48px 0 80px 0;
}
.faq-main .faq-title {
  text-align: center;
  color: var(--black, #1E1E1E);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  /* 150% */
  text-transform: capitalize;
}
.faq-main .faq-btn {
  display: flex;
  width: 329px;
  padding: 8px 48px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 80px;
  background: var(--blue, #004784);
  color: var(--white, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 200% */
  letter-spacing: -0.64px;
  text-transform: capitalize;
  margin: 48px auto 0 auto;
}
.faq-main .faq-btn:hover {
  background-color: transparent;
  border: 1px solid #004784;
  color: #004784;
}
.faq-main .accordion {
  padding-top: 56px;
}
.faq-main .accordion .accordion-item {
  border: 0;
  border-radius: 12px;
  background: var(--light-blue-bg, #F5FAFC);
  margin-bottom: 20px;
}
.faq-main .accordion .accordion-item .accordion-button {
  color: #004784;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  background-color: transparent;
  padding: 18px;
  /* show plus when collapsed */
  /* show minus when expanded */
}
@media (max-width: 991.98px) {
  .faq-main .accordion .accordion-item .accordion-button {
    font-size: 18px;
  }
}
.faq-main .accordion .accordion-item .accordion-button .acc-icon {
  margin-left: auto;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: #004784;
  font-size: 35px;
  transition: transform 0.15s ease, color 0.15s ease;
}
.faq-main .accordion .accordion-item .accordion-button.collapsed {
  color: #000 !important;
}
.faq-main .accordion .accordion-item .accordion-button.collapsed .acc-icon::before {
  display: none;
}
.faq-main .accordion .accordion-item .accordion-button:not(.collapsed) .acc-icon::before {
  display: none;
}
.faq-main .accordion .accordion-item .accordion-button::after {
  display: block !important;
  background-image: url(../img/icons/arrow-circle-up.svg) !important;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
}
.faq-main .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url(../img/icons/arrow-circle-up.svg) !important;
  filter: invert(14%) sepia(81%) saturate(3120%) hue-rotate(194deg) brightness(98%) contrast(103%);
}

.have-ques-main {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
  align-items: center;
}
@media (max-width: 991.98px) {
  .have-ques-main {
    flex-wrap: wrap;
    gap: 24px;
  }
}
.have-ques-main h1 {
  color: var(--black, #1E1E1E);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  /* 150% */
  text-transform: capitalize;
  padding-bottom: 32px;
}
.have-ques-main p {
  color: var(--dark-gray, #3F3F3F);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 200% */
  letter-spacing: -0.64px;
  text-transform: capitalize;
  width: 60%;
}
@media (max-width: 991.98px) {
  .have-ques-main p {
    width: 100%;
  }
}
.have-ques-main .btn.btn-primary {
  color: var(--white, #FFF);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
  text-transform: capitalize;
  display: flex;
  padding: 12px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--blue, #004784);
}
.have-ques-main .btn.btn-primary:hover {
  background-color: transparent;
  border: 1px solid #004784;
  color: #004784;
}

.have-ques {
  background-image: url(../img/pada/sta.png);
  background-repeat: repeat;
  background-size: contain;
}
.have-ques p {
  color: var(--dark-gray, #3F3F3F);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 200% */
  letter-spacing: -0.64px;
  text-transform: capitalize;
}

.disabled-conditions {
  list-style-type: square;
}

.about-hero-wrap.disabled-rights {
  background-image: url(../img/pada/Disabled\ Rights.png);
}

.disabled-right-section {
  padding-top: 48px;
}
.disabled-right-section .accordion {
  margin-inline-start: 46px;
}
@media (max-width: 991.98px) {
  .disabled-right-section .accordion {
    margin-inline-start: 0;
    margin-top: 30px;
  }
}

.rights-desc {
  padding-bottom: 80px;
}
.rights-desc .rights-block {
  padding-top: 48px;
}
@media (max-width: 991.98px) {
  .rights-desc .rights-block {
    padding-top: 20px;
  }
}
.rights-desc .rights-block h3 {
  color: var(--dark-blue-80, #004784);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 166.667% */
  text-transform: capitalize;
  padding-bottom: 24px;
}
.rights-desc .rights-block p, .rights-desc .rights-block li {
  color: var(--dark-gray, #3F3F3F);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 200% */
  letter-spacing: -0.64px;
  text-transform: capitalize;
}
.rights-desc .rights-block li a {
  color: var(--dark-blue-80, #004784);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 200% */
  letter-spacing: -0.64px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.rights-desc .rights-block li a:hover {
  color: #000;
  text-decoration: none;
}

.statistics-main {
  padding: 48px 0 0 0;
  background-image: url(../img/pada/sta.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* inner progress bar */
  /* small screens: stack nicely */
}
.statistics-main .row.ready {
  align-items: center;
  position: relative;
}
.statistics-main .row.ready:last-of-type {
  padding-bottom: 80px;
}
.statistics-main .statistics-head {
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  padding: 30px 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
@media (max-width: 991.98px) {
  .statistics-main .statistics-head {
    flex-wrap: wrap;
    padding: 10px;
    margin-bottom: 18px;
  }
}
.statistics-main .statistics-head .date {
  color: var(--black, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.statistics-main .statistics-head .user-stat {
  display: flex;
  align-items: center;
}
.statistics-main .statistics-head .user-stat h4 {
  color: var(--black, #000);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 155.556% */
  text-transform: capitalize;
  padding-bottom: 18px;
}
@media (max-width: 991.98px) {
  .statistics-main .statistics-head .user-stat h4 {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.statistics-main .statistics-head .user-stat p {
  color: var(--blue, #004784);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  /* 150% */
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .statistics-main .statistics-head .user-stat p {
    font-size: 30px;
    line-height: 40px;
  }
}
.statistics-main .icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #000;
  font-size: 20px;
}
.statistics-main .label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  padding-bottom: 15px;
}
.statistics-main .label .name {
  font-size: 16px;
}
.statistics-main .value {
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  padding-left: 8px;
  min-width: 60px;
  text-align: right;
  color: #0b2140;
  /* text-align: right; */
  position: absolute;
  right: 0;
  top: -18px;
}
.statistics-main .progress {
  grid-column: 2/span 2;
  height: 10px;
  width: 100%;
  background: transparent;
  border-radius: 999px;
  overflow: visible;
  position: relative;
  margin-top: 6px;
  padding-left: 0;
}
.statistics-main .progress > .fill {
  height: 100%;
  width: 0%;
  background: #004784;
  border-radius: 999px;
  transition: width 1.6s ease;
  position: relative;
}
.statistics-main .statistics-img {
  height: 468px;
}
@media (max-width: 700px) {
  .statistics-main .statistics-main .value {
    grid-column: 1/-1;
    text-align: right;
    padding-right: 4px;
  }
}

.about-hero-wrap.statistics-bg {
  background-image: url(../img/pada/Statistics.png);
}

.sta-header {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 52px;
}
.sta-header h1 {
  padding-bottom: 24px;
  color: var(--black, #1E1E1E);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  /* 150% */
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .sta-header h1 {
    font-size: 30px;
    line-height: 40px;
  }
}

.stat-main .row {
  flex-wrap: nowrap;
  flex-direction: row;
  padding-top: 24px;
}

.about-hero-wrap.search-bg {
  background-image: url(../img/pada/search.png);
}

.seaech-content {
  padding: 48px 0 80px 0;
}
.seaech-content h1 {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  text-transform: capitalize;
  padding-bottom: 56px;
}
@media (max-width: 991.98px) {
  .seaech-content h1 {
    padding-bottom: 20px;
    font-size: 30px;
  }
}
.seaech-content h1 span {
  color: var(--blue, #004784);
}
.seaech-content ul {
  list-style: none;
}
.seaech-content ul li {
  height: 104px;
  padding: 32px;
  margin-bottom: 28px;
  border-radius: 12px;
  background: var(--light-blue-bg, #f5fafc);
}
@media (max-width: 991.98px) {
  .seaech-content ul li {
    margin-bottom: 18px;
    padding: 15px;
    height: fit-content;
  }
}
.seaech-content ul li a {
  justify-content: space-between;
  align-items: center;
  display: flex;
  transition: all 0.3s ease-in-out;
}
.seaech-content ul li a img {
  transition: all 0.3s ease-in-out;
}
.seaech-content ul li a:hover span {
  color: #004784;
}
.seaech-content ul li a:hover img {
  filter: invert(14%) sepia(81%) saturate(3120%) hue-rotate(194deg) brightness(98%) contrast(103%);
}
.seaech-content ul li span {
  color: var(--black, #000);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  line-height: normal;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .seaech-content ul li span {
    font-size: 18px;
  }
}

.about-hero-wrap.law-bg {
  background-image: url(../img/pada/law.png);
}
.about-hero-wrap.org-bg {
  background-image: url(../img/pada/Organizational\ Structure.png);
}

.sliderTab {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0 0 62px 0;
}
@media (max-width: 479px) {
  .sliderTab {
    width: 100%;
  }
}
.sliderTab.org-slider .swiper-slide {
  display: flex;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: auto;
  border-radius: 80px;
  border: 1px solid rgba(87, 87, 87, 0.2);
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 200% */
  letter-spacing: -0.64px;
  text-transform: capitalize;
  background-color: transparent;
  height: 40px !important;
}
.sliderTab.org-slider .swiper-slide.on {
  background-color: #2F3A5A;
}
.sliderTab.org-slider .swiper-slide.on:after {
  display: none;
}
.sliderTab.org-slider .swiper-slide.on img {
  filter: brightness(0) invert(1);
}
.sliderTab.org-slider a {
  flex-direction: row !important;
  align-items: center;
}
.sliderTab .swiper-wrapper {
  display: flex;
  width: 100%;
}
.sliderTab .swiper-slide {
  border-radius: 12px;
  background: var(--light-blue-bg, #F5FAFC);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.64px;
  text-transform: capitalize;
  padding: 15px 29px;
  height: auto !important;
}
.sliderTab .swiper-slide:after {
  content: "";
  position: absolute;
  bottom: -29px;
  left: 50%;
  width: 25px;
  height: 30px;
  background: #2F3A5A;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.sliderTab .swiper-slide a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sliderTab .swiper-slide a img {
  width: 36px;
  height: 36px;
}
.sliderTab .swiper-slide .text {
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.64px;
  text-transform: capitalize;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .sliderTab .swiper-slide .text {
    font-size: 16px;
  }
}
.sliderTab .swiper-slide.on {
  background-color: #2F3A5A;
}
.sliderTab .swiper-slide.on:after {
  opacity: 1;
  visibility: visible;
}
.sliderTab .swiper-slide.on .text {
  color: #fff;
}

.sliderContent {
  width: 100%;
}
.sliderContent .swiper-slide .content {
  border-radius: 12px;
  background: var(--light-blue-bg, #F5FAFC);
  padding: 37px 40px;
}
@media (max-width: 991.98px) {
  .sliderContent .swiper-slide .content {
    padding: 20px;
  }
}
.sliderContent .swiper-slide .content p {
  margin-bottom: 30px;
  color: var(--dark-gray, #3F3F3F);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.64px;
  text-transform: capitalize;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  .sliderContent .swiper-slide .content p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 28px;
  }
}
.sliderContent .swiper-slide .content .title {
  margin-bottom: 24px;
  color: var(--dark-blue-80, #004784);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 40px;
}
@media (max-width: 991.98px) {
  .sliderContent .swiper-slide .content .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.slider-main {
  padding: 48px 0 80px 0;
}

.news-details-main {
  padding: 48px 0 80px 0;
}
.news-details-main .details-title {
  color: var(--blue, #004784);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 166.667% */
  text-transform: capitalize;
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .news-details-main .details-title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
.news-details-main .details-date {
  padding: 32px 0 20px 0;
}
.news-details-main .details-desc .details-list {
  list-style: square;
  margin-bottom: 24px;
  padding-left: 15px;
}
.news-details-main .details-desc .details-list li {
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 200% */
  letter-spacing: -0.64px;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .news-details-main .details-desc .details-list li {
    font-size: 16px;
  }
}
.news-details-main .details-desc p {
  color: var(--black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  /* 200% */
  letter-spacing: -0.64px;
  margin-bottom: 24px;
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .news-details-main .details-desc p {
    font-size: 16px;
  }
}

.main-photo {
  height: 100%;
}

.photo-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-gallery {
  padding-top: 52px;
}
@media (max-width: 991.98px) {
  .news-gallery {
    padding-top: 16px;
  }
}
.news-gallery h1 {
  color: var(--black, #1E1E1E);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  /* 150% */
  text-transform: capitalize;
}
@media (max-width: 991.98px) {
  .news-gallery h1 {
    font-size: 30px;
    line-height: 30px;
  }
}
.news-gallery p {
  color: var(--dark-gray, #3F3F3F);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  text-transform: capitalize;
  padding-top: 24px;
  padding-bottom: 40px;
}
@media (max-width: 991.98px) {
  .news-gallery p {
    padding-top: 10px;
    line-height: 30px;
    padding-bottom: 10px;
  }
}

.gallery-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 40px;
  row-gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .gallery-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991.98px) {
  .gallery-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .gallery-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gallery-cards .media-card .media-excerpt {
  color: var(--dark-gray, #3F3F3F);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  text-transform: capitalize;
  text-align: start;
  padding: 14px 0;
}
.gallery-cards .media-card .media-thumb {
  position: relative;
}
.gallery-cards .media-card .media-thumb img {
  width: 100%;
  height: 271px;
  border-radius: 12px;
}
.gallery-cards .media-card .media-thumb .media-date {
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--blue, #004784);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  text-transform: capitalize;
  border-radius: 0 12px;
  background: var(--white, #FFF);
  display: flex;
  height: 31px;
  padding: 4px 7px 3px 6px;
  justify-content: center;
  align-items: center;
}
.gallery-cards .media-card .media-body .normal-date {
  color: var(--blue, #004784);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  text-transform: capitalize;
}
.gallery-cards .media-card .media-body .media-readmore {
  color: var(--black, #1E1E1E);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  text-transform: capitalize;
  display: block;
  transition: all 0.3s ease-in-out;
  padding-top: 14px;
}
.gallery-cards .media-card .media-body .media-readmore img {
  transition: all 0.3s ease-in-out;
}
.gallery-cards .media-card .media-body .media-readmore:hover {
  color: #004784;
}
.gallery-cards .media-card .media-body .media-readmore:hover img {
  filter: invert(14%) sepia(81%) saturate(3120%) hue-rotate(194deg) brightness(98%) contrast(103%);
}
.gallery-cards .media-card .media-body h3 {
  color: var(--black, #1E1E1E);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  /* 155.556% */
  text-transform: capitalize;
  padding-top: 24px;
}

.photo-grid .gallery-cards {
  display: contents;
}

.page-numbers {
  display: flex;
  gap: 16px;
  align-items: center;
}

/******video-details******/
/* Video details styles */
.video-details-main {
  padding: 48px 0;
}

.video-hero {
  margin-bottom: 36px;
}

.video-player-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Controls / timeline visuals */
.video-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 28px;
  box-sizing: border-box;
}

.timeline {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

.timeline-full {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.06);
}

.timeline-loaded {
  position: absolute;
  left: 48px;
  top: 0;
  bottom: 0;
  width: 40%;
  background: rgba(255, 255, 255, 0.12);
}

.timeline-played {
  position: absolute;
  left: 48px;
  top: 0;
  bottom: 0;
  width: 28%;
  background: #ae161b;
}

.controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.controls-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ctrl {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctrl img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.time-text {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Sora", sans-serif;
  font-size: 14px;
}

.controls-right .ctrl img {
  filter: none;
}

.video-meta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-date {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #3f3f3f;
}

.meta-date img {
  width: 18px;
  height: 18px;
}

.video-title {
  font-family: "Sora", sans-serif;
  color: #004784;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  margin: 0;
}

.video-content {
  margin-top: 32px;
}

.video-desc {
  color: #3f3f3f;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.related-videos {
  margin-top: 40px;
}

.related-videos h3 {
  font-family: "Sora", sans-serif;
  color: #1e1e1e;
  font-size: 20px;
  margin-bottom: 18px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.video-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.video-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 71, 132, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 24px;
  height: 24px;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 12px;
  color: #fff;
}

.video-overlay h4 {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-thumb {
    height: 140px;
  }
}
@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .ctrl img {
    width: 16px;
    height: 16px;
  }
}
.news-gallery .video-grid {
  margin-top: 40px;
}

/* Survey / questionnaire styles (matches Figma layout) */
:root {
  --blue: #004784;
  --light-bg: #f5fafc;
  --card-bg: #ffffff;
  --text: #1e1e1e;
}

.survey-main {
  padding: 48px 0;
  background: transparent;
}

.survey-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 32px 40px;
  box-sizing: border-box;
}

.survey-title {
  color: var(--blue);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 12px;
}

.survey-progress {
  margin-bottom: 20px;
}

.progress-meta {
  font-family: "Sora", sans-serif;
  color: #3f3f3f;
  font-size: 14px;
  margin-bottom: 8px;
}

.progress-bar {
  position: relative;
  height: 6px;
  background: transparent;
  border-radius: 6px;
}

.progress-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #eef6f8;
  border-radius: 6px;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--blue);
  border-radius: 6px;
}

.question {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  margin: 18px 0;
}

.survey-form {
  margin-top: 8px;
}

.options {
  border: 0;
  padding: 0;
  margin: 0;
}

.option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 12px;
  cursor: pointer;
  border: 1px solid rgba(87, 87, 87, 0.06);
  transition: all 0.18s ease;
}

.option-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: auto;
}

.option-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.option-title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #111;
}

.option-check {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-check img {
  width: 20px;
  height: 20px;
  opacity: 0;
  transition: opacity 0.12s ease;
}

/* Show check when radio is checked */
.option-card input:checked + .option-body + .option-check img {
  opacity: 1;
}

.option-card input:checked ~ .option-check img {
  opacity: 1;
}

.survey-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  gap: 10px;
}

.btn-next {
  background: var(--blue);
  color: #fff;
  border: 0;
  padding: 10px 22px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  border: 1px solid #004784;
}
.btn-next:hover {
  background-color: transparent;
  color: #004784;
}
.btn-next:hover img {
  filter: invert(56%) sepia(133%) saturate(2987%) hue-rotate(159deg) brightness(83%) contrast(82%);
}

.btn-next img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease-in-out;
}

/* Back / secondary button */
.btn-back {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 10px 22px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}
.btn-back:hover {
  background-color: #004784;
  color: #fff;
}
.btn-back:hover img {
  filter: brightness(0) invert(1);
}

.btn-back img {
  width: 18px;
  height: 18px;
  filter: none;
  transition: all 0.3s ease-in-out;
}

/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .survey-card {
    padding: 20px;
  }

  .btn-next {
    justify-content: center;
  }
}
.about-hero-wrap.ques-bg {
  background-image: url("../img/pada/Questionnaire.png");
}

/* Photo Gallery Styles */
/* Gallery Header */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  margin-top: 64px;
}

.gallery-title-section .gallery-main-title {
  font-family: "Sora", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  color: #1e1e1e;
  margin: 0 0 16px;
  text-transform: capitalize;
}

.gallery-title-section .gallery-subtitle {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #3f3f3f;
  margin: 0;
}

/* Search and Sort */
.gallery-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(87, 87, 87, 0.2);
  border-radius: 24px;
  padding: 6px 16px;
  background: #fff;
  width: 571px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.search-input {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border: none;
  outline: none;
  width: 100%;
  color: #3f3f3f;
}

.search-button {
  background: #004784;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 28px;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-button:hover {
  background: #003666;
}

.sort-button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 32px;
  border: 1px solid rgba(87, 87, 87, 0.2);
  border-radius: 100px;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.3s ease;
}

.sort-button:hover {
  border-color: #004784;
}

/* Gallery Filter */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 80px 0;
}

.nav-pills {
  justify-content: center;
  gap: 24px;
}

.nav.nav-pills .nav-link {
  padding: 8px 48px;
  border-radius: 80px;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  border: 1px solid rgba(87, 87, 87, 0.2);
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  color: var(--black, #000);
  font-weight: 400;
  letter-spacing: -0.64px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav.nav-pills .nav-link.active {
  background: #004784;
  color: #fff;
  border-color: #004784;
}

.nav.nav-pills .nav-link:hover:not(.active) {
  border-color: #004784;
  color: #004784;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  row-gap: 56px;
}

.photo-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 380/245;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  animation: galleryFadeIn 0.7s cubic-bezier(0.23, 1.01, 0.32, 1) forwards;
}

.photo-item:nth-child(1) {
  animation-delay: 0.05s;
}

.photo-item:nth-child(2) {
  animation-delay: 0.12s;
}

.photo-item:nth-child(3) {
  animation-delay: 0.19s;
}

.photo-item:nth-child(4) {
  animation-delay: 0.26s;
}

.photo-item:nth-child(5) {
  animation-delay: 0.33s;
}

.photo-item:nth-child(6) {
  animation-delay: 0.4s;
}

@keyframes galleryFadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}
.photo-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.photo-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.23, 1.01, 0.32, 1), transform 0.4s cubic-bezier(0.23, 1.01, 0.32, 1);
}

.photo-item:hover .photo-overlay {
  opacity: 1;
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.photo-item:hover .photo-thumb {
  transform: scale(1.1);
}

.photo-overlay h3 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
}

.photo-date {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Magnific Popup Customization */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-bg {
  background: linear-gradient(120deg, #004784 0%, #00263b 100%) !important;
  opacity: 0.92 !important;
}

.mfp-image-holder .mfp-close {
  color: #fff !important;
  font-size: 32px !important;
  top: 10px !important;
  right: 20px !important;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.mfp-image-holder .mfp-close:hover {
  opacity: 1;
}

.mfp-arrow {
  background: rgba(0, 71, 132, 0.85);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  top: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: background 0.2s;
  opacity: 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Keep the triangular arrows using the default bordered pseudo-elements
   but reduce their size so they fit inside our circular button */
.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  margin-top: 18px;
  /* vertically center the triangle */
  margin-left: 18px;
  /* horizontally center baseline */
  border-style: solid;
  border-color: transparent;
}

.mfp-arrow:before {
  /* shadow/outline of the arrow */
  border-top-width: 11px;
  border-bottom-width: 11px;
  opacity: 0.7;
}

.mfp-arrow:after {
  /* white arrow on top */
  border-top-width: 7px;
  border-bottom-width: 7px;
}

.mfp-arrow-left:after {
  border-right: 10px solid #fff;
  margin-left: 14px;
}

.mfp-arrow-left:before {
  border-right: 16px solid rgba(0, 0, 0, 0.35);
  margin-left: 12px;
}

.mfp-arrow-right:after {
  border-left: 10px solid #fff;
  margin-left: 18px;
}

.mfp-arrow-right:before {
  border-left: 16px solid rgba(0, 0, 0, 0.35);
  margin-left: 14px;
}

.mfp-arrow:hover {
  background: #00263b;
}

/* Ensure arrows and close button are clickable and visible above overlay/content */
.mfp-wrap .mfp-arrow,
.mfp-image-holder .mfp-close {
  position: absolute;
  z-index: 99999;
  /* ensure above bg and content */
  pointer-events: auto;
}

/* Position arrows so they sit outside the image on desktop but inside on small screens */
.mfp-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mfp-arrow.mfp-arrow-left {
  left: 12px;
}

.mfp-arrow.mfp-arrow-right {
  right: 12px;
}

@media (min-width: 1200px) {
  .mfp-arrow.mfp-arrow-left {
    left: 0;
  }

  .mfp-arrow.mfp-arrow-right {
    right: 0;
  }
}
/* Make sure the clickable area covers the button fully (some themes use pseudo elements) */
.mfp-arrow, .mfp-arrow:before, .mfp-arrow:after {
  pointer-events: auto;
}

/* Close button specifics */
.mfp-image-holder .mfp-close {
  right: 18px;
  top: 12px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure the figure/container doesn't capture pointer-events and block arrows */
.mfp-figure, .mfp-content, .mfp-image-holder {
  pointer-events: auto;
}

.mfp-title {
  color: #fff;
  background: #004784;
  padding: 12px 24px;
  border-radius: 0 0 16px 16px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
  text-align: left;
}

.mfp-figure {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.mfp-image-holder .mfp-content {
  animation: popupZoomIn 0.5s cubic-bezier(0.23, 1.01, 0.32, 1);
}

@keyframes popupZoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pagination button {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.page-number {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #000;
}

.page-number.active {
  background: #004784;
  color: #fff;
  border: none;
}

.pagination button:hover {
  background: #004784;
  color: #fff;
  border: none;
}

.pagination button:hover img {
  filter: brightness(0) invert(1);
}

.page-dots {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #000;
}

/* Responsive */
@media (max-width: 1600px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1200px) {
  .gallery-header {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .gallery-actions {
    width: 100%;
    flex-direction: column;
  }

  .search-bar {
    width: 100%;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-filter {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .gallery-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .pagination {
    flex-wrap: wrap;
  }
}
.prev-page,
.next-page {
  display: flex;
  width: 50px;
  height: 50px;
  padding: 13px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--dark-gray, #3F3F3F);
}

.next-page {
  border-color: #004784;
}

/* Video Gallery Styles */
/* Gallery Header */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.gallery-title-section .gallery-main-title {
  font-family: "Sora", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  color: #1e1e1e;
  margin: 0 0 16px;
  text-transform: capitalize;
}

/* Search and Sort */
.gallery-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(87, 87, 87, 0.2);
  border-radius: 24px;
  padding: 6px 16px;
  background: #fff;
  max-width: 571px;
  width: auto;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.search-input {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border: none;
  outline: none;
  width: 100%;
  color: #3f3f3f;
}

.search-button {
  background: #004784;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 28px;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-button:hover {
  background: #003666;
}

.sort-button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 32px;
  border: 1px solid rgba(87, 87, 87, 0.2);
  border-radius: 100px;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.3s ease;
}

.sort-button:hover {
  border-color: #004784;
}

/* Gallery Filter */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.filter-btn {
  padding: 8px 48px;
  border-radius: 80px;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  border: 1px solid rgba(87, 87, 87, 0.2);
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.filter-btn.active {
  background: #004784;
  color: #fff;
  border-color: #004784;
}

.filter-btn:hover:not(.active) {
  border-color: #004784;
  color: #004784;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  row-gap: 56px;
}

.video-item {
  position: relative;
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  animation: videoFadeIn 0.7s cubic-bezier(0.23, 1.01, 0.32, 1) forwards;
}

.video-item img {
  width: 100%;
  height: 271px;
  border-radius: 12px;
}

.video-item .media-body h3 {
  color: var(--black, #1E1E1E);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
  padding-top: 24px;
}

.video-item:nth-child(1) {
  animation-delay: 0.05s;
}

.video-item:nth-child(2) {
  animation-delay: 0.12s;
}

.video-item:nth-child(3) {
  animation-delay: 0.19s;
}

.video-item:nth-child(4) {
  animation-delay: 0.26s;
}

.video-item:nth-child(5) {
  animation-delay: 0.33s;
}

.video-item:nth-child(6) {
  animation-delay: 0.4s;
}

@keyframes videoFadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}
.video-link {
  display: block;
  width: 100%;
  position: relative;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
}
.video-link:after {
  border-radius: 12px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.gallery-cards {
  row-gap: 56px;
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.23, 1.01, 0.32, 1);
  z-index: 2;
}

.play-icon {
  width: 48px;
  height: 48px;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.23, 1.01, 0.32, 1), transform 0.4s cubic-bezier(0.23, 1.01, 0.32, 1);
}

.video-item:hover .video-overlay {
  opacity: 1;
  transform: translateY(0) scale(1.03);
}

.video-item:hover .video-thumb {
  transform: scale(1.1);
}

.video-item:hover .play-button {
  transform: translate(-50%, -50%) scale(1);
}

.video-overlay h3 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
}

.video-date {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Magnific Popup Video Customization */
.mfp-fade-custom .mfp-content {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s cubic-bezier(0.23, 1.01, 0.32, 1);
}

.mfp-fade-custom.mfp-ready .mfp-content {
  opacity: 1;
  transform: scale(1);
}

.mfp-fade-custom.mfp-removing .mfp-content {
  opacity: 0;
  transform: scale(0.95);
}

.mfp-bg {
  background: linear-gradient(120deg, #004784 0%, #00263b 100%) !important;
  opacity: 0.95 !important;
}

.mfp-iframe-holder .mfp-close {
  color: #fff !important;
  font-size: 32px !important;
  top: -40px !important;
  right: -6px !important;
}

.mfp-iframe-scaler iframe {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25) !important;
  border-radius: 8px !important;
}

/* Navigation Arrows */
.mfp-arrow {
  margin: 0 !important;
  padding: 0 !important;
  transform: scale(0.85);
  width: 48px !important;
  height: 48px !important;
  background: rgba(0, 71, 132, 0.85) !important;
  border-radius: 50% !important;
  transition: background 0.3s ease !important;
}

.mfp-arrow:hover {
  background: #00263b !important;
}

.mfp-arrow:before,
.mfp-arrow:after {
  border: none !important;
  margin: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

.mfp-arrow:before {
  font-family: Arial, sans-serif;
  font-size: 24px;
  color: #fff;
  line-height: 48px;
  text-align: center;
  width: 48px !important;
  height: 48px !important;
  display: block;
  opacity: 1 !important;
}

.mfp-arrow-left:before {
  content: "‹" !important;
}

.mfp-arrow-right:before {
  content: "›" !important;
}

.mfp-arrow-left {
  left: 24px !important;
}

.mfp-arrow-right {
  right: 24px !important;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pagination button {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #3f3f3f;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.page-number {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #000;
}

.page-number.active {
  background: #004784;
  color: #fff;
  border: none;
}

.page-dots {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: #000;
}

/* Responsive */
@media (max-width: 1600px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1200px) {
  .gallery-header {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .gallery-actions {
    width: 100%;
    flex-direction: column;
  }

  .search-bar {
    width: 100%;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-filter {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-filter {
    flex-direction: column;
    align-items: stretch;
  }

  .pagination {
    flex-wrap: wrap;
  }

  .mfp-arrow {
    transform: scale(0.7);
  }

  .mfp-arrow-left {
    left: 10px !important;
  }

  .mfp-arrow-right {
    right: 10px !important;
  }
}
.news-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 160px 80px 160px;
  display: flex;
  flex-direction: column;
  gap: 72px;
  background: #f5fafc;
}

.news-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.news-tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.news-tab {
  border: 1px solid rgba(87, 87, 87, 0.2);
  border-radius: 80px;
  padding: 8px 48px;
  font-family: "Sora", sans-serif;
  font-size: 20px;
  color: #000;
  text-transform: capitalize;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.news-tab.active,
.news-tab:hover {
  background: #004784;
  color: #fff;
  border: 1px solid #004784;
}

.news-title {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #1e1e1e;
  text-transform: capitalize;
  line-height: 60px;
  text-align: center;
  margin: 0;
}

.news-desc {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: #3f3f3f;
  text-transform: capitalize;
  line-height: 24px;
  text-align: center;
  margin: 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1400px) {
  .news-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .news-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) and (max-width: 420px) {
  .news-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
}

.news-card-content {
  position: absolute;
  left: 24px;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
  right: 24px;
}

.news-card-icon img {
  width: 40px;
  height: 40px;
}

.news-card-text {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000;
  line-height: 23px;
  text-transform: capitalize;
}

.news-card-image {
  position: relative;
  height: 178px;
  width: 100%;
  margin-top: 224px;
}

.news-card-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 16px 16px;
  padding-top: 24px;
}

.news-card-arrow {
  position: absolute;
  transform: translate(-50%, -12%);
  left: 50%;
  top: 0;
  width: 55px;
  height: 55px;
  z-index: 9;
  transition: all 0.2s ease-in-out;
}
.news-card-arrow:hover {
  cursor: pointer;
  transform: translate(-40%, -12%);
}

.news-card-arrow-bg img {
  position: absolute;
  width: 55px;
  height: 55px;
  left: 0;
  top: 0;
}

.news-card-arrow-fg img {
  position: absolute;
  width: 42px;
  height: 42px;
  left: 6.67px;
  top: 6.67px;
}

.news-card-arrow-icon img {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 15.67px;
  top: 15.67px;
}

@media (max-width: 1200px) {
  .news-container {
    padding: 48px 32px 80px 32px;
  }

  .news-card-content {
    width: 220px;
  }
}
@media (max-width: 900px) {
  .news-row {
    flex-direction: column;
    gap: 32px;
  }

  .news-card-content {
    position: static;
    width: 100%;
    padding: 20px;
  }

  .news-card-image {
    margin-top: 0;
    height: 160px;
  }
}
@media (max-width: 600px) {
  .news-container {
    padding: 24px 8px 40px 8px;
  }

  .news-title {
    font-size: 28px;
    line-height: 40px;
  }

  .news-desc {
    font-size: 14px;
  }

  .news-card-content {
    gap: 12px;
  }

  .news-card-text {
    font-size: 14px;
    line-height: 20px;
  }

  .news-card-arrow-bg img,
.news-card-arrow-fg img {
    width: 36px;
    height: 36px;
  }

  .news-card-arrow-icon img {
    width: 16px;
    height: 16px;
    left: 10px;
    top: 10px;
  }
}
.about-hero-wrap.news-bg {
  background-image: url("../img/pada/Commercial and tenders.png");
}

.news-container .nav-link {
  width: 329px;
  height: 56px !important;
}
@media (max-width: 991.98px) {
  .news-container .nav-link {
    width: 100%;
  }
}

/* Access Code Page Styles */
.access-code-page {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* Background with overlay */
.access-bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.access-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-code-section .login-content {
  width: 731px;
  height: 700px;
}

.access-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 114, 178, 0) 0%, rgba(0, 114, 178, 0.2) 100%), linear-gradient(90deg, rgba(11, 20, 29, 0.24) 0%, rgba(11, 20, 29, 0.24) 100%);
}

/* White card container */
.access-card {
  background: var(--white, #ffffff);
  width: 100%;
  max-width: 731px;
  min-height: 669px;
  border-radius: 32px;
  position: relative;
  z-index: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Logo section */
.access-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 45px;
}

.pada-logo {
  height: 100%;
  width: auto;
}

/* Content section */
.access-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.access-header {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.access-title {
  font-family: "Sora", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  color: #1e1e1e;
  text-transform: capitalize;
  margin: 0;
}

.access-subtitle {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--dark-gray, #3f3f3f);
  margin: 0;
}

/* Code input boxes */
.code-boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.code-box {
  background: var(--light-blue-bg, #f5fafc);
  border: none;
  border-radius: 5px;
  width: 89px;
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--black, #000000);
  text-align: center;
  transition: all 0.2s;
}

.code-box:focus {
  outline: none;
  border: 1px solid var(--blue, #004784);
}

.code-box.active {
  border: 1px solid var(--blue, #004784);
}

.code-box.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Verify button */
.verify-btn {
  background: var(--blue, #004784);
  color: var(--white, #ffffff);
  border: none;
  border-radius: 100px;
  height: 55px;
  width: 100%;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: capitalize;
}

.verify-btn:hover {
  background: #003666;
}

/* Footer text */
.access-footer {
  text-align: center;
  margin-top: auto;
}

.access-footer p {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--dark-gray, #3f3f3f);
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .access-card {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .access-content {
    padding: 0 20px;
  }

  .code-boxes {
    gap: 8px;
  }

  .code-box {
    width: 35px;
    height: 55px;
    font-size: 20px;
  }
}
/* User Registration Page Styles (Figma node 140:1290) */
.register-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 40px 0;
}

.register-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.register-title {
  font-family: "Sora", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  color: #1e1e1e;
  margin: 0;
  text-transform: capitalize;
}

.register-login-link {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: var(--dark-gray, #3f3f3f);
  text-decoration: none;
  font-weight: 400;
}

.register-login-link .login-link {
  color: #004784;
  text-transform: capitalize;
  margin-left: 2px;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 647px;
}

.register-input-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.register-label {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  margin-bottom: 0;
  text-transform: capitalize;
}

.register-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.register-icon, .register-flag {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

.register-flag {
  width: 28px;
  height: 28px;
}

.register-country-code {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: var(--dark-gray, #3f3f3f);
  margin-right: 4px;
}

.register-input {
  flex: 1;
  height: 50px;
  border: 1px solid rgba(63, 63, 63, 0.2);
  border-radius: 25px;
  background: transparent;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: var(--dark-gray, #3f3f3f);
  padding: 0 18px 0 52px;
  outline: none;
  transition: border 0.2s;
}

.register-input:focus {
  border: 1.5px solid #004784;
}

.register-check-btn {
  background: none;
  border: none;
  padding: 0 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 2px;
}

.register-check-icon, .register-check-icon2 {
  width: 20px;
  height: 20px;
}

.register-status {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: #000;
  margin-left: 10px;
}

.register-submit-btn {
  background: var(--blue, #004784);
  color: #fff;
  border: none;
  border-radius: 100px;
  height: 55px;
  width: 100%;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
  text-transform: capitalize;
  margin-top: 24px;
  transition: background 0.2s;
}

.register-submit-btn:hover {
  background: #003666;
}

.register-checkbox-box {
  margin: 0 0 0 0;
}

.register-checkbox-label {
  display: flex;
  align-items: center;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: #3f3f3f;
  cursor: pointer;
  gap: 10px;
}

.register-checkbox {
  display: none;
}

.custom-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #004784;
  border-radius: 6px;
  background: #fff;
  display: inline-block;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}

.custom-checkbox.checked {
  background: #004784;
  border-color: #004784;
}

.custom-checkbox.checked:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .register-form {
    max-width: 100%;
  }

  .register-title {
    font-size: 28px;
    line-height: 40px;
  }

  .register-input {
    padding-left: 44px;
  }
}
/* Civil ID Data Page Styles (Figma node 357:9202) */
.civil-id-data-page {
  padding: 48px 0 80px;
}

.civil-id-card {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.civil-id-title {
  font-family: "Sora", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 60px;
  color: #1e1e1e;
  text-align: center;
  margin: 0 0 8px 0;
  text-transform: capitalize;
}

.civil-id-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-label {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: #000;
  margin-bottom: 0;
}

.input-inner {
  position: relative;
}

.input-field {
  width: 100%;
  height: 50px;
  padding: 12px 18px 12px 52px;
  border: 1px solid rgba(63, 63, 63, 0.2);
  border-radius: 25px;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: #3f3f3f;
  outline: none;
}

.input-field:focus {
  border-color: #004784;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

/* code box group */
.code-box-group .code-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.image-box .thumb-image {
  width: 167px;
  height: 58px;
  object-fit: cover;
  display: block;
}

.btn-alt {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 24px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 575.98px) {
  .btn-alt {
    font-size: 13px;
  }
}

.btn-alt .repeat-icon {
  width: 24px;
  height: 24px;
}

.form-actions {
  margin-top: 8px;
}

.civil-id-form .btn-primary {
  background: #004784;
  color: #fff;
  border: none;
  border-radius: 100px;
  height: 55px;
  width: 100%;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid #004784;
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
}
.civil-id-form .btn-primary:hover {
  background-color: transparent;
  color: #004784;
}

@media (max-width: 768px) {
  .civil-id-card {
    padding: 0 16px;
  }

  .image-box .thumb-image {
    width: 140px;
    height: 48px;
  }
}
/* Civil ID page styles */
.civil-id-main {
  padding: 48px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.civil-card {
  background: var(--light-bg, #f5fafc);
  border-radius: 12px;
  padding: 36px 40px;
  box-sizing: border-box;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.back-icon {
  width: 24px;
  height: 24px;
}

.back-text {
  color: #000;
  font-family: "Sora", sans-serif;
  text-decoration: none;
}

.page-title {
  font-family: "Sora", sans-serif;
  color: #1e1e1e;
  font-size: 40px;
  line-height: 60px;
  margin: 6px 0 20px;
}

.civil-form {
  max-width: 760px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: "Sora", sans-serif;
  color: #3f3f3f;
  margin-bottom: 8px;
}

.field-inner {
  position: relative;
  background: #fff;
  border-radius: 25px;
  border: 1px solid rgba(63, 63, 63, 0.15);
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 12px;
}

.field-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3f3f3f;
}

.field-prefix img {
  width: 24px;
  height: 24px;
}

.field-prefix.small img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
}

.field input {
  border: 0;
  outline: none;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: #1e1e1e;
  height: 100%;
  flex: 1;
  padding: 0 8px;
  background: transparent;
}

.field-inner.with-action {
  gap: 12px;
}

.btn-get-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #dddddd;
  padding: 8px 14px;
  border-radius: 24px;
  cursor: pointer;
}

.btn-get-code img {
  width: 18px;
  height: 18px;
}

.actions {
  margin-top: 22px;
}

.btn-primary {
  background: #004784;
  color: #fff;
  border: 0;
  padding: 12px 26px;
  border-radius: 100px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  cursor: pointer;
}

.copyright {
  margin-top: 18px;
  color: #3f3f3f;
  font-family: "Sora", sans-serif;
}

@media (max-width: 768px) {
  .civil-card {
    padding: 20px;
  }

  .page-title {
    font-size: 28px;
    line-height: 38px;
  }

  .civil-form {
    max-width: 100%;
  }

  .field-inner {
    width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
